diff options
author | Tim Crawford <tcrawford@system76.com> | 2022-11-28 09:17:55 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-12-02 14:30:25 +0000 |
commit | fa2c118af49670b59c599d760a56f441a8bce71c (patch) | |
tree | 5854a0abdba36a518a2ded16bde6c2c21545f9c2 /src/mainboard/system76/adl-p/Kconfig | |
parent | 5b7b04c938f2647d76abba81cc1e54c9b3508983 (diff) |
mb/system76/adl-p: Add Galago Pro 6 as a variant
The Galago Pro 6 (galp6) is an Alder Lake-P board.
Tested with a custom edk2 UefiPayloadPkg.
Working:
- PS/2 keyboard, touchpad
- Both DIMM slots (with NMSO480E82-3200EA00)
- M.2 NVMe SSD (with MZVL2500HCJQ)
- All USB ports
- All USB ports
- SD card reader
- Webcam
- Ethernet
- WiFi/Bluetooth
- Integrated graphics using Intel GOP driver
- Backlight controls on Windows 10 and Linux 6.1
- HDMI output
- DisplayPort output over USB-C
- Internal microphone
- Internal speakers
- Combined headphone + mic 3.5mm audio
- S0ix suspend/resume
- Booting Pop!_OS Linux 22.04 with kernel 6.0.6
- Internal flashing with flashrom v1.2-1087-gde016a17
Not working:
- Detection of devices in TBT slot on boot
Change-Id: I8940fb3777d7f18393ef50baec32f9445b375648
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69211
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jeremy Soller <jeremy@system76.com>
Diffstat (limited to 'src/mainboard/system76/adl-p/Kconfig')
-rw-r--r-- | src/mainboard/system76/adl-p/Kconfig | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mainboard/system76/adl-p/Kconfig b/src/mainboard/system76/adl-p/Kconfig index e9ac901562..80c42a80b2 100644 --- a/src/mainboard/system76/adl-p/Kconfig +++ b/src/mainboard/system76/adl-p/Kconfig @@ -1,4 +1,4 @@ -if BOARD_SYSTEM76_DARP8 +if BOARD_SYSTEM76_DARP8 || BOARD_SYSTEM76_GALP6 config BOARD_SPECIFIC_OPTIONS def_bool y @@ -28,18 +28,22 @@ config MAINBOARD_DIR config VARIANT_DIR default "darp8" if BOARD_SYSTEM76_DARP8 + default "galp6" if BOARD_SYSTEM76_GALP6 config OVERRIDE_DEVICETREE default "variants/\$(CONFIG_VARIANT_DIR)/overridetree.cb" config MAINBOARD_PART_NUMBER default "darp8" if BOARD_SYSTEM76_DARP8 + default "galp6" if BOARD_SYSTEM76_GALP6 config MAINBOARD_SMBIOS_PRODUCT_NAME default "Darter Pro" if BOARD_SYSTEM76_DARP8 + default "Galago Pro" if BOARD_SYSTEM76_GALP6 config MAINBOARD_VERSION default "darp8" if BOARD_SYSTEM76_DARP8 + default "galp6" if BOARD_SYSTEM76_GALP6 config CBFS_SIZE default 0xA00000 |