drivers: uio: Add driver for Humusoft MF624 DAQ PCI card
[linux-2.6-block.git] / drivers / uio / Kconfig
CommitLineData
ae210f18 1menuconfig UIO
beafc54c 2 tristate "Userspace I/O drivers"
beafc54c
HK
3 help
4 Enable this to allow the userspace driver core code to be
5 built. This code allows userspace programs easy access to
6 kernel interrupts and memory locations, allowing some drivers
7 to be written in userspace. Note that a small kernel driver
8 is also required for interrupt handling to work properly.
9
10 If you don't know what to do here, say N.
11
ae210f18
DC
12if UIO
13
bc4c4f45
HJK
14config UIO_CIF
15 tristate "generic Hilscher CIF Card driver"
934da476 16 depends on PCI
bc4c4f45
HJK
17 help
18 Driver for Hilscher CIF DeviceNet and Profibus cards. This
631dd1a8
JM
19 driver requires a userspace component called cif that handles
20 all of the heavy lifting and can be found at:
21 <http://www.osadl.org/projects/downloads/UIO/user/>
bc4c4f45
HJK
22
23 To compile this driver as a module, choose M here: the module
24 will be called uio_cif.
25
c767db0a
MD
26config UIO_PDRV_GENIRQ
27 tristate "Userspace I/O platform driver with generic IRQ handling"
28 help
29 Platform driver for Userspace I/O devices, including generic
30 interrupt handling code. Shared interrupts are not supported.
31
32 This kernel driver requires that the matching userspace driver
33 handles interrupts in a special way. Userspace is responsible
34 for acknowledging the hardware device if needed, and re-enabling
35 interrupts in the interrupt controller using the write() syscall.
36
37 If you don't know what to do here, say N.
38
0a0c3b5a
DHG
39config UIO_DMEM_GENIRQ
40 tristate "Userspace platform driver with generic irq and dynamic memory"
89fb9e7c 41 depends on HAS_DMA
0a0c3b5a
DHG
42 help
43 Platform driver for Userspace I/O devices, including generic
44 interrupt handling code. Shared interrupts are not supported.
45
46 Memory regions can be specified with the same platform device
47 resources as the UIO_PDRV drivers, but dynamic regions can also
48 be specified.
49 The number and size of these regions is static,
50 but the memory allocation is not performed until
51 the associated device file is opened. The
52 memory is freed once the uio device is closed.
53
54 If you don't know what to do here, say N.
55
1bafeb37
BP
56config UIO_AEC
57 tristate "AEC video timestamp device"
58 depends on PCI
1bafeb37
BP
59 help
60
61 UIO driver for the Adrienne Electronics Corporation PCI time
62 code device.
63
64 This device differs from other UIO devices since it uses I/O
65 ports instead of memory mapped I/O. In order to make it
66 possible for UIO to work with this device a utility, uioport,
67 can be used to read and write the ports:
68
69 git clone git://ifup.org/philips/uioport.git
70
71 If you compile this as a module, it will be called uio_aec.
72
a6030fcc
JO
73config UIO_SERCOS3
74 tristate "Automata Sercos III PCI card driver"
0a965eb9 75 depends on PCI
a6030fcc
JO
76 help
77 Userspace I/O interface for the Sercos III PCI card from
78 Automata GmbH. The userspace part of this driver will be
79 available for download from the Automata GmbH web site.
80
81 Automata GmbH: http://www.automataweb.com
82 Sercos III interface: http://www.sercos.com
83
84 If you compile this as a module, it will be called uio_sercos3.
85
ccb86a69
MT
86config UIO_PCI_GENERIC
87 tristate "Generic driver for PCI 2.3 and PCI Express cards"
88 depends on PCI
ccb86a69
MT
89 help
90 Generic driver that you can bind, dynamically, to any
91 PCI 2.3 compliant and PCI Express card. It is useful,
92 primarily, for virtualization scenarios.
93 If you compile this as a module, it will be called uio_pci_generic.
94
8f314cfc
HK
95config UIO_NETX
96 tristate "Hilscher NetX Card driver"
97 depends on PCI
98 help
99 Driver for Hilscher NetX based fieldbus cards (cifX, comX).
100 This driver requires a userspace component that comes with the card
101 or is available from Hilscher (http://www.hilscher.com).
102
103 To compile this driver as a module, choose M here; the module
104 will be called uio_netx.
105
f1a304e7
PG
106config UIO_PRUSS
107 tristate "Texas Instruments PRUSS driver"
108 depends on ARCH_DAVINCI_DA850
2eb2478d 109 select GENERIC_ALLOCATOR
f1a304e7
PG
110 help
111 PRUSS driver for OMAPL138/DA850/AM18XX devices
112 PRUSS driver requires user space components, examples and user space
113 driver is available from below SVN repo - you may use anonymous login
114
115 https://gforge.ti.com/gf/project/pru_sw/
116
117 More info on API is available at below wiki
118
119 http://processors.wiki.ti.com/index.php/PRU_Linux_Application_Loader
120
121 To compile this driver as a module, choose M here: the module
122 will be called uio_pruss.
123
06849faa
RL
124config UIO_MF624
125 tristate "Humusoft MF624 DAQ PCI card driver"
126 depends on PCI
127 help
128 Userspace I/O interface for the Humusoft MF624 PCI card.
129 A sample userspace application using this driver is available
130 (among other MF624 related information and software components)
131 for download in a git repository:
132
133 git clone git://rtime.felk.cvut.cz/mf6xx.git
134
135 If you compile this as a module, it will be called uio_mf624.
136
ae210f18 137endif