Create a new mainboard based on the AMD DB-FT3 development board
(Olive Hill) using an AMD Steppe Eagle processor. The actual DB-FT3
and DB-FT3b mainboards are identical except for the soldered-down
SoC device. The new AMD DB-FT3b development board (Olive Hill+)
features:
* Mini-ITX form factor
* 2x DisplayPort
* 1x VGA
* Integrated Realtek RTL8111-compatible Ethernet
* 2x USB 3.0 ports
* 2x USB 2.0 externally-accessible ports
* 2x USB 2.0 internally-accessible ports (via headers)
* micro LPC header
* Integrated platform security processor
* 2x Full-size DDR3 DIMM support (1 channel)
* Realtek ALC272 HD audio
* 2x SATA ports
* 1x SD card slot
* 1x PCIe (x4) slot
* 1x mini-PCIe slot
* 8-pin programming header
Eliminate the extraneous headers included in PlatformGnbPcie.
BiosCallOuts normally has a bunch of extraneous references to the
mainboard name. Rather than correct the spelling of a bunch of
instances, just get rid of them.
For the most part, use the Olive Hill ACPI definitions since the
DB-FT3b board ("Olive Hill+") and Olive Hill are the same board
with different processors.
Change some function prototypes for functions without parameters
to void instead of AGESA's VOID. There are no parameters for
these functions, so there is no real reason to use VOID.
S3 and fan control are not supported. HD audio is not working.
Change-Id: I794d7a8f4f948346cfe7cbd443c9aed5f70c99ed
Signed-off-by: Bruce Griffith <Bruce.Griffith@se-eng.com>
Reviewed-on: http://review.coreboot.org/6681
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <gaumless@gmail.com>
76 lines
2.1 KiB
Text
76 lines
2.1 KiB
Text
if VENDOR_AMD
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config BOARD_AMD_DB800
|
|
bool "DB800 (Salsa)"
|
|
config BOARD_AMD_DBM690T
|
|
bool "DBM690T (Herring)"
|
|
config BOARD_AMD_DINAR
|
|
bool "Dinar"
|
|
config BOARD_AMD_MAHOGANY
|
|
bool "Mahogany"
|
|
config BOARD_AMD_MAHOGANY_FAM10
|
|
bool "Mahogany (Fam10)"
|
|
config BOARD_AMD_NORWICH
|
|
bool "Norwich"
|
|
config BOARD_AMD_PISTACHIO
|
|
bool "Pistachio"
|
|
config BOARD_AMD_RUMBA
|
|
bool "Rumba"
|
|
config BOARD_AMD_SERENGETI_CHEETAH
|
|
bool "Serengeti Cheetah"
|
|
config BOARD_AMD_SERENGETI_CHEETAH_FAM10
|
|
bool "Serengeti Cheetah (Fam10)"
|
|
config BOARD_AMD_TILAPIA_FAM10
|
|
bool "Tilapia (Fam10)"
|
|
config BOARD_AMD_BIMINI_FAM10
|
|
bool "Bimini (Fam10)"
|
|
config BOARD_AMD_INAGUA
|
|
bool "Inagua"
|
|
config BOARD_AMD_PERSIMMON
|
|
bool "Persimmon"
|
|
config BOARD_AMD_SOUTHSTATION
|
|
bool "Southstation"
|
|
config BOARD_AMD_TORPEDO
|
|
bool "Torpedo"
|
|
config BOARD_AMD_UNIONSTATION
|
|
bool "Unionstation"
|
|
config BOARD_AMD_PARMER
|
|
bool "Parmer"
|
|
config BOARD_AMD_THATCHER
|
|
bool "Thatcher"
|
|
config BOARD_AMD_OLIVEHILL
|
|
bool "Olive Hill"
|
|
config BOARD_AMD_OLIVEHILLPLUS
|
|
bool "Olive Hill Plus"
|
|
endchoice
|
|
|
|
source "src/mainboard/amd/db800/Kconfig"
|
|
source "src/mainboard/amd/dbm690t/Kconfig"
|
|
source "src/mainboard/amd/dinar/Kconfig"
|
|
source "src/mainboard/amd/mahogany/Kconfig"
|
|
source "src/mainboard/amd/mahogany_fam10/Kconfig"
|
|
source "src/mainboard/amd/norwich/Kconfig"
|
|
source "src/mainboard/amd/pistachio/Kconfig"
|
|
source "src/mainboard/amd/rumba/Kconfig"
|
|
source "src/mainboard/amd/serengeti_cheetah/Kconfig"
|
|
source "src/mainboard/amd/serengeti_cheetah_fam10/Kconfig"
|
|
source "src/mainboard/amd/tilapia_fam10/Kconfig"
|
|
source "src/mainboard/amd/bimini_fam10/Kconfig"
|
|
source "src/mainboard/amd/inagua/Kconfig"
|
|
source "src/mainboard/amd/persimmon/Kconfig"
|
|
source "src/mainboard/amd/south_station/Kconfig"
|
|
source "src/mainboard/amd/torpedo/Kconfig"
|
|
source "src/mainboard/amd/union_station/Kconfig"
|
|
source "src/mainboard/amd/parmer/Kconfig"
|
|
source "src/mainboard/amd/thatcher/Kconfig"
|
|
source "src/mainboard/amd/olivehill/Kconfig"
|
|
source "src/mainboard/amd/olivehillplus/Kconfig"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "AMD"
|
|
|
|
endif # VENDOR_AMD
|