Kconfig 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. menu "Generic Driver Options"
  2. config UEVENT_HELPER
  3. bool "Support for uevent helper"
  4. default y
  5. help
  6. The uevent helper program is forked by the kernel for
  7. every uevent.
  8. Before the switch to the netlink-based uevent source, this was
  9. used to hook hotplug scripts into kernel device events. It
  10. usually pointed to a shell script at /sbin/hotplug.
  11. This should not be used today, because usual systems create
  12. many events at bootup or device discovery in a very short time
  13. frame. One forked process per event can create so many processes
  14. that it creates a high system load, or on smaller systems
  15. it is known to create out-of-memory situations during bootup.
  16. config UEVENT_HELPER_PATH
  17. string "path to uevent helper"
  18. depends on UEVENT_HELPER
  19. default ""
  20. help
  21. To disable user space helper program execution at by default
  22. specify an empty string here. This setting can still be altered
  23. via /proc/sys/kernel/hotplug or via /sys/kernel/uevent_helper
  24. later at runtime.
  25. config DEVTMPFS
  26. bool "Maintain a devtmpfs filesystem to mount at /dev"
  27. help
  28. This creates a tmpfs/ramfs filesystem instance early at bootup.
  29. In this filesystem, the kernel driver core maintains device
  30. nodes with their default names and permissions for all
  31. registered devices with an assigned major/minor number.
  32. Userspace can modify the filesystem content as needed, add
  33. symlinks, and apply needed permissions.
  34. It provides a fully functional /dev directory, where usually
  35. udev runs on top, managing permissions and adding meaningful
  36. symlinks.
  37. In very limited environments, it may provide a sufficient
  38. functional /dev without any further help. It also allows simple
  39. rescue systems, and reliably handles dynamic major/minor numbers.
  40. Notice: if CONFIG_TMPFS isn't enabled, the simpler ramfs
  41. file system will be used instead.
  42. config DEVTMPFS_MOUNT
  43. bool "Automount devtmpfs at /dev, after the kernel mounted the rootfs"
  44. depends on DEVTMPFS
  45. help
  46. This will instruct the kernel to automatically mount the
  47. devtmpfs filesystem at /dev, directly after the kernel has
  48. mounted the root filesystem. The behavior can be overridden
  49. with the commandline parameter: devtmpfs.mount=0|1.
  50. This option does not affect initramfs based booting, here
  51. the devtmpfs filesystem always needs to be mounted manually
  52. after the rootfs is mounted.
  53. With this option enabled, it allows to bring up a system in
  54. rescue mode with init=/bin/sh, even when the /dev directory
  55. on the rootfs is completely empty.
  56. config STANDALONE
  57. bool "Select only drivers that don't need compile-time external firmware"
  58. default y
  59. help
  60. Select this option if you don't have magic firmware for drivers that
  61. need it.
  62. If unsure, say Y.
  63. config PREVENT_FIRMWARE_BUILD
  64. bool "Prevent firmware from being built"
  65. default y
  66. help
  67. Say yes to avoid building firmware. Firmware is usually shipped
  68. with the driver and only when updating the firmware should a
  69. rebuild be made.
  70. If unsure, say Y here.
  71. config FW_LOADER
  72. tristate "Userspace firmware loading support" if EXPERT
  73. default y
  74. ---help---
  75. This option is provided for the case where none of the in-tree modules
  76. require userspace firmware loading support, but a module built
  77. out-of-tree does.
  78. config FIRMWARE_IN_KERNEL
  79. bool "Include in-kernel firmware blobs in kernel binary"
  80. depends on FW_LOADER
  81. default y
  82. help
  83. The kernel source tree includes a number of firmware 'blobs'
  84. that are used by various drivers. The recommended way to
  85. use these is to run "make firmware_install", which, after
  86. converting ihex files to binary, copies all of the needed
  87. binary files in firmware/ to /lib/firmware/ on your system so
  88. that they can be loaded by userspace helpers on request.
  89. Enabling this option will build each required firmware blob
  90. into the kernel directly, where request_firmware() will find
  91. them without having to call out to userspace. This may be
  92. useful if your root file system requires a device that uses
  93. such firmware and do not wish to use an initrd.
  94. This single option controls the inclusion of firmware for
  95. every driver that uses request_firmware() and ships its
  96. firmware in the kernel source tree, which avoids a
  97. proliferation of 'Include firmware for xxx device' options.
  98. Say 'N' and let firmware be loaded from userspace.
  99. config EXTRA_FIRMWARE
  100. string "External firmware blobs to build into the kernel binary"
  101. depends on FW_LOADER
  102. help
  103. This option allows firmware to be built into the kernel for the case
  104. where the user either cannot or doesn't want to provide it from
  105. userspace at runtime (for example, when the firmware in question is
  106. required for accessing the boot device, and the user doesn't want to
  107. use an initrd).
  108. This option is a string and takes the (space-separated) names of the
  109. firmware files -- the same names that appear in MODULE_FIRMWARE()
  110. and request_firmware() in the source. These files should exist under
  111. the directory specified by the EXTRA_FIRMWARE_DIR option, which is
  112. by default the firmware subdirectory of the kernel source tree.
  113. For example, you might set CONFIG_EXTRA_FIRMWARE="usb8388.bin", copy
  114. the usb8388.bin file into the firmware directory, and build the kernel.
  115. Then any request_firmware("usb8388.bin") will be satisfied internally
  116. without needing to call out to userspace.
  117. WARNING: If you include additional firmware files into your binary
  118. kernel image that are not available under the terms of the GPL,
  119. then it may be a violation of the GPL to distribute the resulting
  120. image since it combines both GPL and non-GPL work. You should
  121. consult a lawyer of your own before distributing such an image.
  122. config EXTRA_FIRMWARE_DIR
  123. string "Firmware blobs root directory"
  124. depends on EXTRA_FIRMWARE != ""
  125. default "firmware"
  126. help
  127. This option controls the directory in which the kernel build system
  128. looks for the firmware files listed in the EXTRA_FIRMWARE option.
  129. The default is firmware/ in the kernel source tree, but by changing
  130. this option you can point it elsewhere, such as /lib/firmware/ or
  131. some other directory containing the firmware files.
  132. config FW_LOADER_USER_HELPER
  133. bool "Fallback user-helper invocation for firmware loading"
  134. depends on FW_LOADER
  135. default y
  136. help
  137. This option enables / disables the invocation of user-helper
  138. (e.g. udev) for loading firmware files as a fallback after the
  139. direct file loading in kernel fails. The user-mode helper is
  140. no longer required unless you have a special firmware file that
  141. resides in a non-standard path.
  142. config DEBUG_DRIVER
  143. bool "Driver Core verbose debug messages"
  144. depends on DEBUG_KERNEL
  145. help
  146. Say Y here if you want the Driver core to produce a bunch of
  147. debug messages to the system log. Select this if you are having a
  148. problem with the driver core and want to see more of what is
  149. going on.
  150. If you are unsure about this, say N here.
  151. config DEBUG_DEVRES
  152. bool "Managed device resources verbose debug messages"
  153. depends on DEBUG_KERNEL
  154. help
  155. This option enables kernel parameter devres.log. If set to
  156. non-zero, devres debug messages are printed. Select this if
  157. you are having a problem with devres or want to debug
  158. resource management for a managed device. devres.log can be
  159. switched on and off from sysfs node.
  160. If you are unsure about this, Say N here.
  161. config SYS_HYPERVISOR
  162. bool
  163. default n
  164. config GENERIC_CPU_DEVICES
  165. bool
  166. default n
  167. config GENERIC_CPU_AUTOPROBE
  168. bool
  169. config SOC_BUS
  170. bool
  171. source "drivers/base/regmap/Kconfig"
  172. config DMA_SHARED_BUFFER
  173. bool
  174. default n
  175. select ANON_INODES
  176. help
  177. This option enables the framework for buffer-sharing between
  178. multiple drivers. A buffer is associated with a file using driver
  179. APIs extension; the file's descriptor can then be passed on to other
  180. driver.
  181. config DMA_CMA
  182. bool "DMA Contiguous Memory Allocator"
  183. depends on HAVE_DMA_CONTIGUOUS && CMA
  184. help
  185. This enables the Contiguous Memory Allocator which allows drivers
  186. to allocate big physically-contiguous blocks of memory for use with
  187. hardware components that do not support I/O map nor scatter-gather.
  188. For more information see <include/linux/dma-contiguous.h>.
  189. If unsure, say "n".
  190. if DMA_CMA
  191. comment "Default contiguous memory area size:"
  192. config CMA_SIZE_MBYTES
  193. int "Size in Mega Bytes"
  194. depends on !CMA_SIZE_SEL_PERCENTAGE
  195. default 16
  196. help
  197. Defines the size (in MiB) of the default memory area for Contiguous
  198. Memory Allocator.
  199. config CMA_SIZE_PERCENTAGE
  200. int "Percentage of total memory"
  201. depends on !CMA_SIZE_SEL_MBYTES
  202. default 10
  203. help
  204. Defines the size of the default memory area for Contiguous Memory
  205. Allocator as a percentage of the total memory in the system.
  206. choice
  207. prompt "Selected region size"
  208. default CMA_SIZE_SEL_MBYTES
  209. config CMA_SIZE_SEL_MBYTES
  210. bool "Use mega bytes value only"
  211. config CMA_SIZE_SEL_PERCENTAGE
  212. bool "Use percentage value only"
  213. config CMA_SIZE_SEL_MIN
  214. bool "Use lower value (minimum)"
  215. config CMA_SIZE_SEL_MAX
  216. bool "Use higher value (maximum)"
  217. endchoice
  218. config CMA_ALIGNMENT
  219. int "Maximum PAGE_SIZE order of alignment for contiguous buffers"
  220. range 4 12
  221. default 8
  222. help
  223. DMA mapping framework by default aligns all buffers to the smallest
  224. PAGE_SIZE order which is greater than or equal to the requested buffer
  225. size. This works well for buffers up to a few hundreds kilobytes, but
  226. for larger buffers it just a memory waste. With this parameter you can
  227. specify the maximum PAGE_SIZE order for contiguous buffers. Larger
  228. buffers will be aligned only to this specified order. The order is
  229. expressed as a power of two multiplied by the PAGE_SIZE.
  230. For example, if your system defaults to 4KiB pages, the order value
  231. of 8 means that the buffers will be aligned up to 1MiB only.
  232. If unsure, leave the default value "8".
  233. config CMA_AREAS
  234. int "Maximum count of the CMA device-private areas"
  235. default 7
  236. help
  237. CMA allows to create CMA areas for particular devices. This parameter
  238. sets the maximum number of such device private CMA areas in the
  239. system.
  240. If unsure, leave the default value "7".
  241. endif
  242. endmenu