1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2005-2007 Jiri Slaby <jirislaby@gmail.com>
5 * You need a userspace library to cooperate with this driver. It (and other
6 * info) may be obtained here:
7 * http://www.fi.muni.cz/~xslaby/phantom.html
8 * or alternatively, you might use OpenHaptics provided by Sensable.
11 #include <linux/compat.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/device.h>
15 #include <linux/pci.h>
17 #include <linux/poll.h>
18 #include <linux/interrupt.h>
19 #include <linux/cdev.h>
20 #include <linux/slab.h>
21 #include <linux/phantom.h>
22 #include <linux/sched.h>
23 #include <linux/mutex.h>
25 #include <linux/atomic.h>
28 #define PHANTOM_VERSION "n0.9.8"
30 #define PHANTOM_MAX_MINORS 8
32 #define PHN_IRQCTL 0x4c /* irq control in caddr space */
37 static DEFINE_MUTEX(phantom_mutex
);
38 static int phantom_major
;
40 static const struct class phantom_class
= {
44 struct phantom_device
{
52 wait_queue_head_t wait
;
55 struct mutex open_lock
;
58 /* used in NOT_OH mode */
59 struct phm_regs oregs
;
63 static unsigned char phantom_devices
[PHANTOM_MAX_MINORS
];
65 static int phantom_status(struct phantom_device
*dev
, unsigned long newstat
)
67 pr_debug("phantom_status %lx %lx\n", dev
->status
, newstat
);
69 if (!(dev
->status
& PHB_RUNNING
) && (newstat
& PHB_RUNNING
)) {
70 atomic_set(&dev
->counter
, 0);
71 iowrite32(PHN_CTL_IRQ
, dev
->iaddr
+ PHN_CONTROL
);
72 iowrite32(0x43, dev
->caddr
+ PHN_IRQCTL
);
73 ioread32(dev
->caddr
+ PHN_IRQCTL
); /* PCI posting */
74 } else if ((dev
->status
& PHB_RUNNING
) && !(newstat
& PHB_RUNNING
)) {
75 iowrite32(0, dev
->caddr
+ PHN_IRQCTL
);
76 ioread32(dev
->caddr
+ PHN_IRQCTL
); /* PCI posting */
79 dev
->status
= newstat
;
88 static long phantom_ioctl(struct file
*file
, unsigned int cmd
,
91 struct phantom_device
*dev
= file
->private_data
;
94 void __user
*argp
= (void __user
*)arg
;
101 if (copy_from_user(&r
, argp
, sizeof(r
)))
107 spin_lock_irqsave(&dev
->regs_lock
, flags
);
108 if (r
.reg
== PHN_CONTROL
&& (r
.value
& PHN_CTL_IRQ
) &&
109 phantom_status(dev
, dev
->status
| PHB_RUNNING
)){
110 spin_unlock_irqrestore(&dev
->regs_lock
, flags
);
114 pr_debug("phantom: writing %x to %u\n", r
.value
, r
.reg
);
116 /* preserve amp bit (don't allow to change it when in NOT_OH) */
117 if (r
.reg
== PHN_CONTROL
&& (dev
->status
& PHB_NOT_OH
)) {
118 r
.value
&= ~PHN_CTL_AMP
;
119 r
.value
|= dev
->ctl_reg
& PHN_CTL_AMP
;
120 dev
->ctl_reg
= r
.value
;
123 iowrite32(r
.value
, dev
->iaddr
+ r
.reg
);
124 ioread32(dev
->iaddr
); /* PCI posting */
126 if (r
.reg
== PHN_CONTROL
&& !(r
.value
& PHN_CTL_IRQ
))
127 phantom_status(dev
, dev
->status
& ~PHB_RUNNING
);
128 spin_unlock_irqrestore(&dev
->regs_lock
, flags
);
132 if (copy_from_user(&rs
, argp
, sizeof(rs
)))
135 pr_debug("phantom: SRS %u regs %x\n", rs
.count
, rs
.mask
);
136 spin_lock_irqsave(&dev
->regs_lock
, flags
);
137 if (dev
->status
& PHB_NOT_OH
)
138 memcpy(&dev
->oregs
, &rs
, sizeof(rs
));
140 u32 m
= min(rs
.count
, 8U);
141 for (i
= 0; i
< m
; i
++)
142 if (rs
.mask
& BIT(i
))
143 iowrite32(rs
.values
[i
], dev
->oaddr
+ i
);
144 ioread32(dev
->iaddr
); /* PCI posting */
146 spin_unlock_irqrestore(&dev
->regs_lock
, flags
);
150 if (copy_from_user(&r
, argp
, sizeof(r
)))
156 r
.value
= ioread32(dev
->iaddr
+ r
.reg
);
158 if (copy_to_user(argp
, &r
, sizeof(r
)))
165 if (copy_from_user(&rs
, argp
, sizeof(rs
)))
168 m
= min(rs
.count
, 8U);
170 pr_debug("phantom: GRS %u regs %x\n", rs
.count
, rs
.mask
);
171 spin_lock_irqsave(&dev
->regs_lock
, flags
);
172 for (i
= 0; i
< m
; i
++)
173 if (rs
.mask
& BIT(i
))
174 rs
.values
[i
] = ioread32(dev
->iaddr
+ i
);
175 atomic_set(&dev
->counter
, 0);
176 spin_unlock_irqrestore(&dev
->regs_lock
, flags
);
178 if (copy_to_user(argp
, &rs
, sizeof(rs
)))
182 spin_lock_irqsave(&dev
->regs_lock
, flags
);
183 if (dev
->status
& PHB_RUNNING
) {
184 printk(KERN_ERR
"phantom: you need to set NOT_OH "
185 "before you start the device!\n");
186 spin_unlock_irqrestore(&dev
->regs_lock
, flags
);
189 dev
->status
|= PHB_NOT_OH
;
190 spin_unlock_irqrestore(&dev
->regs_lock
, flags
);
200 static long phantom_compat_ioctl(struct file
*filp
, unsigned int cmd
,
203 if (_IOC_NR(cmd
) <= 3 && _IOC_SIZE(cmd
) == sizeof(compat_uptr_t
)) {
204 cmd
&= ~(_IOC_SIZEMASK
<< _IOC_SIZESHIFT
);
205 cmd
|= sizeof(void *) << _IOC_SIZESHIFT
;
207 return phantom_ioctl(filp
, cmd
, (unsigned long)compat_ptr(arg
));
210 #define phantom_compat_ioctl NULL
213 static int phantom_open(struct inode
*inode
, struct file
*file
)
215 struct phantom_device
*dev
= container_of(inode
->i_cdev
,
216 struct phantom_device
, cdev
);
218 mutex_lock(&phantom_mutex
);
219 nonseekable_open(inode
, file
);
221 if (mutex_lock_interruptible(&dev
->open_lock
)) {
222 mutex_unlock(&phantom_mutex
);
227 mutex_unlock(&dev
->open_lock
);
228 mutex_unlock(&phantom_mutex
);
232 WARN_ON(dev
->status
& PHB_NOT_OH
);
234 file
->private_data
= dev
;
236 atomic_set(&dev
->counter
, 0);
238 mutex_unlock(&dev
->open_lock
);
239 mutex_unlock(&phantom_mutex
);
243 static int phantom_release(struct inode
*inode
, struct file
*file
)
245 struct phantom_device
*dev
= file
->private_data
;
247 mutex_lock(&dev
->open_lock
);
250 phantom_status(dev
, dev
->status
& ~PHB_RUNNING
);
251 dev
->status
&= ~PHB_NOT_OH
;
253 mutex_unlock(&dev
->open_lock
);
258 static __poll_t
phantom_poll(struct file
*file
, poll_table
*wait
)
260 struct phantom_device
*dev
= file
->private_data
;
263 pr_debug("phantom_poll: %d\n", atomic_read(&dev
->counter
));
264 poll_wait(file
, &dev
->wait
, wait
);
266 if (!(dev
->status
& PHB_RUNNING
))
268 else if (atomic_read(&dev
->counter
))
269 mask
= EPOLLIN
| EPOLLRDNORM
;
271 pr_debug("phantom_poll end: %x/%d\n", mask
, atomic_read(&dev
->counter
));
276 static const struct file_operations phantom_file_ops
= {
277 .open
= phantom_open
,
278 .release
= phantom_release
,
279 .unlocked_ioctl
= phantom_ioctl
,
280 .compat_ioctl
= phantom_compat_ioctl
,
281 .poll
= phantom_poll
,
284 static irqreturn_t
phantom_isr(int irq
, void *data
)
286 struct phantom_device
*dev
= data
;
290 spin_lock(&dev
->regs_lock
);
291 ctl
= ioread32(dev
->iaddr
+ PHN_CONTROL
);
292 if (!(ctl
& PHN_CTL_IRQ
)) {
293 spin_unlock(&dev
->regs_lock
);
297 iowrite32(0, dev
->iaddr
);
298 iowrite32(0xc0, dev
->iaddr
);
300 if (dev
->status
& PHB_NOT_OH
) {
301 struct phm_regs
*r
= &dev
->oregs
;
302 u32 m
= min(r
->count
, 8U);
304 for (i
= 0; i
< m
; i
++)
305 if (r
->mask
& BIT(i
))
306 iowrite32(r
->values
[i
], dev
->oaddr
+ i
);
308 dev
->ctl_reg
^= PHN_CTL_AMP
;
309 iowrite32(dev
->ctl_reg
, dev
->iaddr
+ PHN_CONTROL
);
311 spin_unlock(&dev
->regs_lock
);
313 ioread32(dev
->iaddr
); /* PCI posting */
315 atomic_inc(&dev
->counter
);
316 wake_up_interruptible(&dev
->wait
);
322 * Init and deinit driver
325 static unsigned int phantom_get_free(void)
329 for (i
= 0; i
< PHANTOM_MAX_MINORS
; i
++)
330 if (phantom_devices
[i
] == 0)
336 static int phantom_probe(struct pci_dev
*pdev
,
337 const struct pci_device_id
*pci_id
)
339 struct phantom_device
*pht
;
343 retval
= pci_enable_device(pdev
);
345 dev_err(&pdev
->dev
, "pci_enable_device failed!\n");
349 minor
= phantom_get_free();
350 if (minor
== PHANTOM_MAX_MINORS
) {
351 dev_err(&pdev
->dev
, "too many devices found!\n");
356 phantom_devices
[minor
] = 1;
358 retval
= pci_request_regions(pdev
, "phantom");
360 dev_err(&pdev
->dev
, "pci_request_regions failed!\n");
365 pht
= kzalloc(sizeof(*pht
), GFP_KERNEL
);
367 dev_err(&pdev
->dev
, "unable to allocate device\n");
371 pht
->caddr
= pci_iomap(pdev
, 0, 0);
372 if (pht
->caddr
== NULL
) {
373 dev_err(&pdev
->dev
, "can't remap conf space\n");
376 pht
->iaddr
= pci_iomap(pdev
, 2, 0);
377 if (pht
->iaddr
== NULL
) {
378 dev_err(&pdev
->dev
, "can't remap input space\n");
381 pht
->oaddr
= pci_iomap(pdev
, 3, 0);
382 if (pht
->oaddr
== NULL
) {
383 dev_err(&pdev
->dev
, "can't remap output space\n");
387 mutex_init(&pht
->open_lock
);
388 spin_lock_init(&pht
->regs_lock
);
389 init_waitqueue_head(&pht
->wait
);
390 cdev_init(&pht
->cdev
, &phantom_file_ops
);
391 pht
->cdev
.owner
= THIS_MODULE
;
393 iowrite32(0, pht
->caddr
+ PHN_IRQCTL
);
394 ioread32(pht
->caddr
+ PHN_IRQCTL
); /* PCI posting */
395 retval
= request_irq(pdev
->irq
, phantom_isr
,
396 IRQF_SHARED
, "phantom", pht
);
398 dev_err(&pdev
->dev
, "can't establish ISR\n");
402 retval
= cdev_add(&pht
->cdev
, MKDEV(phantom_major
, minor
), 1);
404 dev_err(&pdev
->dev
, "chardev registration failed\n");
408 if (IS_ERR(device_create(&phantom_class
, &pdev
->dev
,
409 MKDEV(phantom_major
, minor
), NULL
,
410 "phantom%u", minor
)))
411 dev_err(&pdev
->dev
, "can't create device\n");
413 pci_set_drvdata(pdev
, pht
);
417 free_irq(pdev
->irq
, pht
);
419 pci_iounmap(pdev
, pht
->oaddr
);
421 pci_iounmap(pdev
, pht
->iaddr
);
423 pci_iounmap(pdev
, pht
->caddr
);
427 pci_release_regions(pdev
);
429 phantom_devices
[minor
] = 0;
431 pci_disable_device(pdev
);
436 static void phantom_remove(struct pci_dev
*pdev
)
438 struct phantom_device
*pht
= pci_get_drvdata(pdev
);
439 unsigned int minor
= MINOR(pht
->cdev
.dev
);
441 device_destroy(&phantom_class
, MKDEV(phantom_major
, minor
));
443 cdev_del(&pht
->cdev
);
445 iowrite32(0, pht
->caddr
+ PHN_IRQCTL
);
446 ioread32(pht
->caddr
+ PHN_IRQCTL
); /* PCI posting */
447 free_irq(pdev
->irq
, pht
);
449 pci_iounmap(pdev
, pht
->oaddr
);
450 pci_iounmap(pdev
, pht
->iaddr
);
451 pci_iounmap(pdev
, pht
->caddr
);
455 pci_release_regions(pdev
);
457 phantom_devices
[minor
] = 0;
459 pci_disable_device(pdev
);
462 static int __maybe_unused
phantom_suspend(struct device
*dev_d
)
464 struct phantom_device
*dev
= dev_get_drvdata(dev_d
);
466 iowrite32(0, dev
->caddr
+ PHN_IRQCTL
);
467 ioread32(dev
->caddr
+ PHN_IRQCTL
); /* PCI posting */
469 synchronize_irq(to_pci_dev(dev_d
)->irq
);
474 static int __maybe_unused
phantom_resume(struct device
*dev_d
)
476 struct phantom_device
*dev
= dev_get_drvdata(dev_d
);
478 iowrite32(0, dev
->caddr
+ PHN_IRQCTL
);
483 static struct pci_device_id phantom_pci_tbl
[] = {
484 { .vendor
= PCI_VENDOR_ID_PLX
, .device
= PCI_DEVICE_ID_PLX_9050
,
485 .subvendor
= PCI_VENDOR_ID_PLX
, .subdevice
= PCI_DEVICE_ID_PLX_9050
,
486 .class = PCI_CLASS_BRIDGE_OTHER
<< 8, .class_mask
= 0xffff00 },
489 MODULE_DEVICE_TABLE(pci
, phantom_pci_tbl
);
491 static SIMPLE_DEV_PM_OPS(phantom_pm_ops
, phantom_suspend
, phantom_resume
);
493 static struct pci_driver phantom_pci_driver
= {
495 .id_table
= phantom_pci_tbl
,
496 .probe
= phantom_probe
,
497 .remove
= phantom_remove
,
498 .driver
.pm
= &phantom_pm_ops
,
501 static CLASS_ATTR_STRING(version
, 0444, PHANTOM_VERSION
);
503 static int __init
phantom_init(void)
508 retval
= class_register(&phantom_class
);
510 printk(KERN_ERR
"phantom: can't register phantom class\n");
513 retval
= class_create_file(&phantom_class
, &class_attr_version
.attr
);
515 printk(KERN_ERR
"phantom: can't create sysfs version file\n");
519 retval
= alloc_chrdev_region(&dev
, 0, PHANTOM_MAX_MINORS
, "phantom");
521 printk(KERN_ERR
"phantom: can't register character device\n");
524 phantom_major
= MAJOR(dev
);
526 retval
= pci_register_driver(&phantom_pci_driver
);
528 printk(KERN_ERR
"phantom: can't register pci driver\n");
532 printk(KERN_INFO
"Phantom Linux Driver, version " PHANTOM_VERSION
", "
537 unregister_chrdev_region(dev
, PHANTOM_MAX_MINORS
);
539 class_remove_file(&phantom_class
, &class_attr_version
.attr
);
541 class_unregister(&phantom_class
);
546 static void __exit
phantom_exit(void)
548 pci_unregister_driver(&phantom_pci_driver
);
550 unregister_chrdev_region(MKDEV(phantom_major
, 0), PHANTOM_MAX_MINORS
);
552 class_remove_file(&phantom_class
, &class_attr_version
.attr
);
553 class_unregister(&phantom_class
);
555 pr_debug("phantom: module successfully removed\n");
558 module_init(phantom_init
);
559 module_exit(phantom_exit
);
561 MODULE_AUTHOR("Jiri Slaby <jirislaby@gmail.com>");
562 MODULE_DESCRIPTION("Sensable Phantom driver (PCI devices)");
563 MODULE_LICENSE("GPL");
564 MODULE_VERSION(PHANTOM_VERSION
);