diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-04-17 02:25:11 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-03 08:59:36 +0000 |
commit | ebd4dfa53e2102b3ec0ac0df06c6d0ecf7550aac (patch) | |
tree | 59e38bb01f1bc1c4884b829b70bcc8d11a8716e1 /src/mainboard/gigabyte/ga-d510ud/Kconfig | |
parent | 27545df163033c77a37f666909c116011fd17617 (diff) |
mb/gigabyte: Add GA-D510UD
Booted fine on the first try. Most things work properly, but I haven't
tested them thoroughly. Native raminit chokes with a DIMM in the second
slot, but the first slot works properly.
Change-Id: I2126c7d31e0d8a8f80df69fdcdcd202b87f219a4
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40465
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/gigabyte/ga-d510ud/Kconfig')
-rw-r--r-- | src/mainboard/gigabyte/ga-d510ud/Kconfig | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/mainboard/gigabyte/ga-d510ud/Kconfig b/src/mainboard/gigabyte/ga-d510ud/Kconfig new file mode 100644 index 0000000000..71fe981d7d --- /dev/null +++ b/src/mainboard/gigabyte/ga-d510ud/Kconfig @@ -0,0 +1,27 @@ +## SPDX-License-Identifier: GPL-2.0-only + +if BOARD_GIGABYTE_GA_D510UD + +config BOARD_SPECIFIC_OPTIONS + def_bool y + select BOARD_ROMSIZE_KB_512 + select CPU_INTEL_SOCKET_FCBGA559 + select HAVE_ACPI_RESUME + select HAVE_ACPI_TABLES + select HAVE_CMOS_DEFAULT + select HAVE_OPTION_TABLE + select INTEL_GMA_HAVE_VBT + select NORTHBRIDGE_INTEL_PINEVIEW + select REALTEK_8168_RESET + select SOUTHBRIDGE_INTEL_I82801GX + select SUPERIO_ITE_IT8720F + +config MAINBOARD_DIR + string + default "gigabyte/ga-d510ud" + +config MAINBOARD_PART_NUMBER + string + default "GA-D510UD" + +endif # BOARD_GIGABYTE_GA_D510UD |