當前位置:編程學習大全網 - 行動軟體 - 宏是由哪幾部分組成

宏是由哪幾部分組成

1、寫出open、write函數

2、告訴內核

1)、定義壹個struct file_operations結構並填充好

static struct file_operations first_drv_fops = {

.owner = THIS_MODULE, /* 這是壹個宏,推向編譯模塊時自動創建的__this_module變量 */

.open = first_drv_open,

.write = first_drv_write,

};

2)、把struct file_operations結構體告訴內核

major = register_chrdev(0, "first_drv", &first_drv_fops); // 註冊, 告訴內核

相關參數:第壹個,設備號,0自動分配主設備號,否則為主設備號0-255

第二個:設備名

第二個:struct file_operations結構體

4)、register_chrdev由誰調用(入口函數調用)

static int first_drv_init(void)

5)、入口函數須使用內核宏來修飾

module_init(first_drv_init);

module_init會定義壹個結構體,這個結構體裏面有壹個函數指針指向first_drv_init這個函數,當我們加載或安裝壹個驅動時,內核會自動找到這個結構體,然後調用裏面的函數指針,這個函數指針指向first_drv_init這個函數,first_drv_init這個函數就是把struct file_operations結構體告訴內核

6)、有入口函數就有出口函數

module_exit(first_drv_exit);

最後加上協議

MODULE_LICENSE("GPL");

3、mdev根據系統信息自動創建設備節點:

每次寫驅動都要手動創建設備文件過於麻煩,使用設備管理文件系統則方便很多。在2.6的內核以前壹直使用的是devfs,但是它存在許多缺陷。它創建了大量的設備文件,其實這些設備更本不存在。而且設備與設備文件的映射具有不確定性,比如U盤即可能對應sda,又可能對應sdb。沒有足夠的主/輔設備號。2.6之後的內核引入了sysfs文件系統,它掛載在/sys上,配合udev使用,可以很好的完成devfs的功能,並彌補了那些缺點。(這裏說壹下,當今內核已經使用netlink了)。

udev是用戶空間的壹個應用程序,在嵌入式中用的是mdev,mdev在busybox中。mdev是udev的精簡版。

首先在busybox中添加支持mdev的選項:

Linux System Utilities --->

[*] mdev

[*] Support /etc/mdev.conf

[*] Support subdirs/symlinks

[*] Support regular expressions substitutions when renaming device

[*] Support command execution at device addition/removal

然後修改/etc/init.d/rcS:

echo /sbin/mdev > /proc/sys/kernel/hotplug

/sbin/mdev -s

執行mdev -s :以‘-s’為參數調用位於 /sbin目錄寫的mdev(其實是個鏈接,作用是傳遞參數給/bin目錄下的busybox程序並調用它),mdev掃描 /sys/class 和 /sys/block 中所有的類設備目錄,如果在目錄中含有名為逗dev地的文件,且文件中包含的是設備號,則mdev就利用這些信息為這個設備在/dev 下創建設備節點文件。壹般只在啟動時才執行壹次 逗mdev -s地。

熱插拔事件:由於啟動時運行了命 令:echo /sbin/mdev > /proc/sys/kernel/hotplug ,那麽當有熱插拔事件產生時,內核就會調用位於 /sbin目錄的mdev。這時mdev通過環境變量中的 ACTION 和 DEVPATH,來確定此次熱插拔事件的動作以及影響了/sys中的那個目錄。接著會看看這個目錄中是否逗dev地的屬性文件,如果有就利用這些信息為 這個設備在/dev 下創建設備節點文件

重新打包文件系統,這樣/sys目錄,/dev目錄就有東西了

下面是create_class的原型:

#define class_create(owner, name) /

({ /

static struct lock_class_key __key; /

__class_create(owner, name, &__key); /

})

extern struct class * __must_check __class_create(struct module *owner,

const char *name,

struct lock_class_key *key);

class_destroy的原型如下:

