blob: 63ed9ceebf7b0b6f3034688e91f6fd7bdc21c21a [file] [log] [blame]
Greg Kroah-Hartman777783e2014-10-16 14:40:38 +02001menu "Android"
2
3config ANDROID
4 bool "Android Drivers"
5 ---help---
6 Enable support for various drivers needed on the Android platform
7
8if ANDROID
9
10config ANDROID_BINDER_IPC
11 bool "Android Binder IPC Driver"
Martijn Coenen61a775a2018-05-11 01:45:24 -070012 depends on MMU && !M68K
Greg Kroah-Hartman777783e2014-10-16 14:40:38 +020013 default n
14 ---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.
21
Martijn Coenen6b7c7122016-09-30 16:08:09 +020022config ANDROID_BINDER_DEVICES
23 string "Android Binder devices"
24 depends on ANDROID_BINDER_IPC
Martijn Coenenb3bf53b2017-03-31 09:33:33 -070025 default "binder,hwbinder,vndbinder"
Martijn Coenen6b7c7122016-09-30 16:08:09 +020026 ---help---
27 Default value for the binder.devices parameter.
28
29 The binder.devices parameter is a comma-separated list of strings
30 that specifies the names of the binder device nodes that will be
31 created. Each binder device has its own context manager, and is
32 therefore logically separated from the other devices.
33
Sherry Yang435416b2017-06-22 14:37:45 -070034config ANDROID_BINDER_IPC_SELFTEST
35 bool "Android Binder IPC Driver Selftest"
36 depends on ANDROID_BINDER_IPC
37 ---help---
38 This feature allows binder selftest to run.
39
40 Binder selftest checks the allocation and free of binder buffers
41 exhaustively with combinations of various buffer sizes and
42 alignments.
43
Greg Kroah-Hartman777783e2014-10-16 14:40:38 +020044endif # if ANDROID
45
46endmenu