diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2023-05-15 10:36:59 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-05-17 11:19:59 +0000 |
commit | e29b770d8357c41e7e130710f8418259174e2142 (patch) | |
tree | 2d7a6e6329b8140e0c6a2399cb71ac23591fa359 /src/drivers/sof/sof.c | |
parent | 4c5ec2137439bc098ef046a0e06fa5c4d3ded457 (diff) |
drivers/sof: Add support for max98373a using port SSP2
Some devices using the MAX98373a smart amp have the speakers connected
to port SSP2 vs the default SSP1, so add a configuration item to be
able to specify that.
TEST=tested with rest of patch train
Change-Id: I11d8011c54946aa72a83c73fa88456b4bb5d7d95
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75231
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/sof/sof.c')
-rw-r--r-- | src/drivers/sof/sof.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/sof/sof.c b/src/drivers/sof/sof.c index edc1f80d0e..b476c1f365 100644 --- a/src/drivers/sof/sof.c +++ b/src/drivers/sof/sof.c @@ -12,6 +12,7 @@ static const char *get_spkr_tplg_str(enum _spkr_tplg tplg) { switch (tplg) { case max98373: return "max98373"; + case max98373_ssp2: return "max98373-ssp2"; case max98360a: return "max98360a"; case max98357a: return "max98357a"; case max98357a_tdm: return "max98357a-tdm"; |