Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions drivers/soundwire/dmi-quirks.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,17 @@ static const struct dmi_system_id adr_remap_quirk_table[] = {
},
.driver_data = (void *)intel_tgl_bios,
},
{
/*
* quirk used for Avell B.ON (OEM rebrand of NUC15 'Bishop County'
* LAPBC510 and LAPBC710)
*/
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Avell High Performance"),
DMI_MATCH(DMI_PRODUCT_NAME, "B.ON"),
},
.driver_data = (void *)intel_tgl_bios,
},
{
/* quirk used for NUC15 'Rooks County' LAPRC510 and LAPRC710 skews */
.matches = {
Expand Down
14 changes: 14 additions & 0 deletions sound/soc/intel/boards/sof_sdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,20 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = {
SOC_SDW_PCH_DMIC |
RT711_JD1),
},
{
/*
* Avell B.ON (OEM rebrand of NUC15 'Bishop County' LAPBC510 and
* LAPBC710)
*/
.callback = sof_sdw_quirk_cb,
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Avell High Performance"),
DMI_MATCH(DMI_PRODUCT_NAME, "B.ON"),
},
.driver_data = (void *)(SOF_SDW_TGL_HDMI |
SOC_SDW_PCH_DMIC |
RT711_JD1),
},
{
/* NUC15 'Rooks County' LAPRC510 and LAPRC710 skews */
.callback = sof_sdw_quirk_cb,
Expand Down
Loading