www.久久久久|狼友网站av天堂|精品国产无码a片|一级av色欲av|91在线播放视频|亚洲无码主播在线|国产精品草久在线|明星AV网站在线|污污内射久久一区|婷婷综合视频网站

當(dāng)前位置:首頁(yè) > 芯聞號(hào) > 充電吧
[導(dǎo)讀] Linux驅(qū)動(dòng):封裝對(duì)底層硬件的操作,向上層應(yīng)用提供操作接口 一. 概念介紹 一般用戶在應(yīng)用程序里調(diào)用的 open, read, write 函數(shù)是 c 庫(kù)的函數(shù), 這些函數(shù)會(huì)觸發(fā)

Linux驅(qū)動(dòng):封裝對(duì)底層硬件的操作,向上層應(yīng)用提供操作接口

一. 概念介紹 一般用戶在應(yīng)用程序里調(diào)用的 open, read, write 函數(shù)是 c 庫(kù)的函數(shù), 這些函數(shù)會(huì)觸發(fā) swi val異常,從而引發(fā)系統(tǒng)調(diào)用,進(jìn)入到內(nèi)核空間, 內(nèi)核通過(guò)VFS(virtual Filesystem)來(lái)實(shí)現(xiàn)調(diào)用不同的驅(qū)動(dòng)函數(shù)。

例如:我們有一個(gè)函數(shù),
int main()
{
    int fd1, fd2;
    int val = 1;

    fd1 = open("/dev/led", O_RDWR);
    write(fd1, &val, 4);

    fd2 = open("hello.txt", O_RDWR);
    write(fd2, &val, 4);
}
函數(shù)里相同的open、write函數(shù),引發(fā)的不同的行為,一個(gè)是操控硬件,一個(gè)是寫(xiě)文件。 簡(jiǎn)單的調(diào)用關(guān)系如下: 用戶 –> 系統(tǒng)調(diào)用 –> 驅(qū)動(dòng)程序
open –> sys.open –> led.open 
write –> sys.write –> led.write
二. 字符設(shè)備驅(qū)動(dòng)框架 實(shí)現(xiàn)步驟: 實(shí)現(xiàn)驅(qū)動(dòng)的 led.open, led.write, led.read 操作 定義file_operations結(jié)構(gòu)體, 把驅(qū)動(dòng)函數(shù)填充到里面 把這個(gè)結(jié)構(gòu)告訴內(nèi)核, 通個(gè)注冊(cè)函數(shù) register_chrdev(major, “first_drv”, &first_drv_fops) 來(lái)實(shí)現(xiàn) 誰(shuí)來(lái)調(diào)用注冊(cè)函數(shù) –>驅(qū)動(dòng)的入口函數(shù)來(lái)調(diào)用這個(gè)注冊(cè)函數(shù), first_drv_init 修飾一下這個(gè)函數(shù)入口函數(shù),module_init(first_drv_init)
//第一步:驅(qū)動(dòng)功能實(shí)現(xiàn)
static int first_drv_open(struct inode *inode,struct file *file)
{
    printk("first_drv_openn");
    return 0;
}

static ssize_t first_drv_write(struct file *file,const char __user *buf, size_t count,loff_t *ppos)
{
    printk("first_drv_writen");
    return 0;
}

//第二步:定義結(jié)構(gòu)體,并把驅(qū)動(dòng)函數(shù)填充進(jìn)去
static struct file_operations first_drv_fops = {
    .owner = THIS_MODULE,   /* 這是一個(gè)宏,推向編譯模塊時(shí)自動(dòng)創(chuàng)建的__this_module變量 */
    .open  = first_drv_open,
    .write = first_drv_write,
};

//第四步:實(shí)現(xiàn)驅(qū)動(dòng)入口函數(shù),來(lái)調(diào)用注冊(cè)函數(shù)
int major;
static int first_drv_init(void)
{
    //第三步:通過(guò)使用注冊(cè)函數(shù),把結(jié)構(gòu)體告訴內(nèi)核
    major = register_chrdev(0,"first_drv",&first_drv_fops);// 注冊(cè),告訴內(nèi)核

    return 0;
}

static void first_drv_exit(void)
{
    unregister_chrdev(major,"first_drv");//卸載
}

//第五步:修飾入口函數(shù),及退出函數(shù)
module_init(first_drv_init);
module_exit(first_drv_exit);
三. 關(guān)聯(lián) [設(shè)備號(hào)] 與 [設(shè)備節(jié)點(diǎn)] 設(shè)備號(hào)要與設(shè)備結(jié)點(diǎn)關(guān)聯(lián)起來(lái),才能通過(guò)open(“/dev/xyz”)方便的操作。 1. 設(shè)置主設(shè)備號(hào) 驅(qū)動(dòng)程序可以自動(dòng)分配主設(shè)備號(hào), 也可以手工指定
// 設(shè)置為 0 時(shí)是系統(tǒng)自動(dòng)分配主設(shè)備號(hào)
major = register_chrdev(0, "first_drv", &first_drv_fops); 
// 通過(guò) [cat /proc/devices] 看一下系統(tǒng)為我們的first_drv分配的設(shè)備號(hào)是多少

