linux核心驅動DIY (踏踏實實學核心之2)

來源:互聯網
上載者:User

上文中提到了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的驅動明天再看。


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.