Linux驱动

Linux驱动

1. 字符设备驱动程序

1.1 第一个驱动程序

驱动程序

第一个简单的字符设备驱动程序hello_drv.c

#include <linux/module.h>

#include <linux/fs.h>
#include <linux/errno.h>
#include <linux/miscdevice.h>
#include <linux/kernel.h>
#include <linux/major.h>
#include <linux/mutex.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/stat.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/tty.h>
#include <linux/kmod.h>
#include <linux/gfp.h>

static ssize_t hello_drv_read (struct file *file, char __user *buf, size_t size, loff_t *offset);
static ssize_t hello_drv_write (struct file *file, const char __user *buf, size_t size, loff_t *offset);
static int hello_drv_open (struct inode *node, struct file *file);
static int hello_drv_close (struct inode *node, struct file *file);

/* 1. 确定主设备号                                                                 */
static int major = 0;
static char kernel_buf[1024];
static struct class *hello_class;
static const char *_dev_name = "hello";

#define MIN(a, b) (a < b ? a : b)

/* 2. 定义自己的file_operations结构体                                              */
static struct file_operations hello_drv = {
    .owner   = THIS_MODULE,
    .open    = hello_drv_open,
    .read    = hello_drv_read,
    .write   = hello_drv_write,
    .release = hello_drv_close,
};

/* 3. 实现对应的open/read/write等函数,填入file_operations结构体                   */
static ssize_t hello_drv_read (struct file *file, char __user *buf, size_t size, loff_t *offset)
{
    int err;
    printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
    /* 将内核空间的数据拷贝到用户空间 */
    err = copy_to_user(buf, kernel_buf, MIN(1024, size));
    if(err != 0) {
        printk("read failed\n");    
    }
    return MIN(1024, size);
}

static ssize_t hello_drv_write (struct file *file, const char __user *buf, size_t size, loff_t *offset)
{
    int err;
    printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
    /* 将用户空间的数据拷贝到内核空间 */
    err = copy_from_user(kernel_buf, buf, size);
    if(err != 0) {
        printk("write failed\n");
    }
    return MIN(1024, size);
}

static int hello_drv_open (struct inode *node, struct file *file)
{
    printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
    return 0;
}

static int hello_drv_close (struct inode *node, struct file *file)
{
    printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
    return 0;
}

/* 4. 创建驱动入口函数,注册驱动程序 
 * register_chrdev 是一个用于注册字符设备驱动的函数
 *      major: 主设备号,如果设置为0,表示由内核自动分配一个可用的主设备号。
 *      name: 设备的名称,在 /proc/devices 文件中会显示。
 *      fops: 指向一个 struct file_operations 结构体的指针,该结构体包含了字符设备操作的函数指针,如读、写、打开、释放等。
 */
static int __init hello_drv_init(void)
{
    int err;
    struct device *dev;

    printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
    /* /dev/hello */
    major = register_chrdev(major, _dev_name, &hello_drv);

    hello_class = class_create(THIS_MODULE, "hello_class");
    err = PTR_ERR(hello_class);
    if(IS_ERR(hello_class)) 
    {
        printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
        unregister_chrdev(major, _dev_name);
        return -1;
    }

    /* 创建设备结点 */
    dev = device_create(hello_class, NULL, MKDEV(major, 0), NULL, _dev_name);
    printk("device init name is: %s\n", dev->init_name);

    return 0;
}


/* 5. 创建驱动出口函数, 卸载驱动程序 */
static void __exit hello_drv_exit(void)
{
    printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
    device_destroy(hello_class, MKDEV(major, 0));
    class_destroy(hello_class);
    unregister_chrdev(major, _dev_name);    
}

/* 6. 完善驱动程序 */
module_init(hello_drv_init);
module_exit(hello_drv_exit);

MODULE_LICENSE("GPL");
测试程序

驱动测试程序hello_drv_test.c

#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>

/*
 * ./hello_drv_test -w zmj
 * ./hello_drv_test -r
 */
