Kconfig 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  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 "/lib/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. config FW_LOADER_USER_HELPER
  130. bool
  131. config FW_LOADER_USER_HELPER_FALLBACK
  132. bool "Fallback user-helper invocation for firmware loading"
  133. depends on FW_LOADER
  134. select FW_LOADER_USER_HELPER
  135. help
  136. This option enables / disables the invocation of user-helper
  137. (e.g. udev) for loading firmware files as a fallback after the
  138. direct file loading in kernel fails. The user-mode helper is
  139. no longer required unless you have a special firmware file that
  140. resides in a non-standard path. Moreover, the udev support has
  141. been deprecated upstream.
  142. If you are unsure about this, say N here.
  143. config WANT_DEV_COREDUMP
  144. bool
  145. help
  146. Drivers should "select" this option if they desire to use the
  147. device coredump mechanism.
  148. config ALLOW_DEV_COREDUMP
  149. bool "Allow device coredump" if EXPERT
  150. default y
  151. help
  152. This option controls if the device coredump mechanism is available or
  153. not; if disabled, the mechanism will be omitted even if drivers that
  154. can use it are enabled.
  155. Say 'N' for more sensitive systems or systems that don't want
  156. to ever access the information to not have the code, nor keep any
  157. data.
  158. If unsure, say Y.
  159. config DEV_COREDUMP
  160. bool
  161. default y if WANT_DEV_COREDUMP
  162. depends on ALLOW_DEV_COREDUMP
  163. config DEBUG_DRIVER
  164. bool "Driver Core verbose debug messages"
  165. depends on DEBUG_KERNEL
  166. help
  167. Say Y here if you want the Driver core to produce a bunch of
  168. debug messages to the system log. Select this if you are having a
  169. problem with the driver core and want to see more of what is
  170. going on.
  171. If you are unsure about this, say N here.
  172. config DEBUG_DEVRES
  173. bool "Managed device resources verbose debug messages"
  174. depends on DEBUG_KERNEL
  175. help
  176. This option enables kernel parameter devres.log. If set to
  177. non-zero, devres debug messages are printed. Select this if
  178. you are having a problem with devres or want to debug
  179. resource management for a managed device. devres.log can be
  180. switched on and off from sysfs node.
  181. If you are unsure about this, Say N here.
  182. config DEBUG_TEST_DRIVER_REMOVE
  183. bool "Test driver remove calls during probe (UNSTABLE)"
  184. depends on DEBUG_KERNEL
  185. help
  186. Say Y here if you want the Driver core to test driver remove functions
  187. by calling probe, remove, probe. This tests the remove path without
  188. having to unbind the driver or unload the driver module.
  189. This option is expected to find errors and may render your system
  190. unusable. You should say N here unless you are explicitly looking to
  191. test this functionality.
  192. source "drivers/base/test/Kconfig"
  193. config SYS_HYPERVISOR
  194. bool
  195. default n
  196. config GENERIC_CPU_DEVICES
  197. bool
  198. default n
  199. config GENERIC_CPU_AUTOPROBE
  200. bool
  201. config SOC_BUS
  202. bool
  203. select GLOB
  204. source "drivers/base/regmap/Kconfig"
  205. config DMA_SHARED_BUFFER
  206. bool
  207. default n
  208. select ANON_INODES
  209. help
  210. This option enables the framework for buffer-sharing between
  211. multiple drivers. A buffer is associated with a file using driver
  212. APIs extension; the file's descriptor can then be passed on to other
  213. driver.
  214. config DMA_FENCE_TRACE
  215. bool "Enable verbose DMA_FENCE_TRACE messages"
  216. depends on DMA_SHARED_BUFFER
  217. help
  218. Enable the DMA_FENCE_TRACE printks. This will add extra
  219. spam to the console log, but will make it easier to diagnose
  220. lockup related problems for dma-buffers shared across multiple
  221. devices.
  222. config DMA_CMA
  223. bool "DMA Contiguous Memory Allocator"
  224. depends on HAVE_DMA_CONTIGUOUS && CMA
  225. help
  226. This enables the Contiguous Memory Allocator which allows drivers
  227. to allocate big physically-contiguous blocks of memory for use with
  228. hardware components that do not support I/O map nor scatter-gather.
  229. You can disable CMA by specifying "cma=0" on the kernel's command
  230. line.
  231. For more information see <include/linux/dma-contiguous.h>.
  232. If unsure, say "n".
  233. if DMA_CMA
  234. comment "Default contiguous memory area size:"
  235. config CMA_SIZE_MBYTES
  236. int "Size in Mega Bytes"
  237. depends on !CMA_SIZE_SEL_PERCENTAGE
  238. default 0 if X86
  239. default 16
  240. help
  241. Defines the size (in MiB) of the default memory area for Contiguous
  242. Memory Allocator. If the size of 0 is selected, CMA is disabled by
  243. default, but it can be enabled by passing cma=size[MG] to the kernel.
  244. config CMA_SIZE_PERCENTAGE
  245. int "Percentage of total memory"
  246. depends on !CMA_SIZE_SEL_MBYTES
  247. default 0 if X86
  248. default 10
  249. help
  250. Defines the size of the default memory area for Contiguous Memory
  251. Allocator as a percentage of the total memory in the system.
  252. If 0 percent is selected, CMA is disabled by default, but it can be
  253. enabled by passing cma=size[MG] to the kernel.
  254. choice
  255. prompt "Selected region size"
  256. default CMA_SIZE_SEL_MBYTES
  257. config CMA_SIZE_SEL_MBYTES
  258. bool "Use mega bytes value only"
  259. config CMA_SIZE_SEL_PERCENTAGE
  260. bool "Use percentage value only"
  261. config CMA_SIZE_SEL_MIN
  262. bool "Use lower value (minimum)"
  263. config CMA_SIZE_SEL_MAX
  264. bool "Use higher value (maximum)"
  265. endchoice
  266. config CMA_ALIGNMENT
  267. int "Maximum PAGE_SIZE order of alignment for contiguous buffers"
  268. range 4 12
  269. default 8
  270. help
  271. DMA mapping framework by default aligns all buffers to the smallest
  272. PAGE_SIZE order which is greater than or equal to the requested buffer
  273. size. This works well for buffers up to a few hundreds kilobytes, but
  274. for larger buffers it just a memory waste. With this parameter you can
  275. specify the maximum PAGE_SIZE order for contiguous buffers. Larger
  276. buffers will be aligned only to this specified order. The order is
  277. expressed as a power of two multiplied by the PAGE_SIZE.
  278. For example, if your system defaults to 4KiB pages, the order value
  279. of 8 means that the buffers will be aligned up to 1MiB only.
  280. If unsure, leave the default value "8".
  281. endif
  282. config GENERIC_ARCH_TOPOLOGY
  283. bool
  284. help
  285. Enable support for architectures common topology code: e.g., parsing
  286. CPU capacity information from DT, usage of such information for
  287. appropriate scaling, sysfs interface for changing capacity values at
  288. runtime.
  289. endmenu