驱动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");
相关推荐
bohu832 小时前
亚博microros小车-原生ubuntu支持系列:8-脸部检测与人脸特效
linux·opencv·ubuntu·dlib·microros·亚博
贾贾20234 小时前
配电自动化系统“三区四层”数字化架构
运维·科技·架构·自动化·能源·制造·智能硬件
小池先生6 小时前
grafana+prometheus监控linux指标
linux·grafana·prometheus
浮梦终焉6 小时前
【嵌入式】总结——Linux驱动开发(三)
linux·驱动开发·qt·嵌入式
远方 hi6 小时前
linux如何修改密码,要在CentOS 7系统中修改密码
linux·运维·服务器
练小杰7 小时前
Linux系统 C/C++编程基础——基于Qt的图形用户界面编程
linux·c语言·c++·经验分享·qt·学习·编辑器
资讯分享周7 小时前
过年远控家里电脑打游戏,哪款远控软件最好用?
运维·服务器·电脑
chaodaibing7 小时前
记录一次k8s起不来的排查过程
运维·服务器·k8s
热心网友纯白8 小时前
开源项目Lethe Windows编译过程
windows
mcupro8 小时前
提供一种刷新X410内部EMMC存储器的方法
linux·运维·服务器