diff options
author | Tim Crawford <tcrawford@system76.com> | 2024-05-21 15:17:29 -0600 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-05-29 20:57:44 +0000 |
commit | 8b9716e2269de0c63a42b0cb3b5205925050ee81 (patch) | |
tree | 64e216409c9768b2b7c5ba1aa3b286dbc4edfe5b /src/mainboard/system76/rpl/Kconfig | |
parent | 3a4e1392df96ab22fd5c90d8e4aa082b77c5cab9 (diff) |
mb/system76/rpl: Add Oryx Pro 12 as a variant
The Oryx Pro 12 (oryp12) is a Raptor Lake-HX board.
Tested with a custom edk2 UefiPayloadPkg.
Working:
- PS/2 keyboard
- I2C HID touchpad
- Both DIMM slots (with Crucial CT8G48C40S5)
- M.2 NVMe SSDs
- MicroSD card reader
- Webcam
- Ethernet
- WiFi/Bluetooth
- Integrated graphics using Intel GOP driver
- Backlight controls on Linux 6.8
- Internal microphone
- Internal speakers
- Combined headset + mic 3.5mm audio
- 3.5mm microphone input
- S3 suspend/resume
- Booting Pop!_OS Linux 22.04 with kernel 6.8.0
- TPM 2.0 device
Not working:
- Discrete/Hybrid graphics
- Thunderbolt
Change-Id: I11cf2dbd1512ebae44e0109bdb78e6eafa027444
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82596
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/mainboard/system76/rpl/Kconfig')
-rw-r--r-- | src/mainboard/system76/rpl/Kconfig | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/mainboard/system76/rpl/Kconfig b/src/mainboard/system76/rpl/Kconfig index 60ea71b6bb..1d32b4936d 100644 --- a/src/mainboard/system76/rpl/Kconfig +++ b/src/mainboard/system76/rpl/Kconfig @@ -65,6 +65,13 @@ config BOARD_SYSTEM76_ORYP11 select SOC_INTEL_ALDERLAKE_PCH_P select SOC_INTEL_ENABLE_USB4_PCIE_RESOURCES +config BOARD_SYSTEM76_ORYP12 + select BOARD_SYSTEM76_RPL_COMMON + select DRIVERS_I2C_TAS5825M + select EC_SYSTEM76_EC_DGPU + select PCIEXP_HOTPLUG + select SOC_INTEL_ALDERLAKE_PCH_S + config BOARD_SYSTEM76_SERW13 select BOARD_SYSTEM76_RPL_COMMON select EC_SYSTEM76_EC_DGPU @@ -84,6 +91,7 @@ config VARIANT_DIR default "gaze18" if BOARD_SYSTEM76_GAZE18 default "lemp12" if BOARD_SYSTEM76_LEMP12 default "oryp11" if BOARD_SYSTEM76_ORYP11 + default "oryp12" if BOARD_SYSTEM76_ORYP12 default "serw13" if BOARD_SYSTEM76_SERW13 config OVERRIDE_DEVICETREE @@ -97,6 +105,7 @@ config MAINBOARD_PART_NUMBER default "gaze18" if BOARD_SYSTEM76_GAZE18 default "lemp12" if BOARD_SYSTEM76_LEMP12 default "oryp11" if BOARD_SYSTEM76_ORYP11 + default "oryp12" if BOARD_SYSTEM76_ORYP12 default "serw13" if BOARD_SYSTEM76_SERW13 config MAINBOARD_SMBIOS_PRODUCT_NAME @@ -106,7 +115,7 @@ config MAINBOARD_SMBIOS_PRODUCT_NAME default "Galago Pro" if BOARD_SYSTEM76_GALP7 default "Gazelle" if BOARD_SYSTEM76_GAZE18 default "Lemur Pro" if BOARD_SYSTEM76_LEMP12 - default "Oryx Pro" if BOARD_SYSTEM76_ORYP11 + default "Oryx Pro" if BOARD_SYSTEM76_ORYP11 || BOARD_SYSTEM76_ORYP12 default "Serval WS" if BOARD_SYSTEM76_SERW13 config MAINBOARD_VERSION @@ -117,6 +126,7 @@ config MAINBOARD_VERSION default "gaze18" if BOARD_SYSTEM76_GAZE18 default "lemp12" if BOARD_SYSTEM76_LEMP12 default "oryp11" if BOARD_SYSTEM76_ORYP11 + default "oryp12" if BOARD_SYSTEM76_ORYP12 default "serw13" if BOARD_SYSTEM76_SERW13 config CONSOLE_POST |