驱动开发时获取相应信息:
timedev.nd = of_find_node_by_path(“/gpioled”) #查找指定节点
timedev.led_gpio = of.get_named_gpio(timerdev.nd, “led-gpio”, 0) 获取GPIO的编号
gpio_request(timedev.led_gpio, “led”)
gpio_direction_output(timedev.led_gpio,1) 设置某个GPIO为输出output,设置默认值1
gpio_set_value(timedev.led_gpio, sta) 设置某个GPIO的值
2.2 周期闪烁
linux-6.2 没有init_timer 函数,使用DEFINE_TIMER 宏进行定义。
DEFINE_TIMER(start_timer, timer_function);
其中,start_timer 为定时器的名称,timer_function 为定时器超时后的调用函数,
上述宏预编译后的结果为 主要部分为:
struct time_list start_timer = {
.function = timer_function;
}
其中,
struct time_list {
struct hlist_node entry;
unsigned long expires;
void (*function)(struct timer_list *);
u32 flags;
};
调整定时器的时间:
mod_timer(&timerdev.timer, jiffies + msecs_to_jiffies(timerdev.timeperiod));
jiffies %lu ,表示CPU目前的节拍数;
msecs_to_jiffies(int ) ms转化为 jiffies 类型;
2.3 周期间隔可调节
unlocked_ioctl = timer_unlocked_ioctl;
[1]. https://blog.csdn.net/qq_42611237/article/details/126374623
[2] https://github.com/laughing96/self-device-code/tree/main/12_timer