字符設(shè)備驅(qū)動(dòng)程序設(shè)計(jì)_第1頁(yè)
字符設(shè)備驅(qū)動(dòng)程序設(shè)計(jì)_第2頁(yè)
字符設(shè)備驅(qū)動(dòng)程序設(shè)計(jì)_第3頁(yè)
字符設(shè)備驅(qū)動(dòng)程序設(shè)計(jì)_第4頁(yè)
字符設(shè)備驅(qū)動(dòng)程序設(shè)計(jì)_第5頁(yè)
已閱讀5頁(yè),還剩2頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、實(shí)驗(yàn)七 字符設(shè)備驅(qū)動(dòng)程序設(shè)計(jì)實(shí)驗(yàn)?zāi)康恼莆兆址O(shè)備驅(qū)動(dòng)程序編寫的框架;掌握設(shè)備驅(qū)動(dòng)相關(guān)的知識(shí);實(shí)驗(yàn)原理參考本周大課課件字符設(shè)備驅(qū)動(dòng)程序.ppt。實(shí)驗(yàn)步驟建立一個(gè)工作目錄,我們的驅(qū)動(dòng)程序模塊程序保存在這個(gè)目錄下;#mkdir first_drv#cd first_drv1 自己編寫一個(gè)字符設(shè)備驅(qū)動(dòng)程序,程序格式參考下面;#include #include #include #include #include #include #include /(1)編寫硬件底層操作函數(shù)實(shí)現(xiàn)open,release,write,read./(2)創(chuàng)建一個(gè)file_operations結(jié)構(gòu). static int

2、_init xxx_init(void) /(3)申請(qǐng)?jiān)O(shè)備號(hào)./(4)初始化cdev結(jié)構(gòu)./(5)注冊(cè)cdev結(jié)構(gòu).return 0; static void _exit xxx_exit(void) /注銷cdev結(jié)構(gòu)./注銷設(shè)備號(hào) module_init(.); module_exit(.); module_license(.);注意:要求底層函數(shù)要實(shí)現(xiàn)open,release,write,read方法。2 編寫makefile文件內(nèi)容格式,參考如下:obj-m+=模塊程序文件名.oall:make -c 內(nèi)核源碼路徑 m=pwd modules #這一行要以tab鍵開頭clean:mak

3、e -c 內(nèi)核源碼路徑 m=pwd modules clean #這一行要以tab鍵開頭3 編譯模塊,拷貝到根文件系統(tǒng)中編譯內(nèi)核模塊,直接使用make命令就可以了;#make編譯沒有錯(cuò)誤時(shí),將模塊拷貝到跟文件系統(tǒng)中;#cp xxx.ko/opt/rootfs/lib/modules/3.5.0-yyy/4 啟動(dòng)開發(fā)板,進(jìn)入linux系統(tǒng)后,在開發(fā)板上加載和卸載模塊加載:# insmod/lib/modules/3.5.0-yyy/xxxx.ko查看系統(tǒng)分配的設(shè)備號(hào)#cat /proc/devices手動(dòng)添加設(shè)備文件(設(shè)備節(jié)點(diǎn))# mknod /dev/first_drv c 主設(shè)備號(hào) 次設(shè)備號(hào)

4、5 交叉編譯應(yīng)程序,打開設(shè)備文件進(jìn)行讀寫操作實(shí)驗(yàn)成功后,叫老師查看實(shí)驗(yàn)結(jié)果,作為平時(shí)考察成績(jī);first_drv:#include #include #include #include #include #include #include #include #include static int first_drv_open(struct inode *in, struct file *fp)printk(first driver open called!n);return 0;static int first_drv_release(struct inode *in, struct file

5、 *fp)printk(first driver release called!n);return 0;static int data=0;static ssize_t first_drv_write(struct file *fp, const char _user *buf, size_t len, loff_t *offset)copy_from_user(void *)&data,buf,sizeof(int);printk(first driver write called!data is %dn,data);return sizeof(int);static ssize_t fir

6、st_drv_read(struct file *fp, char _user *buf, size_t len, loff_t * offset)data=data+1;copy_to_user(buf,&data,sizeof(int);printk(first driver read called!n);return sizeof(int);static struct file_operations first_fops = .owner = this_module,.open = first_drv_open,.release =first_drv_release,.write = f

7、irst_drv_write,.read = first_drv_read, ;/驅(qū)動(dòng)注冊(cè)static int major = 0;static struct cdev *first_drv_cdev;#define first_drv_name first_drvstatic int _init first_drv_init(void)dev_t dev;alloc_chrdev_region(&dev, 0, 1, first_drv_name);major = major(dev);first_drv_cdev = cdev_alloc();cdev_init(first_drv_cde

8、v,&first_fops);first_drv_cdev-owner = this_module;cdev_add(first_drv_cdev, dev, 1);printk(first driver module insert!n);return 0;static void _exit first_drv_exit(void)dev_t dev;dev = mkdev(major,0);cdev_del(first_drv_cdev);unregister_chrdev_region(dev, 1);printk(first driver module remove!n);module_

9、init(first_drv_init);module_exit(first_drv_exit);module_license(gpl);makefile:obj-m += first_drv.oall:make -c /home/sice/linux-4.4.19m=pwdmodulesclean:make -c /home/sice/linux-4.4.19m=pwdmodules cleantest:#include#include#include#include#include#define file_name /dev/abcint main(void)int fd;fd=open(file_name,o_r

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論