ASoC: SOF: pci: move DSP_CONFIG use to platform-specific drivers
authorPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Tue, 2 Mar 2021 00:31:22 +0000 (18:31 -0600)
committerTakashi Iwai <tiwai@suse.de>
Tue, 2 Mar 2021 14:32:20 +0000 (15:32 +0100)
There is no reason why we should call the intel_dspcfg helpers from
common code, this should be moved in Intel-specific code and only
called from platforms where a conflict may occur with the HDaudio or
SST/Skylake driver.

Suggested-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
Reviewed-by: Bard Liao <bard.liao@intel.com>
Acked-by: Mark Brown <broonie@kernel.org>
Acked-by: Vinod Koul <vkoul@kernel.org>
Link: https://lore.kernel.org/r/20210302003125.1178419-5-pierre-louis.bossart@linux.intel.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/soc/sof/intel/hda.c
sound/soc/sof/intel/hda.h
sound/soc/sof/intel/pci-apl.c
sound/soc/sof/intel/pci-cnl.c
sound/soc/sof/intel/pci-icl.c
sound/soc/sof/intel/pci-tgl.c
sound/soc/sof/sof-pci-dev.c

index 0dc3a8c0f5e34a82a4f0879b4b6ae4ba65bbdefb..995a8c427177c7c1080af1ec70c9e0d46bdc0b08 100644 (file)
 #include <linux/module.h>
 #include <linux/soundwire/sdw.h>
 #include <linux/soundwire/sdw_intel.h>
+#include <sound/intel-dsp-config.h>
 #include <sound/intel-nhlt.h>
 #include <sound/sof.h>
 #include <sound/sof/xtensa.h>
 #include "../sof-audio.h"
+#include "../sof-pci-dev.h"
 #include "../ops.h"
 #include "hda.h"
 
@@ -1258,7 +1260,22 @@ void hda_machine_select(struct snd_sof_dev *sdev)
                dev_warn(sdev->dev, "warning: No matching ASoC machine driver found\n");
 }
 
+int hda_pci_intel_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
+{
+       int ret;
+
+       ret = snd_intel_dsp_driver_probe(pci);
+       if (ret != SND_INTEL_DSP_DRIVER_ANY && ret != SND_INTEL_DSP_DRIVER_SOF) {
+               dev_dbg(&pci->dev, "SOF PCI driver not selected, aborting probe\n");
+               return -ENODEV;
+       }
+
+       return sof_pci_probe(pci, pci_id);
+}
+EXPORT_SYMBOL_NS(hda_pci_intel_probe, SND_SOC_SOF_INTEL_HDA_COMMON);
+
 MODULE_LICENSE("Dual BSD/GPL");
+MODULE_IMPORT_NS(SND_SOC_SOF_PCI_DEV);
 MODULE_IMPORT_NS(SND_SOC_SOF_HDA_AUDIO_CODEC);
 MODULE_IMPORT_NS(SND_SOC_SOF_HDA_AUDIO_CODEC_I915);
 MODULE_IMPORT_NS(SND_SOC_SOF_XTENSA);
index d1c38c37bc9dea1ad1384ee0f5e2987a42f6824c..7c7579daee7f8d429703ef6464698d489bb6c079 100644 (file)
@@ -764,4 +764,7 @@ void hda_machine_select(struct snd_sof_dev *sdev);
 void hda_set_mach_params(const struct snd_soc_acpi_mach *mach,
                         struct device *dev);
 
+/* PCI driver selection and probe */
+int hda_pci_intel_probe(struct pci_dev *pci, const struct pci_device_id *pci_id);
+
 #endif
index e83ddbaafa29f2fd696188b07f64997c0030427f..f89e746c25709ca9a6650d605b9460e3e29cb2d4 100644 (file)
@@ -67,7 +67,7 @@ MODULE_DEVICE_TABLE(pci, sof_pci_ids);
 static struct pci_driver snd_sof_pci_intel_apl_driver = {
        .name = "sof-audio-pci-intel-apl",
        .id_table = sof_pci_ids,
-       .probe = sof_pci_probe,
+       .probe = hda_pci_intel_probe,
        .remove = sof_pci_remove,
        .shutdown = sof_pci_shutdown,
        .driver = {
index f974d3a77217b2d701358a07bf8794756b0d384a..f23257adf2abdf5aab3efc26e1ef03cf6b0e4ec8 100644 (file)
@@ -90,7 +90,7 @@ MODULE_DEVICE_TABLE(pci, sof_pci_ids);
 static struct pci_driver snd_sof_pci_intel_cnl_driver = {
        .name = "sof-audio-pci-intel-cnl",
        .id_table = sof_pci_ids,
-       .probe = sof_pci_probe,
+       .probe = hda_pci_intel_probe,
        .remove = sof_pci_remove,
        .shutdown = sof_pci_shutdown,
        .driver = {
index d5d7cefa6ef9335f5dafdea112e2cf156fbecedc..2f60c28ae81f8765b3624d3046ddb744afc0927b 100644 (file)
@@ -70,7 +70,7 @@ MODULE_DEVICE_TABLE(pci, sof_pci_ids);
 static struct pci_driver snd_sof_pci_intel_icl_driver = {
        .name = "sof-audio-pci-intel-icl",
        .id_table = sof_pci_ids,
-       .probe = sof_pci_probe,
+       .probe = hda_pci_intel_probe,
        .remove = sof_pci_remove,
        .shutdown = sof_pci_shutdown,
        .driver = {
index d35c25a450aaf2c3743ee721f304294cda09ee26..4856074711817096c0be3fa0cd0c195ef6ab73d9 100644 (file)
@@ -106,7 +106,7 @@ MODULE_DEVICE_TABLE(pci, sof_pci_ids);
 static struct pci_driver snd_sof_pci_intel_tgl_driver = {
        .name = "sof-audio-pci-intel-tgl",
        .id_table = sof_pci_ids,
-       .probe = sof_pci_probe,
+       .probe = hda_pci_intel_probe,
        .remove = sof_pci_remove,
        .shutdown = sof_pci_shutdown,
        .driver = {
index cfcbd9754c030b93adbf2f8ddb052f3b5e6573be..b842a414e1df2e680754076103084b3474ce1f1e 100644 (file)
@@ -13,7 +13,6 @@
 #include <linux/module.h>
 #include <linux/pci.h>
 #include <linux/pm_runtime.h>
-#include <sound/intel-dsp-config.h>
 #include <sound/soc-acpi.h>
 #include <sound/soc-acpi-intel-match.h>
 #include <sound/sof.h>
@@ -120,13 +119,6 @@ int sof_pci_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
        const struct snd_sof_dsp_ops *ops;
        int ret;
 
-       if (IS_REACHABLE(CONFIG_SND_INTEL_DSP_CONFIG)) {
-               ret = snd_intel_dsp_driver_probe(pci);
-               if (ret != SND_INTEL_DSP_DRIVER_ANY && ret != SND_INTEL_DSP_DRIVER_SOF) {
-                       dev_dbg(&pci->dev, "SOF PCI driver not selected, aborting probe\n");
-                       return -ENODEV;
-               }
-       }
        dev_dbg(&pci->dev, "PCI DSP detected");
 
        /* get ops for platform */