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
| #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/wait.h> #include <linux/poll.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> #include <linux/of_irq.h> #include <linux/irq.h> #include <linux/fcntl.h> #include <linux/fs.h> #include <linux/platform_device.h>
#define LEDDEV_CNT 1 #define LEDDEV_NAME "dtsplatled" #define LEDOFF 0 #define LEDON 1
struct leddev_dev { dev_t devid; struct cdev cdev; struct class *class; struct device *device; int major; int minor; struct device_node *nd; int led0_gpio; };
struct leddev_dev leddev;
void led0_switch(u8 sta) { switch (sta) { case LEDON: gpio_set_value(leddev.led0_gpio, 0); break; case LEDOFF: gpio_set_value(leddev.led0_gpio, 1); break; } }
static int led_open(struct inode *inode, struct file *filp) { filp->private_data = (struct leddev_dev *)&leddev; return 0; }
static ssize_t led_write(struct file *filp, const char __user *buf, size_t cnt, loff_t *offt) { int ret; unsigned char databuf[2]; unsigned char led_sta;
ret = copy_from_user(databuf, buf, cnt); if (ret < 0){ printk("copy from user failed\r\n"); return -EFAULT; }
led_sta = databuf[0]; switch (led_sta) { case LEDON: led0_switch(LEDON); break; case LEDOFF: led0_switch(LEDOFF); break; } return 0; }
static struct file_operations led_fops = { .owner = THIS_MODULE, .open = led_open, .write = led_write, };
static int led_probe (struct platform_device *dev) { printk("LED driver and device has beem matched!\r\n");
if (leddev.major){ leddev.devid = MKDEV(leddev.major, 0); register_chrdev_region(leddev.devid, LEDDEV_CNT, LEDDEV_NAME); }else{ alloc_chrdev_region(&leddev.devid, 0, LEDDEV_CNT, LEDDEV_NAME); leddev.major = MAJOR(leddev.devid); leddev.minor = MINOR(leddev.devid); } printk("Device reg ok, major = %d, minor = %d\r\n", leddev.major, leddev.minor);
leddev.cdev.owner = THIS_MODULE; cdev_init(&leddev.cdev, &led_fops); cdev_add(&leddev.cdev, leddev.devid, LEDDEV_CNT);
leddev.class = class_create(LEDDEV_NAME); if (IS_ERR(leddev.class)){ return PTR_ERR(leddev.class); }
leddev.device = device_create(leddev.class, NULL, leddev.devid, NULL, LEDDEV_NAME); if (IS_ERR(leddev.device)){ return PTR_ERR(leddev.device); }
leddev.nd = of_find_node_by_path("/gpioled"); if (leddev.nd == NULL){ printk("Unable find node\r\n"); return -EINVAL; }
leddev.led0_gpio = of_get_named_gpio(leddev.nd, "led-gpio", 0); if (leddev.led0_gpio < 0){ printk("unable find gpio\r\n"); return -EINVAL; }
gpio_request(leddev.led0_gpio, "led0"); gpio_direction_output(leddev.led0_gpio, 1);
return 0; }
static int led_remove(struct platform_device *dev) { gpio_set_value(leddev.led0_gpio, 1);
cdev_del(&leddev.cdev); unregister_chrdev_region(leddev.devid, LEDDEV_CNT); device_destroy(leddev.class, leddev.devid); class_destroy(leddev.class);
return 0; }
static const struct of_device_id led_of_match[] = { {.compatible = "custom-gpioled"}, };
static struct platform_driver led_driver = { .driver = { .name = "imx6ul-led", .of_match_table = led_of_match, }, .probe = led_probe, .remove = led_remove, };
static int __init leddriver_init(void) { return platform_driver_register(&led_driver); }
static void __exit leddriver_exit(void) { platform_driver_unregister(&led_driver); }
module_init(leddriver_init); module_exit(leddriver_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("aki");
|