int main(int argc, char **argv)
{
    int fd;
    int len;
    char buf[1024];

    /* 1.判断参数 */
    if(argc < 2)
    {
        printf("Usage: %s -w <string>\n", argv[0]);
        printf("Usage: %s -r\n", argv[0]);
        return -1;
    }
    /* 2.打开设备驱动文件 */
    const char *pathname = "/dev/hello";
    fd = open(pathname, O_RDWR);
    if(fd == -1)
    {
        printf("can not open device file %s\n", pathname);
        return -1;
    }
    /* 3. 读写文件 */
    if(strcmp(argv[1], "-w") == 0 && argc == 3)
    {
        // 写文件:将\0也写进去
        len = strlen(argv[2]) + 1;
        len = len < 1024 ? len : 1024;
        write(fd, argv[2], len);
    }
    else
    {
        // 读文件
        read(fd, buf, 1024);
        buf[1023] = '\0';
        printf("read data: %s\n", buf);
    }

    close(fd);

    return 0;
}
Makefile

编译文件Makefile

KERNEL_DIR = /home/book/100ask_imx6ull-sdk/Linux-4.9.88

obj-m += hello_drv.o

all:
    make -C $(KERNEL_DIR) M=`pwd` modules
    $(CROSS_COMPILE)gcc hello_drv_test.c -o hello_drv_test

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

1.2 驱动程序编写框架

驱动编写流程
  1. 确定主设备号,可以让内核分配
/* 1. 确定主设备号                                                                 */
static int major = 0;
major = register_chrdev(major, _dev_name, &hello_drv);

major设为0,注册驱动程序时内核会自动分配一个主设备号。

  1. 定义自己的file_operation结构体

    file_operations结构体是用来定义字符设备驱动的操作函数的集合。每个字符设备都需要实现一组标准的操作,如读取、写入、打开等。这些操作由 file_operations 结构体中的函数指针指向实际的实现函数。

struct file_operations {
    struct module *owner;
    loff_t (*llseek) (struct file *, loff_t, int);
    ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);        // 读取设备
    ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
    ssize_t (*read_iter) (struct kiocb *, struct iov_iter *);
    ssize_t (*write_iter) (struct kiocb *, struct iov_iter *);
    int (*iterate) (struct file *, struct dir_context *);
    int (*iterate_shared) (struct file *, struct dir_context *);
    ......
}
  1. 实现file_operations结构体中的函数,如read、write、open

  2. 创建驱动入口函数,并注册驱动程序

static int __init hello_drv_init(void)
{
    major = register_chrdev(major, _dev_name, &hello_drv);
    return 0;
}
  1. 创建驱动出口函数,卸载驱动程序
static void __exit hello_drv_exit(void)
{
    device_destroy(hello_class, MKDEV(major, 0));
    class_destroy(hello_class);
    unregister_chrdev(major, _dev_name);    
}
  1. 在入口函数中提供设备信息,创建设备结点

/dev目录下创建一个名为 _dev_name 的设备节点文件,如/dev/hello

static int __init hello_drv_init(void)
{
    hello_class = class_create(THIS_MODULE, "hello_class");
    err = PTR_ERR(hello_class);
    if(IS_ERR(hello_class)) 
    {
        printk("%s %s line %d\n", __FILE__, __FUNCTION__, __LINE__);
        unregister_chrdev(major, _dev_name);
        return -1;
    }

    /* 创建设备结点 */
    dev = device_create(hello_class, NULL, MKDEV(major, 0), NULL, _dev_name);
}
  • class_create(THIS_MODULE, "hello_class"):创建一个设备类(device class)。在Linux内核中,设备类是一组具有相似属性的设备的集合。这个函数用于创建一个新的设备类,第一个参数指定了该类所属的内核模块,第二个参数是设备类的名称。如果创建失败,它返回一个错误码。

  • err = PTR_ERR(hello_class):将hello_class的指针转换为错误码。这是一个错误处理步骤,用于检查class_create函数的返回值是否表示错误。

  • if (IS_ERR(hello_class)) { ... }:检查hello_class的返回值是否是一个错误码。如果是,说明设备类的创建失败。在这种情况下,函数会输出错误信息,取消之前注册的字符设备,然后返回-1,表示初始化失败。

  • dev = device_create(hello_class, NULL, MKDEV(major, 0), NULL, _dev_name):创建一个设备结点(device node)。它将在/sys/class/hello_class/目录下创建一个设备结点。这个函数的参数包括设备类指针、父设备的指针(在这里为NULL,表示没有父设备)、设备号(使用MKDEV(major, 0)创建)和设备的名称(在这里为_dev_name)。

