驅動程式分層分離概念

来源:https://www.cnblogs.com/jason-linux/archive/2019/01/20/10294228.html
-Advertisement-
Play Games

下麵以一個按鍵的實驗作為驅動分離時間簡單學習: 1 #include <linux/module.h> 2 #include <linux/version.h> 3 4 #include <linux/init.h> 5 6 #include <linux/kernel.h> 7 #include ...


下麵以一個按鍵的實驗作為驅動分離時間簡單學習:

 1 #include <linux/module.h>
 2 #include <linux/version.h>
 3 
 4 #include <linux/init.h>
 5 
 6 #include <linux/kernel.h>
 7 #include <linux/types.h>
 8 #include <linux/interrupt.h>
 9 #include <linux/list.h>
10 #include <linux/timer.h>
11 #include <linux/init.h>
12 #include <linux/serial_core.h>
13 #include <linux/platform_device.h>
14 
15 
16 /* 分配/設置/註冊一個platform_device */
17 
18 static struct resource led_resource[] = {
19     [0] = {
20         .start = 0x56000050,
21         .end   = 0x56000050 + 8 - 1,
22         .flags = IORESOURCE_MEM,
23     },
24     [1] = {
25         .start = 5,
26         .end   = 5,
27         .flags = IORESOURCE_IRQ,
28     }
29 
30 };
31 
32 static void led_release(struct device * dev)
33 {
34 }
35 
36 
37 static struct platform_device led_dev = {
38     .name         = "myled",
39     .id       = -1,
40     .num_resources    = ARRAY_SIZE(led_resource),
41     .resource     = led_resource,
42     .dev = { 
43         .release = led_release, 
44     },
45 };
46 
47 static int led_dev_init(void)
48 {
49     platform_device_register(&led_dev);
50     return 0;
51 }
52 
53 static void led_dev_exit(void)
54 {
55     platform_device_unregister(&led_dev);
56 }
57 
58 module_init(led_dev_init);
59 module_exit(led_dev_exit);
60 
61 MODULE_LICENSE("GPL");
led_dev.c
  1 /* 分配/設置/註冊一個platform_driver */
  2 
  3 #include <linux/module.h>
  4 #include <linux/version.h>
  5 
  6 #include <linux/init.h>
  7 #include <linux/fs.h>
  8 #include <linux/interrupt.h>
  9 #include <linux/irq.h>
 10 #include <linux/sched.h>
 11 #include <linux/pm.h>
 12 #include <linux/sysctl.h>
 13 #include <linux/proc_fs.h>
 14 #include <linux/delay.h>
 15 #include <linux/platform_device.h>
 16 #include <linux/input.h>
 17 #include <linux/irq.h>
 18 #include <asm/uaccess.h>
 19 #include <asm/io.h>
 20 
 21 static int major;
 22 
 23 
 24 static struct class *cls;
 25 static volatile unsigned long *gpio_con;
 26 static volatile unsigned long *gpio_dat;
 27 static int pin;
 28 
 29 static int led_open(struct inode *inode, struct file *file)
 30 {
 31     //printk("first_drv_open\n");
 32     /* 配置為輸出 */
 33     *gpio_con &= ~(0x3<<(pin*2));
 34     *gpio_con |= (0x1<<(pin*2));
 35     return 0;    
 36 }
 37 
 38 static ssize_t led_write(struct file *file, const char __user *buf, size_t count, loff_t * ppos)
 39 {
 40     int val;
 41 
 42     //printk("first_drv_write\n");
 43 
 44     copy_from_user(&val, buf, count); //    copy_to_user();
 45 
 46     if (val == 1)
 47     {
 48         // 點燈
 49         *gpio_dat &= ~(1<<pin);
 50     }
 51     else
 52     {
 53         // 滅燈
 54         *gpio_dat |= (1<<pin);
 55     }
 56     
 57     return 0;
 58 }
 59 
 60 
 61 static struct file_operations led_fops = {
 62     .owner  =   THIS_MODULE,    /* 這是一個巨集,推向編譯模塊時自動創建的__this_module變數 */
 63     .open   =   led_open,     
 64     .write    =    led_write,       
 65 };
 66 
 67 static int led_probe(struct platform_device *pdev)
 68 {
 69     struct resource        *res;
 70 
 71     /* 根據platform_device的資源進行ioremap */
 72     res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 73     gpio_con = ioremap(res->start, res->end - res->start + 1);
 74     gpio_dat = gpio_con + 1;
 75 
 76     res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
 77     pin = res->start;
 78 
 79     /* 註冊字元設備驅動程式 */
 80 
 81     printk("led_probe, found led\n");
 82 
 83     major = register_chrdev(0, "myled", &led_fops);
 84 
 85     cls = class_create(THIS_MODULE, "myled");
 86 
 87     class_device_create(cls, NULL, MKDEV(major, 0), NULL, "led"); /* /dev/led */
 88     
 89     return 0;
 90 }
 91 
 92 static int led_remove(struct platform_device *pdev)
 93 {
 94     /* 卸載字元設備驅動程式 */
 95     /* iounmap */
 96     printk("led_remove, remove led\n");
 97 
 98     class_device_destroy(cls, MKDEV(major, 0));
 99     class_destroy(cls);
100     unregister_chrdev(major, "myled");
101     iounmap(gpio_con);
102     
103     return 0;
104 }
105 
106 
107 struct platform_driver led_drv = {
108     .probe        = led_probe,
109     .remove        = led_remove,
110     .driver        = {
111         .name    = "myled",
112     }
113 };
114 
115 
116 static int led_drv_init(void)
117 {
118     platform_driver_register(&led_drv);
119     return 0;
120 }
121 
122 static void led_drv_exit(void)
123 {
124     platform_driver_unregister(&led_drv);
125 }
126 
127 module_init(led_drv_init);
128 module_exit(led_drv_exit);
129 
130 MODULE_LICENSE("GPL");
led_drv.c
 1 #include <sys/types.h>
 2 #include <sys/stat.h>
 3 #include <fcntl.h>
 4 #include <stdio.h>
 5 
 6 /* led_test on
 7  * led_test off
 8  */
 9 int main(int argc, char **argv)
