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>
This commit is contained in:
parent
9037f0a831
commit
be43b13543
|
@ -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 @@ config MAINBOARD_DIR
|
|||
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 @@ config DIMM_SPD_SIZE
|
|||
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
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
config BOARD_SYSTEM76_GALP3
|
||||
bool "galp3"
|
||||
|
||||
config BOARD_SYSTEM76_GALP3_B
|
||||
bool "galp3-b"
|
||||
|
|
Binary file not shown.
|
@ -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;
|
|
@ -0,0 +1,5 @@
|
|||
chip soc/intel/skylake
|
||||
device domain 0 on
|
||||
subsystemid 0x1558 0x1313 inherit
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue