diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-02-08 12:47:29 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-10 07:21:11 +0000 |
commit | d6d71ce442de2186ec3ea0a8fefcefb054915ded (patch) | |
tree | 4826126ba3f0eec5b10f3ef4721ae0f4001063c0 /src/include | |
parent | 44c431e16194213e5a1bd26d7a1e0dd09e53deef (diff) |
device/azalia_device: Add mainboard hook to program codecs
On some mainboards, codec configuration depends on settings that are
only known at runtime, which is impossible to specify using one verb
table. Add an optional `mainboard_azalia_program_runtime_verbs` hook
where mainboards can program runtime-dependent codec verbs.
Change-Id: I7efeba5c26051aeb5061cce191ace08c304a6c70
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50388
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device/azalia_device.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/device/azalia_device.h b/src/include/device/azalia_device.h index ce8c0d193e..9010507aee 100644 --- a/src/include/device/azalia_device.h +++ b/src/include/device/azalia_device.h @@ -26,6 +26,9 @@ int azalia_program_verb_table(u8 *base, const u32 *verbs, u32 verb_size); void azalia_audio_init(struct device *dev); extern struct device_operations default_azalia_audio_ops; +/* Optional hook to program codec settings that are only known at runtime */ +void mainboard_azalia_program_runtime_verbs(u8 *base, u32 viddid); + extern const u32 cim_verb_data[]; extern const u32 cim_verb_data_size; extern const u32 pc_beep_verbs[]; |