bbc880eee7
This gets rid of the somewhat unstructured placement of AMD's sysinfo structure in CAR. We used to carve out some CAR space using a Kconfig variable, and then put sysinfo there manually (by "virtue" of pointer magic). Now it's a variable with the CAR_GLOBAL qualifier, and build system magic. For this, the following steps were done (but must happen together since the intermediates won't build): - Add new CAR_GLOBAL sysinfo_car - point all sysinfo pointers to sysinfo_car instead of GLOBAL_VAR - remove DCACHE_RAM_GLOBAL_VAR_SIZE - from CAR setup (no need to reserve the space) - commented out code (that was commented out for years) - only copy sizeof(sysinfo) into RAM after ram init, where before it copied the whole GLOBAL_VAR area. - from Kconfig Change-Id: I3cbcccd883ca6751326c8e32afde2eb0c91229ed Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/1887 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Marc Jones <marcj303@gmail.com>
70 lines
1.1 KiB
Text
70 lines
1.1 KiB
Text
if BOARD_ASUS_A8V_E_SE
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select ARCH_X86
|
|
select CPU_AMD_SOCKET_939
|
|
select K8_HT_FREQ_1G_SUPPORT
|
|
select NORTHBRIDGE_AMD_AMDK8
|
|
select NORTHBRIDGE_AMD_AMDK8_ROOT_COMPLEX
|
|
select SOUTHBRIDGE_VIA_VT8237R
|
|
select SOUTHBRIDGE_VIA_K8T890
|
|
select SOUTHBRIDGE_VIA_SUBTYPE_K8T890
|
|
select SUPERIO_WINBOND_W83627EHG
|
|
select HAVE_OPTION_TABLE
|
|
select HAVE_ACPI_TABLES
|
|
select HAVE_MP_TABLE
|
|
select BOARD_ROMSIZE_KB_512
|
|
select RAMINIT_SYSINFO
|
|
select QRANK_DIMM_SUPPORT
|
|
select SET_FIDVID
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default asus/a8v-e_se
|
|
|
|
config DCACHE_RAM_BASE
|
|
hex
|
|
default 0xcc000
|
|
|
|
config DCACHE_RAM_SIZE
|
|
hex
|
|
default 0x4000
|
|
|
|
config APIC_ID_OFFSET
|
|
hex
|
|
default 0x10
|
|
|
|
config SB_HT_CHAIN_ON_BUS0
|
|
int
|
|
default 1
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "A8V-E SE"
|
|
|
|
config HW_MEM_HOLE_SIZEK
|
|
hex
|
|
default 0
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 2
|
|
|
|
config MAX_PHYSICAL_CPUS
|
|
int
|
|
default 1
|
|
|
|
config HEAP_SIZE
|
|
hex
|
|
default 0x40000
|
|
|
|
config HT_CHAIN_END_UNITID_BASE
|
|
hex
|
|
default 0x20
|
|
|
|
config HT_CHAIN_UNITID_BASE
|
|
hex
|
|
default 0x0
|
|
|
|
endif # BOARD_ASUS_A8V_E_SE
|