summaryrefslogtreecommitdiff
path: root/src/mainboard/hp/pro_3500_series/Kconfig
diff options
context:
space:
mode:
authorJoel Linn <jl@conductive.de>2024-03-02 13:59:52 +0100
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2024-04-16 15:41:36 +0000
commita70493d5b2edadc221f59582aaaba96c72e304fc (patch)
treedf6d938cbf67688c8171a97e468ab2c9b43b4676 /src/mainboard/hp/pro_3500_series/Kconfig
parent934a32d7526e702d267f59f650c1651a73f8455f (diff)
mb/hp: Add Pro 3500 series (Sandy/Ivy Bridge)
This is another readily available (used market) system. Based on autoport. * All peripherals should work. * Automatic fan control as well as S3 are working. * The board was tested to boot Linux and Windows. EHCI debug is untested. * When using MrChromebox edk2 with secure boot build in, the board will hang on each boot for about 20 seconds before continuing. There are some quirks for doing the first flash, see the documentation. Change-Id: Idf793fe915096cf2553572964faec5c7f8526b9a Signed-off-by: Joel Linn <jl@conductive.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81368 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/mainboard/hp/pro_3500_series/Kconfig')
-rw-r--r--src/mainboard/hp/pro_3500_series/Kconfig37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/mainboard/hp/pro_3500_series/Kconfig b/src/mainboard/hp/pro_3500_series/Kconfig
new file mode 100644
index 0000000000..ab77654b39
--- /dev/null
+++ b/src/mainboard/hp/pro_3500_series/Kconfig
@@ -0,0 +1,37 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+if BOARD_HP_PRO_3500_SERIES
+
+config BOARD_SPECIFIC_OPTIONS
+ def_bool y
+ select BOARD_ROMSIZE_KB_8192
+ select HAVE_ACPI_RESUME
+ select HAVE_ACPI_TABLES
+ select INTEL_GMA_HAVE_VBT
+ select MAINBOARD_HAS_LIBGFXINIT
+ select MAINBOARD_USES_IFD_GBE_REGION
+ select NORTHBRIDGE_INTEL_SANDYBRIDGE
+ select NO_UART_ON_SUPERIO
+ select SERIRQ_CONTINUOUS_MODE
+ select SOUTHBRIDGE_INTEL_BD82X6X
+ select SUPERIO_ITE_IT8772F
+ select USE_NATIVE_RAMINIT
+
+config CBFS_SIZE
+ default 0x400000
+
+config MAINBOARD_DIR
+ default "hp/pro_3500_series"
+
+config MAINBOARD_PART_NUMBER
+ default "Pro 3500 Series"
+
+config VGA_BIOS_ID
+ default "8086,0152"
+
+config DRAM_RESET_GATE_GPIO
+ default 60
+
+config USBDEBUG_HCD_INDEX
+ default 2
+endif