Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / misc / phantom.c
blob7fa61e907e1c115b16f14936ffea65f865816f4e
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 an 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/kernel.h>
16 #include <linux/module.h>
17 #include <linux/device.h>
18 #include <linux/pci.h>
19 #include <linux/fs.h>
20 #include <linux/poll.h>
21 #include <linux/interrupt.h>
22 #include <linux/cdev.h>
23 #include <linux/phantom.h>
25 #include <asm/atomic.h>
26 #include <asm/io.h>
28 #define PHANTOM_VERSION "n0.9.8"
30 #define PHANTOM_MAX_MINORS 8
32 #define PHN_IRQCTL 0x4c /* irq control in caddr space */
34 #define PHB_RUNNING 1
35 #define PHB_NOT_OH 2
37 static struct class *phantom_class;
38 static int phantom_major;
40 struct phantom_device {
41 unsigned int opened;
42 void __iomem *caddr;
43 u32 __iomem *iaddr;
44 u32 __iomem *oaddr;
45 unsigned long status;
46 atomic_t counter;
48 wait_queue_head_t wait;
49 struct cdev cdev;
51 struct mutex open_lock;
52 spinlock_t regs_lock;
54 /* used in NOT_OH mode */
55 struct phm_regs oregs;
56 u32 ctl_reg;
59 static unsigned char phantom_devices[PHANTOM_MAX_MINORS];
61 static int phantom_status(struct phantom_device *dev, unsigned long newstat)
63 pr_debug("phantom_status %lx %lx\n", dev->status, newstat);
65 if (!(dev->status & PHB_RUNNING) && (newstat & PHB_RUNNING)) {
66 atomic_set(&dev->counter, 0);
67 iowrite32(PHN_CTL_IRQ, dev->iaddr + PHN_CONTROL);
68 iowrite32(0x43, dev->caddr + PHN_IRQCTL);
69 ioread32(dev->caddr + PHN_IRQCTL); /* PCI posting */
70 } else if ((dev->status & PHB_RUNNING) && !(newstat & PHB_RUNNING)) {
71 iowrite32(0, dev->caddr + PHN_IRQCTL);
72 ioread32(dev->caddr + PHN_IRQCTL); /* PCI posting */
75 dev->status = newstat;
77 return 0;
81 * File ops
84 static long phantom_ioctl(struct file *file, unsigned int cmd,
85 unsigned long arg)
87 struct phantom_device *dev = file->private_data;
88 struct phm_regs rs;
89 struct phm_reg r;
90 void __user *argp = (void __user *)arg;
91 unsigned long flags;
92 unsigned int i;
94 if (_IOC_TYPE(cmd) != PH_IOC_MAGIC ||
95 _IOC_NR(cmd) > PH_IOC_MAXNR)
96 return -ENOTTY;
98 switch (cmd) {
99 case PHN_SET_REG:
100 if (copy_from_user(&r, argp, sizeof(r)))
101 return -EFAULT;
103 if (r.reg > 7)
104 return -EINVAL;
106 spin_lock_irqsave(&dev->regs_lock, flags);
107 if (r.reg == PHN_CONTROL && (r.value & PHN_CTL_IRQ) &&
108 phantom_status(dev, dev->status | PHB_RUNNING)){
109 spin_unlock_irqrestore(&dev->regs_lock, flags);
110 return -ENODEV;
113 pr_debug("phantom: writing %x to %u\n", r.value, r.reg);
115 /* preserve amp bit (don't allow to change it when in NOT_OH) */
116 if (r.reg == PHN_CONTROL && (dev->status & PHB_NOT_OH)) {
117 r.value &= ~PHN_CTL_AMP;
118 r.value |= dev->ctl_reg & PHN_CTL_AMP;
119 dev->ctl_reg = r.value;
122 iowrite32(r.value, dev->iaddr + r.reg);
123 ioread32(dev->iaddr); /* PCI posting */
125 if (r.reg == PHN_CONTROL && !(r.value & PHN_CTL_IRQ))
126 phantom_status(dev, dev->status & ~PHB_RUNNING);
127 spin_unlock_irqrestore(&dev->regs_lock, flags);
128 break;
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_GET_REG:
147 if (copy_from_user(&r, argp, sizeof(r)))
148 return -EFAULT;
150 if (r.reg > 7)
151 return -EINVAL;
153 r.value = ioread32(dev->iaddr + r.reg);
155 if (copy_to_user(argp, &r, sizeof(r)))
156 return -EFAULT;
157 break;
158 case PHN_GET_REGS: {
159 u32 m;
161 if (copy_from_user(&rs, argp, sizeof(rs)))
162 return -EFAULT;
164 m = min(rs.count, 8U);
166 pr_debug("phantom: GRS %u regs %x\n", rs.count, rs.mask);
167 spin_lock_irqsave(&dev->regs_lock, flags);
168 for (i = 0; i < m; i++)
169 if (rs.mask & BIT(i))
170 rs.values[i] = ioread32(dev->iaddr + i);
171 spin_unlock_irqrestore(&dev->regs_lock, flags);
173 if (copy_to_user(argp, &rs, sizeof(rs)))
174 return -EFAULT;
175 break;
176 } case PHN_NOT_OH:
177 spin_lock_irqsave(&dev->regs_lock, flags);
178 if (dev->status & PHB_RUNNING) {
179 printk(KERN_ERR "phantom: you need to set NOT_OH "
180 "before you start the device!\n");
181 spin_unlock_irqrestore(&dev->regs_lock, flags);
182 return -EINVAL;
184 dev->status |= PHB_NOT_OH;
185 spin_unlock_irqrestore(&dev->regs_lock, flags);
186 break;
187 default:
188 return -ENOTTY;
191 return 0;
194 static int phantom_open(struct inode *inode, struct file *file)
196 struct phantom_device *dev = container_of(inode->i_cdev,
197 struct phantom_device, cdev);
199 nonseekable_open(inode, file);
201 if (mutex_lock_interruptible(&dev->open_lock))
202 return -ERESTARTSYS;
204 if (dev->opened) {
205 mutex_unlock(&dev->open_lock);
206 return -EINVAL;
209 WARN_ON(dev->status & PHB_NOT_OH);
211 file->private_data = dev;
213 atomic_set(&dev->counter, 0);
214 dev->opened++;
215 mutex_unlock(&dev->open_lock);
217 return 0;
220 static int phantom_release(struct inode *inode, struct file *file)
222 struct phantom_device *dev = file->private_data;
224 mutex_lock(&dev->open_lock);
226 dev->opened = 0;
227 phantom_status(dev, dev->status & ~PHB_RUNNING);
228 dev->status &= ~PHB_NOT_OH;
230 mutex_unlock(&dev->open_lock);
232 return 0;
235 static unsigned int phantom_poll(struct file *file, poll_table *wait)
237 struct phantom_device *dev = file->private_data;
238 unsigned int mask = 0;
240 pr_debug("phantom_poll: %d\n", atomic_read(&dev->counter));
241 poll_wait(file, &dev->wait, wait);
242 if (atomic_read(&dev->counter)) {
243 mask = POLLIN | POLLRDNORM;
244 atomic_dec(&dev->counter);
245 } else if ((dev->status & PHB_RUNNING) == 0)
246 mask = POLLIN | POLLRDNORM | POLLERR;
247 pr_debug("phantom_poll end: %x/%d\n", mask, atomic_read(&dev->counter));
249 return mask;
252 static struct file_operations phantom_file_ops = {
253 .open = phantom_open,
254 .release = phantom_release,
255 .unlocked_ioctl = phantom_ioctl,
256 .poll = phantom_poll,
259 static irqreturn_t phantom_isr(int irq, void *data)
261 struct phantom_device *dev = data;
262 unsigned int i;
263 u32 ctl;
265 spin_lock(&dev->regs_lock);
266 ctl = ioread32(dev->iaddr + PHN_CONTROL);
267 if (!(ctl & PHN_CTL_IRQ)) {
268 spin_unlock(&dev->regs_lock);
269 return IRQ_NONE;
272 iowrite32(0, dev->iaddr);
273 iowrite32(0xc0, dev->iaddr);
275 if (dev->status & PHB_NOT_OH) {
276 struct phm_regs *r = &dev->oregs;
277 u32 m = min(r->count, 8U);
279 for (i = 0; i < m; i++)
280 if (r->mask & BIT(i))
281 iowrite32(r->values[i], dev->oaddr + i);
283 dev->ctl_reg ^= PHN_CTL_AMP;
284 iowrite32(dev->ctl_reg, dev->iaddr + PHN_CONTROL);
286 spin_unlock(&dev->regs_lock);
288 ioread32(dev->iaddr); /* PCI posting */
290 atomic_inc(&dev->counter);
291 wake_up_interruptible(&dev->wait);
293 return IRQ_HANDLED;
297 * Init and deinit driver
300 static unsigned int __devinit phantom_get_free(void)
302 unsigned int i;
304 for (i = 0; i < PHANTOM_MAX_MINORS; i++)
305 if (phantom_devices[i] == 0)
306 break;
308 return i;
311 static int __devinit phantom_probe(struct pci_dev *pdev,
312 const struct pci_device_id *pci_id)
314 struct phantom_device *pht;
315 unsigned int minor;
316 int retval;
318 retval = pci_enable_device(pdev);
319 if (retval)
320 goto err;
322 minor = phantom_get_free();
323 if (minor == PHANTOM_MAX_MINORS) {
324 dev_err(&pdev->dev, "too many devices found!\n");
325 retval = -EIO;
326 goto err_dis;
329 phantom_devices[minor] = 1;
331 retval = pci_request_regions(pdev, "phantom");
332 if (retval)
333 goto err_null;
335 retval = -ENOMEM;
336 pht = kzalloc(sizeof(*pht), GFP_KERNEL);
337 if (pht == NULL) {
338 dev_err(&pdev->dev, "unable to allocate device\n");
339 goto err_reg;
342 pht->caddr = pci_iomap(pdev, 0, 0);
343 if (pht->caddr == NULL) {
344 dev_err(&pdev->dev, "can't remap conf space\n");
345 goto err_fr;
347 pht->iaddr = pci_iomap(pdev, 2, 0);
348 if (pht->iaddr == NULL) {
349 dev_err(&pdev->dev, "can't remap input space\n");
350 goto err_unmc;
352 pht->oaddr = pci_iomap(pdev, 3, 0);
353 if (pht->oaddr == NULL) {
354 dev_err(&pdev->dev, "can't remap output space\n");
355 goto err_unmi;
358 mutex_init(&pht->open_lock);
359 spin_lock_init(&pht->regs_lock);
360 init_waitqueue_head(&pht->wait);
361 cdev_init(&pht->cdev, &phantom_file_ops);
362 pht->cdev.owner = THIS_MODULE;
364 iowrite32(0, pht->caddr + PHN_IRQCTL);
365 ioread32(pht->caddr + PHN_IRQCTL); /* PCI posting */
366 retval = request_irq(pdev->irq, phantom_isr,
367 IRQF_SHARED | IRQF_DISABLED, "phantom", pht);
368 if (retval) {
369 dev_err(&pdev->dev, "can't establish ISR\n");
370 goto err_unmo;
373 retval = cdev_add(&pht->cdev, MKDEV(phantom_major, minor), 1);
374 if (retval) {
375 dev_err(&pdev->dev, "chardev registration failed\n");
376 goto err_irq;
379 if (IS_ERR(device_create(phantom_class, &pdev->dev, MKDEV(phantom_major,
380 minor), "phantom%u", minor)))
381 dev_err(&pdev->dev, "can't create device\n");
383 pci_set_drvdata(pdev, pht);
385 return 0;
386 err_irq:
387 free_irq(pdev->irq, pht);
388 err_unmo:
389 pci_iounmap(pdev, pht->oaddr);
390 err_unmi:
391 pci_iounmap(pdev, pht->iaddr);
392 err_unmc:
393 pci_iounmap(pdev, pht->caddr);
394 err_fr:
395 kfree(pht);
396 err_reg:
397 pci_release_regions(pdev);
398 err_null:
399 phantom_devices[minor] = 0;
400 err_dis:
401 pci_disable_device(pdev);
402 err:
403 return retval;
406 static void __devexit phantom_remove(struct pci_dev *pdev)
408 struct phantom_device *pht = pci_get_drvdata(pdev);
409 unsigned int minor = MINOR(pht->cdev.dev);
411 device_destroy(phantom_class, MKDEV(phantom_major, minor));
413 cdev_del(&pht->cdev);
415 iowrite32(0, pht->caddr + PHN_IRQCTL);
416 ioread32(pht->caddr + PHN_IRQCTL); /* PCI posting */
417 free_irq(pdev->irq, pht);
419 pci_iounmap(pdev, pht->oaddr);
420 pci_iounmap(pdev, pht->iaddr);
421 pci_iounmap(pdev, pht->caddr);
423 kfree(pht);
425 pci_release_regions(pdev);
427 phantom_devices[minor] = 0;
429 pci_disable_device(pdev);
432 #ifdef CONFIG_PM
433 static int phantom_suspend(struct pci_dev *pdev, pm_message_t state)
435 struct phantom_device *dev = pci_get_drvdata(pdev);
437 iowrite32(0, dev->caddr + PHN_IRQCTL);
438 ioread32(dev->caddr + PHN_IRQCTL); /* PCI posting */
440 synchronize_irq(pdev->irq);
442 return 0;
445 static int phantom_resume(struct pci_dev *pdev)
447 struct phantom_device *dev = pci_get_drvdata(pdev);
449 iowrite32(0, dev->caddr + PHN_IRQCTL);
451 return 0;
453 #else
454 #define phantom_suspend NULL
455 #define phantom_resume NULL
456 #endif
458 static struct pci_device_id phantom_pci_tbl[] __devinitdata = {
459 { .vendor = PCI_VENDOR_ID_PLX, .device = PCI_DEVICE_ID_PLX_9050,
460 .subvendor = PCI_VENDOR_ID_PLX, .subdevice = PCI_DEVICE_ID_PLX_9050,
461 .class = PCI_CLASS_BRIDGE_OTHER << 8, .class_mask = 0xffff00 },
462 { 0, }
464 MODULE_DEVICE_TABLE(pci, phantom_pci_tbl);
466 static struct pci_driver phantom_pci_driver = {
467 .name = "phantom",
468 .id_table = phantom_pci_tbl,
469 .probe = phantom_probe,
470 .remove = __devexit_p(phantom_remove),
471 .suspend = phantom_suspend,
472 .resume = phantom_resume
475 static ssize_t phantom_show_version(struct class *cls, char *buf)
477 return sprintf(buf, PHANTOM_VERSION "\n");
480 static CLASS_ATTR(version, 0444, phantom_show_version, NULL);
482 static int __init phantom_init(void)
484 int retval;
485 dev_t dev;
487 phantom_class = class_create(THIS_MODULE, "phantom");
488 if (IS_ERR(phantom_class)) {
489 retval = PTR_ERR(phantom_class);
490 printk(KERN_ERR "phantom: can't register phantom class\n");
491 goto err;
493 retval = class_create_file(phantom_class, &class_attr_version);
494 if (retval) {
495 printk(KERN_ERR "phantom: can't create sysfs version file\n");
496 goto err_class;
499 retval = alloc_chrdev_region(&dev, 0, PHANTOM_MAX_MINORS, "phantom");
500 if (retval) {
501 printk(KERN_ERR "phantom: can't register character device\n");
502 goto err_attr;
504 phantom_major = MAJOR(dev);
506 retval = pci_register_driver(&phantom_pci_driver);
507 if (retval) {
508 printk(KERN_ERR "phantom: can't register pci driver\n");
509 goto err_unchr;
512 printk(KERN_INFO "Phantom Linux Driver, version " PHANTOM_VERSION ", "
513 "init OK\n");
515 return 0;
516 err_unchr:
517 unregister_chrdev_region(dev, PHANTOM_MAX_MINORS);
518 err_attr:
519 class_remove_file(phantom_class, &class_attr_version);
520 err_class:
521 class_destroy(phantom_class);
522 err:
523 return retval;
526 static void __exit phantom_exit(void)
528 pci_unregister_driver(&phantom_pci_driver);
530 unregister_chrdev_region(MKDEV(phantom_major, 0), PHANTOM_MAX_MINORS);
532 class_remove_file(phantom_class, &class_attr_version);
533 class_destroy(phantom_class);
535 pr_debug("phantom: module successfully removed\n");
538 module_init(phantom_init);
539 module_exit(phantom_exit);
541 MODULE_AUTHOR("Jiri Slaby <jirislaby@gmail.com>");
542 MODULE_DESCRIPTION("Sensable Phantom driver");
543 MODULE_LICENSE("GPL");
544 MODULE_VERSION(PHANTOM_VERSION);