extern void class_destroy(struct class *cls);

device_create的原型如下:

extern struct device *device_create(struct class *cls, struct device *parent,

dev_t devt, void *drvdata,

const char *fmt, ...)

__attribute__((format(printf, 5, 6)));

device_destroy的原型如下:

extern void device_destroy(struct class *cls, dev_t devt);

具體使用如下,可參考後面的實例:

static struct class *firstdrv_class;

static struct class_device *firstdrv_class_dev;

firstdrv_class = class_create(THIS_MODULE, "firstdrv");

firstdrv_class_dev = class_device_create(firstdrv_class, NULL, MKDEV(major, 0), NULL, "xyz"); /* /dev/xyz */

class_device_unregister(firstdrv_class_dev);

class_destroy(firstdrv_class);

下面再來看壹下應用程序如何找到這個結構體的

在應用程序中我們使用open打開壹個設備:如:open(/dev/xxx, O_RDWR);

xxx有壹個屬性,如字符設備為c,後面為讀寫權限,還有主設備名、次設備名,我們註冊時 通過register_chrdev(0, "first_drv", &first_drv_fops)(有主設備號,設備名,struct file_operations結構體)將first_drv_fops結構體註冊到內核數組chrdev中去的,結構體中有open,write函數,那麽應用程序如何找到它的,事實上是根據打開的這個文件的屬性中的設備類型及主設備號在內核數組chrdev裏面找到我們註冊的first_drv_fops,

實例代碼:

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

static struct class *firstdrv_class;

static struct class_device *firstdrv_class_dev;

volatile unsigned long *gpfcon = NULL;

volatile unsigned long *gpfdat = NULL;

static int first_drv_open(struct inode *inode, struct file *file)

{

//printk("first_drv_open\n");

/* 配置GPF4,5,6為輸出 */

*gpfcon &= ~((0x3<<(4*2)) | (0x3<<(5*2)) | (0x3<<(6*2)));

*gpfcon |= ((0x1<<(4*2)) | (0x1<<(5*2)) | (0x1<<(6*2)));

return 0;

}

static ssize_t first_drv_write(struct file *file, const char __user *buf, size_t count, loff_t * ppos)

{

int val;

//printk("first_drv_write\n");

copy_from_user(&val, buf, count); // copy_to_user();

if (val == 1)

{

// 點燈

*gpfdat &= ~((1<<4) | (1<<5) | (1<<6));

}

else

{

// 滅燈

*gpfdat |= (1<<4) | (1<<5) | (1<<6);

}

return 0;

}

static struct file_operations first_drv_fops = {

.owner = THIS_MODULE, /* 這是壹個宏,推向編譯模塊時自動創建的__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); // 註冊, 告訴內核

firstdrv_class = class_create(THIS_MODULE, "firstdrv");

firstdrv_class_dev = class_device_create(firstdrv_class, NULL, MKDEV(major, 0), NULL, "xyz"); /* /dev/xyz */

gpfcon = (volatile unsigned long *)ioremap(0x56000050, 16);

gpfdat = gpfcon + 1;

return 0;

}

static void first_drv_exit(void)

{

unregister_chrdev(major, "first_drv"); // 卸載

class_device_unregister(firstdrv_class_dev);

class_destroy(firstdrv_class);

iounmap(gpfcon);

}

module_init(first_drv_init);

module_exit(first_drv_exit);

MODULE_LICENSE("GPL");

編譯用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

測試程序:

#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");

}

if (argc != 2)

{

printf("Usage :\n");

printf("%s \n", argv[0]);

return 0;

}

if (strcmp(argv[1], "on") == 0)

{

val = 1;

}

else

{

val = 0;

}

write(fd, &val, 4);

return 0;

}

  • 上一篇:畢業簡筆畫怎麽畫 畢業的簡筆畫步驟圖解教程
  • 下一篇:《他在逆光中告白》在哪個軟件看?
  • copyright 2024編程學習大全網