diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-09-22 18:53:50 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-09-22 18:53:50 +0000 |
commit | a74ae635caeb0598fc1422356f13722c03262e8e (patch) | |
tree | e63eb2aceef7c3fce36778d4628a6940c1dfb527 /src/mainboard/tyan/s2891/Kconfig | |
parent | 45bb25f36f05df7bf9ccbf9e038169d6619aba48 (diff) | |
download | coreboot-a74ae635caeb0598fc1422356f13722c03262e8e.tar.xz |
failoverR.diff: Revert my failover change since Kconfig only supports fallback.
kconfig_s2892.dif: Add support for Tyan s2891, s2892, and s2895 to Kconfig.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4656 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/tyan/s2891/Kconfig')
-rw-r--r-- | src/mainboard/tyan/s2891/Kconfig | 142 |
1 files changed, 142 insertions, 0 deletions
diff --git a/src/mainboard/tyan/s2891/Kconfig b/src/mainboard/tyan/s2891/Kconfig new file mode 100644 index 0000000000..e661c939f8 --- /dev/null +++ b/src/mainboard/tyan/s2891/Kconfig @@ -0,0 +1,142 @@ +config BOARD_TYAN_S2891 + bool "Tyan Thunder K8SRE S2891" + select ARCH_X86 + select CPU_AMD_K8 + select CPU_AMD_SOCKET_940 + select NORTHBRIDGE_AMD_AMDK8 + select NORTHBRIDGE_AMD_AMDK8_ROOT_COMPLEX + select SOUTHBRIDGE_NVIDIA_CK804 + select SOUTHBRIDGE_AMD_AMD8131 + select SUPERIO_WINBOND_W83627HF + select PIRQ_TABLE + +config MAINBOARD_DIR + string + default tyan/s2891 + depends on BOARD_TYAN_S2891 + +config APIC_ID_OFFSET + hex + default 8 + depends on BOARD_TYAN_S2891 + +config SB_HT_CHAIN_ON_BUS0 + int + default 2 + depends on BOARD_TYAN_S2891 + +config LB_CKS_RANGE_END + int + default 122 + depends on BOARD_TYAN_S2891 + +config LB_CKS_LOC + int + default 123 + depends on BOARD_TYAN_S2891 + +config MAINBOARD_PART_NUMBER + string + default "s2891" + depends on BOARD_TYAN_S2891 + +config CONFIG_MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID + hex + default 0x2891 + depends on BOARD_TYAN_S2891 + +config USE_FAILOVER_IMAGE + bool + default n + depends on BOARD_TYAN_S2891 + +config HW_MEM_HOLE_SIZEK + hex + default 0x100000 + depends on BOARD_TYAN_S2891 + +config MEM_TRAIN_SEQ + bool + default n + depends on BOARD_TYAN_S2891 + +config HAVE_FAILOVER_BOOT + bool + default n + depends on BOARD_TYAN_S2891 + +config USE_FAILOVER_IMAGE + bool + default n + depends on BOARD_TYAN_S2891 + +config MAX_CPUS + int + default 4 + depends on BOARD_TYAN_S2891 + +config MAX_PHYSICAL_CPUS + int + default 2 + depends on BOARD_TYAN_S2891 + +config MEM_TRAIN_SEQ + bool + default n + depends on BOARD_TYAN_S2891 + +config AP_CODE_IN_CAR + bool + default n + depends on BOARD_TYAN_S2891 + +config HW_MEM_HOLE_SIZE_AUTO_INC + bool + default n + depends on BOARD_TYAN_S2891 + +config HT_CHAIN_UNITID_BASE + hex + default 0 + depends on BOARD_TYAN_S2891 + +config HT_CHAIN_END_UNITID_BASE + hex + default 0x20 + depends on BOARD_TYAN_S2891 + +config USE_INIT + bool + default n + depends on BOARD_TYAN_S2891 + +config SERIAL_CPU_INIT + bool + default y + depends on BOARD_TYAN_S2891 + +config AP_CODE_IN_CAR + bool + default y + depends on BOARD_TYAN_S2891 + +config WAIT_BEFORE_CPUS_INIT + bool + default n + depends on BOARD_TYAN_S2891 + +config SB_HT_CHAIN_ON_BUS0 + int + default 2 + depends on BOARD_TYAN_S2891 + +config SB_HT_CHAIN_UNITID_OFFSET_ONLY + bool + default n + depends on BOARD_TYAN_S2891 + +config HAVE_ACPI_TABLES + bool "Generate ACPI tables" + default y + depends on BOARD_TYAN_S2891 + |