linux设备驱动开发详解 笔记

 

在目录的 Makefile 中关于 RTC_DRV_S3C 的编译脚本为:
obj -$(CONFIG_RTC_DRV_S3C) += rtc-s3c.o
上述脚本意味着如果 RTC_DRV_S3C 配置选项被选择为“Y” 或“M”,即 obj-$(CONFIG_RTC_
DRV_S3C)等同于 obj-y 或 obj-m 时,则编译 rtc-s3c.c,选“ Y” 的情况直接会将生成的目标代码
直接连接到内核,为“ M” 的情况则会生成模块 rtc-s3c.ko;如果 RTC_DRV_S3C 配置选项被选择
为“ N”,即 obj-$(CONFIG_RTC_DRV_S3C)等同于 obj-n 时,则不编译 rtc-s3c.c。
一般而言,驱动工程师只会在内核源代码的 drivers 目录的相应子目录中增加新设备驱动的源
代码,并增加或修改 Kconfig 配置脚本和 Makefile 脚本,完全仿照上述过程执行即可

多文件模块Makefile:

obj -m := modulename.o
modulename-objs := file1.o file2.o

 

不加MODULE_LICENSE 会警告

MODULE_LICENSE("Dual BSD/GPL");

第6章

insmod: error inserting 'globalmem.ko': -1 Device or resource busy

设备号冲突, cat /proc/devices 可以看到已经使用的设备号。 换个设备号,或者alloc_chrdev_region 动态分配

 

error: implicit declaration of function ‘kmalloc’

#include <linux/slab.h>

 

手动建立设备文件

mknod /dev/globalmem c 248 0

 

第7章

error: implicit declaration of function ‘init_MUTEX’

2.6.25及以后的linux内核版本废除了init_MUTEX函数

新版本使用sema_init函数

将原来使用 init_MUTEX(sem)的地方统统替换为sema_init(sem, 1); 即可

/**
* down_interruptible - acquire the semaphore unless interrupted
* @sem: the semaphore to be acquired
*
* Attempts to acquire the semaphore. If no more tasks are allowed to
* acquire the semaphore, calling this function will put the task to sleep.
* If the sleep is interrupted by a signal, this function will return -EINTR.
* If the semaphore is successfully acquired, this function returns 0.
*/

得不到信号量,就会进入睡眠。 可被信号中断(如ctrl+c)

你可能感兴趣的:(linux)