Denis Cheng | ae210f1 | 2008-02-02 17:51:35 +0800 | [diff] [blame] | 1 | menuconfig UIO |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 2 | tristate "Userspace I/O drivers" |
Denis Cheng | ae210f1 | 2008-02-02 17:51:35 +0800 | [diff] [blame] | 3 | depends on !S390 |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 4 | default n |
| 5 | help |
| 6 | Enable this to allow the userspace driver core code to be |
| 7 | built. This code allows userspace programs easy access to |
| 8 | kernel interrupts and memory locations, allowing some drivers |
| 9 | to be written in userspace. Note that a small kernel driver |
| 10 | is also required for interrupt handling to work properly. |
| 11 | |
| 12 | If you don't know what to do here, say N. |
| 13 | |
Denis Cheng | ae210f1 | 2008-02-02 17:51:35 +0800 | [diff] [blame] | 14 | if UIO |
| 15 | |
Hans-Jürgen Koch | bc4c4f4 | 2007-03-02 13:03:12 +0100 | [diff] [blame] | 16 | config UIO_CIF |
| 17 | tristate "generic Hilscher CIF Card driver" |
Uwe Kleine-König | 934da47 | 2008-05-31 11:37:27 +0200 | [diff] [blame] | 18 | depends on PCI |
Hans-Jürgen Koch | bc4c4f4 | 2007-03-02 13:03:12 +0100 | [diff] [blame] | 19 | default n |
| 20 | help |
| 21 | Driver for Hilscher CIF DeviceNet and Profibus cards. This |
| 22 | driver requires a userspace component that handles all of the |
| 23 | heavy lifting and can be found at: |
| 24 | http://www.osadl.org/projects/downloads/UIO/user/cif-* |
| 25 | |
| 26 | To compile this driver as a module, choose M here: the module |
| 27 | will be called uio_cif. |
| 28 | |
Uwe Kleine-König | 4d80d59 | 2008-05-31 11:37:27 +0200 | [diff] [blame] | 29 | config UIO_PDRV |
| 30 | tristate "Userspace I/O platform driver" |
| 31 | help |
| 32 | Generic platform driver for Userspace I/O devices. |
| 33 | |
| 34 | If you don't know what to do here, say N. |
| 35 | |
Magnus Damm | c767db0 | 2008-07-11 18:55:27 +0900 | [diff] [blame] | 36 | config UIO_PDRV_GENIRQ |
| 37 | tristate "Userspace I/O platform driver with generic IRQ handling" |
| 38 | help |
| 39 | Platform driver for Userspace I/O devices, including generic |
| 40 | interrupt handling code. Shared interrupts are not supported. |
| 41 | |
| 42 | This kernel driver requires that the matching userspace driver |
| 43 | handles interrupts in a special way. Userspace is responsible |
| 44 | for acknowledging the hardware device if needed, and re-enabling |
| 45 | interrupts in the interrupt controller using the write() syscall. |
| 46 | |
| 47 | If you don't know what to do here, say N. |
| 48 | |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 49 | config UIO_SMX |
| 50 | tristate "SMX cryptengine UIO interface" |
Ben Nizette | b54f286 | 2008-03-13 22:27:30 +1100 | [diff] [blame] | 51 | default n |
| 52 | help |
| 53 | Userspace IO interface to the Cryptography engine found on the |
| 54 | Nias Digital SMX boards. These will be available from Q4 2008 |
| 55 | from http://www.niasdigital.com. The userspace part of this |
| 56 | driver will be released under the GPL at the same time as the |
| 57 | hardware and will be able to be downloaded from the same site. |
| 58 | |
| 59 | If you compile this as a module, it will be called uio_smx. |
| 60 | |
Brandon Philips | 1bafeb3 | 2009-01-27 13:00:04 -0800 | [diff] [blame] | 61 | config UIO_AEC |
| 62 | tristate "AEC video timestamp device" |
| 63 | depends on PCI |
| 64 | default n |
| 65 | help |
| 66 | |
| 67 | UIO driver for the Adrienne Electronics Corporation PCI time |
| 68 | code device. |
| 69 | |
| 70 | This device differs from other UIO devices since it uses I/O |
| 71 | ports instead of memory mapped I/O. In order to make it |
| 72 | possible for UIO to work with this device a utility, uioport, |
| 73 | can be used to read and write the ports: |
| 74 | |
| 75 | git clone git://ifup.org/philips/uioport.git |
| 76 | |
| 77 | If you compile this as a module, it will be called uio_aec. |
| 78 | |
John Ogness | a6030fcc | 2008-09-18 11:57:15 +0200 | [diff] [blame] | 79 | config UIO_SERCOS3 |
| 80 | tristate "Automata Sercos III PCI card driver" |
| 81 | default n |
| 82 | help |
| 83 | Userspace I/O interface for the Sercos III PCI card from |
| 84 | Automata GmbH. The userspace part of this driver will be |
| 85 | available for download from the Automata GmbH web site. |
| 86 | |
| 87 | Automata GmbH: http://www.automataweb.com |
| 88 | Sercos III interface: http://www.sercos.com |
| 89 | |
| 90 | If you compile this as a module, it will be called uio_sercos3. |
| 91 | |
Denis Cheng | ae210f1 | 2008-02-02 17:51:35 +0800 | [diff] [blame] | 92 | endif |