PTR_ERR补充知识-[chatgpt]:

在Linux内核编程中,PTR_ERR 是一个宏,用于从指针中提取错误码。它的作用是将内核中函数返回的指针类型转换为错误码。通常,在内核开发中,错误码是负数,而指针是正数或零。当函数执行出错时,返回的是一个指向错误码的指针。

使用方法如下:

err_ptr = some_function(); // some_function返回一个指针

err = PTR_ERR(err_ptr);
if (IS_ERR(err_ptr)) {
    // 出错处理
    printk("Error occurred: %ld\n", err);
}

在这个例子中,some_function() 返回一个指针。我们使用 PTR_ERR 宏将指针 err_ptr 转换为错误码 err。然后,我们使用 IS_ERR 宏检查 err_ptr 是否表示一个错误。如果是,我们可以从 err 中获得错误码,并进行相应的错误处理。

Makefile文件编写
/* 1. 定义Linux内核源码的目录路径 */
KERNEL_DIR = /home/book/100ask_imx6ull-sdk/Linux-4.9.88

/* 2.  声明需要编译的内核模块文件,将编译hello_drv.c驱动程序 */
obj-m += hello_drv.o

all:
    /* 3. 编译内核模块
     * C -指定内核源码目录,在这个目录下执行编译。
     * M -指定模块源码目录(当前目录),使得编译系统能够找到hello_drv.c文件。
     */
    make -C $(KERNEL_DIR) M=`pwd` modules
    /* 4. 跨平台编译用户空间测试程序*/
    $(CROSS_COMPILE)gcc hello_drv_test.c -o hello_drv_test

clean:
    /* 5.删除驱动文件及测试文件 */
    make -C $(KERNEL_DIR) M= `pwd` modules clean
    rm -rf modules.order
    rm -f hello_drv_test

Makefile解读

在这个Makefile中,make -C $(KERNEL_DIR) M=pwd modules 命令是用于在内核源码目录下编译内核模块的。

  • make -C $(KERNEL_DIR): 这部分指定了make命令的工作目录是$(KERNEL_DIR),也就是内核源码的路径。所有的编译和链接操作将在这个目录下进行。
  • M=pwd: 这个部分通过M选项指定了模块源码目录。pwd命令用于获取当前目录的路径,这样make就知道了在哪里可以找到hello_drv.c等源代码文件。
  • modules: 这个部分告诉make命令只编译内核模块

因此,当执行make -C $(KERNEL_DIR) M=pwd modules时,make命令会在内核源码目录下进行编译,但是它会把当前目录当作一个模块源码目录,这样在编译时就能找到当前目录下的驱动文件(例如hello_drv.c),并将其编译成内核模块。

obj-m是什么意思?

在Linux内核的Makefile中,obj-m 是一个变量,用于指定构建的目标是一个外部模块(out-of-tree module),而不是构建内核的一部分。外部模块是指不随内核源代码一起发布的模块,而是在内核外单独编写的、针对内核接口编写的代码。

obj-m 变量的主要作用是告诉内核构建系统哪些文件是外部模块的源文件,这些源文件将会被编译成内核模块(.ko文件)。这个变量通常在内核的顶层Makefile或者外部模块的Makefile中定义。

在一个外部模块的Makefile中,你通常会有类似以下的定义:

obj-m += mymodule1.o mymodule2.o

这里,mymodule1.o 是外部模块的源文件,它将会被编译成一个内核模块。使用 obj-m += mymodule1.omymodule1.o 添加到 obj-m 变量中,告诉内核构建系统将其编译为一个内核模块。

在执行 make 命令时,内核构建系统会根据 obj-m 变量的定义,将指定的源文件编译成模块。生成的模块文件(.ko文件)将会放在当前目录下,可以通过 insmodmodprobe 命令将其加载到内核中。

