diff options
Diffstat (limited to 'src/mainboard/supermicro/h8dme/Kconfig')
-rw-r--r-- | src/mainboard/supermicro/h8dme/Kconfig | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/src/mainboard/supermicro/h8dme/Kconfig b/src/mainboard/supermicro/h8dme/Kconfig new file mode 100644 index 0000000000..c3e857a367 --- /dev/null +++ b/src/mainboard/supermicro/h8dme/Kconfig @@ -0,0 +1,130 @@ +config BOARD_SUPERMICRO_H8DME + bool "h8dme" + select ARCH_X86 + select CPU_AMD_K8 + select CPU_AMD_SOCKET_F + select NORTHBRIDGE_AMD_AMDK8 + select NORTHBRIDGE_AMD_AMDK8_ROOT_COMPLEX + select SOUTHBRIDGE_NVIDIA_MCP55 + select SUPERIO_WINBOND_W83627HF + select HAVE_PIRQ_TABLE + select USE_PRINTK_IN_CAR + select USE_DCACHE_RAM + help + h8dme + +config MAINBOARD_DIR + string + default supermicro/h8dme + depends on BOARD_SUPERMICRO_H8DME + +config DCACHE_RAM_BASE + hex + default 0xc8000 + depends on BOARD_SUPERMICRO_H8DME + +config DCACHE_RAM_SIZE + hex + default 0x08000 + depends on BOARD_SUPERMICRO_H8DME + +config DCACHE_RAM_GLOBAL_VAR_SIZE + hex + default 0x01000 + depends on BOARD_SUPERMICRO_H8DME + +config APIC_ID_OFFSET + hex + default 0x10 + depends on BOARD_SUPERMICRO_H8DME + +config HAVE_HARD_RESET + bool + default y + depends on BOARD_SUPERMICRO_H8DME + +config IOAPIC + bool + default y + depends on BOARD_SUPERMICRO_H8DME + +config SB_HT_CHAIN_ON_BUS0 + int + default 2 + depends on BOARD_SUPERMICRO_H8DME + +config SB_HT_CHAIN_UNITID_OFFSET_ONLY + bool + default n + depends on BOARD_SUPERMICRO_H8DME + +config LB_CKS_RANGE_END + int + default 122 + depends on BOARD_SUPERMICRO_H8DME + +config LB_CKS_LOC + int + default 123 + depends on BOARD_SUPERMICRO_H8DME + +config MAINBOARD_PART_NUMBER + string + default "ultra40" + depends on BOARD_SUPERMICRO_H8DME + +config HW_MEM_HOLE_SIZEK + hex + default 0x100000 + depends on BOARD_SUPERMICRO_H8DME + +config HAVE_FAILOVER_BOOT + bool + default n + depends on BOARD_SUPERMICRO_H8DME + +config USE_FAILOVER_IMAGE + bool + default n + depends on BOARD_SUPERMICRO_H8DME + +config MAX_CPUS + int + default 4 + depends on BOARD_SUPERMICRO_H8DME + +config MAX_PHYSICAL_CPUS + int + default 2 + depends on BOARD_SUPERMICRO_H8DME + +config HT_CHAIN_END_UNITID_BASE + hex + default 0x0 + depends on BOARD_SUPERMICRO_H8DME + +config HT_CHAIN_UNITID_BASE + hex + default 0x0 + depends on BOARD_SUPERMICRO_H8DME + +config USE_INIT + bool + default n + depends on BOARD_SUPERMICRO_H8DME + +config SB_HT_CHAIN_ON_BUS0 + int + default 2 + depends on BOARD_SUPERMICRO_H8DME + +config CONSOLE_VGA + bool + default y + depends on BOARD_SUPERMICRO_H8DME + +config PCI_ROM_RUN + bool + default y + depends on BOARD_SUPERMICRO_H8DME + |