summaryrefslogtreecommitdiffstats
path: root/Kconfig
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2009-01-05 22:57:45 +0000
committerMyles Watson <mylesgw@gmail.com>2009-01-05 22:57:45 +0000
commitd2f540f35ea5ca91af0b1fba8d3a9e5e5bfd24be (patch)
treeb1519cc4b60794c030219c312606b01cf6bb28b5 /Kconfig
parentd4eca0446f5803596068b4bca090bbbb7bf24ab4 (diff)
downloadcoreboot-d2f540f35ea5ca91af0b1fba8d3a9e5e5bfd24be.tar.gz
coreboot-d2f540f35ea5ca91af0b1fba8d3a9e5e5bfd24be.tar.bz2
coreboot-d2f540f35ea5ca91af0b1fba8d3a9e5e5bfd24be.zip
This patch introduces {PCIX,PCIE,AGP...}_SUPPORT config variables.
Kconfig: Add *_SUPPORT variables. Add select statements for the hardware that needs them. device/Makefile: Test *_SUPPORT variables instead of chip names. device/Kconfig: Add *_PLUGIN_SUPPORT variables. device/pci_device.c: Conditionally include headers if *_PLUGIN_SUPPORT. Update default drivers to depend on CONFIG_*_PLUGIN_SUPPORT. Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://coreboot.org/repository/coreboot-v3@1097 f3766cd6-281f-0410-b1cd-43a5c92072e9
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig16
1 files changed, 16 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index 49a9af99a736..4b4669c3165a 100644
--- a/Kconfig
+++ b/Kconfig
@@ -93,10 +93,23 @@ source device/Kconfig
# These are used for internal purposes only:
+# Buses:
+config PCIX_SUPPORT
+ boolean
+config PCIE_SUPPORT
+ boolean
+config HYPERTRANSPORT_SUPPORT
+ boolean
+config AGP_SUPPORT
+ boolean
+config CARDBUS_SUPPORT
+ boolean
+
# Northbridges:
config NORTHBRIDGE_AMD_GEODELX
boolean
config NORTHBRIDGE_AMD_K8
+ select HYPERTRANSPORT_SUPPORT
boolean
config NORTHBRIDGE_INTEL_I440BXEMULATION
boolean
@@ -111,10 +124,13 @@ config SOUTHBRIDGE_AMD_CS5536
config SOUTHBRIDGE_INTEL_I82371EB
boolean
config SOUTHBRIDGE_NVIDIA_MCP55
+ select PCIE_SUPPORT
boolean
config SOUTHBRIDGE_AMD_AMD8151
+ select AGP_SUPPORT
boolean
config SOUTHBRIDGE_AMD_AMD8132
+ select PCIX_SUPPORT
boolean
config SOUTHBRIDGE_AMD_AMD8111
boolean