blob: c95aedeff3f4a837328635ce525018060acca837 [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
Cruz Julian Bishopd7f97292012-12-22 09:00:46 +100014 ---help---
15 Binder is used in Android for both communication between processes,
16 and remote method invocation.
17
18 This means one Android process can call a method/routine in another
19 Android process, using Binder to identify, invoke and pass arguments
20 between said processes.
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090021
Robert Love11980c22011-12-20 16:49:48 -080022config ASHMEM
23 bool "Enable the Anonymous Shared Memory Subsystem"
24 default n
25 depends on SHMEM || TINY_SHMEM
Cruz Julian Bishopd7f97292012-12-22 09:00:46 +100026 ---help---
Robert Love11980c22011-12-20 16:49:48 -080027 The ashmem subsystem is a new shared memory allocator, similar to
28 POSIX SHM but with different behavior and sporting a simpler
29 file-based API.
30
Cruz Julian Bishopd7f97292012-12-22 09:00:46 +100031 It is, in theory, a good memory allocator for low-memory devices,
32 because it can discard shared memory units when under memory pressure.
33
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090034config ANDROID_LOGGER
35 tristate "Android log driver"
36 default n
Cruz Julian Bishopd7f97292012-12-22 09:00:46 +100037 ---help---
38 This adds support for system-wide logging using four log buffers.
39
40 These are:
41
42 1: main
43 2: events
44 3: radio
45 4: system
46
47 Log reading and writing is performed via normal Linux reads and
48 optimized writes. This optimization avoids logging having too
49 much overhead in the system.
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090050
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090051config ANDROID_TIMED_OUTPUT
52 bool "Timed output class driver"
53 default y
54
55config ANDROID_TIMED_GPIO
56 tristate "Android timed gpio driver"
57 depends on GENERIC_GPIO && ANDROID_TIMED_OUTPUT
58 default n
59
60config ANDROID_LOW_MEMORY_KILLER
61 bool "Android Low Memory Killer"
62 default N
63 ---help---
Cruz Julian Bishopd7f97292012-12-22 09:00:46 +100064 Registers processes to be killed when memory is low
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090065
John Stultzef2353d2012-04-20 12:31:47 -070066config ANDROID_INTF_ALARM_DEV
John Stultzfe8d2722012-02-09 14:24:36 -080067 bool "Android alarm driver"
68 depends on RTC_CLASS
Praneeth Kumar Bajjuri58a38ff2012-02-09 14:24:37 -080069 default n
Cruz Julian Bishopd7f97292012-12-22 09:00:46 +100070 ---help---
John Stultzfe8d2722012-02-09 14:24:36 -080071 Provides non-wakeup and rtc backed wakeup alarms based on rtc or
72 elapsed realtime, and a non-wakeup alarm on the monotonic clock.
John Stultzef2353d2012-04-20 12:31:47 -070073 Also exports the alarm interface to user-space.
John Stultzfe8d2722012-02-09 14:24:36 -080074
Erik Gilling7ad530b2013-02-28 16:42:57 -080075config SYNC
76 bool "Synchronization framework"
77 default n
78 select ANON_INODES
79 help
80 This option enables the framework for synchronization between multiple
81 drivers. Sync implementations can take advantage of hardware
82 synchronization built into devices like GPUs.
83
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090084endif # if ANDROID
85
86endmenu