This is a sad story. We have three different code paths for sandybridge and ivybridge: proper native path, google MRC path, and, everyone's favorite: Intel FSP path. For the purpose of this patch, the FSP path lives in its own little world, and doesn't concern us. Since MRC was first, when native files and variables were added, they were suffixed with "_native" to separate them from the existing code. This can cause confusion, as the suffix might make the native files seem parasitical. This has been bothering me for many months. MRC should be the parasitical path, especially since we fully support native init, and it works more reliably, on a wider range of hardware. There have been a few board ports that never made it to coreboot.org because MRC would hang. gigabyte/ga-b75m-d3h is a prime example: it did not work with MRC, so the effort was abandoned at first. Once the native path became available, the effort was restarted and the board is now supported. In honor of the hackers and pioneers who made the native code possible, rename things so that their effort is the first class citizen. Change-Id: Ic86cee5e00bf7f598716d3d15d1ea81ca673932f Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-on: http://review.coreboot.org/11788 Tested-by: build bot (Jenkins) Reviewed-by: Philipp Deppenwiese <zaolin@das-labor.org>
71 lines
1.1 KiB
Plaintext
71 lines
1.1 KiB
Plaintext
if BOARD_GIGABYTE_GA_B75M_D3H
|
|
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
def_bool y
|
|
select ARCH_X86
|
|
select CPU_INTEL_SOCKET_LGA1155
|
|
select NORTHBRIDGE_INTEL_IVYBRIDGE
|
|
select SOUTHBRIDGE_INTEL_C216
|
|
select SUPERIO_ITE_IT8728F
|
|
select BOARD_ROMSIZE_KB_8192
|
|
select HAVE_ACPI_TABLES
|
|
select HAVE_OPTION_TABLE
|
|
select HAVE_CMOS_DEFAULT
|
|
select HAVE_ACPI_RESUME
|
|
select HAVE_SMI_HANDLER
|
|
select INTEL_INT15
|
|
select VGA
|
|
select INTEL_EDID
|
|
select UDELAY_TSC
|
|
select SERIRQ_CONTINUOUS_MODE
|
|
|
|
config MMCONF_BASE_ADDRESS
|
|
hex
|
|
default 0xf0000000
|
|
|
|
config DRAM_RESET_GATE_GPIO
|
|
int
|
|
default 25
|
|
|
|
config USBDEBUG_HCD_INDEX
|
|
int
|
|
default 2
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default gigabyte/ga-b75m-d3h
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "GA-B75M-D3H"
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 8
|
|
|
|
config VGA_BIOS_ID
|
|
string
|
|
default "8086,0162"
|
|
|
|
config VGA_BIOS_FILE
|
|
string
|
|
default "pci8086,0162.rom"
|
|
|
|
config HAVE_IFD_BIN
|
|
bool
|
|
default n
|
|
|
|
config HAVE_ME_BIN
|
|
bool
|
|
default n
|
|
|
|
config IFD_BIOS_SECTION
|
|
string
|
|
default "0x00600000:0x007fffff"
|
|
|
|
config IFD_ME_SECTION
|
|
string
|
|
default "0x00001000:0x004fffff"
|
|
|
|
endif # BOARD_GIGABYTE_GA_B75M_D3H
|