Kconfig 11 KB

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