blob: e6e52c48697bc3093c29c66d4fdfde76af5f856a [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
8#include <linux/config.h>
Jim Cromie979b5ec2006-06-27 02:54:14 -07009#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/fs.h>
11#include <linux/module.h>
12#include <linux/errno.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
Jim Cromie979b5ec2006-06-27 02:54:14 -070015#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/uaccess.h>
17#include <asm/io.h>
18
Jim Cromie7d7f2122006-06-27 02:54:14 -070019#include <linux/types.h>
20#include <linux/cdev.h>
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/scx200_gpio.h>
23
24#define NAME "scx200_gpio"
Jim Cromie979b5ec2006-06-27 02:54:14 -070025#define DEVNAME NAME
26
27static struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29MODULE_AUTHOR("Christer Weinigel <wingel@nano-system.com>");
30MODULE_DESCRIPTION("NatSemi SCx200 GPIO Pin Driver");
31MODULE_LICENSE("GPL");
32
33static int major = 0; /* default to dynamic major */
34module_param(major, int, 0);
35MODULE_PARM_DESC(major, "Major device number");
36
Jim Cromie7d7f2122006-06-27 02:54:14 -070037extern void scx200_gpio_dump(unsigned index);
38
Jim Cromie62c83cd2006-06-27 02:54:13 -070039static ssize_t scx200_gpio_write(struct file *file, const char __user *data,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 size_t len, loff_t *ppos)
41{
42 unsigned m = iminor(file->f_dentry->d_inode);
43 size_t i;
44
45 for (i = 0; i < len; ++i) {
46 char c;
Jim Cromie62c83cd2006-06-27 02:54:13 -070047 if (get_user(c, data + i))
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 return -EFAULT;
Jim Cromie62c83cd2006-06-27 02:54:13 -070049 switch (c) {
50 case '0':
51 scx200_gpio_set(m, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
Jim Cromie62c83cd2006-06-27 02:54:13 -070053 case '1':
54 scx200_gpio_set(m, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 break;
56 case 'O':
57 printk(KERN_INFO NAME ": GPIO%d output enabled\n", m);
58 scx200_gpio_configure(m, ~1, 1);
59 break;
60 case 'o':
61 printk(KERN_INFO NAME ": GPIO%d output disabled\n", m);
62 scx200_gpio_configure(m, ~1, 0);
63 break;
64 case 'T':
65 printk(KERN_INFO NAME ": GPIO%d output is push pull\n", m);
66 scx200_gpio_configure(m, ~2, 2);
67 break;
68 case 't':
69 printk(KERN_INFO NAME ": GPIO%d output is open drain\n", m);
70 scx200_gpio_configure(m, ~2, 0);
71 break;
72 case 'P':
73 printk(KERN_INFO NAME ": GPIO%d pull up enabled\n", m);
74 scx200_gpio_configure(m, ~4, 4);
75 break;
76 case 'p':
77 printk(KERN_INFO NAME ": GPIO%d pull up disabled\n", m);
78 scx200_gpio_configure(m, ~4, 0);
79 break;
80 }
81 }
82
83 return len;
84}
85
86static ssize_t scx200_gpio_read(struct file *file, char __user *buf,
87 size_t len, loff_t *ppos)
88{
89 unsigned m = iminor(file->f_dentry->d_inode);
90 int value;
91
92 value = scx200_gpio_get(m);
93 if (put_user(value ? '1' : '0', buf))
94 return -EFAULT;
Jim Cromie62c83cd2006-06-27 02:54:13 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return 1;
97}
98
99static int scx200_gpio_open(struct inode *inode, struct file *file)
100{
101 unsigned m = iminor(inode);
102 if (m > 63)
103 return -EINVAL;
104 return nonseekable_open(inode, file);
105}
106
107static int scx200_gpio_release(struct inode *inode, struct file *file)
108{
109 return 0;
110}
111
112
113static struct file_operations scx200_gpio_fops = {
114 .owner = THIS_MODULE,
115 .write = scx200_gpio_write,
116 .read = scx200_gpio_read,
117 .open = scx200_gpio_open,
118 .release = scx200_gpio_release,
119};
120
Jim Cromie7d7f2122006-06-27 02:54:14 -0700121struct cdev *scx200_devices;
Jim Cromie979b5ec2006-06-27 02:54:14 -0700122static int num_pins = 32;
Jim Cromie7d7f2122006-06-27 02:54:14 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static int __init scx200_gpio_init(void)
125{
Jim Cromie7d7f2122006-06-27 02:54:14 -0700126 int rc, i;
127 dev_t dev = MKDEV(major, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (!scx200_gpio_present()) {
Jim Cromie7d7f2122006-06-27 02:54:14 -0700130 printk(KERN_ERR NAME ": no SCx200 gpio present\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return -ENODEV;
132 }
Jim Cromie979b5ec2006-06-27 02:54:14 -0700133
134 /* support dev_dbg() with pdev->dev */
135 pdev = platform_device_alloc(DEVNAME, 0);
136 if (!pdev)
137 return -ENOMEM;
138
139 rc = platform_device_add(pdev);
140 if (rc)
141 goto undo_malloc;
142
Jim Cromie7d7f2122006-06-27 02:54:14 -0700143 if (major)
Jim Cromie979b5ec2006-06-27 02:54:14 -0700144 rc = register_chrdev_region(dev, num_pins, "scx200_gpio");
Jim Cromie7d7f2122006-06-27 02:54:14 -0700145 else {
Jim Cromie979b5ec2006-06-27 02:54:14 -0700146 rc = alloc_chrdev_region(&dev, 0, num_pins, "scx200_gpio");
Jim Cromie7d7f2122006-06-27 02:54:14 -0700147 major = MAJOR(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
Jim Cromie7d7f2122006-06-27 02:54:14 -0700149 if (rc < 0) {
Jim Cromie979b5ec2006-06-27 02:54:14 -0700150 dev_err(&pdev->dev, "SCx200 chrdev_region err: %d\n", rc);
151 goto undo_platform_device_add;
Jim Cromie7d7f2122006-06-27 02:54:14 -0700152 }
Jim Cromie979b5ec2006-06-27 02:54:14 -0700153 scx200_devices = kzalloc(num_pins * sizeof(struct cdev), GFP_KERNEL);
Jim Cromie7d7f2122006-06-27 02:54:14 -0700154 if (!scx200_devices) {
155 rc = -ENOMEM;
Jim Cromie979b5ec2006-06-27 02:54:14 -0700156 goto undo_chrdev_region;
Jim Cromie7d7f2122006-06-27 02:54:14 -0700157 }
Jim Cromie979b5ec2006-06-27 02:54:14 -0700158 for (i = 0; i < num_pins; i++) {
Jim Cromie7d7f2122006-06-27 02:54:14 -0700159 struct cdev *cdev = &scx200_devices[i];
160 cdev_init(cdev, &scx200_gpio_fops);
161 cdev->owner = THIS_MODULE;
Jim Cromie7d7f2122006-06-27 02:54:14 -0700162 rc = cdev_add(cdev, MKDEV(major, i), 1);
Jim Cromie979b5ec2006-06-27 02:54:14 -0700163 /* tolerate 'minor' errors */
Jim Cromie7d7f2122006-06-27 02:54:14 -0700164 if (rc)
Jim Cromie979b5ec2006-06-27 02:54:14 -0700165 dev_err(&pdev->dev, "Error %d on minor %d", rc, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
Jim Cromie979b5ec2006-06-27 02:54:14 -0700168 return 0; /* succeed */
Jim Cromie7d7f2122006-06-27 02:54:14 -0700169
Jim Cromie979b5ec2006-06-27 02:54:14 -0700170undo_chrdev_region:
171 unregister_chrdev_region(dev, num_pins);
172undo_platform_device_add:
173 platform_device_put(pdev);
174undo_malloc:
175 kfree(pdev);
Jim Cromie7d7f2122006-06-27 02:54:14 -0700176 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179static void __exit scx200_gpio_cleanup(void)
180{
Jim Cromie7d7f2122006-06-27 02:54:14 -0700181 kfree(scx200_devices);
Jim Cromie979b5ec2006-06-27 02:54:14 -0700182 unregister_chrdev_region(MKDEV(major, 0), num_pins);
183 platform_device_put(pdev);
184 platform_device_unregister(pdev);
185 /* kfree(pdev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188module_init(scx200_gpio_init);
189module_exit(scx200_gpio_cleanup);