summaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake/nhlt/max98373.c
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2022-12-06 21:05:16 -0600
committerFelix Held <felix-coreboot@felixheld.de>2022-12-21 14:00:13 +0000
commitbf3c648fa7f6cdd946698a2ec6584102b53e4c4a (patch)
tree5628cdf3a39071e5cf87c05dcf7bd329766bacc4 /src/soc/intel/skylake/nhlt/max98373.c
parentca342e108227859112746bb262bb742e800b6973 (diff)
soc/intel/skl; mb/google/eve,poppy: Update NHLT methods
Adapted from WIP (and now abandoned) patches CB:25334, 26308, 26309. Update the nhlt_soc_add_*() methods for max98373, max98927, and rt5514 codecs to program the render and feedback slot numbers as appropriate. TEST=boot Windows on google/eve, atlas, nocturne, and rammus. Verify audio functional with both Google project campfire drivers as well as coolstar's AVS audio drivers. Change-Id: Ib8c6e24ba539e205bd5bbd856ecff43b2c016c2e Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70394 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: CoolStar <coolstarorganization@gmail.com>
Diffstat (limited to 'src/soc/intel/skylake/nhlt/max98373.c')
-rw-r--r--src/soc/intel/skylake/nhlt/max98373.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/soc/intel/skylake/nhlt/max98373.c b/src/soc/intel/skylake/nhlt/max98373.c
index 5f4d15ee25..9c02bb7e3f 100644
--- a/src/soc/intel/skylake/nhlt/max98373.c
+++ b/src/soc/intel/skylake/nhlt/max98373.c
@@ -81,8 +81,14 @@ static const struct nhlt_endp_descriptor max98373_descriptors[] = {
},
};
-int nhlt_soc_add_max98373(struct nhlt *nhlt, int hwlink)
+int nhlt_soc_add_max98373(struct nhlt *nhlt, int hwlink, int render_slot,
+ int feedback_slot)
{
+ render_config.tdm_config.virtual_slot = render_slot;
+ render_config.feedback_virtual_slot = feedback_slot;
+ capture_config.tdm_config.virtual_slot = feedback_slot;
+ capture_config.feedback_virtual_slot = render_slot;
+
/* Virtual bus id of SSP links are the hardware port ids proper. */
return nhlt_add_ssp_endpoints(nhlt, hwlink, max98373_descriptors,
ARRAY_SIZE(max98373_descriptors));