drivers/sof: Add support for rt1019 speaker topology

Enables correct identification of boards using rt1019 speaker amplifier
by SOF Windows drivers.

TEST=tested with rest of patch train

Change-Id: I550dc8614e6e21d6d8715c12b7a4af35117497b5
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77739
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Matt DeVillier 2023-09-08 19:47:22 -05:00 committed by Felix Held
parent c377345659
commit c4a81b390e
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ enum _spkr_tplg {
max98390,
rt1011,
rt1015,
rt1019,
};
/* Jack topology */

View File

@ -19,6 +19,7 @@ static const char *get_spkr_tplg_str(enum _spkr_tplg tplg)
case max98390: return "max98390";
case rt1011: return "rt1011";
case rt1015: return "rt1015";
case rt1019: return "rt1019";
default: return "default";
}
}