當前位置:首頁 > 單片機 > 單片機
[導讀]在真實的終端應用中,將采用sram來保存變化頻繁的終端實時數(shù)據(jù),這樣終端偶然的掉電數(shù)據(jù)也不會丟失。sbc9261s無外擴的sram,只能利用其片內(nèi)16k的sram做了,主要思路:做個簡單的內(nèi)核模塊,在內(nèi)核態(tài)完成sram地址的映射

在真實的終端應用中,將采用sram來保存變化頻繁的終端實時數(shù)據(jù),這樣終端偶然的掉電數(shù)據(jù)也不會丟失。sbc9261s無外擴的sram,只能利用其片內(nèi)16k的sram做了,主要思路:做個簡單的內(nèi)核模塊,在內(nèi)核態(tài)完成sram地址的映射,并提供接口完成內(nèi)核態(tài)地址到用戶空間的映射。先來個linux驅(qū)動的簡單測試主要代碼網(wǎng)上搜的,makefile結(jié)合:https://www.ibm.com/developerworks/cn/linux/l-module26/假設驅(qū)動包含多個.c文件:

1.a.h

#ifndef _A_H_
#define _A_H_
void sayHello(void);
#endif

2.a.c

#include"a.h"
#include
#include
void sayHello(void)
{
printk("nhello world!n");
}

3.hello_medule.c

/*hello_module.c*/
#include
#include
#include "a.h"http://包含頭文件
static int __init mini2440_hello_module_init(void)
{ printk("Hello, Mini2440 module is installed !n");
sayHello();//這里調(diào)用a.h中定義的方法
return 0;
}
static void __exit mini2440_hello_module_cleanup(void)
{ printk("Good-bye, Mini2440 module was removed!n");
}

module_init(mini2440_hello_module_init);
module_exit(mini2440_hello_module_cleanup);
MODULE_LICENSE("GPL");

makefile如下:
ifeq ($(KERNELRELEASE),)
KERNELDIR ?= ../linux-2.6.24
PWD := $(shell pwd)
all:
$(MAKE) -C $(KERNELDIR) M=$(PWD)
clean:
rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions Module.symvers
else
obj-m := mymodule.o
mymodule-objs:= a.o hello_module.o
endif
測試方法:insmod ./mymodule.ko

rmmod mymodule

lsmod

接下來是sram的映射驅(qū)動(以下內(nèi)容基于linux2.6.24內(nèi)核):

//sram_module.h驅(qū)動頭文件:

#define SRAM_STARTADD 0x300000 //arm926ej-s datasheet
#define SRAM_SIZE (0x400<<4) //16kB
#define SRAM_MAJOR 200
#define SRAM_FILENAME "sram_mmap"

int sram_open(struct inode *inode, struct file *file);
int sram_release(struct inode *inode, struct file *file);
int sram_mmap(struct file *file, struct vm_area_struct *vma);
int sram_ioctl(struct inode *inode, struct file *file,unsigned int cmd, unsigned long arg) ;

static struct file_operations sram_fops =
{
owner: THIS_MODULE,
mmap: sram_mmap,
open: sram_open,
ioctl: sram_ioctl,
release: sram_release,
};

接下來是驅(qū)動的實現(xiàn)://sram_module.c

#include
#include
#include
#include
#include
#include
#include
#include "sram_module.h"

#if 0
#define IOMAP_WRITE 1
#define IOMAP_READ 2
volatile unsigned short * reserve_virt_addr16;
#endif

MODULE_LICENSE ("GPL");

struct sram_dev
{
struct cdev cdev;
dev_t devno;
}mydev;

struct class *my_class;

static void reg_setup_cdev (struct sram_dev * _dev)
{
int error =0;
cdev_init (&_dev->cdev, &sram_fops);
_dev->cdev.owner = THIS_MODULE;
error = cdev_add (&_dev->cdev, _dev->devno , 1);
if (error)
printk (KERN_NOTICE "sram:Error %d adding reg_setup_cdev", error);
}

static int __init sram_init_module(void)
{
int result;
mydev.devno = MKDEV (SRAM_MAJOR, 0);
result = register_chrdev_region (mydev.devno, 1, SRAM_FILENAME);
if (result<0)
{
printk (KERN_WARNING "sram: can't get major number %dn", SRAM_MAJOR);
return result;
}

reg_setup_cdev (&mydev);

/* create your own class under /sysfs */
my_class = class_create(THIS_MODULE, "my_sramclass");
if(IS_ERR(my_class))
{
printk("sram->Err: failed in creating class.n");
return -1;
}

/* register your own device in sysfs, and this will cause udev to create corresponding device node */
//device_create( my_class, NULL, mydev.devno, SRAM_FILENAME "%d", 0 );
device_create( my_class, NULL, mydev.devno, SRAM_FILENAME);
printk (KERN_INFO "sram:Registered character drivern");

#if 0
reserve_virt_addr16 = (short *)ioremap( SRAM_STARTADD,SRAM_SIZE);
if ( !reserve_virt_addr16 )
{
printk("ioremap failedn");
return -EINVAL;
}
#endif
return 0;
}

