blob: de6ab06f58a54dbd32b871273a530db6e8d9fbed [file] [log] [blame]
Timur Tabi17467f22008-01-11 18:15:26 +01001/*
2 * Freescale SSI ALSA SoC Digital Audio Interface (DAI) driver
3 *
4 * Author: Timur Tabi <timur@freescale.com>
5 *
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00006 * Copyright 2007-2010 Freescale Semiconductor, Inc.
7 *
8 * This file is licensed under the terms of the GNU General Public License
9 * version 2. This program is licensed "as is" without any warranty of any
10 * kind, whether express or implied.
Markus Pargmannde623ec2013-07-27 13:31:53 +020011 *
12 *
13 * Some notes why imx-pcm-fiq is used instead of DMA on some boards:
14 *
15 * The i.MX SSI core has some nasty limitations in AC97 mode. While most
16 * sane processor vendors have a FIFO per AC97 slot, the i.MX has only
17 * one FIFO which combines all valid receive slots. We cannot even select
18 * which slots we want to receive. The WM9712 with which this driver
19 * was developed with always sends GPIO status data in slot 12 which
20 * we receive in our (PCM-) data stream. The only chance we have is to
21 * manually skip this data in the FIQ handler. With sampling rates different
22 * from 48000Hz not every frame has valid receive data, so the ratio
23 * between pcm data and GPIO status data changes. Our FIQ handler is not
24 * able to handle this, hence this driver only works with 48000Hz sampling
25 * rate.
26 * Reading and writing AC97 registers is another challenge. The core
27 * provides us status bits when the read register is updated with *another*
28 * value. When we read the same register two times (and the register still
29 * contains the same value) these status bits are not set. We work
30 * around this by not polling these bits but only wait a fixed delay.
Timur Tabi17467f22008-01-11 18:15:26 +010031 */
32
33#include <linux/init.h>
Shawn Guodfa1a102012-03-16 16:56:42 +080034#include <linux/io.h>
Timur Tabi17467f22008-01-11 18:15:26 +010035#include <linux/module.h>
36#include <linux/interrupt.h>
Shawn Guo95cd98f2012-03-29 10:53:41 +080037#include <linux/clk.h>
Timur Tabi17467f22008-01-11 18:15:26 +010038#include <linux/device.h>
39#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Nicolin Chenaafa85e2013-12-12 18:44:45 +080041#include <linux/spinlock.h>
Mark Brown9c72a042014-04-15 12:02:02 +010042#include <linux/of.h>
Shawn Guodfa1a102012-03-16 16:56:42 +080043#include <linux/of_address.h>
44#include <linux/of_irq.h>
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000045#include <linux/of_platform.h>
Timur Tabi17467f22008-01-11 18:15:26 +010046
Timur Tabi17467f22008-01-11 18:15:26 +010047#include <sound/core.h>
48#include <sound/pcm.h>
49#include <sound/pcm_params.h>
50#include <sound/initval.h>
51#include <sound/soc.h>
Lars-Peter Clausena8909c92013-04-03 11:06:04 +020052#include <sound/dmaengine_pcm.h>
Timur Tabi17467f22008-01-11 18:15:26 +010053
Timur Tabi17467f22008-01-11 18:15:26 +010054#include "fsl_ssi.h"
Shawn Guo09ce1112012-03-16 16:56:43 +080055#include "imx-pcm.h"
Timur Tabi17467f22008-01-11 18:15:26 +010056
57/**
58 * FSLSSI_I2S_RATES: sample rates supported by the I2S
59 *
60 * This driver currently only supports the SSI running in I2S slave mode,
61 * which means the codec determines the sample rate. Therefore, we tell
62 * ALSA that we support all rates and let the codec driver decide what rates
63 * are really supported.
64 */
Lars-Peter Clausen24710c92014-01-11 10:24:41 +010065#define FSLSSI_I2S_RATES SNDRV_PCM_RATE_CONTINUOUS
Timur Tabi17467f22008-01-11 18:15:26 +010066
67/**
68 * FSLSSI_I2S_FORMATS: audio formats supported by the SSI
69 *
70 * This driver currently only supports the SSI running in I2S slave mode.
71 *
72 * The SSI has a limitation in that the samples must be in the same byte
73 * order as the host CPU. This is because when multiple bytes are written
74 * to the STX register, the bytes and bits must be written in the same
75 * order. The STX is a shift register, so all the bits need to be aligned
76 * (bit-endianness must match byte-endianness). Processors typically write
77 * the bits within a byte in the same order that the bytes of a word are
78 * written in. So if the host CPU is big-endian, then only big-endian
79 * samples will be written to STX properly.
80 */
81#ifdef __BIG_ENDIAN
82#define FSLSSI_I2S_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_BE | \
83 SNDRV_PCM_FMTBIT_S18_3BE | SNDRV_PCM_FMTBIT_S20_3BE | \
84 SNDRV_PCM_FMTBIT_S24_3BE | SNDRV_PCM_FMTBIT_S24_BE)
85#else
86#define FSLSSI_I2S_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE | \
87 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S20_3LE | \
88 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_LE)
89#endif
90
Markus Pargmann9368acc2013-12-20 14:11:29 +010091#define FSLSSI_SIER_DBG_RX_FLAGS (CCSR_SSI_SIER_RFF0_EN | \
92 CCSR_SSI_SIER_RLS_EN | CCSR_SSI_SIER_RFS_EN | \
93 CCSR_SSI_SIER_ROE0_EN | CCSR_SSI_SIER_RFRC_EN)
94#define FSLSSI_SIER_DBG_TX_FLAGS (CCSR_SSI_SIER_TFE0_EN | \
95 CCSR_SSI_SIER_TLS_EN | CCSR_SSI_SIER_TFS_EN | \
96 CCSR_SSI_SIER_TUE0_EN | CCSR_SSI_SIER_TFRC_EN)
Markus Pargmannc1953bf2013-12-20 14:11:30 +010097
98enum fsl_ssi_type {
99 FSL_SSI_MCP8610,
100 FSL_SSI_MX21,
Markus Pargmann0888efd2013-12-20 14:11:31 +0100101 FSL_SSI_MX35,
Markus Pargmannc1953bf2013-12-20 14:11:30 +0100102 FSL_SSI_MX51,
103};
104
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100105struct fsl_ssi_reg_val {
106 u32 sier;
107 u32 srcr;
108 u32 stcr;
109 u32 scr;
110};
111
112struct fsl_ssi_rxtx_reg_val {
113 struct fsl_ssi_reg_val rx;
114 struct fsl_ssi_reg_val tx;
115};
Markus Pargmann43248122014-05-27 10:24:25 +0200116static const struct regmap_config fsl_ssi_regconfig = {
117 .max_register = CCSR_SSI_SACCDIS,
118 .reg_bits = 32,
119 .val_bits = 32,
120 .reg_stride = 4,
121 .val_format_endian = REGMAP_ENDIAN_NATIVE,
122};
Timur Tabid5a908b2009-03-26 11:42:38 -0500123
Sascha Hauerfcdbade2014-05-27 10:24:18 +0200124struct fsl_ssi_soc_data {
125 bool imx;
126 bool offline_config;
127 u32 sisr_write_mask;
128};
129
Timur Tabi17467f22008-01-11 18:15:26 +0100130/**
131 * fsl_ssi_private: per-SSI private data
132 *
Markus Pargmann43248122014-05-27 10:24:25 +0200133 * @reg: Pointer to the regmap registers
Timur Tabi17467f22008-01-11 18:15:26 +0100134 * @irq: IRQ of this SSI
Markus Pargmann737a6b42014-05-27 10:24:24 +0200135 * @cpu_dai_drv: CPU DAI driver for this device
136 *
137 * @dai_fmt: DAI configuration this device is currently used with
138 * @i2s_mode: i2s and network mode configuration of the device. Is used to
139 * switch between normal and i2s/network mode
140 * mode depending on the number of channels
141 * @use_dma: DMA is used or FIQ with stream filter
142 * @use_dual_fifo: DMA with support for both FIFOs used
143 * @fifo_deph: Depth of the SSI FIFOs
144 * @rxtx_reg_val: Specific register settings for receive/transmit configuration
145 *
146 * @clk: SSI clock
147 * @baudclk: SSI baud clock for master mode
148 * @baudclk_streams: Active streams that are using baudclk
149 * @bitclk_freq: bitclock frequency set by .set_dai_sysclk
150 *
151 * @dma_params_tx: DMA transmit parameters
152 * @dma_params_rx: DMA receive parameters
153 * @ssi_phys: physical address of the SSI registers
154 *
155 * @fiq_params: FIQ stream filtering parameters
156 *
157 * @pdev: Pointer to pdev used for deprecated fsl-ssi sound card
158 *
159 * @dbg_stats: Debugging statistics
160 *
161 * @soc: SoC specifc data
Timur Tabi17467f22008-01-11 18:15:26 +0100162 */
163struct fsl_ssi_private {
Markus Pargmann43248122014-05-27 10:24:25 +0200164 struct regmap *regs;
Timur Tabi17467f22008-01-11 18:15:26 +0100165 unsigned int irq;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000166 struct snd_soc_dai_driver cpu_dai_drv;
Timur Tabi17467f22008-01-11 18:15:26 +0100167
Markus Pargmann737a6b42014-05-27 10:24:24 +0200168 unsigned int dai_fmt;
169 u8 i2s_mode;
Markus Pargmannde623ec2013-07-27 13:31:53 +0200170 bool use_dma;
Nicolin Chen0da9e552013-11-13 22:55:26 +0800171 bool use_dual_fifo;
Markus Pargmann737a6b42014-05-27 10:24:24 +0200172 unsigned int fifo_depth;
173 struct fsl_ssi_rxtx_reg_val rxtx_reg_val;
174
Shawn Guo95cd98f2012-03-29 10:53:41 +0800175 struct clk *clk;
Markus Pargmann737a6b42014-05-27 10:24:24 +0200176 struct clk *baudclk;
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200177 unsigned int baudclk_streams;
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200178 unsigned int bitclk_freq;
Markus Pargmann737a6b42014-05-27 10:24:24 +0200179
180 /* DMA params */
Lars-Peter Clausena8909c92013-04-03 11:06:04 +0200181 struct snd_dmaengine_dai_dma_data dma_params_tx;
182 struct snd_dmaengine_dai_dma_data dma_params_rx;
Markus Pargmann737a6b42014-05-27 10:24:24 +0200183 dma_addr_t ssi_phys;
184
185 /* params for non-dma FIQ stream filtered mode */
Markus Pargmannde623ec2013-07-27 13:31:53 +0200186 struct imx_pcm_fiq_params fiq_params;
Markus Pargmann737a6b42014-05-27 10:24:24 +0200187
188 /* Used when using fsl-ssi as sound-card. This is only used by ppc and
189 * should be replaced with simple-sound-card. */
190 struct platform_device *pdev;
Shawn Guo09ce1112012-03-16 16:56:43 +0800191
Markus Pargmannf138e622014-04-28 12:54:43 +0200192 struct fsl_ssi_dbg dbg_stats;
Sascha Hauerfcdbade2014-05-27 10:24:18 +0200193
194 const struct fsl_ssi_soc_data *soc;
Timur Tabi17467f22008-01-11 18:15:26 +0100195};
196
Markus Pargmann171d6832014-04-28 12:54:48 +0200197/*
198 * imx51 and later SoCs have a slightly different IP that allows the
199 * SSI configuration while the SSI unit is running.
200 *
201 * More important, it is necessary on those SoCs to configure the
202 * sperate TX/RX DMA bits just before starting the stream
203 * (fsl_ssi_trigger). The SDMA unit has to be configured before fsl_ssi
204 * sends any DMA requests to the SDMA unit, otherwise it is not defined
205 * how the SDMA unit handles the DMA request.
206 *
207 * SDMA units are present on devices starting at imx35 but the imx35
208 * reference manual states that the DMA bits should not be changed
209 * while the SSI unit is running (SSIEN). So we support the necessary
210 * online configuration of fsl-ssi starting at imx51.
211 */
Markus Pargmann171d6832014-04-28 12:54:48 +0200212
Sascha Hauerfcdbade2014-05-27 10:24:18 +0200213static struct fsl_ssi_soc_data fsl_ssi_mpc8610 = {
214 .imx = false,
215 .offline_config = true,
216 .sisr_write_mask = CCSR_SSI_SISR_RFRC | CCSR_SSI_SISR_TFRC |
217 CCSR_SSI_SISR_ROE0 | CCSR_SSI_SISR_ROE1 |
218 CCSR_SSI_SISR_TUE0 | CCSR_SSI_SISR_TUE1,
219};
220
221static struct fsl_ssi_soc_data fsl_ssi_imx21 = {
222 .imx = true,
223 .offline_config = true,
224 .sisr_write_mask = 0,
225};
226
227static struct fsl_ssi_soc_data fsl_ssi_imx35 = {
228 .imx = true,
229 .offline_config = true,
230 .sisr_write_mask = CCSR_SSI_SISR_RFRC | CCSR_SSI_SISR_TFRC |
231 CCSR_SSI_SISR_ROE0 | CCSR_SSI_SISR_ROE1 |
232 CCSR_SSI_SISR_TUE0 | CCSR_SSI_SISR_TUE1,
233};
234
235static struct fsl_ssi_soc_data fsl_ssi_imx51 = {
236 .imx = true,
237 .offline_config = false,
238 .sisr_write_mask = CCSR_SSI_SISR_ROE0 | CCSR_SSI_SISR_ROE1 |
239 CCSR_SSI_SISR_TUE0 | CCSR_SSI_SISR_TUE1,
240};
241
242static const struct of_device_id fsl_ssi_ids[] = {
243 { .compatible = "fsl,mpc8610-ssi", .data = &fsl_ssi_mpc8610 },
244 { .compatible = "fsl,imx51-ssi", .data = &fsl_ssi_imx51 },
245 { .compatible = "fsl,imx35-ssi", .data = &fsl_ssi_imx35 },
246 { .compatible = "fsl,imx21-ssi", .data = &fsl_ssi_imx21 },
247 {}
248};
249MODULE_DEVICE_TABLE(of, fsl_ssi_ids);
250
251static bool fsl_ssi_is_ac97(struct fsl_ssi_private *ssi_private)
252{
253 return !!(ssi_private->dai_fmt & SND_SOC_DAIFMT_AC97);
Markus Pargmann171d6832014-04-28 12:54:48 +0200254}
255
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200256static bool fsl_ssi_is_i2s_master(struct fsl_ssi_private *ssi_private)
257{
258 return (ssi_private->dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) ==
259 SND_SOC_DAIFMT_CBS_CFS;
260}
261
Timur Tabi17467f22008-01-11 18:15:26 +0100262/**
263 * fsl_ssi_isr: SSI interrupt handler
264 *
265 * Although it's possible to use the interrupt handler to send and receive
266 * data to/from the SSI, we use the DMA instead. Programming is more
267 * complicated, but the performance is much better.
268 *
269 * This interrupt handler is used only to gather statistics.
270 *
271 * @irq: IRQ of the SSI device
272 * @dev_id: pointer to the ssi_private structure for this SSI device
273 */
274static irqreturn_t fsl_ssi_isr(int irq, void *dev_id)
275{
276 struct fsl_ssi_private *ssi_private = dev_id;
Markus Pargmann43248122014-05-27 10:24:25 +0200277 struct regmap *regs = ssi_private->regs;
Timur Tabi17467f22008-01-11 18:15:26 +0100278 __be32 sisr;
Markus Pargmann0888efd2013-12-20 14:11:31 +0100279 __be32 sisr2;
Timur Tabi17467f22008-01-11 18:15:26 +0100280
281 /* We got an interrupt, so read the status register to see what we
282 were interrupted for. We mask it with the Interrupt Enable register
283 so that we only check for events that we're interested in.
284 */
Markus Pargmann43248122014-05-27 10:24:25 +0200285 regmap_read(regs, CCSR_SSI_SISR, &sisr);
Timur Tabi17467f22008-01-11 18:15:26 +0100286
Sascha Hauerfcdbade2014-05-27 10:24:18 +0200287 sisr2 = sisr & ssi_private->soc->sisr_write_mask;
Timur Tabi17467f22008-01-11 18:15:26 +0100288 /* Clear the bits that we set */
289 if (sisr2)
Markus Pargmann43248122014-05-27 10:24:25 +0200290 regmap_write(regs, CCSR_SSI_SISR, sisr2);
Timur Tabi17467f22008-01-11 18:15:26 +0100291
Markus Pargmannf138e622014-04-28 12:54:43 +0200292 fsl_ssi_dbg_isr(&ssi_private->dbg_stats, sisr);
293
294 return IRQ_HANDLED;
Timur Tabi17467f22008-01-11 18:15:26 +0100295}
296
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100297/*
298 * Enable/Disable all rx/tx config flags at once.
299 */
300static void fsl_ssi_rxtx_config(struct fsl_ssi_private *ssi_private,
301 bool enable)
302{
Markus Pargmann43248122014-05-27 10:24:25 +0200303 struct regmap *regs = ssi_private->regs;
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100304 struct fsl_ssi_rxtx_reg_val *vals = &ssi_private->rxtx_reg_val;
305
306 if (enable) {
Markus Pargmann43248122014-05-27 10:24:25 +0200307 regmap_update_bits(regs, CCSR_SSI_SIER,
308 vals->rx.sier | vals->tx.sier,
309 vals->rx.sier | vals->tx.sier);
310 regmap_update_bits(regs, CCSR_SSI_SRCR,
311 vals->rx.srcr | vals->tx.srcr,
312 vals->rx.srcr | vals->tx.srcr);
313 regmap_update_bits(regs, CCSR_SSI_STCR,
314 vals->rx.stcr | vals->tx.stcr,
315 vals->rx.stcr | vals->tx.stcr);
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100316 } else {
Markus Pargmann43248122014-05-27 10:24:25 +0200317 regmap_update_bits(regs, CCSR_SSI_SRCR,
318 vals->rx.srcr | vals->tx.srcr, 0);
319 regmap_update_bits(regs, CCSR_SSI_STCR,
320 vals->rx.stcr | vals->tx.stcr, 0);
321 regmap_update_bits(regs, CCSR_SSI_SIER,
322 vals->rx.sier | vals->tx.sier, 0);
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100323 }
324}
325
326/*
Markus Pargmann65c961c2014-04-28 12:54:42 +0200327 * Calculate the bits that have to be disabled for the current stream that is
328 * getting disabled. This keeps the bits enabled that are necessary for the
329 * second stream to work if 'stream_active' is true.
330 *
331 * Detailed calculation:
332 * These are the values that need to be active after disabling. For non-active
333 * second stream, this is 0:
334 * vals_stream * !!stream_active
335 *
336 * The following computes the overall differences between the setup for the
337 * to-disable stream and the active stream, a simple XOR:
338 * vals_disable ^ (vals_stream * !!(stream_active))
339 *
340 * The full expression adds a mask on all values we care about
341 */
342#define fsl_ssi_disable_val(vals_disable, vals_stream, stream_active) \
343 ((vals_disable) & \
344 ((vals_disable) ^ ((vals_stream) * (u32)!!(stream_active))))
345
346/*
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100347 * Enable/Disable a ssi configuration. You have to pass either
348 * ssi_private->rxtx_reg_val.rx or tx as vals parameter.
349 */
350static void fsl_ssi_config(struct fsl_ssi_private *ssi_private, bool enable,
351 struct fsl_ssi_reg_val *vals)
352{
Markus Pargmann43248122014-05-27 10:24:25 +0200353 struct regmap *regs = ssi_private->regs;
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100354 struct fsl_ssi_reg_val *avals;
Markus Pargmann43248122014-05-27 10:24:25 +0200355 int nr_active_streams;
356 u32 scr_val;
Markus Pargmann65c961c2014-04-28 12:54:42 +0200357 int keep_active;
358
Markus Pargmann43248122014-05-27 10:24:25 +0200359 regmap_read(regs, CCSR_SSI_SCR, &scr_val);
360
361 nr_active_streams = !!(scr_val & CCSR_SSI_SCR_TE) +
362 !!(scr_val & CCSR_SSI_SCR_RE);
363
Markus Pargmann65c961c2014-04-28 12:54:42 +0200364 if (nr_active_streams - 1 > 0)
365 keep_active = 1;
366 else
367 keep_active = 0;
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100368
369 /* Find the other direction values rx or tx which we do not want to
370 * modify */
371 if (&ssi_private->rxtx_reg_val.rx == vals)
372 avals = &ssi_private->rxtx_reg_val.tx;
373 else
374 avals = &ssi_private->rxtx_reg_val.rx;
375
376 /* If vals should be disabled, start with disabling the unit */
377 if (!enable) {
Markus Pargmann65c961c2014-04-28 12:54:42 +0200378 u32 scr = fsl_ssi_disable_val(vals->scr, avals->scr,
379 keep_active);
Markus Pargmann43248122014-05-27 10:24:25 +0200380 regmap_update_bits(regs, CCSR_SSI_SCR, scr, 0);
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100381 }
382
383 /*
384 * We are running on a SoC which does not support online SSI
385 * reconfiguration, so we have to enable all necessary flags at once
386 * even if we do not use them later (capture and playback configuration)
387 */
Sascha Hauerfcdbade2014-05-27 10:24:18 +0200388 if (ssi_private->soc->offline_config) {
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100389 if ((enable && !nr_active_streams) ||
Markus Pargmann65c961c2014-04-28 12:54:42 +0200390 (!enable && !keep_active))
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100391 fsl_ssi_rxtx_config(ssi_private, enable);
392
393 goto config_done;
394 }
395
396 /*
397 * Configure single direction units while the SSI unit is running
398 * (online configuration)
399 */
400 if (enable) {
Markus Pargmann43248122014-05-27 10:24:25 +0200401 regmap_update_bits(regs, CCSR_SSI_SIER, vals->sier, vals->sier);
402 regmap_update_bits(regs, CCSR_SSI_SRCR, vals->srcr, vals->srcr);
403 regmap_update_bits(regs, CCSR_SSI_STCR, vals->stcr, vals->stcr);
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100404 } else {
405 u32 sier;
406 u32 srcr;
407 u32 stcr;
408
409 /*
410 * Disabling the necessary flags for one of rx/tx while the
411 * other stream is active is a little bit more difficult. We
412 * have to disable only those flags that differ between both
413 * streams (rx XOR tx) and that are set in the stream that is
414 * disabled now. Otherwise we could alter flags of the other
415 * stream
416 */
417
418 /* These assignments are simply vals without bits set in avals*/
Markus Pargmann65c961c2014-04-28 12:54:42 +0200419 sier = fsl_ssi_disable_val(vals->sier, avals->sier,
420 keep_active);
421 srcr = fsl_ssi_disable_val(vals->srcr, avals->srcr,
422 keep_active);
423 stcr = fsl_ssi_disable_val(vals->stcr, avals->stcr,
424 keep_active);
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100425
Markus Pargmann43248122014-05-27 10:24:25 +0200426 regmap_update_bits(regs, CCSR_SSI_SRCR, srcr, 0);
427 regmap_update_bits(regs, CCSR_SSI_STCR, stcr, 0);
428 regmap_update_bits(regs, CCSR_SSI_SIER, sier, 0);
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100429 }
430
431config_done:
432 /* Enabling of subunits is done after configuration */
433 if (enable)
Markus Pargmann43248122014-05-27 10:24:25 +0200434 regmap_update_bits(regs, CCSR_SSI_SCR, vals->scr, vals->scr);
Markus Pargmann4e6ec0d2013-12-20 14:11:33 +0100435}
436
437
438static void fsl_ssi_rx_config(struct fsl_ssi_private *ssi_private, bool enable)
439{
440 fsl_ssi_config(ssi_private, enable, &ssi_private->rxtx_reg_val.rx);
441}
442
443static void fsl_ssi_tx_config(struct fsl_ssi_private *ssi_private, bool enable)
444{
445 fsl_ssi_config(ssi_private, enable, &ssi_private->rxtx_reg_val.tx);
446}
447
Markus Pargmann6de83872013-12-20 14:11:34 +0100448/*
449 * Setup rx/tx register values used to enable/disable the streams. These will
450 * be used later in fsl_ssi_config to setup the streams without the need to
451 * check for all different SSI modes.
452 */
453static void fsl_ssi_setup_reg_vals(struct fsl_ssi_private *ssi_private)
454{
455 struct fsl_ssi_rxtx_reg_val *reg = &ssi_private->rxtx_reg_val;
456
457 reg->rx.sier = CCSR_SSI_SIER_RFF0_EN;
458 reg->rx.srcr = CCSR_SSI_SRCR_RFEN0;
459 reg->rx.scr = 0;
460 reg->tx.sier = CCSR_SSI_SIER_TFE0_EN;
461 reg->tx.stcr = CCSR_SSI_STCR_TFEN0;
462 reg->tx.scr = 0;
463
Markus Pargmann171d6832014-04-28 12:54:48 +0200464 if (!fsl_ssi_is_ac97(ssi_private)) {
Markus Pargmann6de83872013-12-20 14:11:34 +0100465 reg->rx.scr = CCSR_SSI_SCR_SSIEN | CCSR_SSI_SCR_RE;
466 reg->rx.sier |= CCSR_SSI_SIER_RFF0_EN;
467 reg->tx.scr = CCSR_SSI_SCR_SSIEN | CCSR_SSI_SCR_TE;
468 reg->tx.sier |= CCSR_SSI_SIER_TFE0_EN;
469 }
470
471 if (ssi_private->use_dma) {
472 reg->rx.sier |= CCSR_SSI_SIER_RDMAE;
473 reg->tx.sier |= CCSR_SSI_SIER_TDMAE;
474 } else {
475 reg->rx.sier |= CCSR_SSI_SIER_RIE;
476 reg->tx.sier |= CCSR_SSI_SIER_TIE;
477 }
478
479 reg->rx.sier |= FSLSSI_SIER_DBG_RX_FLAGS;
480 reg->tx.sier |= FSLSSI_SIER_DBG_TX_FLAGS;
481}
482
Markus Pargmannd8764642013-11-20 10:04:15 +0100483static void fsl_ssi_setup_ac97(struct fsl_ssi_private *ssi_private)
484{
Markus Pargmann43248122014-05-27 10:24:25 +0200485 struct regmap *regs = ssi_private->regs;
Markus Pargmannd8764642013-11-20 10:04:15 +0100486
487 /*
488 * Setup the clock control register
489 */
Markus Pargmann43248122014-05-27 10:24:25 +0200490 regmap_write(regs, CCSR_SSI_STCCR,
491 CCSR_SSI_SxCCR_WL(17) | CCSR_SSI_SxCCR_DC(13));
492 regmap_write(regs, CCSR_SSI_SRCCR,
493 CCSR_SSI_SxCCR_WL(17) | CCSR_SSI_SxCCR_DC(13));
Markus Pargmannd8764642013-11-20 10:04:15 +0100494
495 /*
496 * Enable AC97 mode and startup the SSI
497 */
Markus Pargmann43248122014-05-27 10:24:25 +0200498 regmap_write(regs, CCSR_SSI_SACNT,
499 CCSR_SSI_SACNT_AC97EN | CCSR_SSI_SACNT_FV);
500 regmap_write(regs, CCSR_SSI_SACCDIS, 0xff);
501 regmap_write(regs, CCSR_SSI_SACCEN, 0x300);
Markus Pargmannd8764642013-11-20 10:04:15 +0100502
503 /*
504 * Enable SSI, Transmit and Receive. AC97 has to communicate with the
505 * codec before a stream is started.
506 */
Markus Pargmann43248122014-05-27 10:24:25 +0200507 regmap_update_bits(regs, CCSR_SSI_SCR,
508 CCSR_SSI_SCR_SSIEN | CCSR_SSI_SCR_TE | CCSR_SSI_SCR_RE,
509 CCSR_SSI_SCR_SSIEN | CCSR_SSI_SCR_TE | CCSR_SSI_SCR_RE);
Markus Pargmannd8764642013-11-20 10:04:15 +0100510
Markus Pargmann43248122014-05-27 10:24:25 +0200511 regmap_write(regs, CCSR_SSI_SOR, CCSR_SSI_SOR_WAIT(3));
Markus Pargmannd8764642013-11-20 10:04:15 +0100512}
513
Timur Tabi17467f22008-01-11 18:15:26 +0100514/**
515 * fsl_ssi_startup: create a new substream
516 *
517 * This is the first function called when a stream is opened.
518 *
519 * If this is the first stream open, then grab the IRQ and program most of
520 * the SSI registers.
521 */
Mark Browndee89c42008-11-18 22:11:38 +0000522static int fsl_ssi_startup(struct snd_pcm_substream *substream,
523 struct snd_soc_dai *dai)
Timur Tabi17467f22008-01-11 18:15:26 +0100524{
525 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Timur Tabi5e538ec2011-09-13 12:59:37 -0500526 struct fsl_ssi_private *ssi_private =
527 snd_soc_dai_get_drvdata(rtd->cpu_dai);
Timur Tabi17467f22008-01-11 18:15:26 +0100528
Nicolin Chen0da9e552013-11-13 22:55:26 +0800529 /* When using dual fifo mode, it is safer to ensure an even period
530 * size. If appearing to an odd number while DMA always starts its
531 * task from fifo0, fifo1 would be neglected at the end of each
532 * period. But SSI would still access fifo1 with an invalid data.
533 */
534 if (ssi_private->use_dual_fifo)
535 snd_pcm_hw_constraint_step(substream->runtime, 0,
536 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, 2);
537
Timur Tabi17467f22008-01-11 18:15:26 +0100538 return 0;
539}
540
541/**
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200542 * fsl_ssi_set_bclk - configure Digital Audio Interface bit clock
Sascha Haueree9daad2014-04-28 12:54:52 +0200543 *
544 * Note: This function can be only called when using SSI as DAI master
545 *
546 * Quick instruction for parameters:
547 * freq: Output BCLK frequency = samplerate * 32 (fixed) * channels
548 * dir: SND_SOC_CLOCK_OUT -> TxBCLK, SND_SOC_CLOCK_IN -> RxBCLK.
549 */
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200550static int fsl_ssi_set_bclk(struct snd_pcm_substream *substream,
551 struct snd_soc_dai *cpu_dai,
552 struct snd_pcm_hw_params *hw_params)
Sascha Haueree9daad2014-04-28 12:54:52 +0200553{
554 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
Markus Pargmann43248122014-05-27 10:24:25 +0200555 struct regmap *regs = ssi_private->regs;
Sascha Haueree9daad2014-04-28 12:54:52 +0200556 int synchronous = ssi_private->cpu_dai_drv.symmetric_rates, ret;
557 u32 pm = 999, div2, psr, stccr, mask, afreq, factor, i;
Sascha Hauerd8ced472014-05-27 10:24:21 +0200558 unsigned long clkrate, baudrate, tmprate;
Sascha Haueree9daad2014-04-28 12:54:52 +0200559 u64 sub, savesub = 100000;
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200560 unsigned int freq;
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200561 bool baudclk_is_used;
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200562
563 /* Prefer the explicitly set bitclock frequency */
564 if (ssi_private->bitclk_freq)
565 freq = ssi_private->bitclk_freq;
566 else
567 freq = params_channels(hw_params) * 32 * params_rate(hw_params);
Sascha Haueree9daad2014-04-28 12:54:52 +0200568
569 /* Don't apply it to any non-baudclk circumstance */
570 if (IS_ERR(ssi_private->baudclk))
571 return -EINVAL;
572
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200573 baudclk_is_used = ssi_private->baudclk_streams & ~(BIT(substream->stream));
574
Sascha Haueree9daad2014-04-28 12:54:52 +0200575 /* It should be already enough to divide clock by setting pm alone */
576 psr = 0;
577 div2 = 0;
578
579 factor = (div2 + 1) * (7 * psr + 1) * 2;
580
581 for (i = 0; i < 255; i++) {
582 /* The bclk rate must be smaller than 1/5 sysclk rate */
583 if (factor * (i + 1) < 5)
584 continue;
585
586 tmprate = freq * factor * (i + 2);
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200587
588 if (baudclk_is_used)
589 clkrate = clk_get_rate(ssi_private->baudclk);
590 else
591 clkrate = clk_round_rate(ssi_private->baudclk, tmprate);
Sascha Haueree9daad2014-04-28 12:54:52 +0200592
Timur Tabiacf2c602014-06-13 07:42:40 -0500593 clkrate /= factor;
594 afreq = clkrate / (i + 1);
Sascha Haueree9daad2014-04-28 12:54:52 +0200595
596 if (freq == afreq)
597 sub = 0;
598 else if (freq / afreq == 1)
599 sub = freq - afreq;
600 else if (afreq / freq == 1)
601 sub = afreq - freq;
602 else
603 continue;
604
605 /* Calculate the fraction */
606 sub *= 100000;
607 do_div(sub, freq);
608
609 if (sub < savesub) {
610 baudrate = tmprate;
611 savesub = sub;
612 pm = i;
613 }
614
615 /* We are lucky */
616 if (savesub == 0)
617 break;
618 }
619
620 /* No proper pm found if it is still remaining the initial value */
621 if (pm == 999) {
622 dev_err(cpu_dai->dev, "failed to handle the required sysclk\n");
623 return -EINVAL;
624 }
625
626 stccr = CCSR_SSI_SxCCR_PM(pm + 1) | (div2 ? CCSR_SSI_SxCCR_DIV2 : 0) |
627 (psr ? CCSR_SSI_SxCCR_PSR : 0);
628 mask = CCSR_SSI_SxCCR_PM_MASK | CCSR_SSI_SxCCR_DIV2 |
629 CCSR_SSI_SxCCR_PSR;
630
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200631 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK || synchronous)
Markus Pargmann43248122014-05-27 10:24:25 +0200632 regmap_update_bits(regs, CCSR_SSI_STCCR, mask, stccr);
Sascha Haueree9daad2014-04-28 12:54:52 +0200633 else
Markus Pargmann43248122014-05-27 10:24:25 +0200634 regmap_update_bits(regs, CCSR_SSI_SRCCR, mask, stccr);
Sascha Haueree9daad2014-04-28 12:54:52 +0200635
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200636 if (!baudclk_is_used) {
Sascha Haueree9daad2014-04-28 12:54:52 +0200637 ret = clk_set_rate(ssi_private->baudclk, baudrate);
638 if (ret) {
Sascha Haueree9daad2014-04-28 12:54:52 +0200639 dev_err(cpu_dai->dev, "failed to set baudclk rate\n");
640 return -EINVAL;
641 }
Sascha Haueree9daad2014-04-28 12:54:52 +0200642 }
Sascha Haueree9daad2014-04-28 12:54:52 +0200643
644 return 0;
645}
646
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200647static int fsl_ssi_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
648 int clk_id, unsigned int freq, int dir)
649{
650 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
651
652 ssi_private->bitclk_freq = freq;
653
654 return 0;
655}
656
Sascha Haueree9daad2014-04-28 12:54:52 +0200657/**
Timur Tabi85ef2372009-02-05 17:56:02 -0600658 * fsl_ssi_hw_params - program the sample size
Timur Tabi17467f22008-01-11 18:15:26 +0100659 *
660 * Most of the SSI registers have been programmed in the startup function,
661 * but the word length must be programmed here. Unfortunately, programming
662 * the SxCCR.WL bits requires the SSI to be temporarily disabled. This can
663 * cause a problem with supporting simultaneous playback and capture. If
664 * the SSI is already playing a stream, then that stream may be temporarily
665 * stopped when you start capture.
666 *
667 * Note: The SxCCR.DC and SxCCR.PM bits are only used if the SSI is the
668 * clock master.
669 */
Timur Tabi85ef2372009-02-05 17:56:02 -0600670static int fsl_ssi_hw_params(struct snd_pcm_substream *substream,
671 struct snd_pcm_hw_params *hw_params, struct snd_soc_dai *cpu_dai)
Timur Tabi17467f22008-01-11 18:15:26 +0100672{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000673 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
Markus Pargmann43248122014-05-27 10:24:25 +0200674 struct regmap *regs = ssi_private->regs;
Nicolin Chen2924a992013-12-02 23:29:03 +0800675 unsigned int channels = params_channels(hw_params);
Timur Tabi5e538ec2011-09-13 12:59:37 -0500676 unsigned int sample_size =
677 snd_pcm_format_width(params_format(hw_params));
678 u32 wl = CCSR_SSI_SxCCR_WL(sample_size);
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200679 int ret;
Markus Pargmann43248122014-05-27 10:24:25 +0200680 u32 scr_val;
681 int enabled;
682
683 regmap_read(regs, CCSR_SSI_SCR, &scr_val);
684 enabled = scr_val & CCSR_SSI_SCR_SSIEN;
Timur Tabi17467f22008-01-11 18:15:26 +0100685
Timur Tabi5e538ec2011-09-13 12:59:37 -0500686 /*
687 * If we're in synchronous mode, and the SSI is already enabled,
688 * then STCCR is already set properly.
689 */
690 if (enabled && ssi_private->cpu_dai_drv.symmetric_rates)
691 return 0;
Timur Tabi17467f22008-01-11 18:15:26 +0100692
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200693 if (fsl_ssi_is_i2s_master(ssi_private)) {
694 ret = fsl_ssi_set_bclk(substream, cpu_dai, hw_params);
695 if (ret)
696 return ret;
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200697
698 /* Do not enable the clock if it is already enabled */
699 if (!(ssi_private->baudclk_streams & BIT(substream->stream))) {
700 ret = clk_prepare_enable(ssi_private->baudclk);
701 if (ret)
702 return ret;
703
704 ssi_private->baudclk_streams |= BIT(substream->stream);
705 }
Sascha Hauer8dd51e22014-05-27 10:24:20 +0200706 }
707
Timur Tabi5e538ec2011-09-13 12:59:37 -0500708 /*
709 * FIXME: The documentation says that SxCCR[WL] should not be
710 * modified while the SSI is enabled. The only time this can
711 * happen is if we're trying to do simultaneous playback and
712 * capture in asynchronous mode. Unfortunately, I have been enable
713 * to get that to work at all on the P1022DS. Therefore, we don't
714 * bother to disable/enable the SSI when setting SxCCR[WL], because
715 * the SSI will stop anyway. Maybe one day, this will get fixed.
716 */
Timur Tabi17467f22008-01-11 18:15:26 +0100717
Timur Tabi5e538ec2011-09-13 12:59:37 -0500718 /* In synchronous mode, the SSI uses STCCR for capture */
719 if ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ||
720 ssi_private->cpu_dai_drv.symmetric_rates)
Markus Pargmann43248122014-05-27 10:24:25 +0200721 regmap_update_bits(regs, CCSR_SSI_STCCR, CCSR_SSI_SxCCR_WL_MASK,
722 wl);
Timur Tabi5e538ec2011-09-13 12:59:37 -0500723 else
Markus Pargmann43248122014-05-27 10:24:25 +0200724 regmap_update_bits(regs, CCSR_SSI_SRCCR, CCSR_SSI_SxCCR_WL_MASK,
725 wl);
Timur Tabi17467f22008-01-11 18:15:26 +0100726
Markus Pargmann171d6832014-04-28 12:54:48 +0200727 if (!fsl_ssi_is_ac97(ssi_private))
Markus Pargmann43248122014-05-27 10:24:25 +0200728 regmap_update_bits(regs, CCSR_SSI_SCR,
Nicolin Chen2924a992013-12-02 23:29:03 +0800729 CCSR_SSI_SCR_NET | CCSR_SSI_SCR_I2S_MODE_MASK,
730 channels == 1 ? 0 : ssi_private->i2s_mode);
731
Timur Tabi17467f22008-01-11 18:15:26 +0100732 return 0;
733}
734
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200735static int fsl_ssi_hw_free(struct snd_pcm_substream *substream,
736 struct snd_soc_dai *cpu_dai)
737{
738 struct snd_soc_pcm_runtime *rtd = substream->private_data;
739 struct fsl_ssi_private *ssi_private =
740 snd_soc_dai_get_drvdata(rtd->cpu_dai);
741
742 if (fsl_ssi_is_i2s_master(ssi_private) &&
743 ssi_private->baudclk_streams & BIT(substream->stream)) {
744 clk_disable_unprepare(ssi_private->baudclk);
745 ssi_private->baudclk_streams &= ~BIT(substream->stream);
746 }
747
748 return 0;
749}
750
Michael Trimarchi85151462014-09-18 20:38:09 +0200751static int _fsl_ssi_set_dai_fmt(struct device *dev,
752 struct fsl_ssi_private *ssi_private,
753 unsigned int fmt)
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800754{
Markus Pargmann43248122014-05-27 10:24:25 +0200755 struct regmap *regs = ssi_private->regs;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800756 u32 strcr = 0, stcr, srcr, scr, mask;
Markus Pargmann2b0db992014-03-15 13:44:09 +0100757 u8 wm;
758
Markus Pargmann171d6832014-04-28 12:54:48 +0200759 ssi_private->dai_fmt = fmt;
760
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200761 if (fsl_ssi_is_i2s_master(ssi_private) && IS_ERR(ssi_private->baudclk)) {
Michael Trimarchi85151462014-09-18 20:38:09 +0200762 dev_err(dev, "baudclk is missing which is necessary for master mode\n");
Markus Pargmannd429d8e2014-05-27 10:24:23 +0200763 return -EINVAL;
764 }
765
Markus Pargmann2b0db992014-03-15 13:44:09 +0100766 fsl_ssi_setup_reg_vals(ssi_private);
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800767
Markus Pargmann43248122014-05-27 10:24:25 +0200768 regmap_read(regs, CCSR_SSI_SCR, &scr);
769 scr &= ~(CCSR_SSI_SCR_SYN | CCSR_SSI_SCR_I2S_MODE_MASK);
Markus Pargmann50489472014-04-28 12:54:51 +0200770 scr |= CCSR_SSI_SCR_SYNC_TX_FS;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800771
772 mask = CCSR_SSI_STCR_TXBIT0 | CCSR_SSI_STCR_TFDIR | CCSR_SSI_STCR_TXDIR |
773 CCSR_SSI_STCR_TSCKP | CCSR_SSI_STCR_TFSI | CCSR_SSI_STCR_TFSL |
774 CCSR_SSI_STCR_TEFS;
Markus Pargmann43248122014-05-27 10:24:25 +0200775 regmap_read(regs, CCSR_SSI_STCR, &stcr);
776 regmap_read(regs, CCSR_SSI_SRCR, &srcr);
777 stcr &= ~mask;
778 srcr &= ~mask;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800779
Markus Pargmann07a28db2014-03-15 13:44:10 +0100780 ssi_private->i2s_mode = CCSR_SSI_SCR_NET;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800781 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
782 case SND_SOC_DAIFMT_I2S:
783 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
784 case SND_SOC_DAIFMT_CBS_CFS:
Markus Pargmann07a28db2014-03-15 13:44:10 +0100785 ssi_private->i2s_mode |= CCSR_SSI_SCR_I2S_MODE_MASTER;
Markus Pargmann43248122014-05-27 10:24:25 +0200786 regmap_update_bits(regs, CCSR_SSI_STCCR,
787 CCSR_SSI_SxCCR_DC_MASK,
788 CCSR_SSI_SxCCR_DC(2));
789 regmap_update_bits(regs, CCSR_SSI_SRCCR,
790 CCSR_SSI_SxCCR_DC_MASK,
791 CCSR_SSI_SxCCR_DC(2));
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800792 break;
793 case SND_SOC_DAIFMT_CBM_CFM:
Markus Pargmann07a28db2014-03-15 13:44:10 +0100794 ssi_private->i2s_mode |= CCSR_SSI_SCR_I2S_MODE_SLAVE;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800795 break;
796 default:
797 return -EINVAL;
798 }
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800799
800 /* Data on rising edge of bclk, frame low, 1clk before data */
801 strcr |= CCSR_SSI_STCR_TFSI | CCSR_SSI_STCR_TSCKP |
802 CCSR_SSI_STCR_TXBIT0 | CCSR_SSI_STCR_TEFS;
803 break;
804 case SND_SOC_DAIFMT_LEFT_J:
805 /* Data on rising edge of bclk, frame high */
806 strcr |= CCSR_SSI_STCR_TXBIT0 | CCSR_SSI_STCR_TSCKP;
807 break;
808 case SND_SOC_DAIFMT_DSP_A:
809 /* Data on rising edge of bclk, frame high, 1clk before data */
810 strcr |= CCSR_SSI_STCR_TFSL | CCSR_SSI_STCR_TSCKP |
811 CCSR_SSI_STCR_TXBIT0 | CCSR_SSI_STCR_TEFS;
812 break;
813 case SND_SOC_DAIFMT_DSP_B:
814 /* Data on rising edge of bclk, frame high */
815 strcr |= CCSR_SSI_STCR_TFSL | CCSR_SSI_STCR_TSCKP |
816 CCSR_SSI_STCR_TXBIT0;
817 break;
Markus Pargmann2b0db992014-03-15 13:44:09 +0100818 case SND_SOC_DAIFMT_AC97:
Markus Pargmann07a28db2014-03-15 13:44:10 +0100819 ssi_private->i2s_mode |= CCSR_SSI_SCR_I2S_MODE_NORMAL;
Markus Pargmann2b0db992014-03-15 13:44:09 +0100820 break;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800821 default:
822 return -EINVAL;
823 }
Markus Pargmann2b0db992014-03-15 13:44:09 +0100824 scr |= ssi_private->i2s_mode;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800825
826 /* DAI clock inversion */
827 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
828 case SND_SOC_DAIFMT_NB_NF:
829 /* Nothing to do for both normal cases */
830 break;
831 case SND_SOC_DAIFMT_IB_NF:
832 /* Invert bit clock */
833 strcr ^= CCSR_SSI_STCR_TSCKP;
834 break;
835 case SND_SOC_DAIFMT_NB_IF:
836 /* Invert frame clock */
837 strcr ^= CCSR_SSI_STCR_TFSI;
838 break;
839 case SND_SOC_DAIFMT_IB_IF:
840 /* Invert both clocks */
841 strcr ^= CCSR_SSI_STCR_TSCKP;
842 strcr ^= CCSR_SSI_STCR_TFSI;
843 break;
844 default:
845 return -EINVAL;
846 }
847
848 /* DAI clock master masks */
849 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
850 case SND_SOC_DAIFMT_CBS_CFS:
851 strcr |= CCSR_SSI_STCR_TFDIR | CCSR_SSI_STCR_TXDIR;
852 scr |= CCSR_SSI_SCR_SYS_CLK_EN;
853 break;
854 case SND_SOC_DAIFMT_CBM_CFM:
855 scr &= ~CCSR_SSI_SCR_SYS_CLK_EN;
856 break;
857 default:
858 return -EINVAL;
859 }
860
861 stcr |= strcr;
862 srcr |= strcr;
863
864 if (ssi_private->cpu_dai_drv.symmetric_rates) {
865 /* Need to clear RXDIR when using SYNC mode */
866 srcr &= ~CCSR_SSI_SRCR_RXDIR;
867 scr |= CCSR_SSI_SCR_SYN;
868 }
869
Markus Pargmann43248122014-05-27 10:24:25 +0200870 regmap_write(regs, CCSR_SSI_STCR, stcr);
871 regmap_write(regs, CCSR_SSI_SRCR, srcr);
872 regmap_write(regs, CCSR_SSI_SCR, scr);
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800873
Markus Pargmann2b0db992014-03-15 13:44:09 +0100874 /*
875 * Set the watermark for transmit FIFI 0 and receive FIFO 0. We don't
876 * use FIFO 1. We program the transmit water to signal a DMA transfer
877 * if there are only two (or fewer) elements left in the FIFO. Two
878 * elements equals one frame (left channel, right channel). This value,
879 * however, depends on the depth of the transmit buffer.
880 *
881 * We set the watermark on the same level as the DMA burstsize. For
882 * fiq it is probably better to use the biggest possible watermark
883 * size.
884 */
885 if (ssi_private->use_dma)
886 wm = ssi_private->fifo_depth - 2;
887 else
888 wm = ssi_private->fifo_depth;
889
Markus Pargmann43248122014-05-27 10:24:25 +0200890 regmap_write(regs, CCSR_SSI_SFCSR,
891 CCSR_SSI_SFCSR_TFWM0(wm) | CCSR_SSI_SFCSR_RFWM0(wm) |
892 CCSR_SSI_SFCSR_TFWM1(wm) | CCSR_SSI_SFCSR_RFWM1(wm));
Markus Pargmann2b0db992014-03-15 13:44:09 +0100893
894 if (ssi_private->use_dual_fifo) {
Markus Pargmann43248122014-05-27 10:24:25 +0200895 regmap_update_bits(regs, CCSR_SSI_SRCR, CCSR_SSI_SRCR_RFEN1,
Markus Pargmann2b0db992014-03-15 13:44:09 +0100896 CCSR_SSI_SRCR_RFEN1);
Markus Pargmann43248122014-05-27 10:24:25 +0200897 regmap_update_bits(regs, CCSR_SSI_STCR, CCSR_SSI_STCR_TFEN1,
Markus Pargmann2b0db992014-03-15 13:44:09 +0100898 CCSR_SSI_STCR_TFEN1);
Markus Pargmann43248122014-05-27 10:24:25 +0200899 regmap_update_bits(regs, CCSR_SSI_SCR, CCSR_SSI_SCR_TCH_EN,
Markus Pargmann2b0db992014-03-15 13:44:09 +0100900 CCSR_SSI_SCR_TCH_EN);
901 }
902
903 if (fmt & SND_SOC_DAIFMT_AC97)
904 fsl_ssi_setup_ac97(ssi_private);
905
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800906 return 0;
Markus Pargmann85e59af2014-05-27 10:24:19 +0200907
908}
909
910/**
911 * fsl_ssi_set_dai_fmt - configure Digital Audio Interface Format.
912 */
913static int fsl_ssi_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
914{
915 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
916
Michael Trimarchi85151462014-09-18 20:38:09 +0200917 return _fsl_ssi_set_dai_fmt(cpu_dai->dev, ssi_private, fmt);
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800918}
919
920/**
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800921 * fsl_ssi_set_dai_tdm_slot - set TDM slot number
922 *
923 * Note: This function can be only called when using SSI as DAI master
924 */
925static int fsl_ssi_set_dai_tdm_slot(struct snd_soc_dai *cpu_dai, u32 tx_mask,
926 u32 rx_mask, int slots, int slot_width)
927{
928 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai);
Markus Pargmann43248122014-05-27 10:24:25 +0200929 struct regmap *regs = ssi_private->regs;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800930 u32 val;
931
932 /* The slot number should be >= 2 if using Network mode or I2S mode */
Markus Pargmann43248122014-05-27 10:24:25 +0200933 regmap_read(regs, CCSR_SSI_SCR, &val);
934 val &= CCSR_SSI_SCR_I2S_MODE_MASK | CCSR_SSI_SCR_NET;
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800935 if (val && slots < 2) {
936 dev_err(cpu_dai->dev, "slot number should be >= 2 in I2S or NET\n");
937 return -EINVAL;
938 }
939
Markus Pargmann43248122014-05-27 10:24:25 +0200940 regmap_update_bits(regs, CCSR_SSI_STCCR, CCSR_SSI_SxCCR_DC_MASK,
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800941 CCSR_SSI_SxCCR_DC(slots));
Markus Pargmann43248122014-05-27 10:24:25 +0200942 regmap_update_bits(regs, CCSR_SSI_SRCCR, CCSR_SSI_SxCCR_DC_MASK,
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800943 CCSR_SSI_SxCCR_DC(slots));
944
945 /* The register SxMSKs needs SSI to provide essential clock due to
946 * hardware design. So we here temporarily enable SSI to set them.
947 */
Markus Pargmann43248122014-05-27 10:24:25 +0200948 regmap_read(regs, CCSR_SSI_SCR, &val);
949 val &= CCSR_SSI_SCR_SSIEN;
950 regmap_update_bits(regs, CCSR_SSI_SCR, CCSR_SSI_SCR_SSIEN,
951 CCSR_SSI_SCR_SSIEN);
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800952
Markus Pargmann43248122014-05-27 10:24:25 +0200953 regmap_write(regs, CCSR_SSI_STMSK, tx_mask);
954 regmap_write(regs, CCSR_SSI_SRMSK, rx_mask);
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800955
Markus Pargmann43248122014-05-27 10:24:25 +0200956 regmap_update_bits(regs, CCSR_SSI_SCR, CCSR_SSI_SCR_SSIEN, val);
Nicolin Chenaafa85e2013-12-12 18:44:45 +0800957
958 return 0;
959}
960
961/**
Timur Tabi17467f22008-01-11 18:15:26 +0100962 * fsl_ssi_trigger: start and stop the DMA transfer.
963 *
964 * This function is called by ALSA to start, stop, pause, and resume the DMA
965 * transfer of data.
966 *
967 * The DMA channel is in external master start and pause mode, which
968 * means the SSI completely controls the flow of data.
969 */
Mark Browndee89c42008-11-18 22:11:38 +0000970static int fsl_ssi_trigger(struct snd_pcm_substream *substream, int cmd,
971 struct snd_soc_dai *dai)
Timur Tabi17467f22008-01-11 18:15:26 +0100972{
973 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000974 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(rtd->cpu_dai);
Markus Pargmann43248122014-05-27 10:24:25 +0200975 struct regmap *regs = ssi_private->regs;
Michael Grzeschik9b443e32013-08-19 17:06:00 +0200976
Timur Tabi17467f22008-01-11 18:15:26 +0100977 switch (cmd) {
978 case SNDRV_PCM_TRIGGER_START:
Fabio Estevamb20e53a2014-05-23 02:38:56 -0300979 case SNDRV_PCM_TRIGGER_RESUME:
Timur Tabi17467f22008-01-11 18:15:26 +0100980 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Timur Tabia4d11fe2009-03-25 18:20:37 -0500981 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Markus Pargmann6de83872013-12-20 14:11:34 +0100982 fsl_ssi_tx_config(ssi_private, true);
Timur Tabia4d11fe2009-03-25 18:20:37 -0500983 else
Markus Pargmann6de83872013-12-20 14:11:34 +0100984 fsl_ssi_rx_config(ssi_private, true);
Timur Tabi17467f22008-01-11 18:15:26 +0100985 break;
986
987 case SNDRV_PCM_TRIGGER_STOP:
Fabio Estevamb20e53a2014-05-23 02:38:56 -0300988 case SNDRV_PCM_TRIGGER_SUSPEND:
Timur Tabi17467f22008-01-11 18:15:26 +0100989 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
990 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Markus Pargmann6de83872013-12-20 14:11:34 +0100991 fsl_ssi_tx_config(ssi_private, false);
Timur Tabi17467f22008-01-11 18:15:26 +0100992 else
Markus Pargmann6de83872013-12-20 14:11:34 +0100993 fsl_ssi_rx_config(ssi_private, false);
Timur Tabi17467f22008-01-11 18:15:26 +0100994 break;
995
996 default:
997 return -EINVAL;
998 }
999
Markus Pargmann171d6832014-04-28 12:54:48 +02001000 if (fsl_ssi_is_ac97(ssi_private)) {
Markus Pargmanna5a7ee72013-12-20 14:11:35 +01001001 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Markus Pargmann43248122014-05-27 10:24:25 +02001002 regmap_write(regs, CCSR_SSI_SOR, CCSR_SSI_SOR_TX_CLR);
Markus Pargmanna5a7ee72013-12-20 14:11:35 +01001003 else
Markus Pargmann43248122014-05-27 10:24:25 +02001004 regmap_write(regs, CCSR_SSI_SOR, CCSR_SSI_SOR_RX_CLR);
Markus Pargmanna5a7ee72013-12-20 14:11:35 +01001005 }
Michael Grzeschik9b443e32013-08-19 17:06:00 +02001006
Timur Tabi17467f22008-01-11 18:15:26 +01001007 return 0;
1008}
1009
Lars-Peter Clausenfc8ba7f2013-04-15 19:19:58 +02001010static int fsl_ssi_dai_probe(struct snd_soc_dai *dai)
1011{
1012 struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(dai);
1013
Sascha Hauerfcdbade2014-05-27 10:24:18 +02001014 if (ssi_private->soc->imx && ssi_private->use_dma) {
Lars-Peter Clausenfc8ba7f2013-04-15 19:19:58 +02001015 dai->playback_dma_data = &ssi_private->dma_params_tx;
1016 dai->capture_dma_data = &ssi_private->dma_params_rx;
1017 }
1018
1019 return 0;
1020}
1021
Lars-Peter Clausen85e76522011-11-23 11:40:40 +01001022static const struct snd_soc_dai_ops fsl_ssi_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +08001023 .startup = fsl_ssi_startup,
1024 .hw_params = fsl_ssi_hw_params,
Markus Pargmannd429d8e2014-05-27 10:24:23 +02001025 .hw_free = fsl_ssi_hw_free,
Nicolin Chenaafa85e2013-12-12 18:44:45 +08001026 .set_fmt = fsl_ssi_set_dai_fmt,
1027 .set_sysclk = fsl_ssi_set_dai_sysclk,
1028 .set_tdm_slot = fsl_ssi_set_dai_tdm_slot,
Eric Miao6335d052009-03-03 09:41:00 +08001029 .trigger = fsl_ssi_trigger,
Eric Miao6335d052009-03-03 09:41:00 +08001030};
1031
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001032/* Template for the CPU dai driver structure */
1033static struct snd_soc_dai_driver fsl_ssi_dai_template = {
Lars-Peter Clausenfc8ba7f2013-04-15 19:19:58 +02001034 .probe = fsl_ssi_dai_probe,
Timur Tabi17467f22008-01-11 18:15:26 +01001035 .playback = {
Nicolin Chene3655002014-07-30 11:10:29 +08001036 .stream_name = "CPU-Playback",
Nicolin Chen2924a992013-12-02 23:29:03 +08001037 .channels_min = 1,
Timur Tabi17467f22008-01-11 18:15:26 +01001038 .channels_max = 2,
1039 .rates = FSLSSI_I2S_RATES,
1040 .formats = FSLSSI_I2S_FORMATS,
1041 },
1042 .capture = {
Nicolin Chene3655002014-07-30 11:10:29 +08001043 .stream_name = "CPU-Capture",
Nicolin Chen2924a992013-12-02 23:29:03 +08001044 .channels_min = 1,
Timur Tabi17467f22008-01-11 18:15:26 +01001045 .channels_max = 2,
1046 .rates = FSLSSI_I2S_RATES,
1047 .formats = FSLSSI_I2S_FORMATS,
1048 },
Eric Miao6335d052009-03-03 09:41:00 +08001049 .ops = &fsl_ssi_dai_ops,
Timur Tabi17467f22008-01-11 18:15:26 +01001050};
1051
Kuninori Morimoto3580aa12013-03-21 03:32:04 -07001052static const struct snd_soc_component_driver fsl_ssi_component = {
1053 .name = "fsl-ssi",
1054};
1055
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001056static struct snd_soc_dai_driver fsl_ssi_ac97_dai = {
1057 .ac97_control = 1,
1058 .playback = {
1059 .stream_name = "AC97 Playback",
1060 .channels_min = 2,
1061 .channels_max = 2,
1062 .rates = SNDRV_PCM_RATE_8000_48000,
1063 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1064 },
1065 .capture = {
1066 .stream_name = "AC97 Capture",
1067 .channels_min = 2,
1068 .channels_max = 2,
1069 .rates = SNDRV_PCM_RATE_48000,
1070 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1071 },
Markus Pargmanna5a7ee72013-12-20 14:11:35 +01001072 .ops = &fsl_ssi_dai_ops,
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001073};
1074
1075
1076static struct fsl_ssi_private *fsl_ac97_data;
1077
Sachin Kamata851a2b2013-09-13 15:22:17 +05301078static void fsl_ssi_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001079 unsigned short val)
1080{
Markus Pargmann43248122014-05-27 10:24:25 +02001081 struct regmap *regs = fsl_ac97_data->regs;
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001082 unsigned int lreg;
1083 unsigned int lval;
1084
1085 if (reg > 0x7f)
1086 return;
1087
1088
1089 lreg = reg << 12;
Markus Pargmann43248122014-05-27 10:24:25 +02001090 regmap_write(regs, CCSR_SSI_SACADD, lreg);
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001091
1092 lval = val << 4;
Markus Pargmann43248122014-05-27 10:24:25 +02001093 regmap_write(regs, CCSR_SSI_SACDAT, lval);
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001094
Markus Pargmann43248122014-05-27 10:24:25 +02001095 regmap_update_bits(regs, CCSR_SSI_SACNT, CCSR_SSI_SACNT_RDWR_MASK,
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001096 CCSR_SSI_SACNT_WR);
1097 udelay(100);
1098}
1099
Sachin Kamata851a2b2013-09-13 15:22:17 +05301100static unsigned short fsl_ssi_ac97_read(struct snd_ac97 *ac97,
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001101 unsigned short reg)
1102{
Markus Pargmann43248122014-05-27 10:24:25 +02001103 struct regmap *regs = fsl_ac97_data->regs;
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001104
1105 unsigned short val = -1;
Markus Pargmann43248122014-05-27 10:24:25 +02001106 u32 reg_val;
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001107 unsigned int lreg;
1108
1109 lreg = (reg & 0x7f) << 12;
Markus Pargmann43248122014-05-27 10:24:25 +02001110 regmap_write(regs, CCSR_SSI_SACADD, lreg);
1111 regmap_update_bits(regs, CCSR_SSI_SACNT, CCSR_SSI_SACNT_RDWR_MASK,
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001112 CCSR_SSI_SACNT_RD);
1113
1114 udelay(100);
1115
Markus Pargmann43248122014-05-27 10:24:25 +02001116 regmap_read(regs, CCSR_SSI_SACDAT, &reg_val);
1117 val = (reg_val >> 4) & 0xffff;
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001118
1119 return val;
1120}
1121
1122static struct snd_ac97_bus_ops fsl_ssi_ac97_ops = {
1123 .read = fsl_ssi_ac97_read,
1124 .write = fsl_ssi_ac97_write,
1125};
1126
Timur Tabi17467f22008-01-11 18:15:26 +01001127/**
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001128 * Make every character in a string lower-case
Timur Tabi17467f22008-01-11 18:15:26 +01001129 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001130static void make_lowercase(char *s)
Timur Tabi17467f22008-01-11 18:15:26 +01001131{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001132 char *p = s;
1133 char c;
1134
1135 while ((c = *p)) {
1136 if ((c >= 'A') && (c <= 'Z'))
1137 *p = c + ('a' - 'A');
1138 p++;
1139 }
1140}
1141
Markus Pargmann49da09e2014-04-28 12:54:45 +02001142static int fsl_ssi_imx_probe(struct platform_device *pdev,
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001143 struct fsl_ssi_private *ssi_private, void __iomem *iomem)
Markus Pargmann49da09e2014-04-28 12:54:45 +02001144{
1145 struct device_node *np = pdev->dev.of_node;
Markus Pargmanned0f16042014-04-28 12:54:46 +02001146 u32 dmas[4];
Markus Pargmann49da09e2014-04-28 12:54:45 +02001147 int ret;
1148
1149 ssi_private->clk = devm_clk_get(&pdev->dev, NULL);
1150 if (IS_ERR(ssi_private->clk)) {
1151 ret = PTR_ERR(ssi_private->clk);
1152 dev_err(&pdev->dev, "could not get clock: %d\n", ret);
1153 return ret;
1154 }
1155
1156 ret = clk_prepare_enable(ssi_private->clk);
1157 if (ret) {
1158 dev_err(&pdev->dev, "clk_prepare_enable failed: %d\n", ret);
1159 return ret;
1160 }
1161
1162 /* For those SLAVE implementations, we ingore non-baudclk cases
1163 * and, instead, abandon MASTER mode that needs baud clock.
1164 */
1165 ssi_private->baudclk = devm_clk_get(&pdev->dev, "baud");
1166 if (IS_ERR(ssi_private->baudclk))
1167 dev_dbg(&pdev->dev, "could not get baud clock: %ld\n",
1168 PTR_ERR(ssi_private->baudclk));
Markus Pargmann49da09e2014-04-28 12:54:45 +02001169
1170 /*
1171 * We have burstsize be "fifo_depth - 2" to match the SSI
1172 * watermark setting in fsl_ssi_startup().
1173 */
1174 ssi_private->dma_params_tx.maxburst = ssi_private->fifo_depth - 2;
1175 ssi_private->dma_params_rx.maxburst = ssi_private->fifo_depth - 2;
Markus Pargmann43248122014-05-27 10:24:25 +02001176 ssi_private->dma_params_tx.addr = ssi_private->ssi_phys + CCSR_SSI_STX0;
1177 ssi_private->dma_params_rx.addr = ssi_private->ssi_phys + CCSR_SSI_SRX0;
Markus Pargmann49da09e2014-04-28 12:54:45 +02001178
Markus Pargmanned0f16042014-04-28 12:54:46 +02001179 ret = !of_property_read_u32_array(np, "dmas", dmas, 4);
1180 if (ssi_private->use_dma && !ret && dmas[2] == IMX_DMATYPE_SSI_DUAL) {
Markus Pargmann49da09e2014-04-28 12:54:45 +02001181 ssi_private->use_dual_fifo = true;
1182 /* When using dual fifo mode, we need to keep watermark
1183 * as even numbers due to dma script limitation.
1184 */
1185 ssi_private->dma_params_tx.maxburst &= ~0x1;
1186 ssi_private->dma_params_rx.maxburst &= ~0x1;
1187 }
1188
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001189 if (!ssi_private->use_dma) {
1190
1191 /*
1192 * Some boards use an incompatible codec. To get it
1193 * working, we are using imx-fiq-pcm-audio, that
1194 * can handle those codecs. DMA is not possible in this
1195 * situation.
1196 */
1197
1198 ssi_private->fiq_params.irq = ssi_private->irq;
1199 ssi_private->fiq_params.base = iomem;
1200 ssi_private->fiq_params.dma_params_rx =
1201 &ssi_private->dma_params_rx;
1202 ssi_private->fiq_params.dma_params_tx =
1203 &ssi_private->dma_params_tx;
1204
1205 ret = imx_pcm_fiq_init(pdev, &ssi_private->fiq_params);
1206 if (ret)
1207 goto error_pcm;
1208 } else {
1209 ret = imx_pcm_dma_init(pdev);
1210 if (ret)
1211 goto error_pcm;
1212 }
1213
Markus Pargmann49da09e2014-04-28 12:54:45 +02001214 return 0;
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001215
1216error_pcm:
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001217 clk_disable_unprepare(ssi_private->clk);
1218
1219 return ret;
Markus Pargmann49da09e2014-04-28 12:54:45 +02001220}
1221
1222static void fsl_ssi_imx_clean(struct platform_device *pdev,
1223 struct fsl_ssi_private *ssi_private)
1224{
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001225 if (!ssi_private->use_dma)
1226 imx_pcm_fiq_exit(pdev);
Markus Pargmann49da09e2014-04-28 12:54:45 +02001227 clk_disable_unprepare(ssi_private->clk);
1228}
1229
Bill Pembertona0a3d512012-12-07 09:26:16 -05001230static int fsl_ssi_probe(struct platform_device *pdev)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001231{
Timur Tabi17467f22008-01-11 18:15:26 +01001232 struct fsl_ssi_private *ssi_private;
1233 int ret = 0;
Timur Tabi38fec722010-08-19 15:26:58 -05001234 struct device_node *np = pdev->dev.of_node;
Markus Pargmannc1953bf2013-12-20 14:11:30 +01001235 const struct of_device_id *of_id;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001236 const char *p, *sprop;
Timur Tabi8e9d8692010-08-06 12:16:12 -05001237 const uint32_t *iprop;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001238 struct resource res;
Markus Pargmann43248122014-05-27 10:24:25 +02001239 void __iomem *iomem;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001240 char name[64];
Timur Tabi17467f22008-01-11 18:15:26 +01001241
Timur Tabiff713342010-08-04 17:51:08 -05001242 /* SSIs that are not connected on the board should have a
1243 * status = "disabled"
1244 * property in their device tree nodes.
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001245 */
Timur Tabiff713342010-08-04 17:51:08 -05001246 if (!of_device_is_available(np))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001247 return -ENODEV;
1248
Markus Pargmannc1953bf2013-12-20 14:11:30 +01001249 of_id = of_match_device(fsl_ssi_ids, &pdev->dev);
Sascha Hauerfcdbade2014-05-27 10:24:18 +02001250 if (!of_id || !of_id->data)
Markus Pargmannc1953bf2013-12-20 14:11:30 +01001251 return -EINVAL;
Markus Pargmannc1953bf2013-12-20 14:11:30 +01001252
Markus Pargmann2a1d1022014-04-28 12:54:44 +02001253 ssi_private = devm_kzalloc(&pdev->dev, sizeof(*ssi_private),
1254 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001255 if (!ssi_private) {
Timur Tabi38fec722010-08-19 15:26:58 -05001256 dev_err(&pdev->dev, "could not allocate DAI object\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001257 return -ENOMEM;
1258 }
Timur Tabi17467f22008-01-11 18:15:26 +01001259
Sascha Hauerfcdbade2014-05-27 10:24:18 +02001260 ssi_private->soc = of_id->data;
1261
Markus Pargmann85e59af2014-05-27 10:24:19 +02001262 sprop = of_get_property(np, "fsl,mode", NULL);
1263 if (sprop) {
1264 if (!strcmp(sprop, "ac97-slave"))
1265 ssi_private->dai_fmt = SND_SOC_DAIFMT_AC97;
1266 else if (!strcmp(sprop, "i2s-slave"))
1267 ssi_private->dai_fmt = SND_SOC_DAIFMT_I2S |
1268 SND_SOC_DAIFMT_CBM_CFM;
1269 }
1270
Markus Pargmannde623ec2013-07-27 13:31:53 +02001271 ssi_private->use_dma = !of_property_read_bool(np,
1272 "fsl,fiq-stream-filter");
1273
Markus Pargmann85e59af2014-05-27 10:24:19 +02001274 if (fsl_ssi_is_ac97(ssi_private)) {
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001275 memcpy(&ssi_private->cpu_dai_drv, &fsl_ssi_ac97_dai,
1276 sizeof(fsl_ssi_ac97_dai));
1277
1278 fsl_ac97_data = ssi_private;
Markus Pargmanncd7f0292013-08-19 17:05:58 +02001279
1280 snd_soc_set_ac97_ops_of_reset(&fsl_ssi_ac97_ops, pdev);
1281 } else {
1282 /* Initialize this copy of the CPU DAI driver structure */
1283 memcpy(&ssi_private->cpu_dai_drv, &fsl_ssi_dai_template,
1284 sizeof(fsl_ssi_dai_template));
1285 }
Markus Pargmann2a1d1022014-04-28 12:54:44 +02001286 ssi_private->cpu_dai_drv.name = dev_name(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001287
1288 /* Get the addresses and IRQ */
1289 ret = of_address_to_resource(np, 0, &res);
1290 if (ret) {
Timur Tabi38fec722010-08-19 15:26:58 -05001291 dev_err(&pdev->dev, "could not determine device resources\n");
Fabio Estevamb0a47472013-07-17 02:00:38 -03001292 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001293 }
Markus Pargmann43248122014-05-27 10:24:25 +02001294 ssi_private->ssi_phys = res.start;
1295
1296 iomem = devm_ioremap(&pdev->dev, res.start, resource_size(&res));
1297 if (!iomem) {
Timur Tabi147dfe92011-06-08 15:02:55 -05001298 dev_err(&pdev->dev, "could not map device resources\n");
Fabio Estevamb0a47472013-07-17 02:00:38 -03001299 return -ENOMEM;
Timur Tabi147dfe92011-06-08 15:02:55 -05001300 }
Markus Pargmann43248122014-05-27 10:24:25 +02001301
1302 ssi_private->regs = devm_regmap_init_mmio(&pdev->dev, iomem,
1303 &fsl_ssi_regconfig);
1304 if (IS_ERR(ssi_private->regs)) {
1305 dev_err(&pdev->dev, "Failed to init register map\n");
1306 return PTR_ERR(ssi_private->regs);
1307 }
Timur Tabi1fab6ca2011-08-16 18:47:45 -04001308
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001309 ssi_private->irq = irq_of_parse_and_map(np, 0);
Chen Gangd60336e2013-09-23 11:36:21 +08001310 if (!ssi_private->irq) {
Timur Tabi1fab6ca2011-08-16 18:47:45 -04001311 dev_err(&pdev->dev, "no irq for node %s\n", np->full_name);
Fabio Estevamb0a47472013-07-17 02:00:38 -03001312 return -ENXIO;
Timur Tabi1fab6ca2011-08-16 18:47:45 -04001313 }
1314
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001315 /* Are the RX and the TX clocks locked? */
Nicolin Chen07a94832013-12-03 18:38:07 +08001316 if (!of_find_property(np, "fsl,ssi-asynchronous", NULL)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001317 ssi_private->cpu_dai_drv.symmetric_rates = 1;
Nicolin Chen07a94832013-12-03 18:38:07 +08001318 ssi_private->cpu_dai_drv.symmetric_channels = 1;
1319 ssi_private->cpu_dai_drv.symmetric_samplebits = 1;
1320 }
Timur Tabi17467f22008-01-11 18:15:26 +01001321
Timur Tabi8e9d8692010-08-06 12:16:12 -05001322 /* Determine the FIFO depth. */
1323 iprop = of_get_property(np, "fsl,fifo-depth", NULL);
1324 if (iprop)
Timur Tabi147dfe92011-06-08 15:02:55 -05001325 ssi_private->fifo_depth = be32_to_cpup(iprop);
Timur Tabi8e9d8692010-08-06 12:16:12 -05001326 else
1327 /* Older 8610 DTs didn't have the fifo-depth property */
1328 ssi_private->fifo_depth = 8;
1329
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001330 dev_set_drvdata(&pdev->dev, ssi_private);
1331
Sascha Hauerfcdbade2014-05-27 10:24:18 +02001332 if (ssi_private->soc->imx) {
Markus Pargmann43248122014-05-27 10:24:25 +02001333 ret = fsl_ssi_imx_probe(pdev, ssi_private, iomem);
Markus Pargmann49da09e2014-04-28 12:54:45 +02001334 if (ret)
Fabio Estevamb0a47472013-07-17 02:00:38 -03001335 goto error_irqmap;
Markus Pargmann0888efd2013-12-20 14:11:31 +01001336 }
1337
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001338 ret = snd_soc_register_component(&pdev->dev, &fsl_ssi_component,
1339 &ssi_private->cpu_dai_drv, 1);
1340 if (ret) {
1341 dev_err(&pdev->dev, "failed to register DAI: %d\n", ret);
1342 goto error_asoc_register;
1343 }
1344
Markus Pargmann0888efd2013-12-20 14:11:31 +01001345 if (ssi_private->use_dma) {
Michael Grzeschikf0377082013-08-19 17:06:01 +02001346 ret = devm_request_irq(&pdev->dev, ssi_private->irq,
Markus Pargmann171d6832014-04-28 12:54:48 +02001347 fsl_ssi_isr, 0, dev_name(&pdev->dev),
Michael Grzeschikf0377082013-08-19 17:06:01 +02001348 ssi_private);
1349 if (ret < 0) {
1350 dev_err(&pdev->dev, "could not claim irq %u\n",
1351 ssi_private->irq);
Markus Pargmann49da09e2014-04-28 12:54:45 +02001352 goto error_irq;
Michael Grzeschikf0377082013-08-19 17:06:01 +02001353 }
Shawn Guo09ce1112012-03-16 16:56:43 +08001354 }
1355
Markus Pargmannf138e622014-04-28 12:54:43 +02001356 ret = fsl_ssi_debugfs_create(&ssi_private->dbg_stats, &pdev->dev);
Markus Pargmann9368acc2013-12-20 14:11:29 +01001357 if (ret)
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001358 goto error_asoc_register;
Shawn Guo09ce1112012-03-16 16:56:43 +08001359
1360 /*
1361 * If codec-handle property is missing from SSI node, we assume
1362 * that the machine driver uses new binding which does not require
1363 * SSI driver to trigger machine driver's probe.
1364 */
Markus Pargmann171d6832014-04-28 12:54:48 +02001365 if (!of_get_property(np, "codec-handle", NULL))
Shawn Guo09ce1112012-03-16 16:56:43 +08001366 goto done;
Shawn Guo09ce1112012-03-16 16:56:43 +08001367
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001368 /* Trigger the machine driver's probe function. The platform driver
Shawn Guo2b81ec62012-03-09 00:59:46 +08001369 * name of the machine driver is taken from /compatible property of the
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001370 * device tree. We also pass the address of the CPU DAI driver
1371 * structure.
1372 */
Shawn Guo2b81ec62012-03-09 00:59:46 +08001373 sprop = of_get_property(of_find_node_by_path("/"), "compatible", NULL);
1374 /* Sometimes the compatible name has a "fsl," prefix, so we strip it. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001375 p = strrchr(sprop, ',');
1376 if (p)
1377 sprop = p + 1;
1378 snprintf(name, sizeof(name), "snd-soc-%s", sprop);
1379 make_lowercase(name);
1380
1381 ssi_private->pdev =
Timur Tabi38fec722010-08-19 15:26:58 -05001382 platform_device_register_data(&pdev->dev, name, 0, NULL, 0);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001383 if (IS_ERR(ssi_private->pdev)) {
1384 ret = PTR_ERR(ssi_private->pdev);
Timur Tabi38fec722010-08-19 15:26:58 -05001385 dev_err(&pdev->dev, "failed to register platform: %d\n", ret);
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001386 goto error_sound_card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001387 }
1388
Shawn Guo09ce1112012-03-16 16:56:43 +08001389done:
Markus Pargmann85e59af2014-05-27 10:24:19 +02001390 if (ssi_private->dai_fmt)
Michael Trimarchi85151462014-09-18 20:38:09 +02001391 _fsl_ssi_set_dai_fmt(&pdev->dev, ssi_private,
1392 ssi_private->dai_fmt);
Markus Pargmann85e59af2014-05-27 10:24:19 +02001393
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001394 return 0;
Timur Tabi87a06322010-08-03 17:55:28 -05001395
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001396error_sound_card:
Markus Pargmannf138e622014-04-28 12:54:43 +02001397 fsl_ssi_debugfs_remove(&ssi_private->dbg_stats);
Markus Pargmann9368acc2013-12-20 14:11:29 +01001398
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001399error_irq:
Kuninori Morimoto3580aa12013-03-21 03:32:04 -07001400 snd_soc_unregister_component(&pdev->dev);
Timur Tabi1fab6ca2011-08-16 18:47:45 -04001401
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001402error_asoc_register:
Sascha Hauerfcdbade2014-05-27 10:24:18 +02001403 if (ssi_private->soc->imx)
Markus Pargmann49da09e2014-04-28 12:54:45 +02001404 fsl_ssi_imx_clean(pdev, ssi_private);
Timur Tabi1fab6ca2011-08-16 18:47:45 -04001405
1406error_irqmap:
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001407 if (ssi_private->use_dma)
Markus Pargmann2841be92013-12-20 14:11:28 +01001408 irq_dispose_mapping(ssi_private->irq);
Timur Tabi1fab6ca2011-08-16 18:47:45 -04001409
Timur Tabi87a06322010-08-03 17:55:28 -05001410 return ret;
Timur Tabi17467f22008-01-11 18:15:26 +01001411}
Timur Tabi17467f22008-01-11 18:15:26 +01001412
Timur Tabi38fec722010-08-19 15:26:58 -05001413static int fsl_ssi_remove(struct platform_device *pdev)
Timur Tabi17467f22008-01-11 18:15:26 +01001414{
Timur Tabi38fec722010-08-19 15:26:58 -05001415 struct fsl_ssi_private *ssi_private = dev_get_drvdata(&pdev->dev);
Timur Tabi17467f22008-01-11 18:15:26 +01001416
Markus Pargmannf138e622014-04-28 12:54:43 +02001417 fsl_ssi_debugfs_remove(&ssi_private->dbg_stats);
Markus Pargmann9368acc2013-12-20 14:11:29 +01001418
Markus Pargmann171d6832014-04-28 12:54:48 +02001419 if (ssi_private->pdev)
Shawn Guo09ce1112012-03-16 16:56:43 +08001420 platform_device_unregister(ssi_private->pdev);
Kuninori Morimoto3580aa12013-03-21 03:32:04 -07001421 snd_soc_unregister_component(&pdev->dev);
Markus Pargmann49da09e2014-04-28 12:54:45 +02001422
Sascha Hauerfcdbade2014-05-27 10:24:18 +02001423 if (ssi_private->soc->imx)
Markus Pargmann49da09e2014-04-28 12:54:45 +02001424 fsl_ssi_imx_clean(pdev, ssi_private);
1425
Markus Pargmann4d9b7922014-04-28 12:54:47 +02001426 if (ssi_private->use_dma)
Markus Pargmann2841be92013-12-20 14:11:28 +01001427 irq_dispose_mapping(ssi_private->irq);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001428
1429 return 0;
Timur Tabi17467f22008-01-11 18:15:26 +01001430}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001431
Grant Likelyf07eb222011-02-22 21:05:04 -07001432static struct platform_driver fsl_ssi_driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001433 .driver = {
1434 .name = "fsl-ssi-dai",
1435 .owner = THIS_MODULE,
1436 .of_match_table = fsl_ssi_ids,
1437 },
1438 .probe = fsl_ssi_probe,
1439 .remove = fsl_ssi_remove,
1440};
Timur Tabi17467f22008-01-11 18:15:26 +01001441
Axel Linba0a7e02011-11-25 10:10:55 +08001442module_platform_driver(fsl_ssi_driver);
Timur Tabia454dad2009-03-05 17:23:37 -06001443
Fabio Estevamf3142802013-07-20 16:16:01 -03001444MODULE_ALIAS("platform:fsl-ssi-dai");
Timur Tabi17467f22008-01-11 18:15:26 +01001445MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
1446MODULE_DESCRIPTION("Freescale Synchronous Serial Interface (SSI) ASoC Driver");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001447MODULE_LICENSE("GPL v2");