blob: 49dd37b7fa188ff84abd99632b2678fddbc066ed [file] [log] [blame]
Timothy Pearson53538be2015-04-30 01:47:31 -05001if BOARD_ASUS_KGPE_D16
2
3config BOARD_SPECIFIC_OPTIONS # dummy
4 def_bool y
5 select CPU_AMD_SOCKET_G34_NON_AGESA
6 select DIMM_DDR3
7 select DIMM_REGISTERED
8 # select QRANK_DIMM_SUPPORT
Timothy Pearson502d4572015-05-10 04:37:56 -05009 select DIMM_VOLTAGE_SET_SUPPORT
Timothy Pearson53538be2015-04-30 01:47:31 -050010 select NORTHBRIDGE_AMD_AMDFAM10
11 select SOUTHBRIDGE_AMD_SR5650
12 select SOUTHBRIDGE_AMD_SB700
13 select SOUTHBRIDGE_AMD_SB700_DISABLE_ISA_DMA
Timothy Pearsonfe2ae612015-06-18 12:37:08 -050014 select SOUTHBRIDGE_AMD_SUBTYPE_SP5100
Timothy Pearson53538be2015-04-30 01:47:31 -050015 select SUPERIO_NUVOTON_NCT5572D
16 select PARALLEL_CPU_INIT
Timothy Pearsonecd4cfc2015-11-05 13:16:55 -060017 select HAVE_ROMSTAGE_CONSOLE_SPINLOCK
Timothy Pearson5f2bf6d2015-08-28 20:02:45 -050018 select HAVE_ROMSTAGE_NVRAM_CBFS_SPINLOCK
Timothy Pearson53538be2015-04-30 01:47:31 -050019 select HAVE_HARD_RESET
20 select HAVE_OPTION_TABLE
21 select HAVE_CMOS_DEFAULT
22 select HAVE_PIRQ_TABLE
23 select HAVE_MP_TABLE
24 select HAVE_ACPI_TABLES
25 select SB_HT_CHAIN_UNITID_OFFSET_ONLY
26 select LIFT_BSP_APIC_ID
27 select BOARD_ROMSIZE_KB_2048
28 select ENABLE_APIC_EXT_ID
29 select MMCONF_SUPPORT_DEFAULT
Timothy Pearsonbabb2e62015-05-07 01:32:08 -050030 select SPI_FLASH
31 select SPI_FLASH_WINBOND
32 select HAVE_ACPI_RESUME
Timothy Pearson53538be2015-04-30 01:47:31 -050033 select DRIVERS_I2C_W83795
34 select DRIVERS_ASPEED_AST2050
35 select MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG
36
37config MAINBOARD_DIR
38 string
39 default "asus/kgpe-d16"
40
41config BOOTBLOCK_MAINBOARD_INIT
42 string
43 default "mainboard/asus/kgpe-d16/bootblock.c"
44
45config DCACHE_RAM_BASE
46 hex
47 default 0xc2000
48
49config DCACHE_RAM_SIZE
50 hex
51 default 0x1e000
52
53config APIC_ID_OFFSET
54 hex
55 default 0
56
57config MAINBOARD_PART_NUMBER
58 string
59 default "KGPE-D16"
60
61config HW_MEM_HOLE_SIZEK
62 hex
63 default 0x100000
64
65config MAX_CPUS
66 int
67 default 32
68
69# 2 (internal) processors per G34 socket
70config MAX_PHYSICAL_CPUS
71 int
72 default 4
73
74config HT_CHAIN_UNITID_BASE
75 hex
76 default 0x0
77
78config HT_CHAIN_END_UNITID_BASE
79 hex
80 default 0x20
81
82config IRQ_SLOT_COUNT
83 int
84 default 13
85
Timothy Pearson95b97842015-11-10 19:20:42 -060086config SOUTHBRIDGE_AMD_SB700_SATA_PORT_COUNT_BITFIELD
87 hex
88 default 0x3f
89
Timothy Pearson53538be2015-04-30 01:47:31 -050090config ONBOARD_VGA_IS_PRIMARY
91 bool
92 default y
93
94config MAINBOARD_POWER_ON_AFTER_POWER_FAIL
95 bool
96 default y
97
Timothy Pearsonbc39b482015-11-03 22:11:51 -060098config MAX_REBOOT_CNT
99 int
100 default 10
101
Timothy Pearson53538be2015-04-30 01:47:31 -0500102endif # BOARD_ASUS_KGPE_D16