首页 > 编程语言 >字符设备驱动程序--LED驱动

字符设备驱动程序--LED驱动

时间:2023-02-23 10:00:56浏览次数:34  
标签:LED 驱动程序 -- drv write include open first

编写驱动程序需要编写那些代码:

1、硬件相关的驱动程序

2、Makefile的编译程序

3、还需要编写一个相关的测试程序

比如说:一个摄像头驱动程序

1、驱动程序的编写,需要编写一些硬件相关的操作,编译Makefile

2、安装、运行、卸载驱动程序(insmod ***、。./*** 、remod *** )。

3、使用这个驱动程序:需要一个测试程序,如QQ(测试程序)打开摄像头。

 

编写驱动程序框架:

APP:(测试程序)                         open         read         write         .........

-------------------------------------------------------------------------------------------

内核                                           sys_open    sys_read  sys_writ    sys_.......

 

-------------------------------------------------------------------------------------------

驱动程序                          入口函数:

                                                    注册一个结构体:register("  ",&file_operation);

                                                    /* 这里执行相关的硬件操作 */

                                                    struct   file_operation{

                                                           .open      =    open_,

                                                           .read       =    read_,

                                                           .write       =    write_,

                                                    }

                                     出口函数: 

                                                   

                                     

----------------------------------------------------------------------------------------------------------------------------------------------------

驱动程序的编写步骤包括:

入口函数

static int first_drv_init(void)

{major = register_chrdev(0, "first_drv", &first_drv_fops); // 注册, 告诉内核}

出口函数

static void first_drv_exit(void)

{
  unregister_chrdev(major, "first_drv"); // 卸载

}

构造一个file_operation结构体

static struct file_operations first_drv_fops = {
.owner = THIS_MODULE, /* 这是一个宏,推向编译模块时自动创建的__this_module变量 */
.open = first_drv_open,
.write = first_drv_write,
};

相关的修饰:让内核知道这是个特殊的函数,作为驱动用

module_init(first_drv_init);
module_exit(first_drv_exit);

在加上一个协议:应为Linux为开源的,所以要遵循一些协议

MODULE_LICENSE("GPL");

剩下的就是对结构体里面的open、read、write函数进行硬件操作,如open对硬件引脚的定义、设置,read读取硬件引脚寄存器的状态,如灯是开还是关,write就是对相关硬件寄存器的操作,比如对相关数据寄存器写0/1来控制LED灯的亮灭。

相关硬件操作:比如对于LED灯简单硬件操作而言

根据芯片手册、原理图、确定硬件,操作相关寄存器对设置相关的引脚。然后设置相关的数据寄存器对引脚的控制。

 

上层测试程序会调用open、read、write函数最终会调用到驱动程序file_opreation结果体里面的open、read、write函数进而对硬件如LED灯的点亮操作。

相关代码如下

fist_drv.c

复制代码
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <asm/uaccess.h>
#include <asm/irq.h>
#include <asm/io.h>
#include <asm/arch/regs-gpio.h>
#include <asm/hardware.h>

static struct class *firstdrv_class;
static struct class_device    *firstdrv_class_dev;

volatile unsigned long *gpfcon = NULL;
volatile unsigned long *gpfdat = NULL;


static int first_drv_open(struct inode *inode, struct file *file)
{
    //printk("first_drv_open\n");
    /* 配置GPF4,5,6为输出 */
    *gpfcon &= ~((0x3<<(4*2)) | (0x3<<(5*2)) | (0x3<<(6*2)));
    *gpfcon |= ((0x1<<(4*2)) | (0x1<<(5*2)) | (0x1<<(6*2)));
    return 0;
}

static ssize_t first_drv_write(struct file *file, const char __user *buf, size_t count, loff_t * ppos)
{
    int val;

    //printk("first_drv_write\n");

    copy_from_user(&val, buf, count); //    copy_to_user();

    if (val == 1)
    {
        // 点灯
        *gpfdat &= ~((1<<4) | (1<<5) | (1<<6));
    }
    else
    {
        // 灭灯
        *gpfdat |= (1<<4) | (1<<5) | (1<<6);
    }
    
    return 0;
}

static struct file_operations first_drv_fops = {
    .owner  =   THIS_MODULE,    /* 这是一个宏,推向编译模块时自动创建的__this_module变量 */
    .open   =   first_drv_open,     
    .write    =    first_drv_write,       
};


int major;
static int first_drv_init(void)
{
    major = register_chrdev(0, "first_drv", &first_drv_fops); // 注册, 告诉内核

    firstdrv_class = class_create(THIS_MODULE, "firstdrv");

    firstdrv_class_dev = class_device_create(firstdrv_class, NULL, MKDEV(major, 0), NULL, "xyz"); /* /dev/xyz */

    gpfcon = (volatile unsigned long *)ioremap(0x56000050, 16);
    gpfdat = gpfcon + 1;

    return 0;
}

static void first_drv_exit(void)
{
    unregister_chrdev(major, "first_drv"); // 卸载

    class_device_unregister(firstdrv_class_dev);
    class_destroy(firstdrv_class);
    iounmap(gpfcon);
}

module_init(first_drv_init);
module_exit(first_drv_exit);


MODULE_LICENSE("GPL");
复制代码

编写:Makefile

复制代码
KERN_DIR = /work/system/linux-2.6.22.6

all:
    make -C $(KERN_DIR) M=`pwd` modules 

clean:
    make -C $(KERN_DIR) M=`pwd` modules clean
    rm -rf modules.order

obj-m    += first_drv.o
复制代码

 

编译成功后,把程序放到开发板文件系统目录下,执行insmod  文件名  装载驱动,运行驱动程序为./文件名   如果想卸载执行remod 文件名命令

 

测试程序:

firstdrvtest.c

复制代码
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>

/* firstdrvtest on
  * firstdrvtest off
  */
int main(int argc, char **argv)
{
    int fd;
    int val = 1;
    fd = open("/dev/xyz", O_RDWR);
    if (fd < 0)
    {
        printf("can't open!\n");
    }
    if (argc != 2)
    {
        printf("Usage :\n");
        printf("%s <on|off>\n", argv[0]);
        return 0;
    }

    if (strcmp(argv[1], "on") == 0)
    {
        val  = 1;
    }
    else
    {
        val = 0;
    }
    
    write(fd, &val, 4);
    return 0;
}
复制代码

标签:LED,驱动程序,--,drv,write,include,open,first
From: https://www.cnblogs.com/kn-zheng/p/17146877.html

相关文章

  • Java高级培训班需要学习哪些重要的框架
    ​Java高级培训班需要学习哪些重要的框架?框架对于我们来说还是非常重要的知识点,在培训时不少机构会学习部分的ssh框架。但实际上,工作中更多的会用到ssm,所以我们在选择机......
  • SkeyeVSS+SkeyeARS+ SkeyeIVMS定制化边防视频监控方案的应用​
    ​我国国土幅员辽阔,拥有漫长的边境线。作为国土防卫的最后一道防线,其安全形势对国家的安全有着非同一般的影响。但因海拔、天气、地形等自然条件的影响,加上陆海边境情况复杂......
  • elementUI 表格翻页后 滚动条回到顶部/第一行
    情况1:组件中直接使用的是el-table<el-table ref="table"></el-table>那么需要在用到的地方直接使用this.$nextTick(()=>{   this.$refs.table.bodyWrapper.scr......
  • css盒子模型
    资料来源于:B站尚硅谷JavaWeb教程(全新技术栈,全程实战),本人才疏学浅,记录其笔记以供他日回顾视频链接知识点总结<!--IE浏览器:实际尺寸=widthchrome浏览器:实际尺......
  • poll机制实例参考
    poll机制:为了减少CPU资源的占用率,在编写驱动函数中添加poll机制select,poll,epoll都是IO多路复用的机制。I/O多路复用就通过一种机制,可以监视多个描述符,一旦某个描述符就绪(......
  • 深度学习分割模型过程记录
    1,数据预处理(1)Dicom2Nii(2)MR图像做N4偏置场矫正(3)数据分组,确定训练集和验证集的图像和ROI的输入路径txt2,训练阶段(1)TrainConfig确定,Spacing注意一下,尽量和原始尺寸一致......
  • 系统时钟和UART的设置
    系统时钟:   在开发版上,不同的器件运行在不同的时钟频率上,如CPU可能运行在400Mhz的频率上、SDRAM、DM9000等内存存储运行在100Mhz~133MHz上、串口i2c等运行在50Mhz......
  • 时间复杂度O(1) O(n)表示什么
    在刷面试题中的算法题经常出现时间复杂度O(n),空间复杂度O(1)很多时候不知道是什么意思空间复杂度与时间复杂度是数据结构的复杂度,在现在储存设备越来越便宜的时代,时间......
  • 解决Oracle锁表情况
    在使用Oracle数据库更新数据的时候,有两种查询方式可以修改编辑数据:selectt.*,t.rowidfromtabletselect*fromtableforupdate在使用第二种方式的时候如果卡住......
  • ORACLE基础之oracle锁(oracle lock mode)详解
    ORACLE里锁有以下几种模式:0:none1:null空2:Row-S行共享(RS):共享表锁,subshare 3:Row-X行独占(RX):用于行的修改,subexclusive 4:Share共享锁(S):阻止其他DML操......