linux-stable/sound/soc/sof/intel
Peter Ujfalusi b976593219 ASoC: SOF: Intel: hda-codec: Delay the codec device registration
commit c344ef36db upstream.

The current code flow is:
1. snd_hdac_device_register()
2. set parameters needed by the hdac driver
3. request_codec_module()
   the hdac driver is probed at this point

During boot the codec drivers are not loaded when the hdac device is
registered, it is going to be probed later when loading the codec module,
which point the parameters are set.

On module remove/insert
rmmod snd_sof_pci_intel_tgl
modprobe snd_sof_pci_intel_tgl

The codec module remains loaded and the driver will be probed when the
hdac device is created right away, before the parameters for the driver
has been configured:

1. snd_hdac_device_register()
   the hdac driver is probed at this point
2. set parameters needed by the hdac driver
3. request_codec_module()
   will be a NOP as the module is already loaded

Move the snd_hdac_device_register() later, to be done right before
requesting the codec module to make sure that the parameters are all set
before the device is created:

1. set parameters needed by the hdac driver
2. snd_hdac_device_register()
3. request_codec_module()

This way at the hdac driver probe all parameters will be set in all cases.

Link: https://github.com/thesofproject/linux/issues/4731
Fixes: a0575b4add ("ASoC: hdac_hda: Conditionally register dais for HDMI and Analog")
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20231207095425.19597-1-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/ZYvUIxtrqBQZbNlC@shine.dominikbrodowski.net
Link: https://bugzilla.kernel.org/show_bug.cgi?id=218304
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-01-20 11:50:10 +01:00
..
apl.c ASoC: SOF: ipc4/Intel: Improve and enable IPC error dump 2022-09-23 20:46:25 +01:00
atom.c ASoC: SOF: Intel: atom: don't keep a temporary string in fixup_tplg_name 2022-07-15 20:11:35 +01:00
atom.h
bdw.c ASoC: SOF: Intel: bdw: remove duplicating driver data retrieval 2022-07-05 19:54:01 +01:00
byt.c ASoC: SOF: Intel: byt: remove duplicating driver data retrieval 2022-07-05 19:54:03 +01:00
cnl.c ASoC: SOF: ipc4/Intel: Improve and enable IPC error dump 2022-09-23 20:46:25 +01:00
ext_manifest.h
hda-bus.c
hda-codec.c ASoC: SOF: Intel: hda-codec: Delay the codec device registration 2024-01-20 11:50:10 +01:00
hda-common-ops.c
hda-ctrl.c
hda-dai.c ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak 2023-02-22 12:59:56 +01:00
hda-dsp.c ASoC: SOF: Intel: pci-tgl: unblock S5 entry if DMA stop has failed" 2023-01-12 12:02:43 +01:00
hda-ipc.c ASoC: SOF: Intel: add initial SKL/KBL hardware support 2022-09-20 19:07:30 +01:00
hda-ipc.h ASoC: SOF: Intel: cnl: Add separate ops for ipc_dump for IPC4 2022-09-23 14:53:17 +01:00
hda-loader-skl.c ASoC: SOF: Intel: add initial SKL/KBL hardware support 2022-09-20 19:07:30 +01:00
hda-loader.c ASoC: SOF: Intel: hda-loader: Use the FSR state definitions during bootup 2022-08-23 14:10:01 +01:00
hda-pcm.c ASoC: SOF: Intel: replace dev_vdbg with tracepoints 2022-09-19 15:44:06 +01:00
hda-probes.c ASoC: SOF: probes: rename assign/free callbacks as startup/shutdown 2022-07-15 20:11:38 +01:00
hda-stream.c ASoC: SOF: Intel: replace dev_vdbg with tracepoints 2022-09-19 15:44:06 +01:00
hda-trace.c
hda.c ASoC: SOF: Intel: fix SoundWire/HDaudio mutual exclusion 2023-08-23 17:52:20 +02:00
hda.h ASoC: SOF: Intel: pci-tgl: unblock S5 entry if DMA stop has failed" 2023-01-12 12:02:43 +01:00
icl.c ASoC: SOF: ipc4/Intel: Improve and enable IPC error dump 2022-09-23 20:46:25 +01:00
Kconfig ASoC: SOF: Intel: add initial SKL/KBL hardware support 2022-09-20 19:07:30 +01:00
Makefile ASoC: SOF: Intel: add initial SKL/KBL hardware support 2022-09-20 19:07:30 +01:00
mtl.c ASoC: SOF: Intel: MTL: Reduce the DSP init timeout 2023-10-06 14:56:56 +02:00
mtl.h ASoC: SOF: Intel: MTL: Reduce the DSP init timeout 2023-10-06 14:56:56 +02:00
pci-apl.c ASoC: SOF: Intel: HDA: Fix device description 2023-03-22 13:33:40 +01:00
pci-cnl.c ASoC: SOF: Intel: HDA: Fix device description 2023-03-22 13:33:40 +01:00
pci-icl.c ASoC: SOF: Intel: HDA: Fix device description 2023-03-22 13:33:40 +01:00
pci-mtl.c ASoC: SOF: Intel: MTL: Fix the device description 2023-03-22 13:33:40 +01:00
pci-skl.c ASoC: SOF: Intel: SKL: Fix device description 2023-03-22 13:33:40 +01:00
pci-tgl.c ASOC: SOF: Intel: pci-tgl: Fix device description 2023-03-22 13:33:40 +01:00
pci-tng.c ASoC: SOF: Intel: pci-tng: revert invalid bar size setting 2023-04-06 12:10:38 +02:00
shim.h ASoC: SOF: Intel: Add a new op for disabling interrupts 2022-09-23 13:56:16 +01:00
skl.c ASoC: SOF: ipc4/Intel: Improve and enable IPC error dump 2022-09-23 20:46:25 +01:00
tgl.c ASoC: SOF: Intel: pci-tgl: unblock S5 entry if DMA stop has failed" 2023-01-12 12:02:43 +01:00