驱动DAY8

复制代码
#include <linux/init.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_gpio.h>
#include <linux/gpio.h>
#include <linux/timer.h>
/*       myled
    {
        led1-gpio=<&gpioe 10 0>;
        led2-gpio=<&gpiof 10 0>;
        led3-gpio=<&gpioe 8 0>;
    };
*/
struct device_node *dnode;
struct gpio_desc *gpiono;
struct gpio_desc *gpiono2;
struct gpio_desc *gpiono3;
struct timer_list mytimer;
struct timer_list mytimer2;
void mytimer_function(struct timer_list *timer)
{
    gpiod_set_value(gpiono, !gpiod_get_value(gpiono));
    gpiod_set_value(gpiono2, !gpiod_get_value(gpiono2));
    gpiod_set_value(gpiono3, !gpiod_get_value(gpiono3));
    mod_timer(timer, jiffies + HZ);
}

void mytimer_function2(struct timer_list *timer2)
{
    printk("hello world\n");
    mod_timer(timer2, jiffies + HZ*5);
}

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

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

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

    // 获取LED3 GPIO编号
    gpiono3 = gpiod_get_from_of_node(dnode, "led3-gpio", 0, GPIOD_OUT_LOW, NULL);
    if (IS_ERR(gpiono3))
    {
        printk("申请gpio信息失败\n");
        return -PTR_ERR(gpiono3);
    }
    // 灯亮
    //gpiod_set_value(gpiono3, 1);
    timer_setup(&mytimer, mytimer_function, 0);
    mytimer.expires = jiffies + HZ;
    add_timer(&mytimer);

    timer_setup(&mytimer2, mytimer_function2, 0);
    mytimer2.expires = jiffies + 5*HZ;
    add_timer(&mytimer2);
    return 0;
}
static void __exit mycdev_exit(void)
{
    del_timer(&mytimer);
    del_timer(&mytimer2);
    gpiod_set_value(gpiono, 0);
    // 释放GPIO编号
    gpiod_put(gpiono);
    gpiod_set_value(gpiono2, 0);
    // 释放GPIO编号
    gpiod_put(gpiono2);
    gpiod_set_value(gpiono3, 0);
    // 释放GPIO编号
    gpiod_put(gpiono3);
}
module_init(mycdev_init);
module_exit(mycdev_exit);
MODULE_LICENSE("GPL");
相关推荐
宁zz2 小时前
乌班图安装jenkins
运维·jenkins
大丈夫立于天地间3 小时前
ISIS协议中的数据库同步
运维·网络·信息与通信
cg50173 小时前
Spring Boot 的配置文件
java·linux·spring boot
暮云星影3 小时前
三、FFmpeg学习笔记
linux·ffmpeg
rainFFrain3 小时前
单例模式与线程安全
linux·运维·服务器·vscode·单例模式
GalaxyPokemon4 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
mingqian_chu4 小时前
ubuntu中使用安卓模拟器
android·linux·ubuntu
tadus_zeng4 小时前
Windows C++ 排查死锁
c++·windows
EverestVIP4 小时前
VS中动态库(外部库)导出与使用
开发语言·c++·windows