Merge branch 'develop' of 10.10.10.29:/home/rockchip/kernel into develop
[firefly-linux-kernel-4.4.55.git] / drivers / misc / Kconfig
1 #
2 # Misc strange devices
3 #
4
5 menuconfig MISC_DEVICES
6         bool "Misc devices"
7         default y
8         ---help---
9           Say Y here to get to see options for device drivers from various
10           different categories. This option alone does not add any kernel code.
11
12           If you say N, all options in this submenu will be skipped and disabled.
13
14 if MISC_DEVICES
15
16 config ANDROID_PMEM
17         bool "Android pmem allocator"
18         default y
19
20 config ATMEL_PWM
21         tristate "Atmel AT32/AT91 PWM support"
22         depends on AVR32 || ARCH_AT91SAM9263 || ARCH_AT91SAM9RL || ARCH_AT91CAP9
23         help
24           This option enables device driver support for the PWM channels
25           on certain Atmel processors.  Pulse Width Modulation is used for
26           purposes including software controlled power-efficient backlights
27           on LCD displays, motor control, and waveform generation.
28
29 config ATMEL_TCLIB
30         bool "Atmel AT32/AT91 Timer/Counter Library"
31         depends on (AVR32 || ARCH_AT91)
32         help
33           Select this if you want a library to allocate the Timer/Counter
34           blocks found on many Atmel processors.  This facilitates using
35           these blocks by different drivers despite processor differences.
36
37 config ATMEL_TCB_CLKSRC
38         bool "TC Block Clocksource"
39         depends on ATMEL_TCLIB && GENERIC_TIME
40         default y
41         help
42           Select this to get a high precision clocksource based on a
43           TC block with a 5+ MHz base clock rate.  Two timer channels
44           are combined to make a single 32-bit timer.
45
46           When GENERIC_CLOCKEVENTS is defined, the third timer channel
47           may be used as a clock event device supporting oneshot mode
48           (delays of up to two seconds) based on the 32 KiHz clock.
49
50 config ATMEL_TCB_CLKSRC_BLOCK
51         int
52         depends on ATMEL_TCB_CLKSRC
53         prompt "TC Block" if ARCH_AT91RM9200 || ARCH_AT91SAM9260 || CPU_AT32AP700X
54         default 0
55         range 0 1
56         help
57           Some chips provide more than one TC block, so you have the
58           choice of which one to use for the clock framework.  The other
59           TC can be used for other purposes, such as PWM generation and
60           interval timing.
61
62 config IBM_ASM
63         tristate "Device driver for IBM RSA service processor"
64         depends on X86 && PCI && INPUT && EXPERIMENTAL
65         ---help---
66           This option enables device driver support for in-band access to the
67           IBM RSA (Condor) service processor in eServer xSeries systems.
68           The ibmasm device driver allows user space application to access
69           ASM (Advanced Systems Management) functions on the service
70           processor. The driver is meant to be used in conjunction with
71           a user space API.
72           The ibmasm driver also enables the OS to use the UART on the
73           service processor board as a regular serial port. To make use of
74           this feature serial driver support (CONFIG_SERIAL_8250) must be
75           enabled.
76
77           WARNING: This software may not be supported or function
78           correctly on your IBM server. Please consult the IBM ServerProven
79           website <http://www.pc.ibm.com/ww/eserver/xseries/serverproven> for
80           information on the specific driver level and support statement
81           for your IBM server.
82
83 config PHANTOM
84         tristate "Sensable PHANToM (PCI)"
85         depends on PCI
86         help
87           Say Y here if you want to build a driver for Sensable PHANToM device.
88
89           This driver is only for PCI PHANToMs.
90
91           If you choose to build module, its name will be phantom. If unsure,
92           say N here.
93
94 config SGI_IOC4
95         tristate "SGI IOC4 Base IO support"
96         depends on PCI
97         ---help---
98           This option enables basic support for the IOC4 chip on certain
99           SGI IO controller cards (IO9, IO10, and PCI-RT).  This option
100           does not enable any specific functions on such a card, but provides
101           necessary infrastructure for other drivers to utilize.
102
103           If you have an SGI Altix with an IOC4-based card say Y.
104           Otherwise say N.
105
106 config TIFM_CORE
107         tristate "TI Flash Media interface support (EXPERIMENTAL)"
108         depends on EXPERIMENTAL && PCI
109         help
110           If you want support for Texas Instruments(R) Flash Media adapters
111           you should select this option and then also choose an appropriate
112           host adapter, such as 'TI Flash Media PCI74xx/PCI76xx host adapter
113           support', if you have a TI PCI74xx compatible card reader, for
114           example.
115           You will also have to select some flash card format drivers. MMC/SD
116           cards are supported via 'MMC/SD Card support: TI Flash Media MMC/SD
117           Interface support (MMC_TIFM_SD)'.
118
119           To compile this driver as a module, choose M here: the module will
120           be called tifm_core.
121
122 config TIFM_7XX1
123         tristate "TI Flash Media PCI74xx/PCI76xx host adapter support (EXPERIMENTAL)"
124         depends on PCI && TIFM_CORE && EXPERIMENTAL
125         default TIFM_CORE
126         help
127           This option enables support for Texas Instruments(R) PCI74xx and
128           PCI76xx families of Flash Media adapters, found in many laptops.
129           To make actual use of the device, you will have to select some
130           flash card format drivers, as outlined in the TIFM_CORE Help.
131
132           To compile this driver as a module, choose M here: the module will
133           be called tifm_7xx1.
134
135 config ICS932S401
136         tristate "Integrated Circuits ICS932S401"
137         depends on I2C && EXPERIMENTAL
138         help
139           If you say yes here you get support for the Integrated Circuits
140           ICS932S401 clock control chips.
141
142           This driver can also be built as a module. If so, the module
143           will be called ics932s401.
144
145 config ATMEL_SSC
146         tristate "Device driver for Atmel SSC peripheral"
147         depends on AVR32 || ARCH_AT91
148         ---help---
149           This option enables device driver support for Atmel Synchronized
150           Serial Communication peripheral (SSC).
151
152           The SSC peripheral supports a wide variety of serial frame based
153           communications, i.e. I2S, SPI, etc.
154
155           If unsure, say N.
156
157 config ENCLOSURE_SERVICES
158         tristate "Enclosure Services"
159         default n
160         help
161           Provides support for intelligent enclosures (bays which
162           contain storage devices).  You also need either a host
163           driver (SCSI/ATA) which supports enclosures
164           or a SCSI enclosure device (SES) to use these services.
165
166 config KERNEL_DEBUGGER_CORE
167         bool "Kernel Debugger Core"
168         default n
169         ---help---
170           Generic kernel debugging command processor used by low level
171           (interrupt context) platform-specific debuggers.
172
173 config SGI_XP
174         tristate "Support communication between SGI SSIs"
175         depends on NET
176         depends on (IA64_GENERIC || IA64_SGI_SN2 || IA64_SGI_UV || X86_UV) && SMP
177         select IA64_UNCACHED_ALLOCATOR if IA64_GENERIC || IA64_SGI_SN2
178         select GENERIC_ALLOCATOR if IA64_GENERIC || IA64_SGI_SN2
179         select SGI_GRU if X86_64 && SMP
180         ---help---
181           An SGI machine can be divided into multiple Single System
182           Images which act independently of each other and have
183           hardware based memory protection from the others.  Enabling
184           this feature will allow for direct communication between SSIs
185           based on a network adapter and DMA messaging.
186
187 config HP_ILO
188         tristate "Channel interface driver for HP iLO/iLO2 processor"
189         depends on PCI
190         default n
191         help
192           The channel interface driver allows applications to communicate
193           with iLO/iLO2 management processors present on HP ProLiant
194           servers.  Upon loading, the driver creates /dev/hpilo/dXccbN files,
195           which can be used to gather data from the management processor,
196           via read and write system calls.
197
198           To compile this driver as a module, choose M here: the
199           module will be called hpilo.
200
201 config SGI_GRU
202         tristate "SGI GRU driver"
203         depends on X86_UV && SMP
204         default n
205         select MMU_NOTIFIER
206         ---help---
207         The GRU is a hardware resource located in the system chipset. The GRU
208         contains memory that can be mmapped into the user address space. This memory is
209         used to communicate with the GRU to perform functions such as load/store,
210         scatter/gather, bcopy, AMOs, etc.  The GRU is directly accessed by user
211         instructions using user virtual addresses. GRU instructions (ex., bcopy) use
212         user virtual addresses for operands.
213
214         If you are not running on a SGI UV system, say N.
215
216 config SGI_GRU_DEBUG
217         bool  "SGI GRU driver debug"
218         depends on SGI_GRU
219         default n
220         ---help---
221         This option enables addition debugging code for the SGI GRU driver. If
222         you are unsure, say N.
223
224 config DELL_LAPTOP
225         tristate "Dell Laptop Extras (EXPERIMENTAL)"
226         depends on X86
227         depends on DCDBAS
228         depends on EXPERIMENTAL
229         depends on BACKLIGHT_CLASS_DEVICE
230         depends on RFKILL
231         depends on POWER_SUPPLY
232         default n
233         ---help---
234         This driver adds support for rfkill and backlight control to Dell
235         laptops.
236
237 config ISL29003
238         tristate "Intersil ISL29003 ambient light sensor"
239         depends on I2C && SYSFS
240         help
241           If you say yes here you get support for the Intersil ISL29003
242           ambient light sensor.
243
244           This driver can also be built as a module.  If so, the module
245           will be called isl29003.
246
247 config EP93XX_PWM
248         tristate "EP93xx PWM support"
249         depends on ARCH_EP93XX
250         help
251           This option enables device driver support for the PWM channels
252           on the Cirrus EP93xx processors.  The EP9307 chip only has one
253           PWM channel all the others have two, the second channel is an
254           alternate function of the EGPIO14 pin.  A sysfs interface is
255           provided to control the PWM channels.
256
257           To compile this driver as a module, choose M here: the module will
258           be called ep93xx_pwm.
259
260 config UID_STAT
261         bool "UID based statistics tracking exported to /proc/uid_stat"
262         default n
263
264 config WL127X_RFKILL
265         tristate "Bluetooth power control driver for TI wl127x"
266         depends on RFKILL
267         default n
268         ---help---
269          Creates an rfkill entry in sysfs for power control of Bluetooth
270          TI wl127x chips.
271
272 config APANIC
273         bool "Android kernel panic diagnostics driver"
274         default n
275         ---help---
276          Driver which handles kernel panics and attempts to write
277          critical debugging data to flash.
278
279 config APANIC_PLABEL
280         string "Android panic dump flash partition label"
281         depends on APANIC
282         default "kpanic"
283         ---help---
284          If your platform uses a different flash partition label for storing
285          crashdumps, enter it here.
286
287 config STE
288         bool "STE modem control driver"
289         default n
290         
291 config MTK23D
292         bool "MTK6223D modem control driver"
293         default n       
294
295 config FM580X
296         bool "FM rda580x driver"
297         default n       
298         
299 config MU509
300         bool "MU509 modem control driver"
301         default n
302 config MW100
303         bool "MW100 modem control driver"
304         default n
305 config RK29_NEWTON
306         bool "RK29_NEWTON misc driver"
307         default n
308
309 source "drivers/misc/c2port/Kconfig"
310 source "drivers/misc/eeprom/Kconfig"
311 source "drivers/misc/cb710/Kconfig"
312 source "drivers/misc/rk29_modem/Kconfig"
313 source "drivers/misc/gps/Kconfig"
314 source "drivers/misc/mpu3050/Kconfig"
315 endif # MISC_DEVICES