执行make后,编译生成的文件

.ko模块文件

.ko 文件是Linux内核模块的二进制文件。在Linux系统中,内核模块是一种可以动态加载到内核中并在运行时卸载的软件组件。这种动态加载的机制使得系统可以在不重新启动的情况下扩展或修改内核的功能。

1.3 驱动程序加载

hello_drv.ko驱动程序和hello_drv_test测试上传至imx6ull开发板

安装驱动
insmod hello_drv.ko

查看驱动是否安装成功

cat /proc/devices | grep hello

hello驱动安装成功,内核分配的主设备号位245

在内核模块中也可以看到hello模块(Linux中驱动也是内核模块)

cat /proc/modules | grep hello

在Linux系统中,/proc/devices 文件用于显示当前系统中注册的设备和它们的主设备号。/proc/modules 文件则用于显示当前系统中加载的内核模块。在你的情况下:

  1. /proc/devices 中的输出:

    245 hello
    

    这表示设备号 245 对应着一个名为 hello 的设备。这是你的字符设备驱动在内核中注册成功后的结果。

  2. /proc/modules 中的输出:

    hello_drv 3941 0 - Live 0x7f00f000 (O)
    

    这表示你的 hello_drv.ko 模块已经成功加载到内核中。3941 是模块的大小(以字节为单位),0 表示没有其他模块依赖于它,0x7f00f000 是模块的加载地址,(O) 表示这是一个Out-of-Tree模块,即不是内核的一部分,而是外部加载的。

加载驱动后,系统会自动分配一个主设备号(在这个例子中为 245),并且你的设备就可以在 /dev/hello 目录下找到。你可以使用该设备进行读写操作,这些读写操作会通过你在驱动程序中定义的 hello_drv_readhello_drv_write 函数来处理。

hello设备结点与hello_drv内核模块之间的联系

/dev/hello是一个设备结点,hello_drv是一个驱动模块。/dev/hello 是用户空间应用程序与内核空间字符设备通信的接口。当你用户空间打开 /dev/hello 文件时,对于hello文件的读写都会找到其关联的内核模块hello_drv的读写文件!

测试驱动

将编译的驱动测试程序可执行文件上传至开发板

  • 写数据

    ./hello_drv_test -w china
    
  • 读数据

    ./hello_drv_test -r
    

卸载驱动

卸载字符设备驱动模块hello_drv

rmmod hello_drv

./images

1.4 驱动程序相关知识

驱动程序出入口函数

2. LED驱动程序

2.1 简单的LED驱动程序

驱动程序

led_drv.c驱动程序

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/delay.h>
#include <linux/poll.h>
#include <linux/mutex.h>
#include <linux/wait.h>
#include <linux/uaccess.h>
#include <linux/device.h>
#include <asm/io.h>

static int led_open(struct inode *node, struct file *flip);

static ssize_t led_write(struct file *filp, const char __user *buf,
            size_t count, loff_t *ppos);

/* registers */
// IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 地址:0x02290000 + 0x14
static volatile unsigned int *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3;

// GPIO5_GDIR 地址:0x020AC004; 
static volatile unsigned int *GPIO5_GDIR;

//GPIO5_DR 地址:0x020AC000;设置输出引脚的电平
static volatile unsigned int *GPIO5_DR;

/* 1. 确定主设备号 */
static int major = 0;
static const char *DEVICE_NAME = "hz_led";
static struct class *led_class;
static dev_t devt;

/* 2. 自定义file_operations */
static const struct file_operations led_fops = {
    .owner = THIS_MODULE,
    .open = led_open,
    .write = led_write,
};

