驱动周末作业

test.c

#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include "head.h"

int main(int argc, char const *argv[])
{
    char buf[128] = {0};
    int a;
    char b[10];
    //char str[100] = "/dev/mycdev0";
    // printf("0(led1) 1(led2) 2(led3)\n");
    
    while (1)
    {
        strcpy(buf, "/dev/mychrdev");
        printf("0(led1) 1(led2) 2(led3)\n");
        scanf("%s", b);
        strcat(buf, b);
        //printf("%s\n", str);
        int fd = open(buf, O_RDWR);
        printf("%d\n", fd);

        if (fd < 0)
        {
            printf("打开设备文件失败\n");
            exit(-1);
        }
        printf("打开设备文件成功\n");

        //从终端读取
        printf("请输入要实现的功能\n");
        printf("0(关灯)1(开灯)\n");
        printf("请输入> ");
        scanf("%d", &a);
        switch (a)
        {
        case 1:
            ioctl(fd, LED_ON);
            break;
        
        case 0:
            ioctl(fd, LED_OFF);
            break;
        }
        //write(fd, buf, sizeof(buf));//将数据传递给内核
        // memset(buf, 0, sizeof(buf));//清空数组
        // read(fd, buf, sizeof(buf));//将内核空间数据传递到用户
        // printf("buf:%s\n", buf);
        close(fd);

        bzero(buf, sizeof(buf));
    }
    
    return 0;
}

mycdev.c

#include <linux/init.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/uaccess.h>
#include <linux/io.h>
#include <linux/device.h>
#include <linux/cdev.h>
#include <linux/slab.h>
#include <linux/of.h>
#include <linux/of_gpio.h>
#include <linux/gpio.h>
#include <linux/timer.h>
#include "head.h"

struct cdev *cdev;
unsigned int major = 0;
unsigned int minor = 0;
struct class *cls;
dev_t devno;
struct device *dev;

struct gpio_desc *led1_gpiono;
struct gpio_desc *led2_gpiono;
struct gpio_desc *led3_gpiono;

struct gpio_desc *gpiono[3];
struct timer_list mytimer;

struct device_node *dnode;

void mytimer_function(struct timer_list *timer)
{
    // //LED1状态取反
    // gpiod_set_value(gpiono[0], !gpiod_get_value(gpiono[0]));

    // //LED2状态取反
    // gpiod_set_value(gpiono[1], !gpiod_get_value(gpiono[1]));

    // //LED3状态取反
    // gpiod_set_value(gpiono[2], !gpiod_get_value(gpiono[2]));

    printk("hello world\n");

    //再次启用定时器
    mod_timer(timer, jiffies+5*HZ);
}

// 封装操作方法
int mycdev_open(struct inode *inode, struct file *file)
{
    int min = MINOR(inode->i_rdev); //获取打开的文件的次设备号
    file->private_data = (void *)min;
    printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);
    return 0;
}

long mycdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
    int min = (int)file->private_data; //获取到文件的次设备号
    switch (min)
    {
    case 0: //操作LED1
        switch (cmd)
        {
        case LED_ON: //开灯
            //vir_led1->ODR |= (0x1 << 10);
            gpiod_set_value(gpiono[0], 1);
            break;
        
        case LED_OFF: //关灯
            //vir_led1->ODR &= (~(0x1 << 10));
            gpiod_set_value(gpiono[0], 0);
            break;
        }
        break;
    
    case 1: //操作LED2
        switch (cmd)
        {
        case LED_ON: //开灯
            //vir_led2->ODR |= (0x1 << 10);
            gpiod_set_value(gpiono[1], 1);
            break;
        
        case LED_OFF: //关灯
            //vir_led2->ODR &= (~(0x1 << 10));
            gpiod_set_value(gpiono[1], 0);
            break;
        }
        break;

    case 2: //操作LED3
        switch (cmd)
        {
        case LED_ON: //开灯
            //vir_led3->ODR |= (0x1 << 8);
            gpiod_set_value(gpiono[2], 1);
            break;
        
        case LED_OFF: //关灯
            //vir_led3->ODR &= (~(0x1 << 8));
            gpiod_set_value(gpiono[2], 0);
            break;
        }
        break;
    }

    return 0;
}

int mycdev_close(struct inode *inode, struct file *file)
{
    printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);
    return 0;
}


