ASoC: imx-audio-rpmsg: Create rpmsg channel for MICFIL
authorChancel Liu <chancel.liu@nxp.com>
Fri, 30 Sep 2022 06:44:36 +0000 (14:44 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 17 Oct 2022 11:48:13 +0000 (12:48 +0100)
Rpmsg channel for MICFIL can also be created through rpmsg name service
announcement. If this driver is probed, Cortex-A can access MICFIL
which is actually controlled by Cortex-M through rpmsg channel for
MICFIL. This driver also helps register ASoC platform device thus use
of PLATFORM_DEVID_AUTO macro in API can automatically create device for
each rpmsg channel.

Signed-off-by: Chancel Liu <chancel.liu@nxp.com>
Acked-by: Shengjiu Wang <shengjiu.wang@gmail.com>
Link: https://lore.kernel.org/r/20220930064441.2548505-3-chancel.liu@nxp.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/fsl/imx-audio-rpmsg.c

index 905c3a07130056713915cf904e9da22857dfb9cb..d5234ac4b09b2af236f521971e40cf4622a33f2c 100644 (file)
@@ -88,7 +88,7 @@ static int imx_audio_rpmsg_probe(struct rpmsg_device *rpdev)
        /* Register platform driver for rpmsg routine */
        data->rpmsg_pdev = platform_device_register_data(&rpdev->dev,
                                                         IMX_PCM_DRV_NAME,
-                                                        PLATFORM_DEVID_NONE,
+                                                        PLATFORM_DEVID_AUTO,
                                                         NULL, 0);
        if (IS_ERR(data->rpmsg_pdev)) {
                dev_err(&rpdev->dev, "failed to register rpmsg platform.\n");
@@ -110,6 +110,7 @@ static void imx_audio_rpmsg_remove(struct rpmsg_device *rpdev)
 
 static struct rpmsg_device_id imx_audio_rpmsg_id_table[] = {
        { .name = "rpmsg-audio-channel" },
+       { .name = "rpmsg-micfil-channel" },
        { },
 };