diff options
-rw-r--r-- | MAINTAINERS | 12 | ||||
-rw-r--r-- | drivers/sfi/Kconfig | 17 |
2 files changed, 29 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 60299a9a7adb..055ba880aaec 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -4575,6 +4575,18 @@ L: linux-pci@vger.kernel.org | |||
4575 | S: Supported | 4575 | S: Supported |
4576 | F: drivers/pci/hotplug/shpchp* | 4576 | F: drivers/pci/hotplug/shpchp* |
4577 | 4577 | ||
4578 | SIMPLE FIRMWARE INTERFACE (SFI) | ||
4579 | P: Len Brown | ||
4580 | M: lenb@kernel.org | ||
4581 | L: sfi-devel@simplefirmware.org | ||
4582 | W: http://simplefirmware.org/ | ||
4583 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | ||
4584 | S: Supported | ||
4585 | F: arch/x86/kernel/*sfi* | ||
4586 | F: drivers/sfi/ | ||
4587 | F: include/linux/sfi*.h | ||
4588 | |||
4589 | |||
4578 | SIMTEC EB110ATX (Chalice CATS) | 4590 | SIMTEC EB110ATX (Chalice CATS) |
4579 | P: Ben Dooks | 4591 | P: Ben Dooks |
4580 | M: Vincent Sanders <support@simtec.co.uk> | 4592 | M: Vincent Sanders <support@simtec.co.uk> |
diff --git a/drivers/sfi/Kconfig b/drivers/sfi/Kconfig new file mode 100644 index 000000000000..dd115121e0b6 --- /dev/null +++ b/drivers/sfi/Kconfig | |||
@@ -0,0 +1,17 @@ | |||
1 | # | ||
2 | # SFI Configuration | ||
3 | # | ||
4 | |||
5 | menuconfig SFI | ||
6 | bool "SFI (Simple Firmware Interface) Support" | ||
7 | ---help--- | ||
8 | The Simple Firmware Interface (SFI) provides a lightweight method | ||
9 | for platform firmware to pass information to the operating system | ||
10 | via static tables in memory. Kernel SFI support is required to | ||
11 | boot on SFI-only platforms. Currently, all SFI-only platforms are | ||
12 | based on the 2nd generation Intel Atom processor platform, | ||
13 | code-named Moorestown. | ||
14 | |||
15 | For more information, see http://simplefirmware.org | ||
16 | |||
17 | Say 'Y' here to enable the kernel to boot on SFI-only platforms. | ||