diff options
author | Tim Crawford <tcrawford@system76.com> | 2023-03-02 09:23:11 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-03-04 02:07:20 +0000 |
commit | 018c1686b9c203bf9611e0ff9cfeadb01925d7c1 (patch) | |
tree | cab1fa3e57cd236d040fe8314c631a38990c3c10 /src/mainboard/system76/adl/Kconfig | |
parent | 8509c25eece80b3238b98b1415284239037bc865 (diff) |
mb/system76/adl: Add Oryx Pro 9 as a variant
The Oryx Pro 9 (oryp9) is an Alder Lake-P board.
Tested with a custom TianoCore UefiPayloadPkg.
Working:
- PS/2 keyboard, touchpad
- Both DIMM slots (with NMSO480E82-3200EA00)
- Both M.2 NVME SSD slots (with MZVL2500HCJQ)
- All USB ports
- SD card reader
- Webcam
- Ethernet
- WiFi/Bluetooth
- Integrated graphics using Intel GOP driver
- Internal microphone
- Internal speakers
- Combined headphone + mic 3.5mm audio
- 3.5mm microphone input
- S0ix suspend/resume
- Booting Pop!_OS Linux 22.04 with kernel 6.1.11
- Internal flashing with flashrom v1.2-1203-gf4ddd3234330
Not working:
- Discrete/Hybrid graphics
- HDMI output (requires NVIDIA GPU)
- Mini DisplayPort output (requires NVIDIA GPU)
- Detection of devices in TBT slot on boot
Change-Id: I8aac3e83f4423f444cb9ce8aa562ba465eb718c1
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65610
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jeremy Soller <jeremy@system76.com>
Diffstat (limited to 'src/mainboard/system76/adl/Kconfig')
-rw-r--r-- | src/mainboard/system76/adl/Kconfig | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/mainboard/system76/adl/Kconfig b/src/mainboard/system76/adl/Kconfig index 9329ee0f63..00f19fb51f 100644 --- a/src/mainboard/system76/adl/Kconfig +++ b/src/mainboard/system76/adl/Kconfig @@ -1,4 +1,4 @@ -if BOARD_SYSTEM76_DARP8 || BOARD_SYSTEM76_GALP6 || BOARD_SYSTEM76_LEMP11 +if BOARD_SYSTEM76_DARP8 || BOARD_SYSTEM76_GALP6 || BOARD_SYSTEM76_LEMP11 || BOARD_SYSTEM76_ORYP9 config BOARD_SPECIFIC_OPTIONS def_bool y @@ -6,8 +6,10 @@ config BOARD_SPECIFIC_OPTIONS select DRIVERS_I2C_HID select DRIVERS_INTEL_PMC select DRIVERS_INTEL_USB4_RETIMER + select DRIVERS_I2C_TAS5825M if BOARD_SYSTEM76_ORYP9 select EC_SYSTEM76_EC - select EC_SYSTEM76_EC_COLOR_KEYBOARD if BOARD_SYSTEM76_DARP8 + select EC_SYSTEM76_EC_COLOR_KEYBOARD if BOARD_SYSTEM76_DARP8 || BOARD_SYSTEM76_ORYP9 + select EC_SYSTEM76_EC_DGPU if BOARD_SYSTEM76_ORYP9 select HAVE_ACPI_TABLES select HAVE_CMOS_DEFAULT select HAVE_OPTION_TABLE @@ -31,6 +33,7 @@ config VARIANT_DIR default "darp8" if BOARD_SYSTEM76_DARP8 default "galp6" if BOARD_SYSTEM76_GALP6 default "lemp11" if BOARD_SYSTEM76_LEMP11 + default "oryp9" if BOARD_SYSTEM76_ORYP9 config OVERRIDE_DEVICETREE default "variants/\$(CONFIG_VARIANT_DIR)/overridetree.cb" @@ -39,16 +42,19 @@ config MAINBOARD_PART_NUMBER default "darp8" if BOARD_SYSTEM76_DARP8 default "galp6" if BOARD_SYSTEM76_GALP6 default "lemp11" if BOARD_SYSTEM76_LEMP11 + default "oryp9" if BOARD_SYSTEM76_ORYP9 config MAINBOARD_SMBIOS_PRODUCT_NAME default "Darter Pro" if BOARD_SYSTEM76_DARP8 default "Galago Pro" if BOARD_SYSTEM76_GALP6 default "Lemur Pro" if BOARD_SYSTEM76_LEMP11 + default "Oryx Pro" if BOARD_SYSTEM76_ORYP9 config MAINBOARD_VERSION default "darp8" if BOARD_SYSTEM76_DARP8 default "galp6" if BOARD_SYSTEM76_GALP6 default "lemp11" if BOARD_SYSTEM76_LEMP11 + default "oryp9" if BOARD_SYSTEM76_ORYP9 config CBFS_SIZE default 0xA00000 @@ -59,6 +65,9 @@ config CONSOLE_POST config DIMM_SPD_SIZE default 512 +config ONBOARD_VGA_IS_PRIMARY + default y + config POST_DEVICE default n |