-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyled.c
86 lines (71 loc) · 2.04 KB
/
myled.c
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
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/device.h>
#include <linux/uaccess.h>
#include <linux/io.h>
MODULE_AUTHOR("Keia Mori and Ryuichi Ueda");
MODULE_DESCRIPTION("driver for LED control");
MODULE_LICENSE("GPL");
MODULE_VERSION("0.0.1");
static dev_t dev;
static struct cdev cdv;
static struct class *cls = NULL;
static volatile u32 *gpio_base = NULL;
static ssize_t led_write(struct file* filp, const char* buf, size_t count, loff_t* pos)
{
char c;
if(copy_from_user(&c,buf,sizeof(char)))
return -EFAULT;
if(c == '0')
gpio_base[10] = 1 << 25;
else if(c == '1')
gpio_base[7] = 1 << 25;
return 1;
}
static struct file_operations led_fops = {
.owner = THIS_MODULE,
.write = led_write
};
static int __init init_mod(void)
{
int retval;
gpio_base = ioremap_nocache(0xfe200000, 0xA0); //0xfe..:base address, 0xA0: region to map
const u32 led = 25;
const u32 index = led/10;//GPFSEL2
const u32 shift = (led%10)*3;//15bit
const u32 mask = ~(0x7 << shift);//11111111111111000111111111111111
gpio_base[index] = (gpio_base[index] & mask) | (0x1 << shift);//001: output flag
//11111111111111001111111111111111
retval = alloc_chrdev_region(&dev, 0, 1, "myled");
if(retval < 0){
printk(KERN_ERR "alloc_chrdev_region failed.\n");
return retval;
}
printk(KERN_INFO "%s is loaded. major:%d\n",__FILE__,MAJOR(dev));
cdev_init(&cdv, &led_fops);
cdv.owner = THIS_MODULE;
retval = cdev_add(&cdv, dev, 1);
if(retval < 0){
printk(KERN_ERR "cdev_add failed. major:%d, minor:%d",MAJOR(dev),MINOR(dev));
return retval;
}
cls = class_create(THIS_MODULE,"myled");
if(IS_ERR(cls)){
printk(KERN_ERR "class_create failed.");
return PTR_ERR(cls);
}
device_create(cls, NULL, dev, NULL, "myled%d",MINOR(dev));
return 0;
}
static void __exit cleanup_mod(void)
{
cdev_del(&cdv);
device_destroy(cls, dev);
class_destroy(cls);
unregister_chrdev_region(dev, 1);
printk(KERN_INFO "%s is unloaded. major:%d\n",__FILE__,MAJOR(dev));
iounmap(gpio_base);
}
module_init(init_mod);
module_exit(cleanup_mod);