/* 3. 实现设备操作函数 */
static ssize_t led_write(struct file *filp, const char __user *buf,
            size_t count, loff_t *ppos)
{
    printk("led_write: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);

    char val;
    /* copy_from_user: get data from userspace */
    copy_from_user(&val, buf, 1);

    if(val)
    {
        // 设置gpio引脚,低电平打开led
        *GPIO5_DR &= ~(1 << 3);
        printk("debug led_write: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);
        printk("%ld", *GPIO5_DR);
    } 
    else
    {
        // 高电平关闭led
        *GPIO5_DR |= (1 << 3);
        printk("%ld", *GPIO5_DR);
    }

    printk("debug led_write: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);

    return 1;
}

static int led_open(struct inode *node, struct file *flip)
{
    printk("led_open: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);
    // 使能gpio
    *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 &= ~0xf;   /*低4位清零*/
    *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 |= 0x5;

    *GPIO5_GDIR |= (1 << 3);

    return 0;
}

/* 4. 定义入口函数 */
static int __init led_init(void)
{
    printk("%s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);

    int err;
    struct device *dev;

    /* 入口函数中将GPIO的物理地址映射为虚拟地址 */
    IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = ioremap(0x02290000 + 0x14, 4);

    GPIO5_GDIR = ioremap(0x020AC004, 4);

    GPIO5_DR = ioremap(0x020AC000, 4);

    /* 注册驱动程序:major, device_name,        fops */
    major = register_chrdev(major, DEVICE_NAME, &led_fops);
    if(major < 0) {
        return major;
    }

    /* 创建模块类 */
    led_class = class_create(THIS_MODULE, "led_class");
    err = PTR_ERR(led_class);
    if(IS_ERR(led_class))
    {
        printk("led_class err: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);
        unregister_chrdev(major, DEVICE_NAME);
        return err;
    }

    /* 根据模块类,创建设备结点 */
    devt = MKDEV(major, 0);
    dev = device_create(led_class, NULL, devt, NULL, DEVICE_NAME);
    printk("device init name is: %s\n", dev->init_name);

    return 0;
}

/* 5. 定义出口函数 */
static void __exit led_exit(void)
{
    printk("%s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);

    iounmap(IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3);
    iounmap(GPIO5_GDIR);
    iounmap(GPIO5_DR);

    device_destroy(led_class, devt);
    class_destroy(led_class);
    unregister_chrdev(major, DEVICE_NAME);
}

module_init(led_init);
module_exit(led_exit);
MODULE_LICENSE("GPL");
测试程序
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>

/**
 * led_drv_test /dev/hz_led on
 * led_drv_test /dev/hz_led off
 */
int main(int argc, char **argv)
{
    int fd;
    char status = 0;

    if(argc!= 3)
    {
        printf("Usage %s <dev> <on|off>\n", argv[0]);
        printf("  eg: %s /dev/hz_led on\n", argv[0]);
        printf("  eg: %s /dev/hz_led off\n", argv[0]);
        return -1;
    }

    /* open device */
    fd = open(argv[1], O_RDWR);
    if(fd < 0)
    {
        printf("can not open %s\n", argv[1]);
        return -1;
    }

    /* write device */
    if(strcmp(argv[2], "on") == 0)
    {
        status = 1;
    }
    write(fd, &status, 1);

    return 0;
}

2.2 LED驱动程序相关寄存器

LED硬件原理图

imx6ull开发板原理图中搜索LED,可以找到LED灯的硬件原理图。从图中可以看到LED2连接到GPIO5_3接口上,即GPIO5的第3个引脚上。

IOMUXC引脚复用模式控制

GPIO5_3引脚使用IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3寄存器控制引脚的复用,当低3位为101时,引脚用作gpio

所以驱动LED2时,需要设置该寄存器低3位,寄存器的地址为:0x02290000 + 0x14:

IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = ioremap(0x02290000 + 0x14, 4);

*IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 &= ~0xf;   /*低4位清零*/
*IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 |= 0x5;

GPIO相关寄存器

GPIO模块如下图所示,其中涉及三个寄存器:GDIR,GPIO_DR,GPIO_PSR

  1. GDIR:设置引脚的输出方向,每位对应着一个引脚,1为output,0为input

    GPIO5_GDIR的地址为Base address + 0x4,

  1. GPIO_DR:设置输出引脚的电平,1为高电平,0为低电平。

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

  • GPIO_PSR:读取引脚的电平,每位对应着一个引脚,1为高电平,0为低电平。

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

GPIO5的基地址可以在芯片手册的chapter2:Memory Maps中查到:

GPIO5 base adderss = 0x020AC000

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

GPIO编程
  1. 读GPIO
  • 设置CCM_CCGRx寄存器中某位使能对应的GPIO模块, // imx6ull默认使能

  • 设置IOMUX来选择引脚用于GPIO

  • 设置GPIOx_GDIR中某位为0,把该引脚设置为输入功能

  • 读GPIOx_DR或GPIOx_PSR得到某位的值

  1. 写GPIO
  • 设置CCM_CCGRx寄存器中某位使能对应的GPIO模块, // imx6ull默认使能

  • 设置IOMUX来选择引脚用于GPIO

  • 设置GPIOx_GDIR中某位为1,把该引脚设置为输出功能

  • 写GPIOx_DR某位的值

2.3 面向对象的LED驱动程序

将具体芯片代码从驱动程序中剥离出来

由于驱动程序需要支持不同种类的芯片,所以需要将程序与操作芯片寄存器的地方解耦,使用分层思想将操作寄存器的部分抽离出来,由开发板自己来实现

在上述的驱动程序中,led_writeled_open里具体操纵了GPIO的寄存器,需要将这两个函数里的寄存器操作封装起来,这样将具体的芯片操作剥离出来,具体的寄存器操作由芯片供应商提供!

static ssize_t led_write(struct file *filp, const char __user *buf,
            size_t count, loff_t *ppos);

static int led_open(struct inode *node, struct file *flip);

led_opr.h文件中抽象出一个操作led寄存器的结构体led_operations的结构体:

#ifndef _LED_OPR_H
#define _LED_OPR_H

/* led操作合集,结构体成员为函数指针 */
struct led_operations {
    int num;
    int (*init) (int which);    /* 初始化led相关寄存器,which-哪个led */
    int (*ctrl) (int which, char status);    /* 控制led, status-on/off */
    int (*close) (void);    /* 将映射的虚拟地址释放掉 */ 
};

/* 获取led操作集,由头文件使用者自己实现 */
struct led_operations *get_board_led_opr(void);

#endif

其中init函数用来初始化寄存器,ctrl用来具体的操纵GPIO相关寄存器。使用单板时,需要实现这两个函数。

对于imx6ull开发板,在board_imx6ulll_led.c中实现具体的init函数和ctrl函数,实现get_board_led_opr函数来向外界提供这两个函数,close用来释放虚拟内存。

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/delay.h>
#include <linux/poll.h>
#include <linux/mutex.h>
#include <linux/wait.h>
#include <linux/uaccess.h>
#include <linux/device.h>
#include <asm/io.h>

#include "led_opr.h"

/* 单板示例程序,实现具体的led控制功能*/

static volatile unsigned int *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3;

static volatile unsigned int *GPIO5_GDIR;

static volatile unsigned int *GPIO5_DR;

/* 初始化led寄存器, which-哪个led*/
static int board_demo_led_init (int which)
{
	printk("board demo led %d init: %s, %s, line:%d\n", which , __FILE__, __FUNCTION__, __LINE__);
    
    if(which == 0)
    {
        IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = ioremap(0x02290000 + 0x14, 4);
        GPIO5_GDIR = ioremap(0x020AC004, 4);
        GPIO5_DR = ioremap(0x020AC000, 4);
    }

    /* 使能gpio */
    *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 &= ~0xf;
    *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 |= 0x5;

    *GPIO5_GDIR |= (1 << 3);

    return 0;
}

/* 控制led on/off */
static int board_demo_led_ctrl (int which, char status)
{
	printk("board demo led %d ctrl: %s, %s, line:%d\n", which , __FILE__, __FUNCTION__, __LINE__);
    
    if(which == 0)
    {
        if(status)
        {
            /* 设置gpio引脚,低电平打开led 011 */
            *GPIO5_DR &= ~(1 << 3);
        }
        else
        {
            /* 高电平关闭led, 100 */
            *GPIO5_DR |= (1 << 3);
        }
    }
    
    return 0;
}

/* 释放映射的虚拟内存 */
static int board_demo_led_close (void)
{
	printk("board demo close: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);
    
    iounmap(IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3);
    iounmap(GPIO5_GDIR);
    iounmap(GPIO5_DR);

    return 0;
}

static struct led_operations board_demo_led_opr = {
    .num = 1,
    .init = board_demo_led_init,
    .ctrl = board_demo_led_ctrl,
    .close = board_demo_led_close,
};

struct led_operations *get_board_led_opr(void)
{
    return &board_demo_led_opr;
}

led_drv.cled_open函数和led_write函数调用board_imx6ulll_ledl.c中的initctrl函数即可。

#include "led_opr.h"

static struct led_operations *p_led_opr = get_board_led_opr();

static int led_open(struct inode *node, struct file *flip)
{
	int minor;

	printk("led_open: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);
	/* 根据node获取次设备结点 */
	minor = iminor(node);
	/* 初始化led寄存器 */
	p_led_opr->init(minor);

	return 0;
}

static ssize_t led_write(struct file *filp, const char __user *buf,
			size_t count, loff_t *ppos)
{
	
	int err;
	char status;
	struct inode *inode;
	int minor;

	printk("led_write: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);

	inode = file_inode(filp);
	minor = iminor(inode) & 0x0f;

	err = copy_from_user(&status, buf, 1);

	/* 根据次设备号和status控制led*/
	p_led_opr->ctrl(minor, status);

    return 1;
}
	
分离GPIO操作

前面board_imx6ulll_led.c中只实现了一个GPIO5_3的操作,如果要操作其他的GPIOx_y的话,就需要修改board_imx6ulll_led.c,实际情况每一款芯片的 GPIO 操作都是类似的。比如:GPIO1_3GPIO5_4 这 2 个引脚接到 LED:

  1. GPIO1_3 属于第 1 组,即 GPIO1

    a) 有方向寄存器 DIR、数据寄存器 DR 等,基础地址是addr_base_addr_gpio1
    b) 设置为 output 引脚:修改GPIO1的 DIR 寄存器的 bit3。
    c) 设置输出电平:修改 GPIO1 的 DR 寄存器的 bit3。

  2. GPIO5_4 属于第 5 组,即 GPIO5
    a) 有方向寄存器 DIR、数据寄存器 DR 等,基础地址是addr_base_addr_gpio5

    b) 设置为 output 引脚:修改 GPIO5 的 DIR 寄存器的 bit4。
    c) 设置输出电平:修改 GPIO5 的 DR 寄存器的 bit4。

既然引脚操作那么有规律,并且这是跟主芯片相关的,那可以针对该芯片写出比较通用的硬件操作代码。

比如board_A.c使用芯片 chipY,那就可以写出:chipY_gpio.c,它实现芯片 Y 的 GPIO 操作,适用于芯片 Y 的所有 GPIO 引脚。使用时,我们只需要在 board_A_led.c 中指定使用哪一个引脚即可。程序结构如下:

外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

以面向对象的思想,在 board_A_led.c 中实现 led_resouce 结构体,它定义“资源”–>要用哪一个引脚。
chipY_gpio.c 中仍是实现 led_operations 结构体,它要写得更完善,支持所有 GPIO。

led_resource.h头文件中抽象led_resource结构体,用来定义操作GPIO的组和引脚,代码如下:

#ifndef _LED_RESOURCES_H
#define _LED_RESOURCES_H

#define GROUP(x) (x >> 16)
#define PIN(x) (x & 0xffff)
#define GROUP_PIN(g, p) ((g << 16) | (p))

/*
 * led资源:定义gpio引脚
 * eg GPIO5_3 => group 5, pin 3
 * bit[31:16] => group, bit[15:0] => pin
 */
struct led_resources {
    int pin;
};

struct led_resources *get_led_resources(void);

#endif

board_imx6ull_led.c中实现led_resource.h头文件中定义的资源(GPIO引脚):

/*
 * 实现需要操作的led资源,也就是定义引脚
 */
#include "led_resources.h"

static struct led_resources board_imx6ull_led = {
    .pin = GROUP_PIN(5, 3),     /* GPIO5_3 */
};

struct led_resources *get_led_resources(void)
{
    return &board_imx6ull_led;    
}

chip_imx6ull_gpio.c中抽象GPIO操作,led_resource.h中定义的不同的GPIO引脚,就在该代码里对应着响应的GPIO操作。

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/delay.h>
#include <linux/poll.h>
#include <linux/mutex.h>
#include <linux/wait.h>
#include <linux/uaccess.h>
#include <linux/device.h>
#include <asm/io.h>

#include "led_opr.h"
#include "led_resources.h"

static struct led_resources *led_imx6ull_src;

/* imx6ull 芯片通用gpio操作 */

static volatile unsigned int *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3;

static volatile unsigned int *GPIO5_GDIR;

static volatile unsigned int *GPIO5_DR;

/* 初始化led寄存器, which-哪个led*/
static int board_demo_led_init (int which)
{
    int val;

	printk("chip imx6ull gpio led %d init: %s, %s, line:%d\n", which , __FILE__, __FUNCTION__, __LINE__);

    if(!led_imx6ull_src)
    {
        led_imx6ull_src = get_led_resources();
    }
    
    switch (GROUP(led_imx6ull_src->pin))
    {
        case 0:
            printk("init pin of group 0 ... \n");
            break;
        case 1:
            printk("init pin of group 1 ... \n");
            break;
        case 2:
            printk("init pin of group 2 ... \n");
            break;
        case 3:
            printk("init pin of group 3 ... \n");
            break;
        case 4:
            printk("init pin of group 4 ... \n");
            break;
        case 5:
            printk("init pin of group 5 ... \n");
            if(which == 0)
            {
                IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = ioremap(0x02290000 + 0x14, 4);
                GPIO5_GDIR = ioremap(0x020AC004, 4);
                GPIO5_DR = ioremap(0x020AC000, 4);
            }

            val = *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3;
            val &= ~0xf;
            val |= 0x5;
            *IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3 = val;

            *GPIO5_GDIR |= (1 << 3);
            break;
        default:
            break;
    }
    
    return 0;
}

/* 控制led on/off */
static int board_demo_led_ctrl (int which, char status)
{
    printk("chip imx6ull gpio led %d init: %s, %s, line:%d\n", which , __FILE__, __FUNCTION__, __LINE__);
    
    switch (GROUP(led_imx6ull_src->pin))
    {
        case 0:
            printk("init pin of group 0 ... \n");
            break;
        case 1:
            printk("init pin of group 1 ... \n");
            break;
        case 2:
            printk("init pin of group 2 ... \n");
            break;
        case 3:
            printk("init pin of group 3 ... \n");
            break;
        case 4:
            printk("init pin of group 4 ... \n");
            break;
        case 5:
            printk("init pin of group 5 ... \n");
            if(which == 0)
            {
                if(status)
                {
                    /* 设置gpio引脚,低电平打开led 011 */
                    *GPIO5_DR &= ~(1 << 3);
                }
                else
                {
                    /* 高电平关闭led, 100 */
                    *GPIO5_DR |= (1 << 3);
                }
            }
            break;
        default:
            break;
    }
    
    return 0;
}

/* 释放映射的虚拟内存 */
static int board_demo_led_close (void)
{
	printk("board demo close: %s, %s, line:%d\n", __FILE__, __FUNCTION__, __LINE__);
    
    iounmap(IOMUXC_SNVS_SW_MUX_CTL_PAD_SNVS_TAMPER3);
    iounmap(GPIO5_GDIR);
    iounmap(GPIO5_DR);

    return 0;
}

static struct led_operations board_demo_led_opr = {
    .num = 1,
    .init = board_demo_led_init,
    .ctrl = board_demo_led_ctrl,
    .close = board_demo_led_close,
};

struct led_operations *get_board_led_opr(void)
{
    return &board_demo_led_opr;
}

led_drv.c程序不变,这里即将上一节的board_imx6ull_led.c中具体引脚对应的GPIO操作分离开来,用户再修改到其他引脚时,只需要实现led_resource.h中的GPIO引脚即可。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值