thinkpad-acpi: simplify module autoloading
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / misc / phantom.c
blobfa57b67593ae5b884c42a9ae7e7704084c905004
1 /*
2 * Copyright (C) 2005-2007 Jiri Slaby <jirislaby@gmail.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * You need a userspace library to cooperate with this driver. It (and other
10 * info) may be obtained here:
11 * http://www.fi.muni.cz/~xslaby/phantom.html
12 * or alternatively, you might use OpenHaptics provided by Sensable.
15 #include <linux/compat.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/device.h>
19 #include <linux/pci.h>
20 #include <linux/fs.h>
21 #include <linux/poll.h>
22 #include <linux/interrupt.h>
23 #include <linux/cdev.h>
24 #include <linux/phantom.h>
25 #include <linux/smp_lock.h>
27 #include <asm/atomic.h>
28 #include <asm/io.h>
30 #define PHANTOM_VERSION "n0.9.8"
32 #define PHANTOM_MAX_MINORS 8
34 #define PHN_IRQCTL 0x4c /* irq control in caddr space */
36 #define PHB_RUNNING 1
37 #define PHB_NOT_OH 2
39 static struct class *phantom_class;
40 static int phantom_major;
42 struct phantom_device {
43 unsigned int opened;
44 void __iomem *caddr;
45 u32 __iomem *iaddr;
46 u32 __iomem *oaddr;
47 unsigned long status;
48 atomic_t counter;
50 wait_queue_head_t wait;
51 struct cdev cdev;
53 struct mutex open_lock;
54 spinlock_t regs_lock;
56 /* used in NOT_OH mode */
57 struct phm_regs oregs;
58 u32 ctl_reg;
61 static unsigned char phantom_devices[PHANTOM_MAX_MINORS];
63 static int phantom_status(struct phantom_device *dev, unsigned long newstat)
65 pr_debug("phantom_status %lx %lx\n", dev->status, newstat);
67 if (!(dev->status & PHB_RUNNING) && (newstat & PHB_RUNNING)) {
68 atomic_set(&dev->counter, 0);
69 iowrite32(PHN_CTL_IRQ, dev->iaddr + PHN_CONTROL);
70 iowrite32(0x43, dev->caddr + PHN_IRQCTL);
71 ioread32(dev->caddr + PHN_IRQCTL); /* PCI posting */
72 } else if ((dev->status & PHB_RUNNING) && !(newstat & PHB_RUNNING)) {
73 iowrite32(0, dev->caddr + PHN_IRQCTL);
74 ioread32(dev->caddr + PHN_IRQCTL); /* PCI posting */
77 dev->status = newstat;
79 return 0;
83 * File ops
86 static long phantom_ioctl(struct file *file, unsigned int cmd,
87 unsigned long arg)
89 struct phantom_device *dev = file->private_data;
90 struct phm_regs rs;
91 struct phm_reg r;
92 void __user *argp = (void __user *)arg;
93 unsigned long flags;
94 unsigned int i;
96 switch (cmd) {
97 case PHN_SETREG:
98 case PHN_SET_REG:
99 if (copy_from_user(&r, argp, sizeof(r)))
100 return -EFAULT;
102 if (r.reg > 7)
103 return -EINVAL;
105 spin_lock_irqsave(&dev->regs_lock, flags);
106 if (r.reg == PHN_CONTROL && (r.value & PHN_CTL_IRQ) &&
107 phantom_status(dev, dev->status | PHB_RUNNING)){
108 spin_unlock_irqrestore(&dev->regs_lock, flags);
109 return -ENODEV;
112 pr_debug("phantom: writing %x to %u\n", r.value, r.reg);
114 /* preserve amp bit (don't allow to change it when in NOT_OH) */
115 if (r.reg == PHN_CONTROL && (dev->status & PHB_NOT_OH)) {
116 r.value &= ~PHN_CTL_AMP;
117 r.value |= dev->ctl_reg & PHN_CTL_AMP;
118 dev->ctl_reg = r.value;
121 iowrite32(r.value, dev->iaddr + r.reg);
122 ioread32(dev->iaddr); /* PCI posting */
124 if (r.reg == PHN_CONTROL && !(r.value & PHN_CTL_IRQ))
125 phantom_status(dev, dev->status & ~PHB_RUNNING);
126 spin_unlock_irqrestore(&dev->regs_lock, flags);
127 break;
128 case PHN_SETREGS:
129 case PHN_SET_REGS:
130 if (copy_from_user(&rs, argp, sizeof(rs)))
131 return -EFAULT;
133 pr_debug("phantom: SRS %u regs %x\n", rs.count, rs.mask);
134 spin_lock_irqsave(&dev->regs_lock, flags);
135 if (dev->status & PHB_NOT_OH)
136 memcpy(&dev->oregs, &rs, sizeof(rs));
137 else {
138 u32 m = min(rs.count, 8U);
139 for (i = 0; i < m; i++)
140 if (rs.mask & BIT(i))
141 iowrite32(rs.values[i], dev->oaddr + i);
142 ioread32(dev->iaddr); /* PCI posting */
144 spin_unlock_irqrestore(&dev->regs_lock, flags);
145 break;
146 case PHN_GETREG:
147 case PHN_GET_REG:
148 if (copy_from_user(&r, argp, sizeof(r)))
149 return -EFAULT;
151 if (r.reg > 7)
152 return -EINVAL;
154 r.value = ioread32(dev->iaddr + r.reg);
156 if (copy_to_user(argp, &r, sizeof(r)))
157 return -EFAULT;
158 break;
159 case PHN_GETREGS:
160 case PHN_GET_REGS: {
161 u32 m;
163 if (copy_from_user(&rs, argp, sizeof(rs)))
164 return -EFAULT;
166 m = min(rs.count, 8U);
168 pr_debug("phantom: GRS %u regs %x\n", rs.count, rs.mask);
169 spin_lock_irqsave(&dev->regs_lock, flags);
170 for (i = 0; i < m; i++)
171 if (rs.mask & BIT(i))
172 rs.values[i] = ioread32(dev->iaddr + i);
173 atomic_set(&dev->counter, 0);
174 spin_unlock_irqrestore(&dev->regs_lock, flags);
176 if (copy_to_user(argp, &rs, sizeof(rs)))
177 return -EFAULT;
178 break;
179 } case PHN_NOT_OH:
180 spin_lock_irqsave(&dev->regs_lock, flags);
181 if (dev->status & PHB_RUNNING) {
182 printk(KERN_ERR "phantom: you need to set NOT_OH "
183 "before you start the device!\n");
184 spin_unlock_irqrestore(&dev->regs_lock, flags);
185 return -EINVAL;
187 dev->status |= PHB_NOT_OH;
188 spin_unlock_irqrestore(&dev->regs_lock, flags);
189 break;
190 default:
191 return -ENOTTY;
194 return 0;
197 #ifdef CONFIG_COMPAT
198 static long phantom_compat_ioctl(struct file *filp, unsigned int cmd,
199 unsigned long arg)
201 if (_IOC_NR(cmd) <= 3 && _IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
202 cmd &= ~(_IOC_SIZEMASK << _IOC_SIZESHIFT);
203 cmd |= sizeof(void *) << _IOC_SIZESHIFT;
205 return phantom_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
207 #else
208 #define phantom_compat_ioctl NULL
209 #endif
211 static int phantom_open(struct inode *inode, struct file *file)
213 struct phantom_device *dev = container_of(inode->i_cdev,
214 struct phantom_device, cdev);
216 lock_kernel();
217 nonseekable_open(inode, file);
219 if (mutex_lock_interruptible(&dev->open_lock)) {
220 unlock_kernel();
221 return -ERESTARTSYS;
224 if (dev->opened) {
225 mutex_unlock(&dev->open_lock);
226 unlock_kernel();
227 return -EINVAL;
230 WARN_ON(dev->status & PHB_NOT_OH);
232 file->private_data = dev;
234 atomic_set(&dev->counter, 0);
235 dev->opened++;
236 mutex_unlock(&dev->open_lock);
237 unlock_kernel();
238 return 0;
241 static int phantom_release(struct inode *inode, struct file *file)
243 struct phantom_device *dev = file->private_data;
245 mutex_lock(&dev->open_lock);
247 dev->opened = 0;
248 phantom_status(dev, dev->status & ~PHB_RUNNING);
249 dev->status &= ~PHB_NOT_OH;
251 mutex_unlock(&dev->open_lock);
253 return 0;
256 static unsigned int phantom_poll(struct file *file, poll_table *wait)
258 struct phantom_device *dev = file->private_data;
259 unsigned int mask = 0;
261 pr_debug("phantom_poll: %d\n", atomic_read(&dev->counter));
262 poll_wait(file, &dev->wait, wait);
264 if (!(dev->status & PHB_RUNNING))
265 mask = POLLERR;
266 else if (atomic_read(&dev->counter))
267 mask = POLLIN | POLLRDNORM;
269 pr_debug("phantom_poll end: %x/%d\n", mask, atomic_read(&dev->counter));
271 return mask;
274 static struct file_operations phantom_file_ops = {
275 .open = phantom_open,
276 .release = phantom_release,
277 .unlocked_ioctl = phantom_ioctl,
278 .compat_ioctl = phantom_compat_ioctl,
279 .poll = phantom_poll,
282 static irqreturn_t phantom_isr(int irq, void *data)
284 struct phantom_device *dev = data;
285 unsigned int i;
286 u32 ctl;
288 spin_lock(&dev->regs_lock);
289 ctl = ioread32(dev->iaddr + PHN_CONTROL);
290 if (!(ctl & PHN_CTL_IRQ)) {
291 spin_unlock(&dev->regs_lock);
292 return IRQ_NONE;
295 iowrite32(0, dev->iaddr);
296 iowrite32(0xc0, dev->iaddr);
298 if (dev->status & PHB_NOT_OH) {
299 struct phm_regs *r = &dev->oregs;
300 u32 m = min(r->count, 8U);
302 for (i = 0; i < m; i++)
303 if (r->mask & BIT(i))
304 iowrite32(r->values[i], dev->oaddr + i);
306 dev->ctl_reg ^= PHN_CTL_AMP;
307 iowrite32(dev->ctl_reg, dev->iaddr + PHN_CONTROL);
309 spin_unlock(&dev->regs_lock);
311 ioread32(dev->iaddr); /* PCI posting */
313 atomic_inc(&dev->counter);
314 wake_up_interruptible(&dev->wait);
316 return IRQ_HANDLED;
320 * Init and deinit driver
323 static unsigned int __devinit phantom_get_free(void)
325 unsigned int i;
327 for (i = 0; i < PHANTOM_MAX_MINORS; i++)
328 if (phantom_devices[i] == 0)
329 break;
331 return i;
334 static int __devinit phantom_probe(struct pci_dev *pdev,
335 const struct pci_device_id *pci_id)
337 struct phantom_device *pht;
338 unsigned int minor;
339 int retval;
341 retval = pci_enable_device(pdev);
342 if (retval)
343 goto err;
345 minor = phantom_get_free();
346 if (minor == PHANTOM_MAX_MINORS) {
347 dev_err(&pdev->dev, "too many devices found!\n");
348 retval = -EIO;
349 goto err_dis;
352 phantom_devices[minor] = 1;
354 retval = pci_request_regions(pdev, "phantom");
355 if (retval)
356 goto err_null;
358 retval = -ENOMEM;
359 pht = kzalloc(sizeof(*pht), GFP_KERNEL);
360 if (pht == NULL) {
361 dev_err(&pdev->dev, "unable to allocate device\n");
362 goto err_reg;
365 pht->caddr = pci_iomap(pdev, 0, 0);
366 if (pht->caddr == NULL) {
367 dev_err(&pdev->dev, "can't remap conf space\n");
368 goto err_fr;
370 pht->iaddr = pci_iomap(pdev, 2, 0);
371 if (pht->iaddr == NULL) {
372 dev_err(&pdev->dev, "can't remap input space\n");
373 goto err_unmc;
375 pht->oaddr = pci_iomap(pdev, 3, 0);
376 if (pht->oaddr == NULL) {
377 dev_err(&pdev->dev, "can't remap output space\n");
378 goto err_unmi;
381 mutex_init(&pht->open_lock);
382 spin_lock_init(&pht->regs_lock);
383 init_waitqueue_head(&pht->wait);
384 cdev_init(&pht->cdev, &phantom_file_ops);
385 pht->cdev.owner = THIS_MODULE;
387 iowrite32(0, pht->caddr + PHN_IRQCTL);
388 ioread32(pht->caddr + PHN_IRQCTL); /* PCI posting */
389 retval = request_irq(pdev->irq, phantom_isr,
390 IRQF_SHARED | IRQF_DISABLED, "phantom", pht);
391 if (retval) {
392 dev_err(&pdev->dev, "can't establish ISR\n");
393 goto err_unmo;
396 retval = cdev_add(&pht->cdev, MKDEV(phantom_major, minor), 1);
397 if (retval) {
398 dev_err(&pdev->dev, "chardev registration failed\n");
399 goto err_irq;
402 if (IS_ERR(device_create(phantom_class, &pdev->dev,
403 MKDEV(phantom_major, minor), NULL,
404 "phantom%u", minor)))
405 dev_err(&pdev->dev, "can't create device\n");
407 pci_set_drvdata(pdev, pht);
409 return 0;
410 err_irq:
411 free_irq(pdev->irq, pht);
412 err_unmo:
413 pci_iounmap(pdev, pht->oaddr);
414 err_unmi:
415 pci_iounmap(pdev, pht->iaddr);
416 err_unmc:
417 pci_iounmap(pdev, pht->caddr);
418 err_fr:
419 kfree(pht);
420 err_reg:
421 pci_release_regions(pdev);
422 err_null:
423 phantom_devices[minor] = 0;
424 err_dis:
425 pci_disable_device(pdev);
426 err:
427 return retval;
430 static void __devexit phantom_remove(struct pci_dev *pdev)
432 struct phantom_device *pht = pci_get_drvdata(pdev);
433 unsigned int minor = MINOR(pht->cdev.dev);
435 device_destroy(phantom_class, MKDEV(phantom_major, minor));
437 cdev_del(&pht->cdev);
439 iowrite32(0, pht->caddr + PHN_IRQCTL);
440 ioread32(pht->caddr + PHN_IRQCTL); /* PCI posting */
441 free_irq(pdev->irq, pht);
443 pci_iounmap(pdev, pht->oaddr);
444 pci_iounmap(pdev, pht->iaddr);
445 pci_iounmap(pdev, pht->caddr);
447 kfree(pht);
449 pci_release_regions(pdev);
451 phantom_devices[minor] = 0;
453 pci_disable_device(pdev);
456 #ifdef CONFIG_PM
457 static int phantom_suspend(struct pci_dev *pdev, pm_message_t state)
459 struct phantom_device *dev = pci_get_drvdata(pdev);
461 iowrite32(0, dev->caddr + PHN_IRQCTL);
462 ioread32(dev->caddr + PHN_IRQCTL); /* PCI posting */
464 synchronize_irq(pdev->irq);
466 return 0;
469 static int phantom_resume(struct pci_dev *pdev)
471 struct phantom_device *dev = pci_get_drvdata(pdev);
473 iowrite32(0, dev->caddr + PHN_IRQCTL);
475 return 0;
477 #else
478 #define phantom_suspend NULL
479 #define phantom_resume NULL
480 #endif
482 static struct pci_device_id phantom_pci_tbl[] __devinitdata = {
483 { .vendor = PCI_VENDOR_ID_PLX, .device = PCI_DEVICE_ID_PLX_9050,
484 .subvendor = PCI_VENDOR_ID_PLX, .subdevice = PCI_DEVICE_ID_PLX_9050,
485 .class = PCI_CLASS_BRIDGE_OTHER << 8, .class_mask = 0xffff00 },
486 { 0, }
488 MODULE_DEVICE_TABLE(pci, phantom_pci_tbl);
490 static struct pci_driver phantom_pci_driver = {
491 .name = "phantom",
492 .id_table = phantom_pci_tbl,
493 .probe = phantom_probe,
494 .remove = __devexit_p(phantom_remove),
495 .suspend = phantom_suspend,
496 .resume = phantom_resume
499 static ssize_t phantom_show_version(struct class *cls, char *buf)
501 return sprintf(buf, PHANTOM_VERSION "\n");
504 static CLASS_ATTR(version, 0444, phantom_show_version, NULL);
506 static int __init phantom_init(void)
508 int retval;
509 dev_t dev;
511 phantom_class = class_create(THIS_MODULE, "phantom");
512 if (IS_ERR(phantom_class)) {
513 retval = PTR_ERR(phantom_class);
514 printk(KERN_ERR "phantom: can't register phantom class\n");
515 goto err;
517 retval = class_create_file(phantom_class, &class_attr_version);
518 if (retval) {
519 printk(KERN_ERR "phantom: can't create sysfs version file\n");
520 goto err_class;
523 retval = alloc_chrdev_region(&dev, 0, PHANTOM_MAX_MINORS, "phantom");
524 if (retval) {
525 printk(KERN_ERR "phantom: can't register character device\n");
526 goto err_attr;
528 phantom_major = MAJOR(dev);
530 retval = pci_register_driver(&phantom_pci_driver);
531 if (retval) {
532 printk(KERN_ERR "phantom: can't register pci driver\n");
533 goto err_unchr;
536 printk(KERN_INFO "Phantom Linux Driver, version " PHANTOM_VERSION ", "
537 "init OK\n");
539 return 0;
540 err_unchr:
541 unregister_chrdev_region(dev, PHANTOM_MAX_MINORS);
542 err_attr:
543 class_remove_file(phantom_class, &class_attr_version);
544 err_class:
545 class_destroy(phantom_class);
546 err:
547 return retval;
550 static void __exit phantom_exit(void)
552 pci_unregister_driver(&phantom_pci_driver);
554 unregister_chrdev_region(MKDEV(phantom_major, 0), PHANTOM_MAX_MINORS);
556 class_remove_file(phantom_class, &class_attr_version);
557 class_destroy(phantom_class);
559 pr_debug("phantom: module successfully removed\n");
562 module_init(phantom_init);
563 module_exit(phantom_exit);
565 MODULE_AUTHOR("Jiri Slaby <jirislaby@gmail.com>");
566 MODULE_DESCRIPTION("Sensable Phantom driver (PCI devices)");
567 MODULE_LICENSE("GPL");
568 MODULE_VERSION(PHANTOM_VERSION);