Skip to content

Commit cb10376

Browse files
author
Fox Snowpatch
committed
1 parent 484dba3 commit cb10376

File tree

4 files changed

+45
-20
lines changed

4 files changed

+45
-20
lines changed

sound/soc/fsl/fsl_rpmsg.c

-11
Original file line numberDiff line numberDiff line change
@@ -240,17 +240,6 @@ static int fsl_rpmsg_probe(struct platform_device *pdev)
240240
if (ret)
241241
goto err_pm_disable;
242242

243-
rpmsg->card_pdev = platform_device_register_data(&pdev->dev,
244-
"imx-audio-rpmsg",
245-
PLATFORM_DEVID_AUTO,
246-
NULL,
247-
0);
248-
if (IS_ERR(rpmsg->card_pdev)) {
249-
dev_err(&pdev->dev, "failed to register rpmsg card\n");
250-
ret = PTR_ERR(rpmsg->card_pdev);
251-
goto err_pm_disable;
252-
}
253-
254243
return 0;
255244

256245
err_pm_disable:

sound/soc/fsl/imx-audio-rpmsg.c

+19-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
*/
1313
struct imx_audio_rpmsg {
1414
struct platform_device *rpmsg_pdev;
15+
struct platform_device *card_pdev;
1516
};
1617

1718
static int imx_audio_rpmsg_cb(struct rpmsg_device *rpdev, void *data, int len,
@@ -87,14 +88,25 @@ static int imx_audio_rpmsg_probe(struct rpmsg_device *rpdev)
8788

8889
/* Register platform driver for rpmsg routine */
8990
data->rpmsg_pdev = platform_device_register_data(&rpdev->dev,
90-
IMX_PCM_DRV_NAME,
91-
PLATFORM_DEVID_AUTO,
91+
rpdev->id.name,
92+
PLATFORM_DEVID_NONE,
9293
NULL, 0);
9394
if (IS_ERR(data->rpmsg_pdev)) {
9495
dev_err(&rpdev->dev, "failed to register rpmsg platform.\n");
9596
ret = PTR_ERR(data->rpmsg_pdev);
9697
}
9798

99+
data->card_pdev = platform_device_register_data(&rpdev->dev,
100+
"imx-audio-rpmsg",
101+
PLATFORM_DEVID_AUTO,
102+
rpdev->id.name,
103+
strlen(rpdev->id.name));
104+
if (IS_ERR(data->card_pdev)) {
105+
dev_err(&rpdev->dev, "failed to register rpmsg card.\n");
106+
ret = PTR_ERR(data->card_pdev);
107+
goto fail;
108+
}
109+
98110
return ret;
99111
}
100112

@@ -105,6 +117,9 @@ static void imx_audio_rpmsg_remove(struct rpmsg_device *rpdev)
105117
if (data->rpmsg_pdev)
106118
platform_device_unregister(data->rpmsg_pdev);
107119

120+
if (data->card_pdev)
121+
platform_device_unregister(data->card_pdev);
122+
108123
dev_info(&rpdev->dev, "audio rpmsg driver is removed\n");
109124
}
110125

@@ -113,6 +128,7 @@ static struct rpmsg_device_id imx_audio_rpmsg_id_table[] = {
113128
{ .name = "rpmsg-micfil-channel" },
114129
{ },
115130
};
131+
MODULE_DEVICE_TABLE(rpmsg, imx_audio_rpmsg_id_table);
116132

117133
static struct rpmsg_driver imx_audio_rpmsg_driver = {
118134
.drv.name = "imx_audio_rpmsg",
@@ -126,5 +142,5 @@ module_rpmsg_driver(imx_audio_rpmsg_driver);
126142

127143
MODULE_DESCRIPTION("Freescale SoC Audio RPMSG interface");
128144
MODULE_AUTHOR("Shengjiu Wang <[email protected]>");
129-
MODULE_ALIAS("platform:imx_audio_rpmsg");
145+
MODULE_ALIAS("rpmsg:imx_audio_rpmsg");
130146
MODULE_LICENSE("GPL v2");

sound/soc/fsl/imx-pcm-rpmsg.c

+8-3
Original file line numberDiff line numberDiff line change
@@ -732,9 +732,6 @@ static int imx_rpmsg_pcm_probe(struct platform_device *pdev)
732732
goto fail;
733733
}
734734

735-
/* platform component name is used by machine driver to link with */
736-
component->name = info->rpdev->id.name;
737-
738735
#ifdef CONFIG_DEBUG_FS
739736
component->debugfs_prefix = "rpmsg";
740737
#endif
@@ -822,9 +819,17 @@ static const struct dev_pm_ops imx_rpmsg_pcm_pm_ops = {
822819
imx_rpmsg_pcm_resume)
823820
};
824821

822+
static const struct platform_device_id imx_rpmsg_pcm_id_table[] = {
823+
{ .name = "rpmsg-audio-channel" },
824+
{ .name = "rpmsg-micfil-channel" },
825+
{ }
826+
};
827+
MODULE_DEVICE_TABLE(platform, imx_rpmsg_pcm_id_table);
828+
825829
static struct platform_driver imx_pcm_rpmsg_driver = {
826830
.probe = imx_rpmsg_pcm_probe,
827831
.remove_new = imx_rpmsg_pcm_remove,
832+
.id_table = imx_rpmsg_pcm_id_table,
828833
.driver = {
829834
.name = IMX_PCM_DRV_NAME,
830835
.pm = &imx_rpmsg_pcm_pm_ops,

sound/soc/fsl/imx-rpmsg.c

+18-3
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,9 @@ static int imx_rpmsg_late_probe(struct snd_soc_card *card)
108108
static int imx_rpmsg_probe(struct platform_device *pdev)
109109
{
110110
struct snd_soc_dai_link_component *dlc;
111-
struct device *dev = pdev->dev.parent;
112111
/* rpmsg_pdev is the platform device for the rpmsg node that probed us */
113-
struct platform_device *rpmsg_pdev = to_platform_device(dev);
114-
struct device_node *np = rpmsg_pdev->dev.of_node;
112+
struct platform_device *rpmsg_pdev = NULL;
113+
struct device_node *np = NULL;
115114
struct of_phandle_args args;
116115
const char *platform_name;
117116
struct imx_rpmsg *data;
@@ -127,6 +126,22 @@ static int imx_rpmsg_probe(struct platform_device *pdev)
127126
goto fail;
128127
}
129128

129+
if (!strcmp(pdev->dev.platform_data, "rpmsg-micfil-channel"))
130+
np = of_find_node_by_name(NULL, "rpmsg_micfil");
131+
else
132+
np = of_find_node_by_name(NULL, "rpmsg_audio");
133+
if (!np) {
134+
dev_err(&pdev->dev, "failed to parse node\n");
135+
ret = -EINVAL;
136+
goto fail;
137+
}
138+
rpmsg_pdev = of_find_device_by_node(np);
139+
if (!rpmsg_pdev) {
140+
dev_err(&pdev->dev, "failed to parse platform device\n");
141+
ret = -EINVAL;
142+
goto fail;
143+
}
144+
130145
ret = of_reserved_mem_device_init_by_idx(&pdev->dev, np, 0);
131146
if (ret)
132147
dev_warn(&pdev->dev, "no reserved DMA memory\n");

0 commit comments

Comments
 (0)