Author: myles
Date: 2009-09-23 19:59:56 +0200 (Wed, 23 Sep 2009)
New Revision: 4660

Added:
   trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig
   trunk/coreboot-v2/src/mainboard/tyan/s2881/Makefile.inc
Modified:
   trunk/coreboot-v2/src/mainboard/tyan/Kconfig
Log:
Add Kconfig support for Tyan s2881.

Signed-off-by: Myles Watson <myle...@gmail.com>
Acked-by: Ronald G. Minnich <rminn...@gmail.com>


Modified: trunk/coreboot-v2/src/mainboard/tyan/Kconfig
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/Kconfig        2009-09-23 17:48:28 UTC 
(rev 4659)
+++ trunk/coreboot-v2/src/mainboard/tyan/Kconfig        2009-09-23 17:59:56 UTC 
(rev 4660)
@@ -23,6 +23,7 @@
        depends on VENDOR_TYAN
        
 source "src/mainboard/tyan/s1846/Kconfig"
+source "src/mainboard/tyan/s2881/Kconfig"
 source "src/mainboard/tyan/s2891/Kconfig"
 source "src/mainboard/tyan/s2892/Kconfig"
 source "src/mainboard/tyan/s2895/Kconfig"

Copied: trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig (from rev 4658, 
trunk/coreboot-v2/src/mainboard/tyan/s2891/Kconfig)
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig                          
(rev 0)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2881/Kconfig  2009-09-23 17:59:56 UTC 
(rev 4660)
@@ -0,0 +1,142 @@
+config BOARD_TYAN_S2881
+       bool "Tyan Thunder K8SR S2881"
+       select ARCH_X86
+       select CPU_AMD_K8
+       select CPU_AMD_SOCKET_940
+       select NORTHBRIDGE_AMD_AMDK8
+       select NORTHBRIDGE_AMD_AMDK8_ROOT_COMPLEX
+       select SOUTHBRIDGE_AMD_AMD8131
+       select SOUTHBRIDGE_AMD_AMD8111
+       select SUPERIO_WINBOND_W83627HF
+       select PIRQ_TABLE
+
+config MAINBOARD_DIR
+       string
+       default tyan/s2881
+       depends on BOARD_TYAN_S2881
+
+config APIC_ID_OFFSET
+       hex
+       default 0x10
+       depends on BOARD_TYAN_S2881
+
+config SB_HT_CHAIN_ON_BUS0
+       int
+       default 2
+       depends on BOARD_TYAN_S2881
+
+config LB_CKS_RANGE_END
+       int
+       default 122
+       depends on BOARD_TYAN_S2881
+
+config LB_CKS_LOC
+       int
+        default 123
+       depends on BOARD_TYAN_S2881
+
+config MAINBOARD_PART_NUMBER
+       string
+       default "s2881"
+       depends on BOARD_TYAN_S2881
+
+config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
+       hex
+       default 0x2881
+       depends on BOARD_TYAN_S2881
+
+config USE_FAILOVER_IMAGE
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config HW_MEM_HOLE_SIZEK
+       hex
+       default 0x100000
+       depends on BOARD_TYAN_S2881
+
+config MEM_TRAIN_SEQ
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config HAVE_FAILOVER_BOOT
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config USE_FAILOVER_IMAGE
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config MAX_CPUS
+       int
+       default 4
+       depends on BOARD_TYAN_S2881
+
+config MAX_PHYSICAL_CPUS
+       int
+       default 2
+       depends on BOARD_TYAN_S2881
+
+config MEM_TRAIN_SEQ
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config AP_CODE_IN_CAR
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config HW_MEM_HOLE_SIZE_AUTO_INC
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config HT_CHAIN_UNITID_BASE
+       hex
+       default 0xa
+       depends on BOARD_TYAN_S2881
+
+config HT_CHAIN_END_UNITID_BASE
+       hex
+       default 0x6
+       depends on BOARD_TYAN_S2881
+
+config USE_INIT
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config SERIAL_CPU_INIT
+       bool
+       default y
+       depends on BOARD_TYAN_S2881
+
+config AP_CODE_IN_CAR
+       bool
+       default y
+       depends on BOARD_TYAN_S2881
+
+config WAIT_BEFORE_CPUS_INIT
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config SB_HT_CHAIN_ON_BUS0
+       int
+       default 0
+       depends on BOARD_TYAN_S2881
+
+config SB_HT_CHAIN_UNITID_OFFSET_ONLY
+       bool
+       default n
+       depends on BOARD_TYAN_S2881
+
+config HAVE_ACPI_TABLES
+       bool "Generate ACPI tables"
+       default n
+       depends on BOARD_TYAN_S2881
+

Copied: trunk/coreboot-v2/src/mainboard/tyan/s2881/Makefile.inc (from rev 4658, 
trunk/coreboot-v2/src/mainboard/tyan/s2891/Makefile.inc)
===================================================================
--- trunk/coreboot-v2/src/mainboard/tyan/s2881/Makefile.inc                     
        (rev 0)
+++ trunk/coreboot-v2/src/mainboard/tyan/s2881/Makefile.inc     2009-09-23 
17:59:56 UTC (rev 4660)
@@ -0,0 +1,2 @@
+include $(src)/mainboard/tyan/Makefile.s289x.inc
+driver-$(CONFIG_BOARD_TYAN_S2881) += ../../../drivers/i2c/adm1027/adm1027.o


Property changes on: trunk/coreboot-v2/src/mainboard/tyan/s2881/Makefile.inc
___________________________________________________________________
Added: svn:mergeinfo
   + 


-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to