Kconfig 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. menu "Firmware Drivers"
  6. config ARM_PSCI_FW
  7. bool
  8. config ARM_SCPI_PROTOCOL
  9. tristate "ARM System Control and Power Interface (SCPI) Message Protocol"
  10. depends on MAILBOX
  11. help
  12. System Control and Power Interface (SCPI) Message Protocol is
  13. defined for the purpose of communication between the Application
  14. Cores(AP) and the System Control Processor(SCP). The MHU peripheral
  15. provides a mechanism for inter-processor communication between SCP
  16. and AP.
  17. SCP controls most of the power managament on the Application
  18. Processors. It offers control and management of: the core/cluster
  19. power states, various power domain DVFS including the core/cluster,
  20. certain system clocks configuration, thermal sensors and many
  21. others.
  22. This protocol library provides interface for all the client drivers
  23. making use of the features offered by the SCP.
  24. config ARM_SCPI_POWER_DOMAIN
  25. tristate "SCPI power domain driver"
  26. depends on ARM_SCPI_PROTOCOL || (COMPILE_TEST && OF)
  27. default y
  28. select PM_GENERIC_DOMAINS if PM
  29. help
  30. This enables support for the SCPI power domains which can be
  31. enabled or disabled via the SCP firmware
  32. config EDD
  33. tristate "BIOS Enhanced Disk Drive calls determine boot disk"
  34. depends on X86
  35. help
  36. Say Y or M here if you want to enable BIOS Enhanced Disk Drive
  37. Services real mode BIOS calls to determine which disk
  38. BIOS tries boot from. This information is then exported via sysfs.
  39. This option is experimental and is known to fail to boot on some
  40. obscure configurations. Most disk controller BIOS vendors do
  41. not yet implement this feature.
  42. config EDD_OFF
  43. bool "Sets default behavior for EDD detection to off"
  44. depends on EDD
  45. default n
  46. help
  47. Say Y if you want EDD disabled by default, even though it is compiled into the
  48. kernel. Say N if you want EDD enabled by default. EDD can be dynamically set
  49. using the kernel parameter 'edd={on|skipmbr|off}'.
  50. config FIRMWARE_MEMMAP
  51. bool "Add firmware-provided memory map to sysfs" if EXPERT
  52. default X86
  53. help
  54. Add the firmware-provided (unmodified) memory map to /sys/firmware/memmap.
  55. That memory map is used for example by kexec to set up parameter area
  56. for the next kernel, but can also be used for debugging purposes.
  57. See also Documentation/ABI/testing/sysfs-firmware-memmap.
  58. config EFI_PCDP
  59. bool "Console device selection via EFI PCDP or HCDP table"
  60. depends on ACPI && EFI && IA64
  61. default y if IA64
  62. help
  63. If your firmware supplies the PCDP table, and you want to
  64. automatically use the primary console device it describes
  65. as the Linux console, say Y here.
  66. If your firmware supplies the HCDP table, and you want to
  67. use the first serial port it describes as the Linux console,
  68. say Y here. If your EFI ConOut path contains only a UART
  69. device, it will become the console automatically. Otherwise,
  70. you must specify the "console=hcdp" kernel boot argument.
  71. Neither the PCDP nor the HCDP affects naming of serial devices,
  72. so a serial console may be /dev/ttyS0, /dev/ttyS1, etc, depending
  73. on how the driver discovers devices.
  74. You must also enable the appropriate drivers (serial, VGA, etc.)
  75. See DIG64_HCDPv20_042804.pdf available from
  76. <http://www.dig64.org/specifications/>
  77. config DELL_RBU
  78. tristate "BIOS update support for DELL systems via sysfs"
  79. depends on X86
  80. select FW_LOADER
  81. select FW_LOADER_USER_HELPER
  82. help
  83. Say m if you want to have the option of updating the BIOS for your
  84. DELL system. Note you need a Dell OpenManage or Dell Update package (DUP)
  85. supporting application to communicate with the BIOS regarding the new
  86. image for the image update to take effect.
  87. See <file:Documentation/dell_rbu.txt> for more details on the driver.
  88. config DCDBAS
  89. tristate "Dell Systems Management Base Driver"
  90. depends on X86
  91. help
  92. The Dell Systems Management Base Driver provides a sysfs interface
  93. for systems management software to perform System Management
  94. Interrupts (SMIs) and Host Control Actions (system power cycle or
  95. power off after OS shutdown) on certain Dell systems.
  96. See <file:Documentation/dcdbas.txt> for more details on the driver
  97. and the Dell systems on which Dell systems management software makes
  98. use of this driver.
  99. Say Y or M here to enable the driver for use by Dell systems
  100. management software such as Dell OpenManage.
  101. config DMIID
  102. bool "Export DMI identification via sysfs to userspace"
  103. depends on DMI
  104. default y
  105. help
  106. Say Y here if you want to query SMBIOS/DMI system identification
  107. information from userspace through /sys/class/dmi/id/ or if you want
  108. DMI-based module auto-loading.
  109. config DMI_SYSFS
  110. tristate "DMI table support in sysfs"
  111. depends on SYSFS && DMI
  112. default n
  113. help
  114. Say Y or M here to enable the exporting of the raw DMI table
  115. data via sysfs. This is useful for consuming the data without
  116. requiring any access to /dev/mem at all. Tables are found
  117. under /sys/firmware/dmi when this option is enabled and
  118. loaded.
  119. config DMI_SCAN_MACHINE_NON_EFI_FALLBACK
  120. bool
  121. config ISCSI_IBFT_FIND
  122. bool "iSCSI Boot Firmware Table Attributes"
  123. depends on X86 && ISCSI_IBFT
  124. default n
  125. help
  126. This option enables the kernel to find the region of memory
  127. in which the ISCSI Boot Firmware Table (iBFT) resides. This
  128. is necessary for iSCSI Boot Firmware Table Attributes module to work
  129. properly.
  130. config ISCSI_IBFT
  131. tristate "iSCSI Boot Firmware Table Attributes module"
  132. select ISCSI_BOOT_SYSFS
  133. select ISCSI_IBFT_FIND if X86
  134. depends on ACPI && SCSI && SCSI_LOWLEVEL
  135. default n
  136. help
  137. This option enables support for detection and exposing of iSCSI
  138. Boot Firmware Table (iBFT) via sysfs to userspace. If you wish to
  139. detect iSCSI boot parameters dynamically during system boot, say Y.
  140. Otherwise, say N.
  141. config RASPBERRYPI_FIRMWARE
  142. tristate "Raspberry Pi Firmware Driver"
  143. depends on BCM2835_MBOX
  144. help
  145. This option enables support for communicating with the firmware on the
  146. Raspberry Pi.
  147. config FW_CFG_SYSFS
  148. tristate "QEMU fw_cfg device support in sysfs"
  149. depends on SYSFS && (ARM || ARM64 || PPC_PMAC || SPARC || X86)
  150. depends on HAS_IOPORT_MAP
  151. default n
  152. help
  153. Say Y or M here to enable the exporting of the QEMU firmware
  154. configuration (fw_cfg) file entries via sysfs. Entries are
  155. found under /sys/firmware/fw_cfg when this option is enabled
  156. and loaded.
  157. config FW_CFG_SYSFS_CMDLINE
  158. bool "QEMU fw_cfg device parameter parsing"
  159. depends on FW_CFG_SYSFS
  160. help
  161. Allow the qemu_fw_cfg device to be initialized via the kernel
  162. command line or using a module parameter.
  163. WARNING: Using incorrect parameters (base address in particular)
  164. may crash your system.
  165. config QCOM_SCM
  166. bool
  167. depends on ARM || ARM64
  168. select RESET_CONTROLLER
  169. config QCOM_SCM_32
  170. def_bool y
  171. depends on QCOM_SCM && ARM
  172. config QCOM_SCM_64
  173. def_bool y
  174. depends on QCOM_SCM && ARM64
  175. config HAVE_ARM_SMCCC
  176. bool
  177. source "drivers/firmware/broadcom/Kconfig"
  178. source "drivers/firmware/google/Kconfig"
  179. source "drivers/firmware/efi/Kconfig"
  180. source "drivers/firmware/meson/Kconfig"
  181. source "drivers/firmware/qcom/Kconfig"
  182. endmenu