mb/google/octopus/var/phaser: add audio codec into SSFC support for Phaser
Add audio codec module RT5682 in project and define GPIO_137 in the override_table for SSFC framework to adjust IRQ configuration. BUG=b:182221327 BRANCH=octopus TEST=adjust SSFC value of CBI to select RT5682I or DA7219 then check whether device tree is updated correspondingly by disabling unselected one. Signed-off-by: Kevin Chang <kevin.chang@lcfc.corp-partner.google.com> Change-Id: I202f71f57ad2db84fb90b52f9ffd7a1fd05494a3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52878 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marco Chen <marcochen@google.com>
This commit is contained in:
parent
a0a778932e
commit
d44ca19b83
|
@ -16,6 +16,7 @@ config BOARD_GOOGLE_PHASER
|
|||
select BASEBOARD_OCTOPUS_LAPTOP
|
||||
select BOARD_GOOGLE_BASEBOARD_OCTOPUS
|
||||
select NHLT_DA7219 if INCLUDE_NHLT_BLOBS
|
||||
select NHLT_RT5682 if INCLUDE_NHLT_BLOBS
|
||||
|
||||
config BOARD_GOOGLE_LICK
|
||||
bool "-> Lick"
|
||||
|
|
|
@ -14,6 +14,8 @@ static const struct pad_config default_override_table[] = {
|
|||
PAD_NC(GPIO_53, UP_20K),
|
||||
PAD_NC(GPIO_67, UP_20K),
|
||||
PAD_NC(GPIO_117, UP_20K),
|
||||
PAD_CFG_GPI_APIC_IOS(GPIO_137, NONE, DEEP, LEVEL, INVERT, HIZCRx1,
|
||||
DISPUPD),
|
||||
PAD_NC(GPIO_143, UP_20K),
|
||||
|
||||
/* EN_PP3300_TOUCHSCREEN */
|
||||
|
@ -35,6 +37,8 @@ static const struct pad_config sku1_default_override_table[] = {
|
|||
PAD_NC(GPIO_53, UP_20K),
|
||||
PAD_NC(GPIO_67, UP_20K),
|
||||
PAD_NC(GPIO_117, UP_20K),
|
||||
PAD_CFG_GPI_APIC_IOS(GPIO_137, NONE, DEEP, LEVEL, INVERT, HIZCRx1,
|
||||
DISPUPD),
|
||||
PAD_NC(GPIO_143, UP_20K),
|
||||
|
||||
/* EN_PP3300_TOUCHSCREEN */
|
||||
|
|
|
@ -113,6 +113,19 @@ chip soc/intel/apollolake
|
|||
register "mic_amp_in_sel" = ""diff""
|
||||
device i2c 1a on end
|
||||
end
|
||||
chip drivers/i2c/generic
|
||||
register "hid" = ""10EC5682""
|
||||
register "name" = ""RT58""
|
||||
register "desc" = ""Realtek RT5682""
|
||||
register "irq" = "ACPI_IRQ_LEVEL_LOW(GPIO_137_IRQ)"
|
||||
register "probed" = "1"
|
||||
register "property_count" = "1"
|
||||
# Set the jd_src to RT5668_JD1 for jack detection
|
||||
register "property_list[0].type" = "ACPI_DP_TYPE_INTEGER"
|
||||
register "property_list[0].name" = ""realtek,jd-src""
|
||||
register "property_list[0].integer" = "1"
|
||||
device i2c 1a on end
|
||||
end
|
||||
end # - I2C 5
|
||||
device pci 17.2 on
|
||||
chip drivers/i2c/generic
|
||||
|
|
Loading…
Reference in New Issue