Kconfig 9.8 KB

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