blob: 99e5272e3c53e1ef1aa32f0733b1bbf0e9f2487e [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 Cromie2e8f7a32006-07-14 00:24:26 -070038struct nsc_gpio_ops scx200_gpio_ops = {
Jim Cromiefe3a1682006-06-27 02:54:18 -070039 .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,
Jim Cromiefe3a1682006-06-27 02:54:18 -070044 .gpio_change = scx200_gpio_change,
45 .gpio_current = scx200_gpio_current
46};
Chris Boot58012cd2006-09-29 01:59:07 -070047EXPORT_SYMBOL_GPL(scx200_gpio_ops);
Jim Cromiefe3a1682006-06-27 02:54:18 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static int scx200_gpio_open(struct inode *inode, struct file *file)
50{
51 unsigned m = iminor(inode);
Jim Cromie2e8f7a32006-07-14 00:24:26 -070052 file->private_data = &scx200_gpio_ops;
Jim Cromiec3dc8072006-06-27 02:54:18 -070053
Jim Cromieae2d1f22006-07-14 00:24:16 -070054 if (m >= MAX_PINS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return -EINVAL;
56 return nonseekable_open(inode, file);
57}
58
59static int scx200_gpio_release(struct inode *inode, struct file *file)
60{
61 return 0;
62}
63
Jim Cromie2e8f7a32006-07-14 00:24:26 -070064static const struct file_operations scx200_gpio_fileops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .owner = THIS_MODULE,
Jim Cromie1a66fdf2006-06-27 02:54:20 -070066 .write = nsc_gpio_write,
67 .read = nsc_gpio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 .open = scx200_gpio_open,
69 .release = scx200_gpio_release,
70};
71
Jim Cromiec8ad9682006-09-29 01:59:05 -070072static struct cdev scx200_gpio_cdev; /* use 1 cdev for all pins */
Jim Cromie7d7f2122006-06-27 02:54:14 -070073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static int __init scx200_gpio_init(void)
75{
Jim Cromie635adb62006-07-14 00:24:16 -070076 int rc;
Jim Cromieae2d1f22006-07-14 00:24:16 -070077 dev_t devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (!scx200_gpio_present()) {
Jim Cromieae2d1f22006-07-14 00:24:16 -070080 printk(KERN_ERR DRVNAME ": no SCx200 gpio present\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return -ENODEV;
82 }
Jim Cromie979b5ec2006-06-27 02:54:14 -070083
84 /* support dev_dbg() with pdev->dev */
Jim Cromieae2d1f22006-07-14 00:24:16 -070085 pdev = platform_device_alloc(DRVNAME, 0);
Jim Cromie979b5ec2006-06-27 02:54:14 -070086 if (!pdev)
87 return -ENOMEM;
88
89 rc = platform_device_add(pdev);
90 if (rc)
91 goto undo_malloc;
92
Jim Cromief31000e2006-06-27 02:54:23 -070093 /* nsc_gpio uses dev_dbg(), so needs this */
Jim Cromie2e8f7a32006-07-14 00:24:26 -070094 scx200_gpio_ops.dev = &pdev->dev;
Jim Cromief31000e2006-06-27 02:54:23 -070095
Jim Cromieae2d1f22006-07-14 00:24:16 -070096 if (major) {
97 devid = MKDEV(major, 0);
98 rc = register_chrdev_region(devid, MAX_PINS, "scx200_gpio");
99 } else {
100 rc = alloc_chrdev_region(&devid, 0, MAX_PINS, "scx200_gpio");
101 major = MAJOR(devid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
Jim Cromie7d7f2122006-06-27 02:54:14 -0700103 if (rc < 0) {
Jim Cromie979b5ec2006-06-27 02:54:14 -0700104 dev_err(&pdev->dev, "SCx200 chrdev_region err: %d\n", rc);
105 goto undo_platform_device_add;
Jim Cromie7d7f2122006-06-27 02:54:14 -0700106 }
Jim Cromie635adb62006-07-14 00:24:16 -0700107
Jim Cromie2e8f7a32006-07-14 00:24:26 -0700108 cdev_init(&scx200_gpio_cdev, &scx200_gpio_fileops);
Jim Cromie635adb62006-07-14 00:24:16 -0700109 cdev_add(&scx200_gpio_cdev, devid, MAX_PINS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Jim Cromie979b5ec2006-06-27 02:54:14 -0700111 return 0; /* succeed */
Jim Cromie7d7f2122006-06-27 02:54:14 -0700112
Jim Cromie979b5ec2006-06-27 02:54:14 -0700113undo_platform_device_add:
Ingo Molnar1017f6a2006-06-30 01:55:29 -0700114 platform_device_del(pdev);
Jim Cromie979b5ec2006-06-27 02:54:14 -0700115undo_malloc:
Ingo Molnar1017f6a2006-06-30 01:55:29 -0700116 platform_device_put(pdev);
117
Jim Cromie7d7f2122006-06-27 02:54:14 -0700118 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121static void __exit scx200_gpio_cleanup(void)
122{
Jim Cromie635adb62006-07-14 00:24:16 -0700123 cdev_del(&scx200_gpio_cdev);
124 /* cdev_put(&scx200_gpio_cdev); */
125
Jim Cromieae2d1f22006-07-14 00:24:16 -0700126 unregister_chrdev_region(MKDEV(major, 0), MAX_PINS);
Jim Cromie979b5ec2006-06-27 02:54:14 -0700127 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130module_init(scx200_gpio_init);
131module_exit(scx200_gpio_cleanup);