blob: f4efaadb80a2223d29d3718643856fbcee15579c [file] [log] [blame]
Grant Likelydc641372008-07-29 11:42:30 +01001/*
2 * Freescale MPC5200 PSC in I2S mode
3 * ALSA SoC Digital Audio Interface (DAI) driver
4 *
5 * Copyright (C) 2008 Secret Lab Technologies Ltd.
Jon Smirldbcc3472009-05-26 08:34:08 -04006 * Copyright (C) 2009 Jon Smirl, Digispeaker
Grant Likelydc641372008-07-29 11:42:30 +01007 */
8
Grant Likelydc641372008-07-29 11:42:30 +01009#include <linux/module.h>
Grant Likelydc641372008-07-29 11:42:30 +010010#include <linux/of_device.h>
11#include <linux/of_platform.h>
Grant Likelydc641372008-07-29 11:42:30 +010012
Grant Likelydc641372008-07-29 11:42:30 +010013#include <sound/pcm.h>
14#include <sound/pcm_params.h>
Grant Likelydc641372008-07-29 11:42:30 +010015#include <sound/soc.h>
Grant Likelydc641372008-07-29 11:42:30 +010016
Grant Likelydc641372008-07-29 11:42:30 +010017#include <asm/mpc52xx_psc.h>
18
Jon Smirl89dd0842009-05-23 19:12:59 -040019#include "mpc5200_dma.h"
20
Grant Likelydc641372008-07-29 11:42:30 +010021/**
22 * PSC_I2S_RATES: sample rates supported by the I2S
23 *
24 * This driver currently only supports the PSC running in I2S slave mode,
25 * which means the codec determines the sample rate. Therefore, we tell
26 * ALSA that we support all rates and let the codec driver decide what rates
27 * are really supported.
28 */
29#define PSC_I2S_RATES (SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_192000 | \
30 SNDRV_PCM_RATE_CONTINUOUS)
31
32/**
33 * PSC_I2S_FORMATS: audio formats supported by the PSC I2S mode
34 */
35#define PSC_I2S_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_BE | \
Jon Smirldbcc3472009-05-26 08:34:08 -040036 SNDRV_PCM_FMTBIT_S24_BE | SNDRV_PCM_FMTBIT_S32_BE)
Grant Likelydc641372008-07-29 11:42:30 +010037
Grant Likelydc641372008-07-29 11:42:30 +010038static int psc_i2s_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +000039 struct snd_pcm_hw_params *params,
40 struct snd_soc_dai *dai)
Grant Likelydc641372008-07-29 11:42:30 +010041{
42 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000043 struct psc_dma *psc_dma = snd_soc_dai_get_drvdata(rtd->cpu_dai);
Grant Likelydc641372008-07-29 11:42:30 +010044 u32 mode;
45
Jon Smirlcebe7762009-05-23 19:13:01 -040046 dev_dbg(psc_dma->dev, "%s(substream=%p) p_size=%i p_bytes=%i"
Grant Likelydc641372008-07-29 11:42:30 +010047 " periods=%i buffer_size=%i buffer_bytes=%i\n",
48 __func__, substream, params_period_size(params),
49 params_period_bytes(params), params_periods(params),
50 params_buffer_size(params), params_buffer_bytes(params));
51
52 switch (params_format(params)) {
53 case SNDRV_PCM_FORMAT_S8:
54 mode = MPC52xx_PSC_SICR_SIM_CODEC_8;
55 break;
56 case SNDRV_PCM_FORMAT_S16_BE:
57 mode = MPC52xx_PSC_SICR_SIM_CODEC_16;
58 break;
59 case SNDRV_PCM_FORMAT_S24_BE:
60 mode = MPC52xx_PSC_SICR_SIM_CODEC_24;
61 break;
62 case SNDRV_PCM_FORMAT_S32_BE:
63 mode = MPC52xx_PSC_SICR_SIM_CODEC_32;
64 break;
65 default:
Jon Smirlcebe7762009-05-23 19:13:01 -040066 dev_dbg(psc_dma->dev, "invalid format\n");
Grant Likelydc641372008-07-29 11:42:30 +010067 return -EINVAL;
68 }
Jon Smirlcebe7762009-05-23 19:13:01 -040069 out_be32(&psc_dma->psc_regs->sicr, psc_dma->sicr | mode);
Grant Likelydc641372008-07-29 11:42:30 +010070
Grant Likelydc641372008-07-29 11:42:30 +010071 return 0;
72}
73
Grant Likelydc641372008-07-29 11:42:30 +010074/**
75 * psc_i2s_set_sysclk: set the clock frequency and direction
76 *
77 * This function is called by the machine driver to tell us what the clock
78 * frequency and direction are.
79 *
80 * Currently, we only support operating as a clock slave (SND_SOC_CLOCK_IN),
81 * and we don't care about the frequency. Return an error if the direction
82 * is not SND_SOC_CLOCK_IN.
83 *
84 * @clk_id: reserved, should be zero
85 * @freq: the frequency of the given clock ID, currently ignored
86 * @dir: SND_SOC_CLOCK_IN (clock slave) or SND_SOC_CLOCK_OUT (clock master)
87 */
88static int psc_i2s_set_sysclk(struct snd_soc_dai *cpu_dai,
89 int clk_id, unsigned int freq, int dir)
90{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000091 struct psc_dma *psc_dma = snd_soc_dai_get_drvdata(cpu_dai);
Jon Smirlcebe7762009-05-23 19:13:01 -040092 dev_dbg(psc_dma->dev, "psc_i2s_set_sysclk(cpu_dai=%p, dir=%i)\n",
Grant Likelydc641372008-07-29 11:42:30 +010093 cpu_dai, dir);
94 return (dir == SND_SOC_CLOCK_IN) ? 0 : -EINVAL;
95}
96
97/**
98 * psc_i2s_set_fmt: set the serial format.
99 *
100 * This function is called by the machine driver to tell us what serial
101 * format to use.
102 *
103 * This driver only supports I2S mode. Return an error if the format is
104 * not SND_SOC_DAIFMT_I2S.
105 *
106 * @format: one of SND_SOC_DAIFMT_xxx
107 */
108static int psc_i2s_set_fmt(struct snd_soc_dai *cpu_dai, unsigned int format)
109{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000110 struct psc_dma *psc_dma = snd_soc_dai_get_drvdata(cpu_dai);
Jon Smirlcebe7762009-05-23 19:13:01 -0400111 dev_dbg(psc_dma->dev, "psc_i2s_set_fmt(cpu_dai=%p, format=%i)\n",
Grant Likelydc641372008-07-29 11:42:30 +0100112 cpu_dai, format);
113 return (format == SND_SOC_DAIFMT_I2S) ? 0 : -EINVAL;
114}
115
116/* ---------------------------------------------------------------------
117 * ALSA SoC Bindings
118 *
119 * - Digital Audio Interface (DAI) template
120 * - create/destroy dai hooks
121 */
122
123/**
124 * psc_i2s_dai_template: template CPU Digital Audio Interface
125 */
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100126static const struct snd_soc_dai_ops psc_i2s_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +0800127 .hw_params = psc_i2s_hw_params,
Eric Miao6335d052009-03-03 09:41:00 +0800128 .set_sysclk = psc_i2s_set_sysclk,
129 .set_fmt = psc_i2s_set_fmt,
130};
131
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000132static struct snd_soc_dai_driver psc_i2s_dai[] = {{
Eric Millbrandta4f7b702012-09-13 17:43:12 -0400133 .name = "mpc5200-psc-i2s.0",
Grant Likelydc641372008-07-29 11:42:30 +0100134 .playback = {
Eric Millbrandta4f7b702012-09-13 17:43:12 -0400135 .stream_name = "I2S Playback",
Grant Likelydc641372008-07-29 11:42:30 +0100136 .channels_min = 2,
137 .channels_max = 2,
138 .rates = PSC_I2S_RATES,
139 .formats = PSC_I2S_FORMATS,
140 },
141 .capture = {
Eric Millbrandta4f7b702012-09-13 17:43:12 -0400142 .stream_name = "I2S Capture",
Grant Likelydc641372008-07-29 11:42:30 +0100143 .channels_min = 2,
144 .channels_max = 2,
145 .rates = PSC_I2S_RATES,
146 .formats = PSC_I2S_FORMATS,
147 },
Eric Miao6335d052009-03-03 09:41:00 +0800148 .ops = &psc_i2s_dai_ops,
Jon Smirldbcc3472009-05-26 08:34:08 -0400149} };
Grant Likelydc641372008-07-29 11:42:30 +0100150
Kuninori Morimotof200c022013-03-21 03:31:53 -0700151static const struct snd_soc_component_driver psc_i2s_component = {
152 .name = "mpc5200-i2s",
153};
154
Grant Likelydc641372008-07-29 11:42:30 +0100155/* ---------------------------------------------------------------------
156 * OF platform bus binding code:
157 * - Probe/remove operations
158 * - OF device match table
159 */
Bill Pembertona0a3d512012-12-07 09:26:16 -0500160static int psc_i2s_of_probe(struct platform_device *op)
Grant Likelydc641372008-07-29 11:42:30 +0100161{
Jon Smirldbcc3472009-05-26 08:34:08 -0400162 int rc;
Jon Smirlcebe7762009-05-23 19:13:01 -0400163 struct psc_dma *psc_dma;
Jon Smirldbcc3472009-05-26 08:34:08 -0400164 struct mpc52xx_psc __iomem *regs;
Grant Likelydc641372008-07-29 11:42:30 +0100165
Eric Millbrandtf515b672012-09-13 17:43:11 -0400166 rc = mpc5200_audio_dma_create(op);
167 if (rc != 0)
168 return rc;
169
Kuninori Morimotof200c022013-03-21 03:31:53 -0700170 rc = snd_soc_register_component(&op->dev, &psc_i2s_component,
171 psc_i2s_dai, ARRAY_SIZE(psc_i2s_dai));
Jon Smirldbcc3472009-05-26 08:34:08 -0400172 if (rc != 0) {
173 pr_err("Failed to register DAI\n");
Axel Lin1ebd0062010-11-08 13:24:58 +0800174 return rc;
Grant Likelydc641372008-07-29 11:42:30 +0100175 }
176
Jon Smirldbcc3472009-05-26 08:34:08 -0400177 psc_dma = dev_get_drvdata(&op->dev);
178 regs = psc_dma->psc_regs;
Grant Likelydc641372008-07-29 11:42:30 +0100179
180 /* Configure the serial interface mode; defaulting to CODEC8 mode */
Jon Smirlcebe7762009-05-23 19:13:01 -0400181 psc_dma->sicr = MPC52xx_PSC_SICR_DTS1 | MPC52xx_PSC_SICR_I2S |
Grant Likelydc641372008-07-29 11:42:30 +0100182 MPC52xx_PSC_SICR_CLKPOL;
Jon Smirlcebe7762009-05-23 19:13:01 -0400183 out_be32(&psc_dma->psc_regs->sicr,
184 psc_dma->sicr | MPC52xx_PSC_SICR_SIM_CODEC_8);
Grant Likelydc641372008-07-29 11:42:30 +0100185
186 /* Check for the codec handle. If it is not present then we
187 * are done */
Grant Likely61c7a082010-04-13 16:12:29 -0700188 if (!of_get_property(op->dev.of_node, "codec-handle", NULL))
Grant Likelydc641372008-07-29 11:42:30 +0100189 return 0;
190
Jon Smirldbcc3472009-05-26 08:34:08 -0400191 /* Due to errata in the dma mode; need to line up enabling
192 * the transmitter with a transition on the frame sync
193 * line */
Grant Likelydc641372008-07-29 11:42:30 +0100194
Jon Smirldbcc3472009-05-26 08:34:08 -0400195 /* first make sure it is low */
196 while ((in_8(&regs->ipcr_acr.ipcr) & 0x80) != 0)
197 ;
198 /* then wait for the transition to high */
199 while ((in_8(&regs->ipcr_acr.ipcr) & 0x80) == 0)
200 ;
201 /* Finally, enable the PSC.
202 * Receiver must always be enabled; even when we only want
203 * transmit. (see 15.3.2.3 of MPC5200B User's Guide) */
Grant Likelydc641372008-07-29 11:42:30 +0100204
Jon Smirldbcc3472009-05-26 08:34:08 -0400205 /* Go */
206 out_8(&psc_dma->psc_regs->command,
207 MPC52xx_PSC_TX_ENABLE | MPC52xx_PSC_RX_ENABLE);
Grant Likelydc641372008-07-29 11:42:30 +0100208
209 return 0;
Jon Smirldbcc3472009-05-26 08:34:08 -0400210
Grant Likelydc641372008-07-29 11:42:30 +0100211}
212
Bill Pembertona0a3d512012-12-07 09:26:16 -0500213static int psc_i2s_of_remove(struct platform_device *op)
Grant Likelydc641372008-07-29 11:42:30 +0100214{
Eric Millbrandtf515b672012-09-13 17:43:11 -0400215 mpc5200_audio_dma_destroy(op);
Kuninori Morimotof200c022013-03-21 03:31:53 -0700216 snd_soc_unregister_component(&op->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000217 return 0;
Grant Likelydc641372008-07-29 11:42:30 +0100218}
219
220/* Match table for of_platform binding */
Bill Pembertona0a3d512012-12-07 09:26:16 -0500221static struct of_device_id psc_i2s_match[] = {
Grant Likelydc641372008-07-29 11:42:30 +0100222 { .compatible = "fsl,mpc5200-psc-i2s", },
Jon Smirldbcc3472009-05-26 08:34:08 -0400223 { .compatible = "fsl,mpc5200b-psc-i2s", },
Grant Likelydc641372008-07-29 11:42:30 +0100224 {}
225};
226MODULE_DEVICE_TABLE(of, psc_i2s_match);
227
Grant Likelyf07eb222011-02-22 21:05:04 -0700228static struct platform_driver psc_i2s_driver = {
Grant Likelydc641372008-07-29 11:42:30 +0100229 .probe = psc_i2s_of_probe,
Bill Pembertona0a3d512012-12-07 09:26:16 -0500230 .remove = psc_i2s_of_remove,
Grant Likelydc641372008-07-29 11:42:30 +0100231 .driver = {
232 .name = "mpc5200-psc-i2s",
233 .owner = THIS_MODULE,
Grant Likely40182942010-04-13 16:13:02 -0700234 .of_match_table = psc_i2s_match,
Grant Likelydc641372008-07-29 11:42:30 +0100235 },
236};
237
Axel Linba0a7e02011-11-25 10:10:55 +0800238module_platform_driver(psc_i2s_driver);
Grant Likelydc641372008-07-29 11:42:30 +0100239
Jon Smirldbcc3472009-05-26 08:34:08 -0400240MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");
241MODULE_DESCRIPTION("Freescale MPC5200 PSC in I2S mode ASoC Driver");
242MODULE_LICENSE("GPL");
Grant Likelydc641372008-07-29 11:42:30 +0100243