ASoC: Intel: byt/cht: set pm ops dynamically
authorPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Thu, 12 Nov 2020 22:38:17 +0000 (16:38 -0600)
committerMark Brown <broonie@kernel.org>
Thu, 19 Nov 2020 18:24:38 +0000 (18:24 +0000)
The Atom/SST driver does not rely on ASoC power management, but the
SOF driver does. Rather than using a hard-coded build-time assignment,
we can set this pm_ops dynamically depending on what the parent
is. That will remove the last build-time dependency and allow for
coexistence of both SST and SOF drivers for Baytrail/Cherrytrail.

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Rander Wang <rander.wang@linux.intel.com>
Reviewed-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
Link: https://lore.kernel.org/r/20201112223825.39765-7-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/bytcht_cx2072x.c
sound/soc/intel/boards/bytcht_da7213.c
sound/soc/intel/boards/bytcht_es8316.c
sound/soc/intel/boards/bytcr_rt5640.c
sound/soc/intel/boards/bytcr_rt5651.c
sound/soc/intel/boards/cht_bsw_max98090_ti.c
sound/soc/intel/boards/cht_bsw_nau8824.c
sound/soc/intel/boards/cht_bsw_rt5645.c
sound/soc/intel/boards/cht_bsw_rt5672.c

index 762f091..2bfe3e4 100644 (file)
@@ -275,15 +275,16 @@ static int snd_byt_cht_cx2072x_probe(struct platform_device *pdev)
                byt_cht_cx2072x_card.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               pdev->dev.driver->pm = &snd_soc_pm_ops;
+
        return devm_snd_soc_register_card(&pdev->dev, &byt_cht_cx2072x_card);
 }
 
 static struct platform_driver snd_byt_cht_cx2072x_driver = {
        .driver = {
                .name = "bytcht_cx2072x",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = snd_byt_cht_cx2072x_probe,
 };
index ef66822..cfeba27 100644 (file)
@@ -279,6 +279,10 @@ static int bytcht_da7213_probe(struct platform_device *pdev)
                bytcht_da7213_card.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               pdev->dev.driver->pm = &snd_soc_pm_ops;
+
        ret_val = devm_snd_soc_register_card(&pdev->dev, card);
        if (ret_val) {
                dev_err(&pdev->dev,
@@ -292,9 +296,6 @@ static int bytcht_da7213_probe(struct platform_device *pdev)
 static struct platform_driver bytcht_da7213_driver = {
        .driver = {
                .name = "bytcht_da7213",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = bytcht_da7213_probe,
 };
index fbb62ba..892cf68 100644 (file)
@@ -598,6 +598,10 @@ static int snd_byt_cht_es8316_mc_probe(struct platform_device *pdev)
                byt_cht_es8316_card.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               dev->driver->pm = &snd_soc_pm_ops;
+
        /* register the soc card */
        snd_soc_card_set_drvdata(&byt_cht_es8316_card, priv);
 
@@ -623,9 +627,6 @@ static int snd_byt_cht_es8316_mc_remove(struct platform_device *pdev)
 static struct platform_driver snd_byt_cht_es8316_mc_driver = {
        .driver = {
                .name = "bytcht_es8316",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = snd_byt_cht_es8316_mc_probe,
        .remove = snd_byt_cht_es8316_mc_remove,
index 574b489..18f668f 100644 (file)
@@ -1163,6 +1163,7 @@ struct acpi_chan_package {   /* ACPICA seems to require 64 bit integers */
 
 static int snd_byt_rt5640_mc_probe(struct platform_device *pdev)
 {
+       struct device *dev = &pdev->dev;
        static const char * const map_name[] = { "dmic1", "dmic2", "in1", "in3" };
        const struct dmi_system_id *dmi_id;
        struct byt_rt5640_private *priv;
@@ -1344,6 +1345,10 @@ static int snd_byt_rt5640_mc_probe(struct platform_device *pdev)
                byt_rt5640_card.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               dev->driver->pm = &snd_soc_pm_ops;
+
        ret_val = devm_snd_soc_register_card(&pdev->dev, &byt_rt5640_card);
 
        if (ret_val) {
@@ -1358,9 +1363,6 @@ static int snd_byt_rt5640_mc_probe(struct platform_device *pdev)
 static struct platform_driver snd_byt_rt5640_mc_driver = {
        .driver = {
                .name = "bytcr_rt5640",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = snd_byt_rt5640_mc_probe,
 };
index 69e1d84..f289ec8 100644 (file)
@@ -1103,6 +1103,10 @@ static int snd_byt_rt5651_mc_probe(struct platform_device *pdev)
                byt_rt5651_card.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               pdev->dev.driver->pm = &snd_soc_pm_ops;
+
        ret_val = devm_snd_soc_register_card(&pdev->dev, &byt_rt5651_card);
 
        if (ret_val) {
@@ -1117,9 +1121,6 @@ static int snd_byt_rt5651_mc_probe(struct platform_device *pdev)
 static struct platform_driver snd_byt_rt5651_mc_driver = {
        .driver = {
                .name = "bytcr_rt5651",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = snd_byt_rt5651_mc_probe,
 };
index a1d456d..1318823 100644 (file)
@@ -610,6 +610,10 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
                snd_soc_card_cht.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               dev->driver->pm = &snd_soc_pm_ops;
+
        ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
        if (ret_val) {
                dev_err(&pdev->dev,
@@ -634,9 +638,6 @@ static int snd_cht_mc_remove(struct platform_device *pdev)
 static struct platform_driver snd_cht_mc_driver = {
        .driver = {
                .name = "cht-bsw-max98090",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = snd_cht_mc_probe,
        .remove = snd_cht_mc_remove,
index f173793..8131af1 100644 (file)
@@ -285,6 +285,10 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
                snd_soc_card_cht.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               pdev->dev.driver->pm = &snd_soc_pm_ops;
+
        /* register the soc card */
        ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
        if (ret_val) {
@@ -300,9 +304,6 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
 static struct platform_driver snd_cht_mc_driver = {
        .driver = {
                .name = "cht-bsw-nau8824",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = snd_cht_mc_probe,
 };
index bdaf8d0..6fea554 100644 (file)
@@ -691,6 +691,10 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
                snd_soc_card_chtrt5650.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               pdev->dev.driver->pm = &snd_soc_pm_ops;
+
        ret_val = devm_snd_soc_register_card(&pdev->dev, card);
        if (ret_val) {
                dev_err(&pdev->dev,
@@ -704,9 +708,6 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
 static struct platform_driver snd_cht_mc_driver = {
        .driver = {
                .name = "cht-bsw-rt5645",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = snd_cht_mc_probe,
 };
index 6c46bfc..10c88ef 100644 (file)
@@ -466,6 +466,10 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
                snd_soc_card_cht.driver_name = DRIVER_NAME;
        }
 
+       /* set pm ops */
+       if (sof_parent)
+               pdev->dev.driver->pm = &snd_soc_pm_ops;
+
        /* register the soc card */
        ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
        if (ret_val) {
@@ -480,9 +484,6 @@ static int snd_cht_mc_probe(struct platform_device *pdev)
 static struct platform_driver snd_cht_mc_driver = {
        .driver = {
                .name = "cht-bsw-rt5672",
-#if IS_ENABLED(CONFIG_SND_SOC_SOF_BAYTRAIL)
-               .pm = &snd_soc_pm_ops,
-#endif
        },
        .probe = snd_cht_mc_probe,
 };