blob: d8de6a8dd4de156e395cd36e6f25690bb347b613 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# For a description of the syntax of this configuration file,
3# see Documentation/kbuild/kconfig-language.txt.
4#
5
6menu "Firmware Drivers"
7
Mark Rutlandbff60792015-07-31 15:46:16 +01008config ARM_PSCI_FW
9 bool
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011config EDD
Chris Wedgwood5d186392006-06-25 05:47:46 -070012 tristate "BIOS Enhanced Disk Drive calls determine boot disk"
Mike Frysinger9b6e3e42009-12-14 18:01:16 -080013 depends on X86
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 help
15 Say Y or M here if you want to enable BIOS Enhanced Disk Drive
16 Services real mode BIOS calls to determine which disk
17 BIOS tries boot from. This information is then exported via sysfs.
18
19 This option is experimental and is known to fail to boot on some
20 obscure configurations. Most disk controller BIOS vendors do
21 not yet implement this feature.
22
Tim Gardner8c4dd602008-04-29 01:02:45 -070023config EDD_OFF
24 bool "Sets default behavior for EDD detection to off"
25 depends on EDD
26 default n
27 help
28 Say Y if you want EDD disabled by default, even though it is compiled into the
29 kernel. Say N if you want EDD enabled by default. EDD can be dynamically set
30 using the kernel parameter 'edd={on|skipmbr|off}'.
31
Bernhard Walle69ac9cd2008-06-27 13:12:54 +020032config FIRMWARE_MEMMAP
David Rientjes6a108a12011-01-20 14:44:16 -080033 bool "Add firmware-provided memory map to sysfs" if EXPERT
Mike Frysinger9b6e3e42009-12-14 18:01:16 -080034 default X86
Bernhard Walle69ac9cd2008-06-27 13:12:54 +020035 help
36 Add the firmware-provided (unmodified) memory map to /sys/firmware/memmap.
37 That memory map is used for example by kexec to set up parameter area
38 for the next kernel, but can also be used for debugging purposes.
39
40 See also Documentation/ABI/testing/sysfs-firmware-memmap.
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042config EFI_PCDP
43 bool "Console device selection via EFI PCDP or HCDP table"
44 depends on ACPI && EFI && IA64
45 default y if IA64
46 help
47 If your firmware supplies the PCDP table, and you want to
48 automatically use the primary console device it describes
49 as the Linux console, say Y here.
50
51 If your firmware supplies the HCDP table, and you want to
52 use the first serial port it describes as the Linux console,
53 say Y here. If your EFI ConOut path contains only a UART
54 device, it will become the console automatically. Otherwise,
55 you must specify the "console=hcdp" kernel boot argument.
56
57 Neither the PCDP nor the HCDP affects naming of serial devices,
58 so a serial console may be /dev/ttyS0, /dev/ttyS1, etc, depending
59 on how the driver discovers devices.
60
61 You must also enable the appropriate drivers (serial, VGA, etc.)
62
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020063 See DIG64_HCDPv20_042804.pdf available from
64 <http://www.dig64.org/specifications/>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Abhay Salunke6c54c282005-09-06 15:17:14 -070066config DELL_RBU
67 tristate "BIOS update support for DELL systems via sysfs"
Dave Jones6c52f132005-11-21 21:32:30 -080068 depends on X86
Abhay Salunke6c54c282005-09-06 15:17:14 -070069 select FW_LOADER
Takashi Iwaid05c39e2013-05-22 18:28:37 +020070 select FW_LOADER_USER_HELPER
Abhay Salunke6c54c282005-09-06 15:17:14 -070071 help
72 Say m if you want to have the option of updating the BIOS for your
73 DELL system. Note you need a Dell OpenManage or Dell Update package (DUP)
Matt LaPlante09509602006-10-03 22:31:37 +020074 supporting application to communicate with the BIOS regarding the new
Abhay Salunke6c54c282005-09-06 15:17:14 -070075 image for the image update to take effect.
76 See <file:Documentation/dell_rbu.txt> for more details on the driver.
Doug Warzecha90563ec2005-09-06 15:17:15 -070077
78config DCDBAS
79 tristate "Dell Systems Management Base Driver"
Brian Gerst0d078f62005-10-30 14:59:20 -080080 depends on X86
Doug Warzecha90563ec2005-09-06 15:17:15 -070081 help
82 The Dell Systems Management Base Driver provides a sysfs interface
83 for systems management software to perform System Management
84 Interrupts (SMIs) and Host Control Actions (system power cycle or
85 power off after OS shutdown) on certain Dell systems.
86
87 See <file:Documentation/dcdbas.txt> for more details on the driver
88 and the Dell systems on which Dell systems management software makes
89 use of this driver.
90
91 Say Y or M here to enable the driver for use by Dell systems
92 management software such as Dell OpenManage.
93
Lennart Poettering4f5c7912007-05-08 22:07:02 +020094config DMIID
95 bool "Export DMI identification via sysfs to userspace"
96 depends on DMI
97 default y
98 help
99 Say Y here if you want to query SMBIOS/DMI system identification
100 information from userspace through /sys/class/dmi/id/ or if you want
101 DMI-based module auto-loading.
102
Mike Waychison948af1f2011-02-22 17:53:21 -0800103config DMI_SYSFS
104 tristate "DMI table support in sysfs"
105 depends on SYSFS && DMI
106 default n
107 help
108 Say Y or M here to enable the exporting of the raw DMI table
109 data via sysfs. This is useful for consuming the data without
110 requiring any access to /dev/mem at all. Tables are found
111 under /sys/firmware/dmi when this option is enabled and
112 loaded.
113
Ard Biesheuvelcf074402014-01-23 15:54:39 -0800114config DMI_SCAN_MACHINE_NON_EFI_FALLBACK
115 bool
116
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700117config ISCSI_IBFT_FIND
118 bool "iSCSI Boot Firmware Table Attributes"
Lv Zheng9d246222013-12-06 16:52:19 +0800119 depends on X86 && ACPI
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700120 default n
121 help
122 This option enables the kernel to find the region of memory
123 in which the ISCSI Boot Firmware Table (iBFT) resides. This
124 is necessary for iSCSI Boot Firmware Table Attributes module to work
125 properly.
126
127config ISCSI_IBFT
128 tristate "iSCSI Boot Firmware Table Attributes module"
Mike Christieb33a84a2010-04-12 18:06:18 +0000129 select ISCSI_BOOT_SYSFS
Randy Dunlap3e0f6862010-10-13 18:07:16 -0700130 depends on ISCSI_IBFT_FIND && SCSI && SCSI_LOWLEVEL
Konrad Rzeszutek138fe4e2008-04-09 19:50:41 -0700131 default n
132 help
133 This option enables support for detection and exposing of iSCSI
134 Boot Firmware Table (iBFT) via sysfs to userspace. If you wish to
135 detect iSCSI boot parameters dynamically during system boot, say Y.
136 Otherwise, say N.
137
Kumar Gala916f7432015-02-26 15:49:09 -0600138config QCOM_SCM
139 bool
140 depends on ARM || ARM64
141
Rafał Miłeckif6e734a2015-06-10 23:05:08 +0200142source "drivers/firmware/broadcom/Kconfig"
Mike Waychison74c5b312011-04-29 17:39:19 -0700143source "drivers/firmware/google/Kconfig"
Matt Fleming04851772013-02-08 15:48:51 +0000144source "drivers/firmware/efi/Kconfig"
Mike Waychison74c5b312011-04-29 17:39:19 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146endmenu