Add GoogleKaisa HiFi UCM with JackControl and IEC958 sequences for HDMI1/2/3, card entry under conf.d/sof-rt5682, and main.lua.d rule to enable UCM/ACP on sof-rt5682. Add install/disable helper scripts and OPERATION section for verification; restore pro-audio wireplumber sample under docs. Made-with: Cursor
17 lines
429 B
Lua
17 lines
429 B
Lua
-- Kaisa (sof-rt5682): enable UCM + ACP so HiFi profile / Jack-driven ports work.
|
|
-- WirePlumber 0.4.x: appended after stock alsa rules.
|
|
|
|
table.insert(alsa_monitor.rules, {
|
|
matches = {
|
|
{
|
|
{ "api.alsa.card.name", "equals", "sof-rt5682" },
|
|
},
|
|
},
|
|
apply_properties = {
|
|
["api.alsa.use-acp"] = true,
|
|
["api.alsa.use-ucm"] = true,
|
|
["api.acp.auto-profile"] = true,
|
|
["api.acp.auto-port"] = true,
|
|
},
|
|
})
|