diff options
author | Tim Crawford <tcrawford@system76.com> | 2023-07-14 10:11:07 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-07-18 15:02:24 +0000 |
commit | 68752314720fb93b3726c9db3aae9aa1756f1fcc (patch) | |
tree | c11ba4a08d2ec8c7603a22352ed099d39ee4e762 /src/mainboard/system76/rpl/Kconfig | |
parent | d7a07c2873cc2b8c942bae16e5620adfe4318685 (diff) |
mb/system76/rpl: Add Darter Pro 9 as a variant
The Darter Pro 9 (darp9) is a Raptor Lake-P 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
- 3.5mm microphone input
- S3 suspend/resume
- Booting Pop!_OS Linux 22.04 with kernel 6.2.7
Change-Id: If19caa90e5f90939b2946392da343b7f91f568ca
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75278
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 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/system76/rpl/Kconfig b/src/mainboard/system76/rpl/Kconfig index 28526ae6bd..a2c962b19e 100644 --- a/src/mainboard/system76/rpl/Kconfig +++ b/src/mainboard/system76/rpl/Kconfig @@ -30,6 +30,11 @@ config BOARD_SYSTEM76_ADDW3 select PCIEXP_HOTPLUG select SOC_INTEL_ALDERLAKE_PCH_S +config BOARD_SYSTEM76_DARP9 + select BOARD_SYSTEM76_RPL_COMMON + select PCIEXP_HOTPLUG + select SOC_INTEL_ALDERLAKE_PCH_P + config BOARD_SYSTEM76_GAZE18 select BOARD_SYSTEM76_RPL_COMMON select EC_SYSTEM76_EC_COLOR_KEYBOARD @@ -56,6 +61,7 @@ config MAINBOARD_DIR config VARIANT_DIR default "addw3" if BOARD_SYSTEM76_ADDW3 + default "darp9" if BOARD_SYSTEM76_DARP9 default "gaze18" if BOARD_SYSTEM76_GAZE18 default "oryp11" if BOARD_SYSTEM76_ORYP11 default "serw13" if BOARD_SYSTEM76_SERW13 @@ -65,18 +71,21 @@ config OVERRIDE_DEVICETREE config MAINBOARD_PART_NUMBER default "addw3" if BOARD_SYSTEM76_ADDW3 + default "darp9" if BOARD_SYSTEM76_DARP9 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 "Darter Pro" if BOARD_SYSTEM76_DARP9 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 "darp9" if BOARD_SYSTEM76_DARP9 default "gaze18" if BOARD_SYSTEM76_GAZE18 default "oryp11" if BOARD_SYSTEM76_ORYP11 default "serw13" if BOARD_SYSTEM76_SERW13 |