2 * character device wrapper for generic gpio layer
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307USA
18 * Feedback, Bugs... blogic@openwrt.org
22 #include <linux/module.h>
23 #include <linux/errno.h>
24 #include <linux/init.h>
25 #include <asm/uaccess.h>
28 #include <asm/atomic.h>
29 #include <linux/init.h>
30 #include <linux/genhd.h>
31 #include <linux/device.h>
32 #include <linux/platform_device.h>
33 #include <linux/gpio_dev.h>
35 #define DRVNAME "gpiodev"
36 #define DEVNAME "gpio"
39 static unsigned int gpio_access_mask
;
40 static struct class *gpio_class
;
42 /* Counter is 1, if the device is not opened and zero (or less) if opened. */
43 static atomic_t gpio_open_cnt
= ATOMIC_INIT(1);
46 gpio_ioctl(struct inode
* inode
, struct file
* file
, unsigned int cmd
, unsigned long arg
)
50 if (((1 << arg
) & gpio_access_mask
) != (1 << arg
))
59 retval
= gpio_get_value(arg
);
63 gpio_set_value(arg
, 1);
67 gpio_set_value(arg
, 0);
71 gpio_direction_input(arg
);
75 gpio_direction_output(arg
, 0);
88 gpio_open(struct inode
*inode
, struct file
*file
)
91 unsigned int dev_minor
= MINOR(inode
->i_rdev
);
95 printk(KERN_ERR DRVNAME
": trying to access unknown minor device -> %d\n", dev_minor
);
100 /* FIXME: We should really allow multiple applications to open the device
101 * at the same time, as long as the apps access different IO pins.
102 * The generic gpio-registration functions can be used for that.
103 * Two new IOCTLs have to be introduced for that. Need to check userspace
104 * compatibility first. --mb */
105 if (!atomic_dec_and_test(&gpio_open_cnt
)) {
106 atomic_inc(&gpio_open_cnt
);
107 printk(KERN_ERR DRVNAME
": Device with minor ID %d already in use\n", dev_minor
);
117 gpio_close(struct inode
* inode
, struct file
* file
)
119 smp_mb__before_atomic_inc();
120 atomic_inc(&gpio_open_cnt
);
125 struct file_operations gpio_fops
= {
132 gpio_probe(struct platform_device
*dev
)
136 dev_major
= register_chrdev(0, DEVNAME
, &gpio_fops
);
139 printk(KERN_ERR DRVNAME
": Error whilst opening %s \n", DEVNAME
);
144 gpio_class
= class_create(THIS_MODULE
, DEVNAME
);
145 class_device_create(gpio_class
, NULL
, MKDEV(dev_major
, 0), NULL
, DEVNAME
);
147 printk(KERN_INFO DRVNAME
": gpio device registered with major %d\n", dev_major
);
149 if (dev
->num_resources
!= 1)
151 printk(KERN_ERR DRVNAME
": device may only have 1 resource\n");
156 gpio_access_mask
= dev
->resource
[0].start
;
158 printk(KERN_INFO DRVNAME
": gpio platform device registered with access mask %08X\n", gpio_access_mask
);
164 gpio_remove(struct platform_device
*dev
)
166 unregister_chrdev(dev_major
, DEVNAME
);
171 platform_driver gpio_driver
= {
173 .remove
= gpio_remove
,
176 .owner
= THIS_MODULE
,
183 int ret
= platform_driver_register(&gpio_driver
);
185 printk(KERN_INFO DRVNAME
": Error registering platfom driver!");
193 platform_driver_unregister(&gpio_driver
);
196 module_init (gpio_mod_init
);
197 module_exit (gpio_mod_exit
);
199 MODULE_LICENSE("GPL");
200 MODULE_AUTHOR("John Crispin / OpenWrt");
201 MODULE_DESCRIPTION("Character device for for generic gpio api");