Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/52218 )
Change subject: mb/system76/kbl-u: Add Galago Pro 3 as a variant ......................................................................
mb/system76/kbl-u: Add Galago Pro 3 as a variant
Change-Id: Ie203883cc9418585da4f9c7acd89e7624234caf1 Signed-off-by: Jeremy Soller jeremy@system76.com Signed-off-by: Tim Crawford tcrawford@system76.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/52218 Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/mainboard/system76/kbl-u/Kconfig M src/mainboard/system76/kbl-u/Kconfig.name A src/mainboard/system76/kbl-u/variants/galp3/data.vbt A src/mainboard/system76/kbl-u/variants/galp3/hda_verb.c A src/mainboard/system76/kbl-u/variants/galp3/overridetree.cb 5 files changed, 46 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Jeremy Soller: Looks good to me, approved
diff --git a/src/mainboard/system76/kbl-u/Kconfig b/src/mainboard/system76/kbl-u/Kconfig index e4421d1..aeb9880 100644 --- a/src/mainboard/system76/kbl-u/Kconfig +++ b/src/mainboard/system76/kbl-u/Kconfig @@ -1,4 +1,4 @@ -if BOARD_SYSTEM76_GALP3_B +if BOARD_SYSTEM76_GALP3 || BOARD_SYSTEM76_GALP3_B
config BOARD_SPECIFIC_OPTIONS def_bool y @@ -22,15 +22,18 @@ default "system76/kbl-u"
config VARIANT_DIR + default "galp3" if BOARD_SYSTEM76_GALP3 default "galp3-b" if BOARD_SYSTEM76_GALP3_B
config MAINBOARD_PART_NUMBER + default "galp3" if BOARD_SYSTEM76_GALP3 default "galp3-b" if BOARD_SYSTEM76_GALP3_B
config MAINBOARD_SMBIOS_PRODUCT_NAME default "Galago Pro"
config MAINBOARD_VERSION + default "galp3" if BOARD_SYSTEM76_GALP3 default "galp3-b" if BOARD_SYSTEM76_GALP3_B
config CBFS_SIZE @@ -52,7 +55,7 @@ default 512
config VGA_BIOS_ID - default "8086,5917" if BOARD_SYSTEM76_GALP3_B + default "8086,5917" if BOARD_SYSTEM76_GALP3 || BOARD_SYSTEM76_GALP3_B
config POST_DEVICE default n diff --git a/src/mainboard/system76/kbl-u/Kconfig.name b/src/mainboard/system76/kbl-u/Kconfig.name index 8af68d8..97b0f5a 100644 --- a/src/mainboard/system76/kbl-u/Kconfig.name +++ b/src/mainboard/system76/kbl-u/Kconfig.name @@ -1,2 +1,5 @@ +config BOARD_SYSTEM76_GALP3 + bool "galp3" + config BOARD_SYSTEM76_GALP3_B bool "galp3-b" diff --git a/src/mainboard/system76/kbl-u/variants/galp3/data.vbt b/src/mainboard/system76/kbl-u/variants/galp3/data.vbt new file mode 100644 index 0000000..5c01180 --- /dev/null +++ b/src/mainboard/system76/kbl-u/variants/galp3/data.vbt Binary files differ diff --git a/src/mainboard/system76/kbl-u/variants/galp3/hda_verb.c b/src/mainboard/system76/kbl-u/variants/galp3/hda_verb.c new file mode 100644 index 0000000..83cd41d --- /dev/null +++ b/src/mainboard/system76/kbl-u/variants/galp3/hda_verb.c @@ -0,0 +1,33 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include <device/azalia_device.h> + +const u32 cim_verb_data[] = { + /* Realtek, ALC269VC */ + 0x10ec0269, /* Vendor ID */ + 0x15581313, /* Subsystem ID */ + 11, /* Number of entries */ + AZALIA_SUBVENDOR(0, 0x15581313), + AZALIA_PIN_CFG(0, 0x12, 0x90a60140), + AZALIA_PIN_CFG(0, 0x14, 0x90170120), + AZALIA_PIN_CFG(0, 0x15, 0x02211010), + AZALIA_PIN_CFG(0, 0x17, 0x40000000), + AZALIA_PIN_CFG(0, 0x18, 0x02a11030), + AZALIA_PIN_CFG(0, 0x19, 0x411111f0), + AZALIA_PIN_CFG(0, 0x1a, 0x411111f0), + AZALIA_PIN_CFG(0, 0x1b, 0x411111f0), + AZALIA_PIN_CFG(0, 0x1d, 0x40f4a205), + AZALIA_PIN_CFG(0, 0x1e, 0x411111f0), + /* Intel, KabylakeHDMI */ + 0x8086280b, /* Vendor ID */ + 0x80860101, /* Subsystem ID */ + 4, /* Number of entries */ + AZALIA_SUBVENDOR(2, 0x80860101), + AZALIA_PIN_CFG(2, 0x05, 0x18560010), + AZALIA_PIN_CFG(2, 0x06, 0x18560010), + AZALIA_PIN_CFG(2, 0x07, 0x18560010), +}; + +const u32 pc_beep_verbs[] = {}; + +AZALIA_ARRAY_SIZES; diff --git a/src/mainboard/system76/kbl-u/variants/galp3/overridetree.cb b/src/mainboard/system76/kbl-u/variants/galp3/overridetree.cb new file mode 100644 index 0000000..8a61f28 --- /dev/null +++ b/src/mainboard/system76/kbl-u/variants/galp3/overridetree.cb @@ -0,0 +1,5 @@ +chip soc/intel/skylake + device domain 0 on + subsystemid 0x1558 0x1313 inherit + end +end
6 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.