Remove HyperTransport support from boards that don't need it.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4670 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
f0cfb22970
commit
74fb8f224f
14
src/Kconfig
14
src/Kconfig
|
@ -30,8 +30,8 @@ mainmenu "Coreboot Configuration"
|
||||||
source src/mainboard/Kconfig
|
source src/mainboard/Kconfig
|
||||||
source src/arch/i386/Kconfig
|
source src/arch/i386/Kconfig
|
||||||
source src/arch/ppc/Kconfig
|
source src/arch/ppc/Kconfig
|
||||||
source src/devices/Kconfig
|
|
||||||
source src/northbridge/Kconfig
|
source src/northbridge/Kconfig
|
||||||
|
source src/devices/Kconfig
|
||||||
source src/southbridge/Kconfig
|
source src/southbridge/Kconfig
|
||||||
source src/superio/Kconfig
|
source src/superio/Kconfig
|
||||||
source src/cpu/Kconfig
|
source src/cpu/Kconfig
|
||||||
|
@ -41,16 +41,8 @@ config CBFS
|
||||||
default y
|
default y
|
||||||
|
|
||||||
config PCI_BUS_SEGN_BITS
|
config PCI_BUS_SEGN_BITS
|
||||||
bool
|
int
|
||||||
default n
|
default 0
|
||||||
|
|
||||||
config HT_CHAIN_UNITID_BASE
|
|
||||||
hex
|
|
||||||
default 0x1
|
|
||||||
|
|
||||||
config HT_CHAIN_END_UNITID_BASE
|
|
||||||
hex
|
|
||||||
default 0x20
|
|
||||||
|
|
||||||
config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
|
config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
|
||||||
hex
|
hex
|
||||||
|
|
|
@ -79,7 +79,7 @@ config PCI_64BIT_PREF_MEM
|
||||||
|
|
||||||
config HYPERTRANSPORT_PLUGIN_SUPPORT
|
config HYPERTRANSPORT_PLUGIN_SUPPORT
|
||||||
bool
|
bool
|
||||||
default y
|
default n
|
||||||
|
|
||||||
config PCIX_PLUGIN_SUPPORT
|
config PCIX_PLUGIN_SUPPORT
|
||||||
bool
|
bool
|
||||||
|
|
|
@ -2,7 +2,7 @@ obj-y += device.o
|
||||||
obj-y += root_device.o
|
obj-y += root_device.o
|
||||||
obj-y += device_util.o
|
obj-y += device_util.o
|
||||||
obj-y += pci_device.o
|
obj-y += pci_device.o
|
||||||
obj-y += hypertransport.o
|
obj-$(CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT) += hypertransport.o
|
||||||
obj-y += pcix_device.o
|
obj-y += pcix_device.o
|
||||||
obj-y += pciexp_device.o
|
obj-y += pciexp_device.o
|
||||||
obj-y += agp_device.o
|
obj-y += agp_device.o
|
||||||
|
|
|
@ -108,7 +108,6 @@ config HAVE_ACPI_TABLES
|
||||||
default y
|
default y
|
||||||
depends on BOARD_ASUS_M2V_MX_SE
|
depends on BOARD_ASUS_M2V_MX_SE
|
||||||
|
|
||||||
|
|
||||||
config LB_CKS_RANGE_END
|
config LB_CKS_RANGE_END
|
||||||
int
|
int
|
||||||
default 122
|
default 122
|
||||||
|
@ -119,3 +118,23 @@ config LB_CKS_LOC
|
||||||
default 123
|
default 123
|
||||||
depends on BOARD_ASUS_M2V_MX_SE
|
depends on BOARD_ASUS_M2V_MX_SE
|
||||||
|
|
||||||
|
config HT_CHAIN_UNITID_BASE
|
||||||
|
hex
|
||||||
|
default 0x0
|
||||||
|
depends on BOARD_ASUS_M2V_MX_SE
|
||||||
|
|
||||||
|
config SB_HT_CHAIN_UNITID_OFFSET_ONLY
|
||||||
|
bool
|
||||||
|
default n
|
||||||
|
depends on BOARD_ASUS_M2V_MX_SE
|
||||||
|
|
||||||
|
config SB_HT_CHAIN_ON_BUS0
|
||||||
|
int
|
||||||
|
default 1
|
||||||
|
depends on BOARD_ASUS_M2V_MX_SE
|
||||||
|
|
||||||
|
config HT_CHAIN_END_UNITID_BASE
|
||||||
|
hex
|
||||||
|
default 0x20
|
||||||
|
depends on BOARD_ASUS_M2V_MX_SE
|
||||||
|
|
||||||
|
|
|
@ -29,4 +29,9 @@ config HAVE_HIGH_TABLES
|
||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config HYPERTRANSPORT_PLUGIN_SUPPORT
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
depends on NORTHBRIDGE_AMD_AMDK8
|
||||||
|
|
||||||
source src/northbridge/amd/amdk8/root_complex/Kconfig
|
source src/northbridge/amd/amdk8/root_complex/Kconfig
|
||||||
|
|
Loading…
Reference in New Issue