Linux 6.13
[linux.git] / sound / soc / fsl / p1022_rdk.c
blobd4568346714f4c2bf8e9afb7f6c147f725c1d4f2
1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // Freescale P1022RDK ALSA SoC Machine driver
4 //
5 // Author: Timur Tabi <timur@freescale.com>
6 //
7 // Copyright 2012 Freescale Semiconductor, Inc.
8 //
9 // Note: in order for audio to work correctly, the output controls need
10 // to be enabled, because they control the clock. So for playback, for
11 // example:
13 // amixer sset 'Left Output Mixer PCM' on
14 // amixer sset 'Right Output Mixer PCM' on
16 #include <linux/module.h>
17 #include <linux/fsl/guts.h>
18 #include <linux/interrupt.h>
19 #include <linux/of.h>
20 #include <linux/of_address.h>
21 #include <linux/slab.h>
22 #include <sound/soc.h>
24 #include "fsl_dma.h"
25 #include "fsl_ssi.h"
26 #include "fsl_utils.h"
28 /* P1022-specific PMUXCR and DMUXCR bit definitions */
30 #define CCSR_GUTS_PMUXCR_UART0_I2C1_MASK 0x0001c000
31 #define CCSR_GUTS_PMUXCR_UART0_I2C1_UART0_SSI 0x00010000
32 #define CCSR_GUTS_PMUXCR_UART0_I2C1_SSI 0x00018000
34 #define CCSR_GUTS_PMUXCR_SSI_DMA_TDM_MASK 0x00000c00
35 #define CCSR_GUTS_PMUXCR_SSI_DMA_TDM_SSI 0x00000000
37 #define CCSR_GUTS_DMUXCR_PAD 1 /* DMA controller/channel set to pad */
38 #define CCSR_GUTS_DMUXCR_SSI 2 /* DMA controller/channel set to SSI */
41 * Set the DMACR register in the GUTS
43 * The DMACR register determines the source of initiated transfers for each
44 * channel on each DMA controller. Rather than have a bunch of repetitive
45 * macros for the bit patterns, we just have a function that calculates
46 * them.
48 * guts: Pointer to GUTS structure
49 * co: The DMA controller (0 or 1)
50 * ch: The channel on the DMA controller (0, 1, 2, or 3)
51 * device: The device to set as the target (CCSR_GUTS_DMUXCR_xxx)
53 static inline void guts_set_dmuxcr(struct ccsr_guts __iomem *guts,
54 unsigned int co, unsigned int ch, unsigned int device)
56 unsigned int shift = 16 + (8 * (1 - co) + 2 * (3 - ch));
58 clrsetbits_be32(&guts->dmuxcr, 3 << shift, device << shift);
61 /* There's only one global utilities register */
62 static phys_addr_t guts_phys;
65 * machine_data: machine-specific ASoC device data
67 * This structure contains data for a single sound platform device on an
68 * P1022 RDK. Some of the data is taken from the device tree.
70 struct machine_data {
71 struct snd_soc_dai_link dai[2];
72 struct snd_soc_card card;
73 unsigned int dai_format;
74 unsigned int codec_clk_direction;
75 unsigned int cpu_clk_direction;
76 unsigned int clk_frequency;
77 unsigned int dma_id[2]; /* 0 = DMA1, 1 = DMA2, etc */
78 unsigned int dma_channel_id[2]; /* 0 = ch 0, 1 = ch 1, etc*/
79 char platform_name[2][DAI_NAME_SIZE]; /* One for each DMA channel */
82 /**
83 * p1022_rdk_machine_probe - initialize the board
84 * @card: ASoC card instance
86 * This function is used to initialize the board-specific hardware.
88 * Here we program the DMACR and PMUXCR registers.
90 * Returns: %0 on success or negative errno value on error
92 static int p1022_rdk_machine_probe(struct snd_soc_card *card)
94 struct machine_data *mdata =
95 container_of(card, struct machine_data, card);
96 struct ccsr_guts __iomem *guts;
98 guts = ioremap(guts_phys, sizeof(struct ccsr_guts));
99 if (!guts) {
100 dev_err(card->dev, "could not map global utilities\n");
101 return -ENOMEM;
104 /* Enable SSI Tx signal */
105 clrsetbits_be32(&guts->pmuxcr, CCSR_GUTS_PMUXCR_UART0_I2C1_MASK,
106 CCSR_GUTS_PMUXCR_UART0_I2C1_UART0_SSI);
108 /* Enable SSI Rx signal */
109 clrsetbits_be32(&guts->pmuxcr, CCSR_GUTS_PMUXCR_SSI_DMA_TDM_MASK,
110 CCSR_GUTS_PMUXCR_SSI_DMA_TDM_SSI);
112 /* Enable DMA Channel for SSI */
113 guts_set_dmuxcr(guts, mdata->dma_id[0], mdata->dma_channel_id[0],
114 CCSR_GUTS_DMUXCR_SSI);
116 guts_set_dmuxcr(guts, mdata->dma_id[1], mdata->dma_channel_id[1],
117 CCSR_GUTS_DMUXCR_SSI);
119 iounmap(guts);
121 return 0;
125 * p1022_rdk_startup - program the board with various hardware parameters
126 * @substream: ASoC substream object
128 * This function takes board-specific information, like clock frequencies
129 * and serial data formats, and passes that information to the codec and
130 * transport drivers.
132 * Returns: %0 on success or negative errno value on error
134 static int p1022_rdk_startup(struct snd_pcm_substream *substream)
136 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream);
137 struct machine_data *mdata =
138 container_of(rtd->card, struct machine_data, card);
139 struct device *dev = rtd->card->dev;
140 int ret = 0;
142 /* Tell the codec driver what the serial protocol is. */
143 ret = snd_soc_dai_set_fmt(snd_soc_rtd_to_codec(rtd, 0), mdata->dai_format);
144 if (ret < 0) {
145 dev_err(dev, "could not set codec driver audio format (ret=%i)\n",
146 ret);
147 return ret;
150 ret = snd_soc_dai_set_pll(snd_soc_rtd_to_codec(rtd, 0), 0, 0, mdata->clk_frequency,
151 mdata->clk_frequency);
152 if (ret < 0) {
153 dev_err(dev, "could not set codec PLL frequency (ret=%i)\n",
154 ret);
155 return ret;
158 return 0;
162 * p1022_rdk_machine_remove - Remove the sound device
163 * @card: ASoC card instance
165 * This function is called to remove the sound device for one SSI. We
166 * de-program the DMACR and PMUXCR register.
168 * Returns: %0 on success or negative errno value on error
170 static int p1022_rdk_machine_remove(struct snd_soc_card *card)
172 struct machine_data *mdata =
173 container_of(card, struct machine_data, card);
174 struct ccsr_guts __iomem *guts;
176 guts = ioremap(guts_phys, sizeof(struct ccsr_guts));
177 if (!guts) {
178 dev_err(card->dev, "could not map global utilities\n");
179 return -ENOMEM;
182 /* Restore the signal routing */
183 clrbits32(&guts->pmuxcr, CCSR_GUTS_PMUXCR_UART0_I2C1_MASK);
184 clrbits32(&guts->pmuxcr, CCSR_GUTS_PMUXCR_SSI_DMA_TDM_MASK);
185 guts_set_dmuxcr(guts, mdata->dma_id[0], mdata->dma_channel_id[0], 0);
186 guts_set_dmuxcr(guts, mdata->dma_id[1], mdata->dma_channel_id[1], 0);
188 iounmap(guts);
190 return 0;
194 * p1022_rdk_ops: ASoC machine driver operations
196 static const struct snd_soc_ops p1022_rdk_ops = {
197 .startup = p1022_rdk_startup,
201 * p1022_rdk_probe - platform probe function for the machine driver
202 * @pdev: platform device pointer
204 * Although this is a machine driver, the SSI node is the "master" node with
205 * respect to audio hardware connections. Therefore, we create a new ASoC
206 * device for each new SSI node that has a codec attached.
208 * Returns: %0 on success or negative errno value on error
210 static int p1022_rdk_probe(struct platform_device *pdev)
212 struct device *dev = pdev->dev.parent;
213 /* ssi_pdev is the platform device for the SSI node that probed us */
214 struct platform_device *ssi_pdev = to_platform_device(dev);
215 struct device_node *np = ssi_pdev->dev.of_node;
216 struct device_node *codec_np = NULL;
217 struct machine_data *mdata;
218 struct snd_soc_dai_link_component *comp;
219 const u32 *iprop;
220 int ret;
222 /* Find the codec node for this SSI. */
223 codec_np = of_parse_phandle(np, "codec-handle", 0);
224 if (!codec_np) {
225 dev_err(dev, "could not find codec node\n");
226 return -EINVAL;
229 mdata = kzalloc(sizeof(struct machine_data), GFP_KERNEL);
230 if (!mdata) {
231 ret = -ENOMEM;
232 goto error_put;
235 comp = devm_kzalloc(&pdev->dev, 6 * sizeof(*comp), GFP_KERNEL);
236 if (!comp) {
237 ret = -ENOMEM;
238 goto error_put;
241 mdata->dai[0].cpus = &comp[0];
242 mdata->dai[0].codecs = &comp[1];
243 mdata->dai[0].platforms = &comp[2];
245 mdata->dai[0].num_cpus = 1;
246 mdata->dai[0].num_codecs = 1;
247 mdata->dai[0].num_platforms = 1;
249 mdata->dai[1].cpus = &comp[3];
250 mdata->dai[1].codecs = &comp[4];
251 mdata->dai[1].platforms = &comp[5];
253 mdata->dai[1].num_cpus = 1;
254 mdata->dai[1].num_codecs = 1;
255 mdata->dai[1].num_platforms = 1;
257 mdata->dai[0].cpus->dai_name = dev_name(&ssi_pdev->dev);
258 mdata->dai[0].ops = &p1022_rdk_ops;
260 /* ASoC core can match codec with device node */
261 mdata->dai[0].codecs->of_node = codec_np;
264 * We register two DAIs per SSI, one for playback and the other for
265 * capture. We support codecs that have separate DAIs for both playback
266 * and capture.
268 memcpy(&mdata->dai[1], &mdata->dai[0], sizeof(struct snd_soc_dai_link));
270 /* The DAI names from the codec (snd_soc_dai_driver.name) */
271 mdata->dai[0].codecs->dai_name = "wm8960-hifi";
272 mdata->dai[1].codecs->dai_name = mdata->dai[0].codecs->dai_name;
275 * Configure the SSI for I2S slave mode. Older device trees have
276 * an fsl,mode property, but we ignore that since there's really
277 * only one way to configure the SSI.
279 mdata->dai_format = SND_SOC_DAIFMT_NB_NF |
280 SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_CBP_CFP;
281 mdata->codec_clk_direction = SND_SOC_CLOCK_OUT;
282 mdata->cpu_clk_direction = SND_SOC_CLOCK_IN;
285 * In i2s-slave mode, the codec has its own clock source, so we
286 * need to get the frequency from the device tree and pass it to
287 * the codec driver.
289 iprop = of_get_property(codec_np, "clock-frequency", NULL);
290 if (!iprop || !*iprop) {
291 dev_err(&pdev->dev, "codec bus-frequency property is missing or invalid\n");
292 ret = -EINVAL;
293 goto error;
295 mdata->clk_frequency = be32_to_cpup(iprop);
297 if (!mdata->clk_frequency) {
298 dev_err(&pdev->dev, "unknown clock frequency\n");
299 ret = -EINVAL;
300 goto error;
303 /* Find the playback DMA channel to use. */
304 mdata->dai[0].platforms->name = mdata->platform_name[0];
305 ret = fsl_asoc_get_dma_channel(np, "fsl,playback-dma", &mdata->dai[0],
306 &mdata->dma_channel_id[0],
307 &mdata->dma_id[0]);
308 if (ret) {
309 dev_err(&pdev->dev, "missing/invalid playback DMA phandle (ret=%i)\n",
310 ret);
311 goto error;
314 /* Find the capture DMA channel to use. */
315 mdata->dai[1].platforms->name = mdata->platform_name[1];
316 ret = fsl_asoc_get_dma_channel(np, "fsl,capture-dma", &mdata->dai[1],
317 &mdata->dma_channel_id[1],
318 &mdata->dma_id[1]);
319 if (ret) {
320 dev_err(&pdev->dev, "missing/invalid capture DMA phandle (ret=%i)\n",
321 ret);
322 goto error;
325 /* Initialize our DAI data structure. */
326 mdata->dai[0].stream_name = "playback";
327 mdata->dai[1].stream_name = "capture";
328 mdata->dai[0].name = mdata->dai[0].stream_name;
329 mdata->dai[1].name = mdata->dai[1].stream_name;
331 mdata->card.probe = p1022_rdk_machine_probe;
332 mdata->card.remove = p1022_rdk_machine_remove;
333 mdata->card.name = pdev->name; /* The platform driver name */
334 mdata->card.owner = THIS_MODULE;
335 mdata->card.dev = &pdev->dev;
336 mdata->card.num_links = 2;
337 mdata->card.dai_link = mdata->dai;
339 /* Register with ASoC */
340 ret = snd_soc_register_card(&mdata->card);
341 if (ret) {
342 dev_err(&pdev->dev, "could not register card (ret=%i)\n", ret);
343 goto error;
346 return 0;
348 error:
349 kfree(mdata);
350 error_put:
351 of_node_put(codec_np);
352 return ret;
356 * p1022_rdk_remove - remove the platform device
357 * @pdev: platform device pointer
359 * This function is called when the platform device is removed.
361 static void p1022_rdk_remove(struct platform_device *pdev)
363 struct snd_soc_card *card = platform_get_drvdata(pdev);
364 struct machine_data *mdata =
365 container_of(card, struct machine_data, card);
367 snd_soc_unregister_card(card);
368 kfree(mdata);
371 static struct platform_driver p1022_rdk_driver = {
372 .probe = p1022_rdk_probe,
373 .remove = p1022_rdk_remove,
374 .driver = {
376 * The name must match 'compatible' property in the device tree,
377 * in lowercase letters.
379 .name = "snd-soc-p1022rdk",
384 * p1022_rdk_init - machine driver initialization.
386 * This function is called when this module is loaded.
388 * Returns: %0 on success or negative errno value on error
390 static int __init p1022_rdk_init(void)
392 struct device_node *guts_np;
393 struct resource res;
395 /* Get the physical address of the global utilities registers */
396 guts_np = of_find_compatible_node(NULL, NULL, "fsl,p1022-guts");
397 if (of_address_to_resource(guts_np, 0, &res)) {
398 pr_err("snd-soc-p1022rdk: missing/invalid global utils node\n");
399 of_node_put(guts_np);
400 return -EINVAL;
402 guts_phys = res.start;
403 of_node_put(guts_np);
405 return platform_driver_register(&p1022_rdk_driver);
409 * p1022_rdk_exit - machine driver exit
411 * This function is called when this driver is unloaded.
413 static void __exit p1022_rdk_exit(void)
415 platform_driver_unregister(&p1022_rdk_driver);
418 late_initcall(p1022_rdk_init);
419 module_exit(p1022_rdk_exit);
421 MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
422 MODULE_DESCRIPTION("Freescale / iVeia P1022 RDK ALSA SoC machine driver");
423 MODULE_LICENSE("GPL v2");