10 {
11     int fd;
12     int val = 1;
13     fd = open("/dev/led", O_RDWR);
14     if (fd < 0)
15     {
16         printf("can't open!\n");
17     }
18     if (argc != 2)
19     {
20         printf("Usage :\n");
21         printf("%s <on|off>\n", argv[0]);
22         return 0;
23     }
24 
25     if (strcmp(argv[1], "on") == 0)
26     {
27         val  = 1;
28     }
29     else
30     {
31         val = 0;
32     }
33     
34     write(fd, &val, 4);
35     return 0;
36 }
led_test.c

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 四種許可權 1.普通許可權,也就是讀、寫、執行 2.特殊許可權,SUID SGID SBIT 3.ACL許可權 4.隱藏許可權 許可權的表示 字元表示 八進位表示 讀 r 4 寫 w 2 執行 x 1 無許可權 0 許可權對於目錄和文件的區別 許可權 對於文件 對於目錄 r 可查看文件 可查看目錄的內容 w 可編輯文 ...
  • 一、部署mysql5.7二進位版 解壓tar -xvf mv mysql-5.7 /usr/local/mysql5.7 或者其他文件夾 cd /usr/local/mysql.57 useradd -s /sbin/nologin -M mysql mkdir -p /usr/local/mysq ...
  • 保持更新,資源來源自操作系統課件。轉載請註明出處。 ...
  • 操作系統:Red hat Enterprise Linux Server release 7.6 001、日常維護常用查詢命令 #top 顯示系統進程 #clear 清理屏幕信息 #cat /etc/redhat-release 查看系統版本信息 #cat /proc/version 查看系統內核版 ...
  • 參考 https://www.jianshu.com/p/99eea4db21c4 註:操作前最好先備份個 config.txt 文件 防止悲劇 防止悲劇 防止悲劇 終端下 進入boot/config.txt sudo nano /boot/config.txt 找到並把#hdmi_group=1改 ...
  • 原文:https://www.raspberrypi.org/documentation/configuration/config-txt.md譯文:http://my.oschina.net/funnky/blog/132885 概述 在啟動過程中, 樹莓派會從SD里讀取一些配置參數. 這些參數儲 ...
  • 內核自帶的驅動LCD,drivers/video/Fbmem.c LCD驅動程式 假設app: open("/dev/fb0", ...) 主設備號: 29, 次設備號: 0 kernel: fb_open int fbidx = iminor(inode); struct fb_info *inf ...
  • 在一般網頁里,date命令減時間方法為: 我的需求是,在指定時間上減8小時。按一般理解來看,命令寫成如下樣子(有異常錯誤的寫法): 期望結果是:23-11-2014 08:08:08 實際結果是:23-11-2014 17:08:08 所以,結果異常錯誤。同理減分鐘減小時,同樣錯誤,比如: 實際結果 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...