blob: 08a3b1133d29ed476ed21e99a3a75d39a74cda3d [file] [log] [blame]
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001menu "Android"
2
3config ANDROID
4 bool "Android Drivers"
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005 default N
6 ---help---
7 Enable support for various drivers needed on the Android platform
8
9if ANDROID
10
11config ANDROID_BINDER_IPC
12 bool "Android Binder IPC Driver"
13 default n
14
Robert Love11980c22011-12-20 16:49:48 -080015config ASHMEM
16 bool "Enable the Anonymous Shared Memory Subsystem"
17 default n
18 depends on SHMEM || TINY_SHMEM
19 help
20 The ashmem subsystem is a new shared memory allocator, similar to
21 POSIX SHM but with different behavior and sporting a simpler
22 file-based API.
23
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090024config ANDROID_LOGGER
25 tristate "Android log driver"
26 default n
27
Colin Crossc6725282012-03-07 17:34:32 -080028config ANDROID_PERSISTENT_RAM
29 bool
Colin Cross9cc05ad2012-03-07 17:34:33 -080030 select REED_SOLOMON
31 select REED_SOLOMON_ENC8
32 select REED_SOLOMON_DEC8
Colin Crossc6725282012-03-07 17:34:32 -080033
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090034config ANDROID_RAM_CONSOLE
35 bool "Android RAM buffer console"
Anton Vorontsov203209e2012-02-07 09:13:27 +040036 depends on !S390 && !UML
Colin Crossc6725282012-03-07 17:34:32 -080037 select ANDROID_PERSISTENT_RAM
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090038 default n
39
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090040config ANDROID_TIMED_OUTPUT
41 bool "Timed output class driver"
42 default y
43
44config ANDROID_TIMED_GPIO
45 tristate "Android timed gpio driver"
46 depends on GENERIC_GPIO && ANDROID_TIMED_OUTPUT
47 default n
48
49config ANDROID_LOW_MEMORY_KILLER
50 bool "Android Low Memory Killer"
51 default N
52 ---help---
53 Register processes to be killed when memory is low
54
Mike Lockwoode0f5bb92008-10-14 12:50:16 -040055source "drivers/staging/android/switch/Kconfig"
56
John Stultzfe8d2722012-02-09 14:24:36 -080057config ANDROID_INTF_ALARM
58 bool "Android alarm driver"
59 depends on RTC_CLASS
Praneeth Kumar Bajjuri58a38ff2012-02-09 14:24:37 -080060 default n
John Stultzfe8d2722012-02-09 14:24:36 -080061 help
62 Provides non-wakeup and rtc backed wakeup alarms based on rtc or
63 elapsed realtime, and a non-wakeup alarm on the monotonic clock.
64 Also provides an interface to set the wall time which must be used
65 for elapsed realtime to work.
66
67config ANDROID_INTF_ALARM_DEV
68 bool "Android alarm device"
69 depends on ANDROID_INTF_ALARM
70 default y
71 help
72 Exports the alarm interface to user-space.
73
John Stultz2157f892012-02-09 14:24:41 -080074config ANDROID_ALARM_OLDDRV_COMPAT
75 bool "Android Alarm compatability with old drivers"
76 depends on ANDROID_INTF_ALARM
77 default n
78 help
79 Provides preprocessor alias to aid compatability with
80 older out-of-tree drivers that use the Android Alarm
81 in-kernel API. This will be removed eventually.
82
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090083endif # if ANDROID
84
85endmenu