// 手動(dòng)分配 666主設(shè)備號(hào)給 first_drv
register_chrdev(666, "first_drv", &first_drv_fops); 
2. 設(shè)置設(shè)備節(jié)點(diǎn) 當(dāng)應(yīng)該程序 執(zhí)行 open(“/dev/xyz”) 操作時(shí),這個(gè)/dev/xyz怎么來(lái)的

2.1 手動(dòng)創(chuàng)建

// 創(chuàng)建設(shè)備節(jié)點(diǎn)
mknod /dev/xyz c(表示是字符設(shè)備) 主設(shè)備號(hào) 次設(shè)備號(hào)

//查看設(shè)備信息:
ls -l /dev/xyz

2.2 自動(dòng)創(chuàng)建
mdev – 根據(jù)系統(tǒng)信息創(chuàng)建設(shè)備節(jié)點(diǎn)

static struct class *firstdrv_class;
static struct class_device *firstdrv_class_dev;

int major;
static int first_drv_init(void)
{
    major = register_chrdev(0, "first_drv", &first_drv_fops);

    //創(chuàng)建設(shè)備信息,執(zhí)行后會(huì)出現(xiàn) /sys/class/firstdrv
    firstdrv_class = class_create(THIS_MODULE, "firstdrv"); 

    //創(chuàng)建設(shè)備節(jié)點(diǎn),就是根據(jù)上面的設(shè)備信息來(lái)的
    firstdrv_class_dev = class_device_create(firstdrv_class,
    NULL, MKDEV(major, 0), NULL, "xyz"); /* /dev/xyz */

    return 0;
}

static void first_drv_exit(void)
{
    unregister_chrdev(major, "first_drv");

    //刪除節(jié)點(diǎn)及信息
    class_device_unregister(firstdrv_class_dev);
    class_destroy(firstdrv_class);
}
編譯測(cè)試驅(qū)動(dòng):

驅(qū)動(dòng)程序:first_drv.c

#include   
#include   
#include   
#include   
#include   
#include   
#include   
#include   
#include   
#include 

static struct class *firstdrv_class;
static struct class_device *firstdrv_class_dev;

static int first_drv_open(struct inode *inode,struct file *file)
{
    printk("first_drv_openn");
    return 0;
}

static ssize_t first_drv_write(struct file *file,const char __user *buf, size_t count,loff_t *ppos)
{
    printk("first_drv_writen");
    return 0;
}

static struct file_operations first_drv_fops = {
    .owner = THIS_MODULE,   /* 這是一個(gè)宏,推向編譯模塊時(shí)自動(dòng)創(chuàng)建的__this_module變量 */
    .open  = first_drv_open,
    .write = first_drv_write,
};

int major;
static int first_drv_init(void)
{
    major = register_chrdev(0,"first_drv",&first_drv_fops);// 注冊(cè),告訴內(nèi)核
    //printk("first_drv_initn");
    firstdrv_class = class_create(THIS_MODULE, "firstdrv");
    firstdrv_class_dev = class_device_create(firstdrv_class, NULL, MKDEV(major, 0), NULL, "xyz"); /* /dev/xyz */

    return 0;
}

static void first_drv_exit(void)
{
    unregister_chrdev(major,"first_drv");//卸載

    class_device_unregister(firstdrv_class_dev);
    class_destroy(firstdrv_class);
}

module_init(first_drv_init);
module_exit(first_drv_exit);

MODULE_LICENSE("GPL");  

驅(qū)動(dòng)測(cè)試程序:

#include   
#include   
#include   
#include   

/* firstdrvtest on 
 * firstdrvtest off 
 */

int main(int argc, char **argv)
{
    int fd;
    int val = 1;
    fd = open("/dev/xyz",O_RDWR);
    if(fd < 0)
    {
        printf("can't open!n");
    }
    write(fd,&val,4);
    return 0;
}

Makefile:

KERN_DIR = /work/system/linux-2.6.22.6

all:
    make -C $(KERN_DIR) M=`pwd` modules 

clean:
    make -C $(KERN_DIR) M=`pwd` modules clean
    rm -rf modules.order

obj-m += first_drv.o
測(cè)試步驟:

①u(mài)boot中掛載文件系統(tǒng)設(shè)置:
bootcmd=nand read.jffs2 0x30007FC0 kernel; bootm 0x30007FC0

bootargs=noinitrd root=/dev/nfs nfsroot=192.168.2.3:/work/nfs_root/czg ip=192.168.2.5:192.168.2.3:192.168.2.1:255.255.255.0::eth0:off rootfstype=jffs2 init=/linuxrc console=ttySAC0

②將驅(qū)動(dòng)程序和驅(qū)動(dòng)測(cè)試程序編譯好,并拷貝至NFS文件夾

make
cp first_drv.ko /work/nfs_root/czg
arm-linux-gcc -o firstdrvtest firstdrvtest.c
cp firstdrvtest /work/nfs_root/czg

③加載驅(qū)動(dòng)程序,并測(cè)試

insmod first_drv.ko //卸載:rmmod 查看:lsmod
//測(cè)試
./firstdrvtest

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

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

關(guān)鍵字: 阿維塔 塞力斯 華為

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

關(guān)鍵字: 汽車(chē) 人工智能 智能驅(qū)動(dòng) BSP

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

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

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

關(guān)鍵字: 騰訊 編碼器 CPU

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

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

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

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

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

關(guān)鍵字: 通信 BSP 電信運(yùn)營(yíng)商 數(shù)字經(jīng)濟(jì)

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

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

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

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