/* remove the module */
static void __exit sram_cleanup_module(void)
{
unregister_chrdev( SRAM_MAJOR, SRAM_FILENAME );
cdev_del (&mydev.cdev);
device_destroy(my_class, mydev.devno); //delete device node under /dev
class_destroy(my_class); //delete class created by us
unregister_chrdev_region (mydev.devno, 1);
printk (KERN_INFO "sram:char driver cleaned upn");
}

int sram_ioctl(struct inode *inode, struct file *file,unsigned int cmd, unsigned long arg)
{
#if 0
static int i=0;
switch(cmd)
{
case IOMAP_WRITE:
for(i=0;i<10;i++)
*(reserve_virt_addr16+i)='A'+i;
break;
case IOMAP_READ:
for ( i=0;i<10;i++)
printk("[%d]:%cn",i,reserve_virt_addr16[i]);
break;
}
#endif
return 0;
}


int sram_open(struct inode *inode, struct file *file)
{
return(0);
}

int sram_release(struct inode *inode, struct file *file)
{
return(0);
}

int sram_mmap(struct file *file, struct vm_area_struct *vma)
{
size_t size = vma->vm_end - vma->vm_start;
unsigned long pfn = virt_to_phys((void *)(SRAM_STARTADD >> PAGE_SHIFT));
if (remap_pfn_range(vma,vma->vm_start,pfn,size,vma->vm_page_prot))
{
printk (KERN_INFO "sram:sram_mmap fail!n");
return -EAGAIN;
}
return 0;
}

module_init(sram_init_module);
module_exit(sram_cleanup_module);

MODULE_LICENSE("GPL");
主要使用mmap映射到用戶空間使用,在mdev的配合下insmod sram_mmap.ko,將自動創(chuàng)建/dev/sram_mmap設備文件。接下來是測試程序,來驗證驅(qū)動是否可用,由于目前開發(fā)板配置的啟動方式是dataflash,第1階段的Bootstrap加載在sram中,基本上把sram快覆蓋完了,我們只用16k最后幾個字節(jié)來做測試。

#include
#include
#include
#include

#define MMAP_SIZE 1024*16
#define DEV_FILE "/dev/sram_mmap"
struct zydz
{
char buff[MMAP_SIZE];
};

void readbuff()
{
#if 1
int fd;
int i;
struct zydz * vadr=NULL;
fd = open(DEV_FILE, O_RDWR);
vadr = (struct zydz *)mmap(NULL, MMAP_SIZE, PROT_READ|PROT_WRITE , MAP_SHARED, fd, 0);
if (vadr == MAP_FAILED)
{
perror("mmap err");
exit(-1);
}

for(i=1;i<10;i++)
{
printf("[%c]",vadr->buff[1024*16-i]);
}
printf("n");

munmap(vadr, MMAP_SIZE);
close(fd);
#else
int fd = open(DEV_FILE, O_RDWR);
if(ioctl(fd,2,0)<0)
{
printf("ioctl failedn");
return ;
}
close(fd);
#endif
}

void writebuff()
{
#if 1
int fd;
int i;
struct zydz * vadr=NULL;
fd = open(DEV_FILE, O_RDWR);
vadr = (struct zydz *)mmap(NULL, MMAP_SIZE, PROT_READ|PROT_WRITE , MAP_SHARED, fd, 0);
if (vadr == MAP_FAILED)
{
perror("mmap err");
exit(-1);
}

for(i=1;i<10;i++)
{
vadr->buff[1024*16-i] = 'A'+ i;
}
printf("n");

munmap(vadr, MMAP_SIZE);
close(fd);
#else
int fd = open(DEV_FILE, O_RDWR);
if(ioctl(fd,1,0)<0)
{
printf("ioctl failedn");
return ;
}
close(fd);
#endif
}

本站聲明: 本文章由作者或相關機構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內(nèi)容真實性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫毥谦F公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉(zhuǎn)型技術解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時1.5...

關鍵字: 汽車 人工智能 智能驅(qū)動 BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務能7×24不間斷運行,同時企業(yè)卻面臨越來越多業(yè)務中斷的風險,如企業(yè)系統(tǒng)復雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務連續(xù)性,提升韌性,成...

關鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會開幕式在貴陽舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關鍵字: 華為 12nm EDA 半導體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會上,華為常務董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權(quán)最終是由生態(tài)的繁榮決定的。

關鍵字: 華為 12nm 手機 衛(wèi)星通信

要點: 有效應對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實提質(zhì)增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務引領增長 以科技創(chuàng)新為引領,提升企業(yè)核心競爭力 堅持高質(zhì)量發(fā)展策略,塑強核心競爭優(yōu)勢...

關鍵字: 通信 BSP 電信運營商 數(shù)字經(jīng)濟

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺與中國電影電視技術學會聯(lián)合牽頭組建的NVI技術創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會上宣布正式成立。 活動現(xiàn)場 NVI技術創(chuàng)新聯(lián)...

關鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會上,軟通動力信息技術(集團)股份有限公司(以下簡稱"軟通動力")與長三角投資(上海)有限...

關鍵字: BSP 信息技術
關閉
關閉