Add "no BKL needed" comments to several drivers
[linux-2.6/zen-sources.git] / drivers / char / pc8736x_gpio.c
blob8715dc9f4a531f2f64445642970e6c603f04ba82
1 /* linux/drivers/char/pc8736x_gpio.c
3 National Semiconductor PC8736x GPIO driver. Allows a user space
4 process to play with the GPIO pins.
6 Copyright (c) 2005,2006 Jim Cromie <jim.cromie@gmail.com>
8 adapted from linux/drivers/char/scx200_gpio.c
9 Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com>,
12 #include <linux/fs.h>
13 #include <linux/module.h>
14 #include <linux/errno.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/cdev.h>
18 #include <linux/io.h>
19 #include <linux/ioport.h>
20 #include <linux/mutex.h>
21 #include <linux/nsc_gpio.h>
22 #include <linux/platform_device.h>
23 #include <asm/uaccess.h>
25 #define DEVNAME "pc8736x_gpio"
27 MODULE_AUTHOR("Jim Cromie <jim.cromie@gmail.com>");
28 MODULE_DESCRIPTION("NatSemi/Winbond PC-8736x GPIO Pin Driver");
29 MODULE_LICENSE("GPL");
31 static int major; /* default to dynamic major */
32 module_param(major, int, 0);
33 MODULE_PARM_DESC(major, "Major device number");
35 static DEFINE_MUTEX(pc8736x_gpio_config_lock);
36 static unsigned pc8736x_gpio_base;
37 static u8 pc8736x_gpio_shadow[4];
39 #define SIO_BASE1 0x2E /* 1st command-reg to check */
40 #define SIO_BASE2 0x4E /* alt command-reg to check */
42 #define SIO_SID 0x20 /* SuperI/O ID Register */
43 #define SIO_SID_VALUE 0xe9 /* Expected value in SuperI/O ID Register */
45 #define SIO_CF1 0x21 /* chip config, bit0 is chip enable */
47 #define PC8736X_GPIO_RANGE 16 /* ioaddr range */
48 #define PC8736X_GPIO_CT 32 /* minors matching 4 8 bit ports */
50 #define SIO_UNIT_SEL 0x7 /* unit select reg */
51 #define SIO_UNIT_ACT 0x30 /* unit enable */
52 #define SIO_GPIO_UNIT 0x7 /* unit number of GPIO */
53 #define SIO_VLM_UNIT 0x0D
54 #define SIO_TMS_UNIT 0x0E
56 /* config-space addrs to read/write each unit's runtime addr */
57 #define SIO_BASE_HADDR 0x60
58 #define SIO_BASE_LADDR 0x61
60 /* GPIO config-space pin-control addresses */
61 #define SIO_GPIO_PIN_SELECT 0xF0
62 #define SIO_GPIO_PIN_CONFIG 0xF1
63 #define SIO_GPIO_PIN_EVENT 0xF2
65 static unsigned char superio_cmd = 0;
66 static unsigned char selected_device = 0xFF; /* bogus start val */
68 /* GPIO port runtime access, functionality */
69 static int port_offset[] = { 0, 4, 8, 10 }; /* non-uniform offsets ! */
70 /* static int event_capable[] = { 1, 1, 0, 0 }; ports 2,3 are hobbled */
72 #define PORT_OUT 0
73 #define PORT_IN 1
74 #define PORT_EVT_EN 2
75 #define PORT_EVT_STST 3
77 static struct platform_device *pdev; /* use in dev_*() */
79 static inline void superio_outb(int addr, int val)
81 outb_p(addr, superio_cmd);
82 outb_p(val, superio_cmd + 1);
85 static inline int superio_inb(int addr)
87 outb_p(addr, superio_cmd);
88 return inb_p(superio_cmd + 1);
91 static int pc8736x_superio_present(void)
93 /* try the 2 possible values, read a hardware reg to verify */
94 superio_cmd = SIO_BASE1;
95 if (superio_inb(SIO_SID) == SIO_SID_VALUE)
96 return superio_cmd;
98 superio_cmd = SIO_BASE2;
99 if (superio_inb(SIO_SID) == SIO_SID_VALUE)
100 return superio_cmd;
102 return 0;
105 static void device_select(unsigned devldn)
107 superio_outb(SIO_UNIT_SEL, devldn);
108 selected_device = devldn;
111 static void select_pin(unsigned iminor)
113 /* select GPIO port/pin from device minor number */
114 device_select(SIO_GPIO_UNIT);
115 superio_outb(SIO_GPIO_PIN_SELECT,
116 ((iminor << 1) & 0xF0) | (iminor & 0x7));
119 static inline u32 pc8736x_gpio_configure_fn(unsigned index, u32 mask, u32 bits,
120 u32 func_slct)
122 u32 config, new_config;
124 mutex_lock(&pc8736x_gpio_config_lock);
126 device_select(SIO_GPIO_UNIT);
127 select_pin(index);
129 /* read current config value */
130 config = superio_inb(func_slct);
132 /* set new config */
133 new_config = (config & mask) | bits;
134 superio_outb(func_slct, new_config);
136 mutex_unlock(&pc8736x_gpio_config_lock);
138 return config;
141 static u32 pc8736x_gpio_configure(unsigned index, u32 mask, u32 bits)
143 return pc8736x_gpio_configure_fn(index, mask, bits,
144 SIO_GPIO_PIN_CONFIG);
147 static int pc8736x_gpio_get(unsigned minor)
149 int port, bit, val;
151 port = minor >> 3;
152 bit = minor & 7;
153 val = inb_p(pc8736x_gpio_base + port_offset[port] + PORT_IN);
154 val >>= bit;
155 val &= 1;
157 dev_dbg(&pdev->dev, "_gpio_get(%d from %x bit %d) == val %d\n",
158 minor, pc8736x_gpio_base + port_offset[port] + PORT_IN, bit,
159 val);
161 return val;
164 static void pc8736x_gpio_set(unsigned minor, int val)
166 int port, bit, curval;
168 minor &= 0x1f;
169 port = minor >> 3;
170 bit = minor & 7;
171 curval = inb_p(pc8736x_gpio_base + port_offset[port] + PORT_OUT);
173 dev_dbg(&pdev->dev, "addr:%x cur:%x bit-pos:%d cur-bit:%x + new:%d -> bit-new:%d\n",
174 pc8736x_gpio_base + port_offset[port] + PORT_OUT,
175 curval, bit, (curval & ~(1 << bit)), val, (val << bit));
177 val = (curval & ~(1 << bit)) | (val << bit);
179 dev_dbg(&pdev->dev, "gpio_set(minor:%d port:%d bit:%d)"
180 " %2x -> %2x\n", minor, port, bit, curval, val);
182 outb_p(val, pc8736x_gpio_base + port_offset[port] + PORT_OUT);
184 curval = inb_p(pc8736x_gpio_base + port_offset[port] + PORT_OUT);
185 val = inb_p(pc8736x_gpio_base + port_offset[port] + PORT_IN);
187 dev_dbg(&pdev->dev, "wrote %x, read: %x\n", curval, val);
188 pc8736x_gpio_shadow[port] = val;
191 static int pc8736x_gpio_current(unsigned minor)
193 int port, bit;
194 minor &= 0x1f;
195 port = minor >> 3;
196 bit = minor & 7;
197 return ((pc8736x_gpio_shadow[port] >> bit) & 0x01);
200 static void pc8736x_gpio_change(unsigned index)
202 pc8736x_gpio_set(index, !pc8736x_gpio_current(index));
205 static struct nsc_gpio_ops pc8736x_gpio_ops = {
206 .owner = THIS_MODULE,
207 .gpio_config = pc8736x_gpio_configure,
208 .gpio_dump = nsc_gpio_dump,
209 .gpio_get = pc8736x_gpio_get,
210 .gpio_set = pc8736x_gpio_set,
211 .gpio_change = pc8736x_gpio_change,
212 .gpio_current = pc8736x_gpio_current
215 /* No BKL needed here; no global resources accessed */
216 static int pc8736x_gpio_open(struct inode *inode, struct file *file)
218 unsigned m = iminor(inode);
219 file->private_data = &pc8736x_gpio_ops;
221 dev_dbg(&pdev->dev, "open %d\n", m);
223 if (m >= PC8736X_GPIO_CT)
224 return -EINVAL;
225 return nonseekable_open(inode, file);
228 static const struct file_operations pc8736x_gpio_fileops = {
229 .owner = THIS_MODULE,
230 .open = pc8736x_gpio_open,
231 .write = nsc_gpio_write,
232 .read = nsc_gpio_read,
235 static void __init pc8736x_init_shadow(void)
237 int port;
239 /* read the current values driven on the GPIO signals */
240 for (port = 0; port < 4; ++port)
241 pc8736x_gpio_shadow[port]
242 = inb_p(pc8736x_gpio_base + port_offset[port]
243 + PORT_OUT);
247 static struct cdev pc8736x_gpio_cdev;
249 static int __init pc8736x_gpio_init(void)
251 int rc;
252 dev_t devid;
254 pdev = platform_device_alloc(DEVNAME, 0);
255 if (!pdev)
256 return -ENOMEM;
258 rc = platform_device_add(pdev);
259 if (rc) {
260 rc = -ENODEV;
261 goto undo_platform_dev_alloc;
263 dev_info(&pdev->dev, "NatSemi pc8736x GPIO Driver Initializing\n");
265 if (!pc8736x_superio_present()) {
266 rc = -ENODEV;
267 dev_err(&pdev->dev, "no device found\n");
268 goto undo_platform_dev_add;
270 pc8736x_gpio_ops.dev = &pdev->dev;
272 /* Verify that chip and it's GPIO unit are both enabled.
273 My BIOS does this, so I take minimum action here
275 rc = superio_inb(SIO_CF1);
276 if (!(rc & 0x01)) {
277 rc = -ENODEV;
278 dev_err(&pdev->dev, "device not enabled\n");
279 goto undo_platform_dev_add;
281 device_select(SIO_GPIO_UNIT);
282 if (!superio_inb(SIO_UNIT_ACT)) {
283 rc = -ENODEV;
284 dev_err(&pdev->dev, "GPIO unit not enabled\n");
285 goto undo_platform_dev_add;
288 /* read the GPIO unit base addr that chip responds to */
289 pc8736x_gpio_base = (superio_inb(SIO_BASE_HADDR) << 8
290 | superio_inb(SIO_BASE_LADDR));
292 if (!request_region(pc8736x_gpio_base, PC8736X_GPIO_RANGE, DEVNAME)) {
293 rc = -ENODEV;
294 dev_err(&pdev->dev, "GPIO ioport %x busy\n",
295 pc8736x_gpio_base);
296 goto undo_platform_dev_add;
298 dev_info(&pdev->dev, "GPIO ioport %x reserved\n", pc8736x_gpio_base);
300 if (major) {
301 devid = MKDEV(major, 0);
302 rc = register_chrdev_region(devid, PC8736X_GPIO_CT, DEVNAME);
303 } else {
304 rc = alloc_chrdev_region(&devid, 0, PC8736X_GPIO_CT, DEVNAME);
305 major = MAJOR(devid);
308 if (rc < 0) {
309 dev_err(&pdev->dev, "register-chrdev failed: %d\n", rc);
310 goto undo_request_region;
312 if (!major) {
313 major = rc;
314 dev_dbg(&pdev->dev, "got dynamic major %d\n", major);
317 pc8736x_init_shadow();
319 /* ignore minor errs, and succeed */
320 cdev_init(&pc8736x_gpio_cdev, &pc8736x_gpio_fileops);
321 cdev_add(&pc8736x_gpio_cdev, devid, PC8736X_GPIO_CT);
323 return 0;
325 undo_request_region:
326 release_region(pc8736x_gpio_base, PC8736X_GPIO_RANGE);
327 undo_platform_dev_add:
328 platform_device_del(pdev);
329 undo_platform_dev_alloc:
330 platform_device_put(pdev);
332 return rc;
335 static void __exit pc8736x_gpio_cleanup(void)
337 dev_dbg(&pdev->dev, "cleanup\n");
339 cdev_del(&pc8736x_gpio_cdev);
340 unregister_chrdev_region(MKDEV(major,0), PC8736X_GPIO_CT);
341 release_region(pc8736x_gpio_base, PC8736X_GPIO_RANGE);
343 platform_device_del(pdev);
344 platform_device_put(pdev);
347 module_init(pc8736x_gpio_init);
348 module_exit(pc8736x_gpio_cleanup);