blob: 0bc135b9b16fa680d0111aa932eb4cc39ce36ee8 [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,
Arnd Bergmann6038f372010-08-15 18:52:59 +020070 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Jim Cromiec8ad9682006-09-29 01:59:05 -070073static struct cdev scx200_gpio_cdev; /* use 1 cdev for all pins */
Jim Cromie7d7f2122006-06-27 02:54:14 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static int __init scx200_gpio_init(void)
76{
Jim Cromie635adb62006-07-14 00:24:16 -070077 int rc;
Jim Cromieae2d1f22006-07-14 00:24:16 -070078 dev_t devid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (!scx200_gpio_present()) {
Jim Cromieae2d1f22006-07-14 00:24:16 -070081 printk(KERN_ERR DRVNAME ": no SCx200 gpio present\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return -ENODEV;
83 }
Jim Cromie979b5ec2006-06-27 02:54:14 -070084
85 /* support dev_dbg() with pdev->dev */
Jim Cromieae2d1f22006-07-14 00:24:16 -070086 pdev = platform_device_alloc(DRVNAME, 0);
Jim Cromie979b5ec2006-06-27 02:54:14 -070087 if (!pdev)
88 return -ENOMEM;
89
90 rc = platform_device_add(pdev);
91 if (rc)
92 goto undo_malloc;
93
Jim Cromief31000e2006-06-27 02:54:23 -070094 /* nsc_gpio uses dev_dbg(), so needs this */
Jim Cromie2e8f7a32006-07-14 00:24:26 -070095 scx200_gpio_ops.dev = &pdev->dev;
Jim Cromief31000e2006-06-27 02:54:23 -070096
Jim Cromieae2d1f22006-07-14 00:24:16 -070097 if (major) {
98 devid = MKDEV(major, 0);
99 rc = register_chrdev_region(devid, MAX_PINS, "scx200_gpio");
100 } else {
101 rc = alloc_chrdev_region(&devid, 0, MAX_PINS, "scx200_gpio");
102 major = MAJOR(devid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
Jim Cromie7d7f2122006-06-27 02:54:14 -0700104 if (rc < 0) {
Jim Cromie979b5ec2006-06-27 02:54:14 -0700105 dev_err(&pdev->dev, "SCx200 chrdev_region err: %d\n", rc);
106 goto undo_platform_device_add;
Jim Cromie7d7f2122006-06-27 02:54:14 -0700107 }
Jim Cromie635adb62006-07-14 00:24:16 -0700108
Jim Cromie2e8f7a32006-07-14 00:24:26 -0700109 cdev_init(&scx200_gpio_cdev, &scx200_gpio_fileops);
Jim Cromie635adb62006-07-14 00:24:16 -0700110 cdev_add(&scx200_gpio_cdev, devid, MAX_PINS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Jim Cromie979b5ec2006-06-27 02:54:14 -0700112 return 0; /* succeed */
Jim Cromie7d7f2122006-06-27 02:54:14 -0700113
Jim Cromie979b5ec2006-06-27 02:54:14 -0700114undo_platform_device_add:
Ingo Molnar1017f6a2006-06-30 01:55:29 -0700115 platform_device_del(pdev);
Jim Cromie979b5ec2006-06-27 02:54:14 -0700116undo_malloc:
Ingo Molnar1017f6a2006-06-30 01:55:29 -0700117 platform_device_put(pdev);
118
Jim Cromie7d7f2122006-06-27 02:54:14 -0700119 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122static void __exit scx200_gpio_cleanup(void)
123{
Jim Cromie635adb62006-07-14 00:24:16 -0700124 cdev_del(&scx200_gpio_cdev);
125 /* cdev_put(&scx200_gpio_cdev); */
126
Jim Cromieae2d1f22006-07-14 00:24:16 -0700127 unregister_chrdev_region(MKDEV(major, 0), MAX_PINS);
Jim Cromie979b5ec2006-06-27 02:54:14 -0700128 platform_device_unregister(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
131module_init(scx200_gpio_init);
132module_exit(scx200_gpio_cleanup);