diff options
author | Tim Crawford <tcrawford@system76.com> | 2023-07-06 14:16:23 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-07-18 15:01:56 +0000 |
commit | d7a07c2873cc2b8c942bae16e5620adfe4318685 (patch) | |
tree | a64ba8bdb1dc71c6db061eeba15dcf88aa8fb4eb /src/mainboard/system76/rpl/Kconfig | |
parent | ff865a329f9f04ed3740b2f7f128fab91886c01c (diff) |
mb/system76/rpl: Add Serval WS 13 as a variant
The Serval Workstation 13 (serw13) is a Raptor Lake-HX board.
Tested with a custom TianoCore UefiPayloadPkg.
Working:
- PS/2 Keyboard
- I2C HID touchpad
- Both DIMM slots with 5200 MT/s memory
- Both M.2 SSD slots
- All USB ports
- Webcam
- Ethernet
- WiFi/Bluetooth
- Integrated graphics using Intel GOP driver
- Internal microphone
- Internal speakers
- Combined 3.5mm headphone + mic audio output
- 3.5mm microphone input
- S3 suspend/resume
- Booting Pop!_OS Linux 22.04 with kernel 6.2.7
Not working:
- Discrete/Hybrid graphics
- Thunderbolt
Change-Id: Id709a7d06854ba9de673d5e3f25c0a1bbcc53d21
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73440
Reviewed-by: Jeremy Soller <jeremy@system76.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/system76/rpl/Kconfig')
-rw-r--r-- | src/mainboard/system76/rpl/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mainboard/system76/rpl/Kconfig b/src/mainboard/system76/rpl/Kconfig index 2428628ba4..28526ae6bd 100644 --- a/src/mainboard/system76/rpl/Kconfig +++ b/src/mainboard/system76/rpl/Kconfig @@ -43,6 +43,12 @@ config BOARD_SYSTEM76_ORYP11 select SOC_INTEL_ALDERLAKE_PCH_P select SOC_INTEL_ENABLE_USB4_PCIE_RESOURCES +config BOARD_SYSTEM76_SERW13 + select BOARD_SYSTEM76_RPL_COMMON + select EC_SYSTEM76_EC_DGPU + select PCIEXP_HOTPLUG + select SOC_INTEL_ALDERLAKE_PCH_S + if BOARD_SYSTEM76_RPL_COMMON config MAINBOARD_DIR @@ -52,6 +58,7 @@ config VARIANT_DIR default "addw3" if BOARD_SYSTEM76_ADDW3 default "gaze18" if BOARD_SYSTEM76_GAZE18 default "oryp11" if BOARD_SYSTEM76_ORYP11 + default "serw13" if BOARD_SYSTEM76_SERW13 config OVERRIDE_DEVICETREE default "variants/\$(CONFIG_VARIANT_DIR)/overridetree.cb" @@ -60,16 +67,19 @@ config MAINBOARD_PART_NUMBER default "addw3" if BOARD_SYSTEM76_ADDW3 default "gaze18" if BOARD_SYSTEM76_GAZE18 default "oryp11" if BOARD_SYSTEM76_ORYP11 + default "serw13" if BOARD_SYSTEM76_SERW13 config MAINBOARD_SMBIOS_PRODUCT_NAME default "Adder WS" if BOARD_SYSTEM76_ADDW3 default "Gazelle" if BOARD_SYSTEM76_GAZE18 default "Oryx Pro" if BOARD_SYSTEM76_ORYP11 + default "Serval WS" if BOARD_SYSTEM76_SERW13 config MAINBOARD_VERSION default "addw3" if BOARD_SYSTEM76_ADDW3 default "gaze18" if BOARD_SYSTEM76_GAZE18 default "oryp11" if BOARD_SYSTEM76_ORYP11 + default "serw13" if BOARD_SYSTEM76_SERW13 config CONSOLE_POST default y |