#include#include#include#incl">
linux設(shè)備驅(qū)動模版

linux設(shè)備驅(qū)動模版

ID:43515586

大小:46.00 KB

頁數(shù):5頁

時間:2019-10-09

linux設(shè)備驅(qū)動模版_第1頁
linux設(shè)備驅(qū)動模版_第2頁
linux設(shè)備驅(qū)動模版_第3頁
linux設(shè)備驅(qū)動模版_第4頁
linux設(shè)備驅(qū)動模版_第5頁
資源描述:

《linux設(shè)備驅(qū)動模版》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在學(xué)術(shù)論文-天天文庫。

1、設(shè)備驅(qū)動模版代碼例程Mydriver.c#include#include#include#include#include#include#include#include#include#include

2、/spinlock.h>#include#include#include#include#include#include#include#include#include#include#include

3、ccess.h>/*定義設(shè)備的從設(shè)備號*/#defineMYDRIVER_MINOR174/*定義設(shè)備的相關(guān)數(shù)據(jù)結(jié)構(gòu)*/typedefstruct_MYDRIVER_DEV{spinlock_tdev_lock;wait_queue_head_toWait;intopen_count;}MYDRIVER_DEV,*PMYDRIVER_DEV;/*定義設(shè)備的狀態(tài)數(shù)據(jù)結(jié)構(gòu)*/typedefstruct_MYDRIVER_DEV_STATS{unsignedlongrx_intrs;unsignedlon

4、grx_errors;unsignedlongrx_blocks;unsignedlongrx_dropped;unsignedlongrx_intrs;unsignedlongrx_errors;unsignedlongrx_missed;unsignedlongrx_blocks;unsignedlongrx_dropped;}MYDRIVER_DEV_STATS,*MYDRIVER_DEV_STATS;unsignedintIntInit=0;/*定義設(shè)備open的接口函數(shù)*/staticin

5、tmydriver_open(structinode*inode,structfile*filp){intminor;DBGPRINT(“mydriver_open”);minor=MINOR(inode->i_rdev);if(minor!=MYDRIVER_MINOR){return-ENODEV;}#ifdefMODULEMOD_INC_USE_COUNT;/*打開使用次數(shù)累加*/#endifmydriver_dev.open_count++;if(mydriver_dev.open_co

6、unt==1){DBGPRINT(“mydriver_open:firstopen”);/*第一次打開設(shè)備,在這里可以放些設(shè)備初始化代碼*/}return0;}/*定義設(shè)備close的接口函數(shù)*/staticintmydriver_release(structinode*inode,structfile*filp){DBGPRINT(“mydriver_release”);mydriver_dev.open_count--;if(mydriver_dev.open_count==0){DBG

7、PRINT(“mydriver_release:lastclose”);/*設(shè)備徹底關(guān)閉,在這里可以放些使設(shè)備休眠,或者poweroff的代碼*/}#ifdefMODULEMOD_DEC_USE_COUNT;/*打開使用次數(shù)遞減*/#endifreturn0;}/*定義設(shè)備read的接口函數(shù)*/staticssize_t_mydriver_read(structfile*filp,char*buf,size_tsize,loff_t*offp){if(size>8192)size=8192;/*

8、copy_to_user()*//*copykernelspacetouserspace.*//*把數(shù)據(jù)從內(nèi)核復(fù)制到用戶空間的代碼,可根據(jù)實(shí)際添加*/returnsize;/*返回字節(jié)數(shù)*/}/*定義設(shè)備write的接口函數(shù)*/staticssize_t_mydriver_write(structfile*filp,constchar*buf,size_tsize,loff_t*offp){lock_kernel();DBGPRINT(“mydriver_write

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費(fèi)完成后未能成功下載的用戶請聯(lián)系客服處理。