Naveen Manohar has uploaded this change for review. ( https://review.coreboot.org/23648
Change subject: google/nautilus: set oem_id oem_table_id fields of acpi_header_t ......................................................................
google/nautilus: set oem_id oem_table_id fields of acpi_header_t
nautilus platform updated these two fields if maxim codec is detected
BUG=b:68686020 TEST=Build, Booted nautilus board. Verified kernel read new strings.
Change-Id: I041f2838f07a2525be7a28fdc69b7f1af46d16f1 Signed-off-by: Naveen Manohar naveen.m@intel.com --- M src/mainboard/google/poppy/variants/nautilus/nhlt.c 1 file changed, 9 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/48/23648/1
diff --git a/src/mainboard/google/poppy/variants/nautilus/nhlt.c b/src/mainboard/google/poppy/variants/nautilus/nhlt.c index 690fed5..9461502 100644 --- a/src/mainboard/google/poppy/variants/nautilus/nhlt.c +++ b/src/mainboard/google/poppy/variants/nautilus/nhlt.c @@ -33,3 +33,12 @@ printk(BIOS_ERR, "Couldn't add Maxim_98357 codec.\n");
} + +void __attribute__((weak)) variant_nhlt_oem_overrides(const char **oem_id, + const char **oem_table_id, + uint32_t *oem_revision) +{ + *oem_id = "GOOGLE"; + *oem_table_id = "NAUTILUSMAX"; + *oem_revision = 0; +}