当前位置:   article > 正文

[Linux_IMX6ULL驱动开发]-驱动的分层及实现

[Linux_IMX6ULL驱动开发]-驱动的分层及实现

目录

驱动分层的思路

驱动分层的实现

上层驱动的实现

次设备号的使用

上层驱动代码

底层驱动的实现

底层驱动c文件的实现

底层驱动头文件实现

应用层文件的实现


驱动分层的思路

在上一篇文章中,博主实现了通过寄存器控制引脚,以此来达到控制LED灯亮灭。但是其实,把对寄存器的映射等步骤在驱动文件中实现并不是很好的实现,因为不同的开发板,引脚、寄存器都是不同的,为了达到兼容的目的,我们最好实现如下分层,把驱动分为上层和下层,驱动的上层完成file_operation结构体注册、class类、devices设备的注册等。下层为具体的硬件实现,包括完成寄存器的映射、初始化以及硬件控制等。


驱动分层的实现

下图是实现驱动分层的具体实现思路

上层驱动的实现

在上层驱动中,我们主要完成的是,完成file_operation结构体的构造和注册、class类、device设备的创建(退出对应的函数需要完成上述三个的注销,devices一定要先于calss类销毁,否则会造成内核异常操控空指针,驱动会崩溃

上层驱动较为重要的步骤是:

        包含对应的定义的头文件

        获取对应的结构体,以此能够调用底层驱动实现的初始化、操控等函数

        在对应要填充到file_operation结构体的函数中,实现对应的初始化、操控等步骤

次设备号的使用

假如我们这里的需求是控制两盏LED灯,那么我们就需要用到次设备号来区分这两个LED灯,次设备号不同,代表我们需要的灯就不同,那么所需要初始化的引脚和操控的引脚也不同,在这里我们传入不同的次设备号,在驱动底层我们通过传入的次设备号来判断到底是进行哪个引脚的初始化。

上层驱动代码

注意,该代码中没有进行映射内存的释放,没有在file_operation结构体中定义释放函数,所以应用层并不能通过close来关闭此设备,无法释放映射的物理地址

  1. #include <linux/module.h>
  2. #include <linux/fs.h>
  3. #include <linux/errno.h>
  4. #include <linux/miscdevice.h>
  5. #include <linux/kernel.h>
  6. #include <linux/major.h>
  7. #include <linux/mutex.h>
  8. #include <linux/proc_fs.h>
  9. #include <linux/seq_file.h>
  10. #include <linux/stat.h>
  11. #include <linux/init.h>
  12. #include <linux/device.h>
  13. #include <linux/tty.h>
  14. #include <linux/kmod.h>
  15. #include <linux/gfp.h>
  16. #include "file_operation.h"
  17. /* 不同板子的操作函数结构体 */
  18. struct led_operation* p_ledopr_func;
  19. /* 确定主设备号 */
  20. static int major = 0;
  21. /* 缓存数组 */
  22. static char kernal_buf[1024];
  23. /* 节点的定义 */
  24. static struct class *led_class;
  25. /* 读多少的宏定义 */
  26. #define data_num(a,b) ( (a) < (b) ? (a) : (b) )
  27. /* 定义函数入口地址 */
  28. static int led_drv_open (struct inode *node, struct file *file)
  29. {
  30. int minor = iminor(node);
  31. printk("%s %s %d \n",__FILE__,__FUNCTION__,__LINE__);
  32. /* 通过次设备号初始化灯 */
  33. p_ledopr_func->init(minor);
  34. return 0;
  35. }
  36. static ssize_t led_drv_read (struct file *file, char __user *buf, size_t size, loff_t *offset)
  37. {
  38. int return_size;
  39. printk("%s %s %d \n",__FILE__,__FUNCTION__,__LINE__);
  40. return_size = copy_to_user(buf, kernal_buf, data_num(1024,size));
  41. return return_size;
  42. }
  43. static ssize_t led_drv_write (struct file *file, const char __user *buf, size_t size, loff_t *offset)
  44. {
  45. int return_size;
  46. char status;
  47. /* 根据file结构体获得inode,然后获取次设备号 */
  48. struct inode* inode = file_inode(file);
  49. int minor = iminor(inode);
  50. printk("%s %s %d \n",__FILE__,__FUNCTION__,__LINE__);
  51. return_size = copy_from_user(&status, buf, 1);
  52. /* 根据次设备号和status控制LED */
  53. p_ledopr_func->ctl(minor,status);
  54. return 1;
  55. }
  56. static int led_drv_rease (struct inode *node, struct file *file)
  57. {
  58. printk("%s %s %d \n",__FILE__,__FUNCTION__,__LINE__);
  59. return 0;
  60. }
  61. /*
  62. 定义文件结构体
  63. 读,写,打开,卸载
  64. */
  65. static struct file_operations led_driver = {
  66. .owner = THIS_MODULE,
  67. .open = led_drv_open,
  68. .read = led_drv_read,
  69. .write = led_drv_write,
  70. .release = led_drv_rease,
  71. };
  72. /*
  73. 把结构体注册到内核
  74. 为了能够把该结构体注册到内核
  75. 需要init函数
  76. */
  77. static int __init led_init(void)
  78. {
  79. int err;
  80. int i;
  81. printk("%s %s %d \n",__FILE__,__FUNCTION__,__LINE__);
  82. /* 注册结构体到内核后,返回主设备号 */
  83. major = register_chrdev(0, "myled", &led_driver);
  84. //创建节点 /dev/led
  85. led_class = class_create(THIS_MODULE, "myled_class");
  86. err = PTR_ERR(led_class);
  87. if (IS_ERR(led_class))
  88. {
  89. printk("%s %s %d \n",__FILE__,__FUNCTION__,__LINE__);
  90. /* 创建失败的话摧毁内核中的led结构体 */
  91. unregister_chrdev( major, "myled");
  92. return -1;
  93. }
  94. p_ledopr_func = get_board_led_operation();
  95. /* 创建了节点后,需要创建设备 */
  96. /* 因为LED不止一个,需要多个次设备号 */
  97. for( i = 0 ; i < p_ledopr_func->num ; i++ )
  98. device_create(led_class, NULL, MKDEV(major, i), NULL, "myled%d" , i);
  99. return 0;
  100. }
  101. /* 有注册函数就有卸载函数 */
  102. static void __exit led_exit(void)
  103. {
  104. int i;
  105. printk("%s %s %d \n",__FILE__,__FUNCTION__,__LINE__);
  106. /* 把device卸载 */
  107. for( i = 0 ; i < p_ledopr_func->num ; i++ )
  108. device_destroy(led_class, MKDEV(major, i));
  109. /* 把class卸载 */
  110. class_destroy(led_class);
  111. /* 把file_operation从内核中卸载 */
  112. unregister_chrdev( major, "myled");
  113. }
  114. /* 需要用某些宏表示上述两个函数分别是入口函数和出口函数 */
  115. module_init(led_init);
  116. module_exit(led_exit);
  117. /* 遵循GPL协议 */
  118. MODULE_LICENSE("GPL");

底层驱动的实现

底层驱动的实现主要就是通过上层驱动传递下来的次设备号来判断,到底是初始化哪些寄存器,应该映射哪些硬件地址进行操作。同时还需把操控硬件的结构体返回给上层驱动。

底层驱动c文件的实现

  1. #include <linux/module.h>
  2. #include <linux/fs.h>
  3. #include <linux/errno.h>
  4. #include <linux/miscdevice.h>
  5. #include <linux/kernel.h>
  6. #include <linux/major.h>
  7. #include <linux/mutex.h>
  8. #include <linux/proc_fs.h>
  9. #include <linux/seq_file.h>
  10. #include <linux/stat.h>
  11. #include <linux/init.h>
  12. #include <linux/device.h>
  13. #include <linux/tty.h>
  14. #include <linux/kmod.h>
  15. #include <linux/gfp.h>
  16. #include <asm/io.h>
  17. #include "file_operation.h"
  18. /* 一个灯为 GPIO5组的03 */
  19. /* 使能时钟 */
  20. static volatile unsigned int* CCM_CCGR1 = NULL;
  21. /* 引脚复用 */
  22. static volatile unsigned int* IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = NULL;
  23. /* 设置为输出模式 */
  24. static volatile unsigned int* GPIO5_GDIR = NULL;
  25. /* 设置输出高电平/低电平 */
  26. static volatile unsigned int* GPIO5_DR = NULL;
  27. static int board_demo_led_init (int which) /* 初始化LED, which-哪个LED */
  28. {
  29. /* 在初始化函数中,实现初始化、复用引脚设置为GPIO模式、设置为输出模式 */
  30. /* 通过次设备号判断操控哪个LED */
  31. if( 0 == which )
  32. {
  33. /* 只映射一次 */
  34. if( NULL == CCM_CCGR1 )
  35. {
  36. CCM_CCGR1 = ioremap(0x20C406C , 4 );
  37. IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = ioremap(0x2290014 , 4 );
  38. GPIO5_GDIR = ioremap(0x020AC004, 4);
  39. GPIO5_DR = ioremap(0x020AC000, 4);
  40. }
  41. *CCM_CCGR1 |= (3 << 30);
  42. /* 因为引脚复用为GPIO为0101,包含0,所以先清零,防止原本的位包含1,导致|1后,还会是1 */
  43. *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 &= ~(0xf);
  44. *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 |= 5;
  45. *GPIO5_GDIR |= (1 << 3);
  46. }
  47. /* 初始化另一盏灯 */
  48. else
  49. {
  50. }
  51. printk("%s %s line %d, led %d\n", __FILE__, __FUNCTION__, __LINE__, which);
  52. return 0;
  53. }
  54. static int board_demo_led_ctl (int which, char status) /* 控制LED, which-哪个LED, status:1-亮,0-灭 */
  55. {
  56. printk("%s %s line %d, led %d, %s\n", __FILE__, __FUNCTION__, __LINE__, which, status ? "on" : "off");
  57. if( 0 == which )
  58. {
  59. /* 低电平点灯 */
  60. if( 1 == status )
  61. *GPIO5_DR &= ~(1 << 3);
  62. else
  63. *GPIO5_DR |= (1 << 3);
  64. }
  65. /* 打开另一盏灯 */
  66. else
  67. {
  68. }
  69. return 0;
  70. }
  71. static struct led_operation board_demo_led_opr = {
  72. .num = 1,
  73. .init = board_demo_led_init,
  74. .ctl = board_demo_led_ctl,
  75. };
  76. struct led_operation *get_board_led_operation(void)
  77. {
  78. return &board_demo_led_opr;
  79. }

底层驱动头文件实现

  1. #ifndef __FILE_OPERATION_H
  2. #define __FILE_OPERATION_H
  3. struct led_operation{
  4. int num;
  5. int (*init)(int which);/* 初始化哪个LED */
  6. int(*ctl)(int which , char status);/* 控制哪个LED,以及控制的状态 */
  7. };
  8. struct led_operation* get_board_led_operation(void);
  9. #endif

应用层文件的实现

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. #include <fcntl.h>
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <unistd.h>
  7. int main(int argc, char** argv)
  8. {
  9. char status = 0;
  10. if( argc != 3 )
  11. {
  12. printf("./ledtest /dev/myled on \n");
  13. printf("./ledtest /dev/myled off \n");
  14. return -1;
  15. }
  16. int fd;
  17. //open
  18. fd = open(argv[1] , O_RDWR);
  19. if( fd < 0 )
  20. {
  21. printf("open %s file \n",argv[1]);
  22. return -1;
  23. }
  24. //write
  25. if( 0 == strcmp(argv[2] , "on") )
  26. {
  27. status = 1;
  28. write(fd , &status , 1);
  29. }
  30. else
  31. {
  32. status = 0;
  33. write(fd , &status , 1);
  34. }
  35. return 1;
  36. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/447007
推荐阅读
相关标签
  

闽ICP备14008679号