Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # SPDX-License-Identifier: GPL-2.0
  2. menu "Android"
  3. config ANDROID
  4. bool "Android Drivers"
  5. ---help---
  6. Enable support for various drivers needed on the Android platform
  7. if ANDROID
  8. config ANDROID_BINDER_IPC
  9. bool "Android Binder IPC Driver"
  10. depends on MMU
  11. default n
  12. ---help---
  13. Binder is used in Android for both communication between processes,
  14. and remote method invocation.
  15. This means one Android process can call a method/routine in another
  16. Android process, using Binder to identify, invoke and pass arguments
  17. between said processes.
  18. config ANDROID_BINDER_DEVICES
  19. string "Android Binder devices"
  20. depends on ANDROID_BINDER_IPC
  21. default "binder,hwbinder,vndbinder"
  22. ---help---
  23. Default value for the binder.devices parameter.
  24. The binder.devices parameter is a comma-separated list of strings
  25. that specifies the names of the binder device nodes that will be
  26. created. Each binder device has its own context manager, and is
  27. therefore logically separated from the other devices.
  28. config ANDROID_BINDER_IPC_SELFTEST
  29. bool "Android Binder IPC Driver Selftest"
  30. depends on ANDROID_BINDER_IPC
  31. ---help---
  32. This feature allows binder selftest to run.
  33. Binder selftest checks the allocation and free of binder buffers
  34. exhaustively with combinations of various buffer sizes and
  35. alignments.
  36. endif # if ANDROID
  37. endmenu