blob: dd1f997944e6520eac1e21aa12594be65f836db9 [file] [log] [blame]
Jim Cromie62c83cd2006-06-27 02:54:13 -07001/* linux/drivers/char/scx200_gpio.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
3 National Semiconductor SCx200 GPIO driver. Allows a user space
4 process to play with the GPIO pins.
5
6 Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com> */
7
Jim Cromie979b5ec2006-06-27 02:54:14 -07008#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/fs.h>
10#include <linux/module.h>
11#include <linux/errno.h>
12#include <linux/kernel.h>
13#include <linux/init.h>
Jim Cromie979b5ec2006-06-27 02:54:14 -070014#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/uaccess.h>
16#include <asm/io.h>
17
Jim Cromie7d7f2122006-06-27 02:54:14 -070018#include <linux/types.h>
19#include <linux/cdev.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/scx200_gpio.h>
Jim Cromiefe3a1682006-06-27 02:54:18 -070022#include <linux/nsc_gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Jim Cromieae2d1f22006-07-14 00:24:16 -070024#define DRVNAME "scx200_gpio"
Jim Cromie979b5ec2006-06-27 02:54:14 -070025
26static struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28MODULE_AUTHOR("Christer Weinigel <wingel@nano-system.com>");
Jim Cromieae2d1f22006-07-14 00:24:16 -070029MODULE_DESCRIPTION("NatSemi/AMD SCx200 GPIO Pin Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070030MODULE_LICENSE("GPL");
31
32static int major = 0; /* default to dynamic major */
33module_param(major, int, 0);
34MODULE_PARM_DESC(major, "Major device number");
35
Jim Cromieae2d1f22006-07-14 00:24:16 -070036#define MAX_PINS 32 /* 64 later, when known ok */
37
Jim Cromiefe3a1682006-06-27 02:54:18 -070038struct nsc_gpio_ops scx200_access = {
39 .owner = THIS_MODULE,
40 .gpio_config = scx200_gpio_configure,
Jim Cromie0e41ef32006-06-27 02:54:20 -070041 .gpio_dump = nsc_gpio_dump,
Jim Cromiefe3a1682006-06-27 02:54:18 -070042 .gpio_get = scx200_gpio_get,
43 .gpio_set = scx200_gpio_set,
44 .gpio_set_high = scx200_gpio_set_high,
45 .gpio_set_low = scx200_gpio_set_low,
46 .gpio_change = scx200_gpio_change,
47 .gpio_current = scx200_gpio_current
48};
Jim Cromieae2d1f22006-07-14 00:24:16 -070049EXPORT_SYMBOL(scx200_access);
Jim Cromiefe3a1682006-06-27 02:54:18 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static int scx200_gpio_open(struct inode *inode, struct file *file)
52{
53 unsigned m = iminor(inode);
Jim Cromiec3dc8072006-06-27 02:54:18 -070054 file->private_data = &scx200_access;
55
Jim Cromieae2d1f22006-07-14 00:24:16 -070056 if (m >= MAX_PINS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return -EINVAL;
58 return nonseekable_open(inode, file);
59}
60
61static int scx200_gpio_release(struct inode *inode, struct file *file)
62{
63 return 0;
64}
65
Arjan van de Ven62322d22006-07-03 00:24:21 -070066static const struct file_operations scx200_gpio_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .owner = THIS_MODULE,
Jim Cromie1a66fdf2006-06-27 02:54:20 -070068 .write = nsc_gpio_write,
69 .read = nsc_gpio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 .open = scx200_gpio_open,
71 .release = scx200_gpio_release,
72};
73
Jim Cromie635adb62006-07-14 00:24:16 -070074struct cdev scx200_gpio_cdev; /* use 1 cdev for all pins */
Jim Cromie7d7f2122006-06-27 02:54:14 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static int __init scx200_gpio_init(void)
77{
Jim Cromie635adb62006-07-14 00:24:16 -070078 int rc;
Jim Cromieae2d1f22006-07-14 00:24:16 -070079 dev_t devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 if (!scx200_gpio_present()) {
Jim Cromieae2d1f22006-07-14 00:24:16 -070082 printk(KERN_ERR DRVNAME ": no SCx200 gpio present\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return -ENODEV;
84 }
Jim Cromie979b5ec2006-06-27 02:54:14 -070085
86 /* support dev_dbg() with pdev->dev */
Jim Cromieae2d1f22006-07-14 00:24:16 -070087 pdev = platform_device_alloc(DRVNAME, 0);
Jim Cromie979b5ec2006-06-27 02:54:14 -070088 if (!pdev)
89 return -ENOMEM;
90
91 rc = platform_device_add(pdev);
92 if (rc)
93 goto undo_malloc;
94
Jim Cromief31000e2006-06-27 02:54:23 -070095 /* nsc_gpio uses dev_dbg(), so needs this */
96 scx200_access.dev = &pdev->dev;
97
Jim Cromieae2d1f22006-07-14 00:24:16 -070098 if (major) {
99 devid = MKDEV(major, 0);
100 rc = register_chrdev_region(devid, MAX_PINS, "scx200_gpio");
101 } else {
102 rc = alloc_chrdev_region(&devid, 0, MAX_PINS, "scx200_gpio");
103 major = MAJOR(devid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
Jim Cromie7d7f2122006-06-27 02:54:14 -0700105 if (rc < 0) {
Jim Cromie979b5ec2006-06-27 02:54:14 -0700106 dev_err(&pdev->dev, "SCx200 chrdev_region err: %d\n", rc);
107 goto undo_platform_device_add;
Jim Cromie7d7f2122006-06-27 02:54:14 -0700108 }
Jim Cromie635adb62006-07-14 00:24:16 -0700109
110 cdev_init(&scx200_gpio_cdev, &scx200_gpio_fops);
111 cdev_add(&scx200_gpio_cdev, devid, MAX_PINS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Jim Cromie979b5ec2006-06-27 02:54:14 -0700113 return 0; /* succeed */
Jim Cromie7d7f2122006-06-27 02:54:14 -0700114
Jim Cromie979b5ec2006-06-27 02:54:14 -0700115undo_platform_device_add:
Ingo Molnar1017f6a2006-06-30 01:55:29 -0700116 platform_device_del(pdev);
Jim Cromie979b5ec2006-06-27 02:54:14 -0700117undo_malloc:
Ingo Molnar1017f6a2006-06-30 01:55:29 -0700118 platform_device_put(pdev);
119
Jim Cromie7d7f2122006-06-27 02:54:14 -0700120 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123static void __exit scx200_gpio_cleanup(void)
124{
Jim Cromie635adb62006-07-14 00:24:16 -0700125 cdev_del(&scx200_gpio_cdev);
126 /* cdev_put(&scx200_gpio_cdev); */
127
Jim Cromieae2d1f22006-07-14 00:24:16 -0700128 unregister_chrdev_region(MKDEV(major, 0), MAX_PINS);
Jim Cromie979b5ec2006-06-27 02:54:14 -0700129 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132module_init(scx200_gpio_init);
133module_exit(scx200_gpio_cleanup);