上文中提到了kconfig檔案修改,
在裡面加入了
config EmbedSky_HELLO
tristate "TQ2440/SKY2440 Hello Driver"
depends on ARCH_S3C2440
help
EmbedSky TQ2440/SKY2440 Hello.
這幾行代碼,表示要編譯EmbedSky_HELLO這個驅動進去,我們還要作的工作是
修改同母錄下的makefile檔案
在makefile裡加入了這一行,
obj-$(CONFIG_EmbedSky_HELLO) += EmbedSky_hello.o
然後在核心編譯選項裡選定,後直接編譯核心,或是使用命令#make SUBDIR=drivers/char/ modules,然後編譯出驅動模組。
我們來看看驅動模組
*************************************
NAME:EmbedSky_hello.c
COPYRIGHT:www.embedsky.net
*************************************/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/miscdevice.h>
#include <linux/delay.h>
#include <asm/irq.h>
#include <asm/arch/regs-gpio.h>
#include <asm/hardware.h>
MODULE_LICENSE("GPL");
static int __init EmbedSky_hello_init(void) //insmod驅動的時候,系統會自動調用的函數。
{
printk("<1>/n Hello,EmbedSky!/n");
printk("<1>/nThis is first driver program./n/n");
return 0;
}
static void __exit EmbedSky_hello_exit(void)
{
printk("<1>/n Exit!/n");
printk("<1>/nGoodbye EmbedSky!/n/n");
}
module_init(EmbedSky_hello_init);
module_exit(EmbedSky_hello_exit);
很簡短的一段代碼,但是似乎只能在核心裡列印出幾行字,沒有跟硬體互動。
GPIO的驅動明天再看。