// 定义操作方法结构体对象
struct file_operations fops = {
    .open = mycdev_open,
    .read = mycdev_read,
    .write = mycdev_write,
    .unlocked_ioctl = mycdev_ioctl,
    .release = mycdev_close,
};
// 入口函数,安装内核模块时执行
static int __init mycdev_init(void)
{
    int ret, i;
    //1.申请一个对象空间cdev_alloc

    //解析设备树节点信息
    dnode = of_find_node_by_path("/myled");
    if (dnode == NULL)
    {
        printk("解析设备树节点失败\n");
        return -ENXIO;
    }

    cdev = cdev_alloc();
    if (cdev == NULL)
    {
        printk("申请字符设备驱动对象失败 %d \n", __LINE__);
        ret = -EFAULT; 
        goto out1;
    }
    printk("字符设备驱动对象申请成功\n");

    //2.初始化对象cdev_init
    cdev_init(cdev, &fops);
    
    //3.申请设备号 register_chrdev_region()/alloc_chrdev_region()
    if (major == 0) //动态申请
    {
        ret = alloc_chrdev_region(&devno, minor, 3, "mychrdev");
        if (ret)
        {
            printk("动态申请设备号失败 %d\n", __LINE__);
            goto out2;
        }
        major = MAJOR(devno); //根据设备号获取主设备号
        minor = MINOR(devno); //根据设备号获取次设备号
    }
    else
    {
        ret = register_chrdev_region(MKDEV(major, minor), 3, "mychrdev");
        if (ret)
        {
            printk("静态指定设备号失败\n");
            goto out2;
        }
    }
    printk("设备号申请成功\n");
    
    //4.注册驱动对象 cdev_add
    ret = cdev_add(cdev, MKDEV(major, minor), 3);
    if (ret != 0)
    {
        printk("注册字符设备驱动对象失败 %d\n", __LINE__);
        goto out3;
    }
    printk("注册字符设备驱动对象成功\n");

    //5.向上提交目录 class_create
    cls = class_create(THIS_MODULE, "mychrdev");
    if (IS_ERR(cls))
    {
        printk("向上提交目录失败 %d\n", __LINE__);
        goto out4;
    }
    printk("向上提交目录成功\n");

    //6.向上提交设备节点信息 device_create
    for (i = 0; i < 3; i++)
    {
        dev = device_create(cls, NULL, MKDEV(major, i), NULL, "mychrdev%d", i);
        if (IS_ERR(dev))
        {
            printk("向上提交设备节点失败 %d\n", __LINE__);
            goto out5;
        }
    }
    printk("向上提交设备节点成功\n");

    //获取LED1 GPIO编号
    gpiono[0] = gpiod_get_from_of_node(dnode, "led1-gpio", 0, GPIOD_OUT_LOW, NULL);
    if (IS_ERR(gpiono[0]))
    {
        printk("申请gpio信息失败\n");
        return -PTR_ERR(gpiono[0]);
    }

    //获取LED2 GPIO编号
    gpiono[1] = gpiod_get_from_of_node(dnode, "led2-gpio", 0, GPIOD_OUT_LOW, NULL);
    if (IS_ERR(gpiono[1]))
    {
        printk("申请gpio信息失败\n");
        return -PTR_ERR(gpiono[1]);
    }

    //获取LED3 GPIO编号
    gpiono[2] = gpiod_get_from_of_node(dnode, "led3-gpio", 0, GPIOD_OUT_LOW, NULL);
    if (IS_ERR(gpiono[2]))
    {
        printk("申请gpio信息失败\n");
        return -PTR_ERR(gpiono[2]);
    }

    timer_setup(&mytimer, mytimer_function, 0);
    mytimer.expires = jiffies+5*HZ;
    add_timer(&mytimer);

    //all_led_init();

    return 0;

out5:
    //将提交成功的节点信息释放
    for(--i; i >= 0; i--)
    {
        device_destroy(cls, MKDEV(major, i));
    }

    //销毁目录
    class_destroy(cls);

out4:
    cdev_del(cdev);

out3:
    unregister_chrdev_region(MKDEV(major, minor), 3);

out2:
    kfree(cdev);

out1:
    return ret;
}

// 出口函数,卸载内核模块时执行
static void __exit mycdev_exit(void)
{
    //取消地址映射
    // iounmap(vir_led1);
    // iounmap(vir_led2);
    // iounmap(vir_rcc);

    //注销定时器
    del_timer(&mytimer);

    gpiod_set_value(gpiono[0], 0);
    gpiod_set_value(gpiono[1], 0);
    gpiod_set_value(gpiono[2], 0);

    gpiod_put(gpiono[0]);
    gpiod_put(gpiono[1]);
    gpiod_put(gpiono[2]);

    //1.销毁设备节点信息
    int i;
    for (i = 0; i < 3; i++)
    {
        device_destroy(cls, MKDEV(major, i));
    }
    
    //2.销毁目录
    class_destroy(cls);

    //3.注销字符设备驱动对象
    cdev_del(cdev);

    //4.释放设备号
    unregister_chrdev_region(MKDEV(major, minor), 3);

    //5.释放申请到的字符设备驱动对象空间
    kfree(cdev);
}

// 用于声明入口函数
module_init(mycdev_init);

// 用于声明出口函数
module_exit(mycdev_exit);

// 声明当前内核模块遵循GPL协议
MODULE_LICENSE("GPL");

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值