1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
| #include <linux/types.h> #include <linux/kernel.h> #include <linux/delay.h> #include <linux/libata.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 <asm/mach/map.h> #include <asm/uaccess.h> #include <asm/io.h> #include <linux/semaphore.h> #include <linux/timer.h>
#define TIMER_CNT 1 #define TIMER_NAME "timer" #define CLOSE_CMD (_IO(0xEF, 0x1)) #define OPEN_CMD (_IO(0xEF, 0x2)) #define SETPERIOD_CMD (_IO(0xEF, 0x3)) #define LED_ON 1 #define LED_OFF 0
struct timer_dev{ dev_t devid; struct cdev cdev; struct class *class; struct device *device; int major; int minor; struct device_node *nd; int led_gpio; int timeperiod; struct timer_list timer; spinlock_t lock; };
struct timer_dev timerdev;
static int led_init(void) { int ret = 0;
timerdev.nd = of_find_node_by_path("/gpioled"); if (timerdev.nd == NULL){ return -EINVAL; }
timerdev.led_gpio = of_get_named_gpio(timerdev.nd, "led-gpio", 0); if (timerdev.led_gpio < 0){ printk("Unable get led gpio\r\n"); return -EINVAL; }
gpio_request(timerdev.led_gpio, "led");
ret = gpio_direction_output(timerdev.led_gpio, 1); if (ret < 0){ printk("cannot set gpio\r\n"); return ret; }
return 0; }
static int timer_open(struct inode *inode, struct file *filp) { int ret = 0; filp->private_data = &timerdev;
timerdev.timeperiod = 1000;
ret = led_init(); if (ret < 0){ printk("led initialize failed\r\n"); return ret; }
return 0; }
static long timer_unlocked_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) { struct timer_dev *dev = (struct timer_dev *)filp->private_data; int timerperiod; unsigned long flags;
switch (cmd) { case CLOSE_CMD: del_timer_sync(&dev->timer); break;
case OPEN_CMD: spin_lock_irqsave(&dev->lock, flags); timerperiod = dev->timeperiod; spin_unlock_irqrestore(&dev->lock, flags); mod_timer(&dev->timer, jiffies + msecs_to_jiffies(timerperiod)); break;
case SETPERIOD_CMD: spin_lock_irqsave(&dev->lock, flags); dev->timeperiod = arg; spin_unlock_irqrestore(&dev->lock, flags); mod_timer(&dev->timer, jiffies + msecs_to_jiffies(arg)); break;
default: break; } return 0; } static struct file_operations timer_fops = { .owner = THIS_MODULE, .open = timer_open, .unlocked_ioctl = timer_unlocked_ioctl, };
void timer_function(struct timer_list *t) { struct timer_dev *dev = from_timer(dev, t, timer); static int sta = 1; int timerperiod; unsigned long flags;
sta = !sta; gpio_set_value(dev->led_gpio, sta);
spin_lock_irqsave(&dev->lock, flags); timerperiod = dev->timeperiod; spin_unlock_irqrestore(&dev->lock, flags); mod_timer(&dev->timer, jiffies + msecs_to_jiffies(dev->timeperiod)); }
static int __init timer_init(void) { spin_lock_init(&timerdev.lock);
if (timerdev.major){ timerdev.devid = MKDEV(timerdev.major, 0); register_chrdev_region(timerdev.devid, TIMER_CNT, TIMER_NAME); }else{ alloc_chrdev_region(&timerdev.devid, 0, 1, TIMER_NAME); timerdev.major = MAJOR(timerdev.devid); timerdev.minor = MINOR(timerdev.devid); } printk("Device reg ok, major = %d, minor = %d\r\n", timerdev.major, timerdev.minor);
timerdev.cdev.owner = THIS_MODULE; cdev_init(&timerdev.cdev, &timer_fops); cdev_add(&timerdev.cdev, timerdev.devid, TIMER_CNT);
timerdev.class = class_create(TIMER_NAME); if (IS_ERR(timerdev.class)){ return PTR_ERR(timerdev.class); }
timerdev.device = device_create(timerdev.class, NULL, timerdev.devid, NULL, TIMER_NAME); if (IS_ERR(timerdev.device)) { return PTR_ERR(timerdev.device); }
timer_setup(&timerdev.timer, timer_function, 0);
return 0; }
static void __exit timer_exit(void) { gpio_set_value(timerdev.led_gpio, 1); del_timer_sync(&timerdev.timer);
cdev_del(&timerdev.cdev); unregister_chrdev_region(timerdev.devid, TIMER_CNT);
device_destroy(timerdev.class, timerdev.devid); class_destroy(timerdev.class); }
module_init(timer_init); module_exit(timer_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("aki");
|