嵌入式Linux内核定时器和中断
**
一、内核定时器
** Linux 内核使用 timer_list 结构体表示内核定时器, timer_list 定义在文件include/linux/timer.h 中
struct timer_list {
struct list_head entry;
unsigned long expires;
struct tvec_base *base;
void (*function)(unsigned long);
unsigned long data;
int slack;
.
.
.
};
struct timer_list my_timer;
void init_timer(struct timer_list *timer);
void add_timer(struct timer_list *timer);
int del_timer(struct timer_list * timer);
int del_timer_sync(struct timer_list *timer);
int mod_timer(struct timer_list *timer, unsigned long expires);
内核定时器使用流程
struct timer_list timer;
void function(unsigned long arg)
{
mod_timer(&dev->timertest, jiffies + msecs_to_jiffies(2000));
}
void init(void)
{
init_timer(&timer);
timer.function = function;
timer.expires=jffies + msecs_to_jiffies(2000);
timer.data = (unsigned long)&dev;
add_timer(&timer);
}
void exit(void)
{
del_timer(&timer);
del_timer_sync(&timer);
}
Linux内核短延时函数
void ndelay(unsigned long nsecs);
void udelay(unsigned long usecs);
void mdelay(unsigned long mseces);
void msleep(unsigned int millisecs);
void ssleep(unsigned int millisecs);
unsigned long msleep(unsigned int millisecs);
sleep_on_timeout(wait_queue_head_t *q,unsigned long timeout);
interruptible_sleep_on_timeout(wait_queue_head_t *q,unsigned long timeout);
二、中断
Linux中断API函数
int request_irq(unsigned int irq,irq_handler_t handler,unsigned long flags,const char *name,void *dev);
irqreturn_t (*irq_handler_t) (int, void *);
enum irqreturn {
IRQ_NONE = (0 << 0),
IRQ_HANDLED = (1 << 0),
IRQ_WAKE_THREAD = (1 << 1),
};
typedef enum irqreturn irqreturn_t;
return IRQ_RETVAL(IRQ_HANDLED);
void enable_irq(unsigned int irq);
void disable_irq(unsigned int irq);
void disable_irq_nosync(unsigned int irq);
local_irq_enable()
local_irq_disable()
local_irq_save(flags)
local_irq_restore(flags)
中断上半部与下半部 上半部:上半部就是中断处理函数,那些处理过程比较快,不会占用很长时间的处理就可以放在上半部完成。 下半部:如果中断处理过程比较耗时,那么就将这些比较耗时的代码提出来,交给下半部去执行,这样中断处理函数就会快进快出。
使用: ①、如果要处理的内容不希望被其他中断打断,那么可以放到上半部。 ②、如果要处理的任务对时间敏感,可以放到上半部。 ③、如果要处理的任务与硬件有关,可以放到上半部 ④、除了上述三点以外的其他任务,优先考虑放到下半部。
下半部实现的四种方式
tasklet、工作队列、软中断、threaded_irq…后续整理四者的特点
软中断的使用
struct softirq_action
{
void (*action)(struct softirq_action *);
};
void open_softirq(int nr, void (*action)(struct softirq_action *));
void raise_softirq(unsigned int nr);
tasklet的使用
struct tasklet_struct
{
struct tasklet_struct *next;
unsigned long state;
atomic_t count;
void (*func)(unsigned long);
unsigned long data;
};
struct tasklet_struct tasklet;
void tasklet_init(struct tasklet_struct *t.void (*func)(unsigned long),unsigned long data);
DECLARE_TASKLET(name, func, data);
void tasklet_schedule(struct tasklet_struct *t);
struct tasklet_struct testtasklet;
void testtasklet_func(unsigned long data)
{
}
irqreturn_t test_handler(int irq, void *dev_id)
{
......
tasklet_schedule(&testtasklet);
......
}
static int __init xxxx_init(void)
{
......
tasklet_init(&testtasklet, testtasklet_func, data);
request_irq(xxx_irq, test_handler, 0, "xxx", &xxx_dev);
......
}
工作队列的使用
struct work_struct {
atomic_long_t data;
struct list_head entry;
work_func_t func;
};
#define INIT_WORK(_work, _func)
#define DECLARE_WORK(n, f)
bool schedule_work(struct work_struct *work)
*/
struct work_struct testwork;
void testwork_func_t(struct work_struct *work);
{
}
irqreturn_t test_handler(int irq, void *dev_id)
{
......
schedule_work(&testwork);
......
}
static int __init xxxx_init(void)
{
......
INIT_WORK(&testwork, testwork_func_t);
request_irq(xxx_irq, test_handler, 0, "xxx", &xxx_dev);
......
}
按键中断例程
设备树添加:
gpio_key {
#address-cells = <1>;
#size-cells = <1>;
compatible = "atkalpha-key";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_key>;
key-gpio = <&gpio1 18 GPIO_ACTIVE_LOW>;
interrupt-parent = <&gpio1>;
interrupts = <18 IRQ_TYPE_EDGE_BOTH>;
status = "okay";
};
key_drv_int.c
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/ide.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/gpio.h>
#include <linux/cdev.h>
#include <linux/device.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_gpio.h>
#include <linux/semaphore.h>
#include <linux/timer.h>
#include <linux/of_irq.h>
#include <linux/irq.h>
#include <asm/mach/map.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#define KEYVALUE 0X01
#define INVAKEY 0XFF
#define KEY_NUM 1
struct irq_keydesc {
int gpio;
int irqnum;
unsigned char key_value;
char name[10];
irqreturn_t (*handler)(int,void *);
};
struct newchrkey_dev{
struct device_node *dev_nod;
int key_gpio;
int major;
int minor;
dev_t devid;
struct cdev cdev;
struct device *device;
struct class *cls;
struct irq_keydesc irq_key[KEY_NUM];
struct timer_list timer;
unsigned char curkeynum;
atomic_t my_atomic;
atomic_t release_key;
};
struct newchrkey_dev *newchrkey;
static irqreturn_t key0_handler(int irq,void *dev_id){
struct newchrkey_dev *dev = (struct newchrkey_dev *)dev_id;
dev->curkeynum = 0;
dev->timer.data = (volatile long)dev_id;
mod_timer(&dev->timer, jiffies + msecs_to_jiffies(10));
return IRQ_RETVAL(IRQ_HANDLED);
}
void timer_function(unsigned long arg){
unsigned char value;
unsigned char num;
struct irq_keydesc *irq_key;
struct newchrkey_dev *dev = (struct newchrkey_dev *)arg;
num = dev->curkeynum;
irq_key = &dev->irq_key[num];
value = gpio_get_value(irq_key->gpio);
if(value == 0){
atomic_set(&dev->my_atomic,irq_key->key_value);
}else{
atomic_set(&dev->my_atomic, 0x80|irq_key->key_value);
atomic_set(&dev->release_key, 1);
}
}
static int keyio_init(void){
unsigned char i=0;
char name[10];
int ret = 0;
newchrkey->dev_nod = of_find_node_by_path("/gpio_key");
if(newchrkey->dev_nod == NULL){
printk("can not find gpio_key int dts!!\n");
return -EINVAL;
}else{
printk("gpio_key have been found!!\n");
}
for(i=0;i<KEY_NUM;i++){
newchrkey->irq_key[i].gpio = of_get_named_gpio(newchrkey->dev_nod, "key-gpio", i);
if(newchrkey->irq_key[i].gpio < 0){
printk("can not get key%d \n");
}
}
for(i=0;i<KEY_NUM;i++){
printk("newchrkey->irq_key[%d].gpio = %d\n",i,newchrkey->irq_key[i].gpio);
}
for(i=0;i<KEY_NUM;i++){
memset(newchrkey->irq_key[i].name,0,sizeof(name));
sprintf(newchrkey->irq_key[i].name,"key%d",i);
gpio_request(newchrkey->irq_key[i].gpio, name);
gpio_direction_input(newchrkey->irq_key[i].gpio);
newchrkey->irq_key[i].irqnum = irq_of_parse_and_map(newchrkey->dev_nod, i);
#if 0
newchrkey->irq_key[i].irqnum = gpio_to_irq(newchrkey->irq_key[i].gpio);
#endif
printk("key%d:gpio=%d,irq_num=%d \n",i,newchrkey->irq_key[i].gpio,newchrkey->irq_key[i].irqnum);
}
newchrkey->irq_key[0].handler = key0_handler;
newchrkey->irq_key[0].key_value = KEYVALUE;
for(i=0;i<KEY_NUM;i++){
ret = request_irq(newchrkey->irq_key[i].irqnum, newchrkey->irq_key[i].handler, IRQF_TRIGGER_FALLING|IRQF_TRIGGER_RISING, newchrkey->irq_key[i].name, newchrkey);
if(ret<0){
printk("irq %d request failed!!\n",newchrkey->irq_key[i].irqnum);
return -EFAULT;
}
}
init_timer(&newchrkey->timer);
newchrkey->timer.function = timer_function;
return 0;
}
static int key_drv_open (struct inode *inod, struct file *filp){
printk("----------------%s---------------\n",__FUNCTION__);
filp->private_data = newchrkey;
return 0;
}
static ssize_t key_drv_read (struct file *filp, char __user *buf, size_t cnt, loff_t *offt){
int ret;
unsigned char keyvalue = 0;
unsigned char releasekey = 0;
struct newchrkey_dev *dev = (struct newchrkey_dev *)filp->private_data;
keyvalue = atomic_read(&dev->my_atomic);
releasekey = atomic_read(&dev->release_key);
if (releasekey) {
if (keyvalue & 0x80) {
keyvalue &= ~0x80;
ret = copy_to_user(buf, &keyvalue, sizeof(keyvalue));
} else {
goto data_error;
}
atomic_set(&dev->release_key, 0);
} else {
goto data_error;
}
return 0;
data_error:
return -EINVAL;
}
static ssize_t key_drv_write (struct file *filp, const char __user *buf, size_t cnt, loff_t *offt){
printk("----------------%s---------------\n",__FUNCTION__);
return 0;
}
static int key_drv_release (struct inode *inod, struct file *filp){
printk("----------------%s---------------\n",__FUNCTION__);
atomic_inc(&newchrkey->my_atomic);
return 0;
}
static struct file_operations newchrkey_fops = {
.owner = THIS_MODULE,
.open = key_drv_open,
.read = key_drv_read,
.write = key_drv_write,
.release = key_drv_release,
};
static int __init key_drv_init(void){
printk("----------------%s---------------\n",__FUNCTION__);
newchrkey = (struct newchrkey_dev *)kzalloc(sizeof(struct newchrkey_dev), GFP_KERNEL);
if(newchrkey == NULL){
printk("newchrkey kzalloc failed!!!\n");
return -1;
}
atomic_set(&newchrkey->my_atomic,INVAKEY);
int ret;
if(newchrkey->major){
newchrkey->devid = MKDEV(newchrkey->major, 0);
register_chrdev_region(newchrkey->devid, 1, "Pf_key");
}else{
printk("register chrdev!!\n");
alloc_chrdev_region(&newchrkey->devid, 0, 1, "Pf_key");
newchrkey->major = MAJOR(newchrkey->devid);
newchrkey->minor = MINOR(newchrkey->devid);
printk(">>>>>>>>>>>register chrdev!!\n");
}
printk("major: %d ,minor: %d \n",newchrkey->major,newchrkey->minor);
newchrkey->cdev.owner = THIS_MODULE;
cdev_init(&newchrkey->cdev, &newchrkey_fops);
cdev_add(&newchrkey->cdev, newchrkey->devid, 1);
newchrkey->cls = class_create(THIS_MODULE, "Pf_key");
if(IS_ERR(newchrkey->cls)){
return PTR_ERR(newchrkey->cls);
}
newchrkey->device = device_create(newchrkey->cls, NULL, newchrkey->devid, NULL, "Pf_key");
if(IS_ERR(newchrkey->device)){
return PTR_ERR(newchrkey->device);
}
atomic_set(&newchrkey->my_atomic,INVAKEY);
atomic_set(&newchrkey->release_key,0);
keyio_init();
return 0;
}
static void __exit key_drv_exit(void){
printk("----------------%s---------------\n",__FUNCTION__);
unsigned int i=0;
del_timer(&newchrkey->timer);
for(i=0;i<KEY_NUM;i++){
free_irq(newchrkey->irq_key[i].irqnum, newchrkey);
}
cdev_del(&newchrkey->cdev);
unregister_chrdev_region(newchrkey->devid, 1);
device_destroy(newchrkey->cls, newchrkey->devid);
class_destroy(newchrkey->cls);
kfree(newchrkey);
}
module_init(key_drv_init);
module_exit(key_drv_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("PEIFENG");
key_app.c
#include "stdio.h"
#include "unistd.h"
#include "sys/types.h"
#include "sys/stat.h"
#include "fcntl.h"
#include "stdlib.h"
#include "string.h"
#define KEYVALUE 0XF0
#define INVAKEY 0X00
int main(int argc, char *argv[])
{
int fd, ret;
char *filename;
int keyvalue;
if(argc != 2){
printf("Error Usage!\r\n");
return -1;
}
filename = argv[1];
fd = open(filename, O_RDWR);
if(fd < 0){
printf("file %s open failed!\r\n", argv[1]);
return -1;
}
while(1) {
ret = read(fd, &keyvalue, sizeof(keyvalue));
if (ret < 0) {
}else{
if(keyvalue)
printf("key value = %#X\r\n",keyvalue);
}
}
ret= close(fd);
if(ret < 0){
printf("file %s close failed!\r\n", argv[1]);
return -1;
}
return 0;
}
|