From: Peter Ujfalusi Date: Wed, 20 May 2026 15:06:39 +0000 (+0300) Subject: ASoC: SOF: Intel: lnl: Enable offload for UAOL link X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=fdfbd9ff86a145f09978ab49305ed7acfad66a1d;p=thirdparty%2Fkernel%2Flinux.git ASoC: SOF: Intel: lnl: Enable offload for UAOL link The handling of UAOL (USB Audio Offload Link) is similar to SSP and DMIC, it is handled by the DSP firmware. Set the offload enable for it similar to SSP and DMIC. Signed-off-by: Peter Ujfalusi Reviewed-by: Bard Liao Reviewed-by: Kai Vehmanen Link: https://patch.msgid.link/20260520150639.25301-3-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/sof/intel/lnl.c b/sound/soc/sof/intel/lnl.c index 19f753dca30b..83703ebc6385 100644 --- a/sound/soc/sof/intel/lnl.c +++ b/sound/soc/sof/intel/lnl.c @@ -20,11 +20,12 @@ #include "lnl.h" #include -/* Configure DSP offload for DMIC/SSP */ +/* Configure DSP offload for DMIC/SSP/UAOL */ static void hdac_bus_set_dsp_offload(struct hdac_bus *bus, bool enable) { hdac_bus_eml_enable_offload(bus, true, AZX_REG_ML_LEPTR_ID_INTEL_SSP, enable); hdac_bus_eml_enable_offload(bus, true, AZX_REG_ML_LEPTR_ID_INTEL_DMIC, enable); + hdac_bus_eml_enable_offload(bus, true, AZX_REG_ML_LEPTR_ID_INTEL_UAOL, enable); } static int lnl_hda_dsp_probe(struct snd_sof_dev *sdev)