Author: myles Date: 2009-09-24 17:09:11 +0200 (Thu, 24 Sep 2009) New Revision: 4670
Modified: trunk/coreboot-v2/src/Kconfig trunk/coreboot-v2/src/devices/Kconfig trunk/coreboot-v2/src/devices/Makefile.inc trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig trunk/coreboot-v2/src/northbridge/amd/amdk8/Kconfig Log: 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
Modified: trunk/coreboot-v2/src/Kconfig =================================================================== --- trunk/coreboot-v2/src/Kconfig 2009-09-24 14:05:19 UTC (rev 4669) +++ trunk/coreboot-v2/src/Kconfig 2009-09-24 15:09:11 UTC (rev 4670) @@ -30,8 +30,8 @@ source src/mainboard/Kconfig source src/arch/i386/Kconfig source src/arch/ppc/Kconfig -source src/devices/Kconfig source src/northbridge/Kconfig +source src/devices/Kconfig source src/southbridge/Kconfig source src/superio/Kconfig source src/cpu/Kconfig @@ -41,17 +41,9 @@ default y
config PCI_BUS_SEGN_BITS - bool - default n + int + 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 hex default 0
Modified: trunk/coreboot-v2/src/devices/Kconfig =================================================================== --- trunk/coreboot-v2/src/devices/Kconfig 2009-09-24 14:05:19 UTC (rev 4669) +++ trunk/coreboot-v2/src/devices/Kconfig 2009-09-24 15:09:11 UTC (rev 4670) @@ -79,7 +79,7 @@
config HYPERTRANSPORT_PLUGIN_SUPPORT bool - default y + default n
config PCIX_PLUGIN_SUPPORT bool
Modified: trunk/coreboot-v2/src/devices/Makefile.inc =================================================================== --- trunk/coreboot-v2/src/devices/Makefile.inc 2009-09-24 14:05:19 UTC (rev 4669) +++ trunk/coreboot-v2/src/devices/Makefile.inc 2009-09-24 15:09:11 UTC (rev 4670) @@ -2,7 +2,7 @@ obj-y += root_device.o obj-y += device_util.o obj-y += pci_device.o -obj-y += hypertransport.o +obj-$(CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT) += hypertransport.o obj-y += pcix_device.o obj-y += pciexp_device.o obj-y += agp_device.o
Modified: trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig =================================================================== --- trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig 2009-09-24 14:05:19 UTC (rev 4669) +++ trunk/coreboot-v2/src/mainboard/asus/m2v-mx_se/Kconfig 2009-09-24 15:09:11 UTC (rev 4670) @@ -108,7 +108,6 @@ default y depends on BOARD_ASUS_M2V_MX_SE
- config LB_CKS_RANGE_END int default 122 @@ -119,3 +118,23 @@ default 123 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 +
Modified: trunk/coreboot-v2/src/northbridge/amd/amdk8/Kconfig =================================================================== --- trunk/coreboot-v2/src/northbridge/amd/amdk8/Kconfig 2009-09-24 14:05:19 UTC (rev 4669) +++ trunk/coreboot-v2/src/northbridge/amd/amdk8/Kconfig 2009-09-24 15:09:11 UTC (rev 4670) @@ -29,4 +29,9 @@ bool default y
+config HYPERTRANSPORT_PLUGIN_SUPPORT + bool + default y + depends on NORTHBRIDGE_AMD_AMDK8 + source src/northbridge/amd/amdk8/root_complex/Kconfig