summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel/i82801gx/azalia.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-11-10 16:52:16 +0100
committerPaul Fagerburg <pfagerburg@chromium.org>2021-11-11 22:42:10 +0000
commitd0f053eb9d6f3013788eb3931cbb5b7f433fa954 (patch)
tree807d485ef8714bc790a00dee237d1bacf61b3a5c /src/southbridge/intel/i82801gx/azalia.c
parent6db243acd0331e148de83314ba4ae58bfd1174fe (diff)
downloadcoreboot-d0f053eb9d6f3013788eb3931cbb5b7f433fa954.tar.gz
coreboot-d0f053eb9d6f3013788eb3931cbb5b7f433fa954.tar.bz2
coreboot-d0f053eb9d6f3013788eb3931cbb5b7f433fa954.zip
sb/intel: Use `azalia_program_verb_table()` function
Use the `azalia_program_verb_table()` function in preparation to deduplicate Azalia init code. With this change, the "Azalia: verb loaded." message is now printed when programming the verbs failed. This will be addressed once `codec_init()` has been deduplicated. Change-Id: I5d9e0f19429620166f2a6ef48ec7c963ee64b59c Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59105 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/southbridge/intel/i82801gx/azalia.c')
-rw-r--r--src/southbridge/intel/i82801gx/azalia.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/southbridge/intel/i82801gx/azalia.c b/src/southbridge/intel/i82801gx/azalia.c
index cc5d3455c78d..1f12650c1cc5 100644
--- a/src/southbridge/intel/i82801gx/azalia.c
+++ b/src/southbridge/intel/i82801gx/azalia.c
@@ -88,7 +88,6 @@ static void codec_init(struct device *dev, u8 *base, int addr)
u32 reg32;
const u32 *verb;
u32 verb_size;
- int i;
printk(BIOS_DEBUG, "Azalia: Initializing codec #%d\n", addr);
@@ -118,15 +117,7 @@ static void codec_init(struct device *dev, u8 *base, int addr)
printk(BIOS_DEBUG, "Azalia: verb_size: %d\n", verb_size);
/* 3 */
- for (i = 0; i < verb_size; i++) {
- if (wait_for_ready(base) < 0)
- return;
-
- write32(base + HDA_IC_REG, verb[i]);
-
- if (wait_for_valid(base) < 0)
- return;
- }
+ azalia_program_verb_table(base, verb, verb_size);
printk(BIOS_DEBUG, "Azalia: verb loaded.\n");
}