blob: c3aaf4788557c4e14503d70f7b80ffe7d9a5c859 [file] [log] [blame]
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001/*
2 * Fifo-attached Serial Interface (FSI) support for SH7724
3 *
4 * Copyright (C) 2009 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
6 *
7 * Based on ssi.c
8 * Copyright (c) 2007 Manuel Lauss <mano@roarinelk.homelinux.net>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090015#include <linux/delay.h>
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -080016#include <linux/dma-mapping.h>
Kuninori Morimoto785d1c42009-11-30 20:24:48 +090017#include <linux/pm_runtime.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090018#include <linux/io.h>
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -080019#include <linux/of.h>
20#include <linux/of_device.h>
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -080021#include <linux/scatterlist.h>
22#include <linux/sh_dma.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040024#include <linux/module.h>
Guennadi Liakhovetski57451e42012-10-03 14:33:50 +020025#include <linux/workqueue.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090026#include <sound/soc.h>
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -080027#include <sound/pcm_params.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090028#include <sound/sh_fsi.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090029
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +090030/* PortA/PortB register */
31#define REG_DO_FMT 0x0000
32#define REG_DOFF_CTL 0x0004
33#define REG_DOFF_ST 0x0008
34#define REG_DI_FMT 0x000C
35#define REG_DIFF_CTL 0x0010
36#define REG_DIFF_ST 0x0014
37#define REG_CKG1 0x0018
38#define REG_CKG2 0x001C
39#define REG_DIDT 0x0020
40#define REG_DODT 0x0024
41#define REG_MUTE_ST 0x0028
Kuninori Morimoto65ff03f2011-11-06 22:05:25 -080042#define REG_OUT_DMAC 0x002C
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +090043#define REG_OUT_SEL 0x0030
Kuninori Morimoto65ff03f2011-11-06 22:05:25 -080044#define REG_IN_DMAC 0x0038
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090045
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +090046/* master register */
47#define MST_CLK_RST 0x0210
48#define MST_SOFT_RST 0x0214
49#define MST_FIFO_SZ 0x0218
50
51/* core register (depend on FSI version) */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090052#define A_MST_CTLR 0x0180
53#define B_MST_CTLR 0x01A0
Kuninori Morimotocc780d32010-03-25 19:15:53 +090054#define CPU_INT_ST 0x01F4
55#define CPU_IEMSK 0x01F8
56#define CPU_IMSK 0x01FC
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090057#define INT_ST 0x0200
58#define IEMSK 0x0204
59#define IMSK 0x0208
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090060
61/* DO_FMT */
62/* DI_FMT */
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -080063#define CR_BWS_MASK (0x3 << 20) /* FSI2 */
Kuninori Morimotof7d711e2010-12-03 17:36:24 +090064#define CR_BWS_24 (0x0 << 20) /* FSI2 */
65#define CR_BWS_16 (0x1 << 20) /* FSI2 */
66#define CR_BWS_20 (0x2 << 20) /* FSI2 */
67
68#define CR_DTMD_PCM (0x0 << 8) /* FSI2 */
69#define CR_DTMD_SPDIF_PCM (0x1 << 8) /* FSI2 */
70#define CR_DTMD_SPDIF_STREAM (0x2 << 8) /* FSI2 */
71
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +090072#define CR_MONO (0x0 << 4)
73#define CR_MONO_D (0x1 << 4)
74#define CR_PCM (0x2 << 4)
75#define CR_I2S (0x3 << 4)
76#define CR_TDM (0x4 << 4)
77#define CR_TDM_D (0x5 << 4)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090078
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -080079/* OUT_DMAC */
80/* IN_DMAC */
81#define VDMD_MASK (0x3 << 4)
82#define VDMD_FRONT (0x0 << 4) /* Package in front */
83#define VDMD_BACK (0x1 << 4) /* Package in back */
84#define VDMD_STREAM (0x2 << 4) /* Stream mode(16bit * 2) */
85
86#define DMA_ON (0x1 << 0)
87
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090088/* DOFF_CTL */
89/* DIFF_CTL */
90#define IRQ_HALF 0x00100000
91#define FIFO_CLR 0x00000001
92
93/* DOFF_ST */
94#define ERR_OVER 0x00000010
95#define ERR_UNDER 0x00000001
Kuninori Morimoto59c3b002009-12-28 14:09:16 +090096#define ST_ERR (ERR_OVER | ERR_UNDER)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090097
Kuninori Morimotoccad7b42010-07-13 12:13:14 +090098/* CKG1 */
99#define ACKMD_MASK 0x00007000
100#define BPFMD_MASK 0x00000700
Kuninori Morimoto4d805f72011-01-20 11:46:02 +0900101#define DIMD (1 << 4)
102#define DOMD (1 << 0)
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900103
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900104/* A/B MST_CTLR */
105#define BP (1 << 4) /* Fix the signal of Biphase output */
106#define SE (1 << 0) /* Fix the master clock */
107
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900108/* CLK_RST */
Kuninori Morimoto1f5e2a32011-04-21 10:33:52 +0900109#define CRB (1 << 4)
110#define CRA (1 << 0)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900111
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900112/* IO SHIFT / MACRO */
113#define BI_SHIFT 12
114#define BO_SHIFT 8
115#define AI_SHIFT 4
116#define AO_SHIFT 0
117#define AB_IO(param, shift) (param << shift)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900118
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900119/* SOFT_RST */
120#define PBSR (1 << 12) /* Port B Software Reset */
121#define PASR (1 << 8) /* Port A Software Reset */
122#define IR (1 << 4) /* Interrupt Reset */
123#define FSISR (1 << 0) /* Software Reset */
124
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900125/* OUT_SEL (FSI2) */
126#define DMMD (1 << 4) /* SPDIF output timing 0: Biphase only */
127 /* 1: Biphase and serial */
128
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900129/* FIFO_SZ */
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900130#define FIFO_SZ_MASK 0x7
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900131
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900132#define FSI_RATES SNDRV_PCM_RATE_8000_96000
133
134#define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)
135
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900136/*
Kuninori Morimoto766812e2012-05-17 17:36:47 -0700137 * bus options
138 *
139 * 0x000000BA
140 *
141 * A : sample widtht 16bit setting
142 * B : sample widtht 24bit setting
143 */
144
145#define SHIFT_16DATA 0
146#define SHIFT_24DATA 4
147
148#define PACKAGE_24BITBUS_BACK 0
149#define PACKAGE_24BITBUS_FRONT 1
150#define PACKAGE_16BITBUS_STREAM 2
151
152#define BUSOP_SET(s, a) ((a) << SHIFT_ ## s ## DATA)
153#define BUSOP_GET(s, a) (((a) >> SHIFT_ ## s ## DATA) & 0xF)
154
155/*
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900156 * FSI driver use below type name for variable
157 *
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900158 * xxx_num : number of data
Kuninori Morimoto2e651ba2011-05-23 20:46:03 +0900159 * xxx_pos : position of data
160 * xxx_capa : capacity of data
161 */
162
163/*
164 * period/frame/sample image
165 *
166 * ex) PCM (2ch)
167 *
168 * period pos period pos
169 * [n] [n + 1]
170 * |<-------------------- period--------------------->|
171 * ==|============================================ ... =|==
172 * | |
173 * ||<----- frame ----->|<------ frame ----->| ... |
174 * |+--------------------+--------------------+- ... |
175 * ||[ sample ][ sample ]|[ sample ][ sample ]| ... |
176 * |+--------------------+--------------------+- ... |
177 * ==|============================================ ... =|==
178 */
179
180/*
181 * FSI FIFO image
182 *
183 * | |
184 * | |
185 * | [ sample ] |
186 * | [ sample ] |
187 * | [ sample ] |
188 * | [ sample ] |
189 * --> go to codecs
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900190 */
191
192/*
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800193 * FSI clock
194 *
195 * FSIxCLK [CPG] (ick) -------> |
196 * |-> FSI_DIV (div)-> FSI2
197 * FSIxCK [external] (xck) ---> |
198 */
199
200/*
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900201 * struct
202 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900203
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800204struct fsi_stream_handler;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900205struct fsi_stream {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900206
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800207 /*
208 * these are initialized by fsi_stream_init()
209 */
210 struct snd_pcm_substream *substream;
Kuninori Morimoto2e651ba2011-05-23 20:46:03 +0900211 int fifo_sample_capa; /* sample capacity of FSI FIFO */
212 int buff_sample_capa; /* sample capacity of ALSA buffer */
213 int buff_sample_pos; /* sample position of ALSA buffer */
214 int period_samples; /* sample number / 1 period */
215 int period_pos; /* current period position */
Kuninori Morimotoc1e6f102012-02-03 00:50:09 -0800216 int sample_width; /* sample width */
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900217 int uerr_num;
218 int oerr_num;
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800219
220 /*
Kuninori Morimoto766812e2012-05-17 17:36:47 -0700221 * bus options
222 */
223 u32 bus_option;
224
225 /*
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800226 * thse are initialized by fsi_handler_init()
227 */
228 struct fsi_stream_handler *handler;
229 struct fsi_priv *priv;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -0800230
231 /*
232 * these are for DMAEngine
233 */
234 struct dma_chan *chan;
Kuninori Morimotoa0732782013-12-10 20:46:59 -0800235 int dma_id;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900236};
237
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800238struct fsi_clk {
239 /* see [FSI clock] */
240 struct clk *own;
241 struct clk *xck;
242 struct clk *ick;
243 struct clk *div;
244 int (*set_rate)(struct device *dev,
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -0800245 struct fsi_priv *fsi);
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800246
247 unsigned long rate;
248 unsigned int count;
249};
250
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900251struct fsi_priv {
252 void __iomem *base;
Kuninori Morimoto7c6cc8f2015-02-17 01:48:19 +0000253 phys_addr_t phys;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900254 struct fsi_master *master;
255
256 struct fsi_stream playback;
257 struct fsi_stream capture;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900258
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800259 struct fsi_clk clock;
260
Kuninori Morimoto9c59dd32012-05-17 17:34:53 -0700261 u32 fmt;
Kuninori Morimoto9478e0b2011-05-23 20:46:07 +0900262
Kuninori Morimoto6a9ebad2011-04-21 10:33:36 +0900263 int chan_num:16;
Lars-Peter Clausen9f98cd62014-06-19 09:40:31 +0200264 unsigned int clk_master:1;
265 unsigned int clk_cpg:1;
266 unsigned int spdif:1;
267 unsigned int enable_stream:1;
268 unsigned int bit_clk_inv:1;
269 unsigned int lr_clk_inv:1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900270};
271
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800272struct fsi_stream_handler {
Kuninori Morimoto83344022012-02-03 00:59:02 -0800273 int (*init)(struct fsi_priv *fsi, struct fsi_stream *io);
274 int (*quit)(struct fsi_priv *fsi, struct fsi_stream *io);
Kuninori Morimotob1226dc2012-05-24 23:56:19 -0700275 int (*probe)(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev);
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800276 int (*transfer)(struct fsi_priv *fsi, struct fsi_stream *io);
277 int (*remove)(struct fsi_priv *fsi, struct fsi_stream *io);
Kuninori Morimotoc375b2d2013-05-28 00:55:12 -0700278 int (*start_stop)(struct fsi_priv *fsi, struct fsi_stream *io,
Kuninori Morimoto180346e2012-02-03 00:57:25 -0800279 int enable);
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800280};
281#define fsi_stream_handler_call(io, func, args...) \
282 (!(io) ? -ENODEV : \
283 !((io)->handler->func) ? 0 : \
284 (io)->handler->func(args))
285
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900286struct fsi_core {
287 int ver;
288
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900289 u32 int_st;
290 u32 iemsk;
291 u32 imsk;
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900292 u32 a_mclk;
293 u32 b_mclk;
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900294};
295
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900296struct fsi_master {
297 void __iomem *base;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900298 struct fsi_priv fsia;
299 struct fsi_priv fsib;
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -0800300 const struct fsi_core *core;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900301 spinlock_t lock;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900302};
303
Geert Uytterhoeven3048e762017-05-16 19:20:00 +0200304static inline int fsi_stream_is_play(struct fsi_priv *fsi,
305 struct fsi_stream *io)
306{
307 return &fsi->playback == io;
308}
309
Kuninori Morimoto7b1b3332012-02-03 00:55:26 -0800310
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900311/*
312 * basic read write function
313 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900314
Arnd Bergmannca7acee2011-10-02 22:28:02 +0200315static void __fsi_reg_write(u32 __iomem *reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900316{
317 /* valid data area is 24bit */
318 data &= 0x00ffffff;
319
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100320 __raw_writel(data, reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900321}
322
Arnd Bergmannca7acee2011-10-02 22:28:02 +0200323static u32 __fsi_reg_read(u32 __iomem *reg)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900324{
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100325 return __raw_readl(reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900326}
327
Arnd Bergmannca7acee2011-10-02 22:28:02 +0200328static void __fsi_reg_mask_set(u32 __iomem *reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900329{
330 u32 val = __fsi_reg_read(reg);
331
332 val &= ~mask;
333 val |= data & mask;
334
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100335 __fsi_reg_write(reg, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900336}
337
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900338#define fsi_reg_write(p, r, d)\
Kuninori Morimoto8918b842011-10-31 22:11:53 -0700339 __fsi_reg_write((p->base + REG_##r), d)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900340
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900341#define fsi_reg_read(p, r)\
Kuninori Morimoto8918b842011-10-31 22:11:53 -0700342 __fsi_reg_read((p->base + REG_##r))
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900343
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900344#define fsi_reg_mask_set(p, r, m, d)\
Kuninori Morimoto8918b842011-10-31 22:11:53 -0700345 __fsi_reg_mask_set((p->base + REG_##r), m, d)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900346
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900347#define fsi_master_read(p, r) _fsi_master_read(p, MST_##r)
348#define fsi_core_read(p, r) _fsi_master_read(p, p->core->r)
349static u32 _fsi_master_read(struct fsi_master *master, u32 reg)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900350{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900351 u32 ret;
352 unsigned long flags;
353
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900354 spin_lock_irqsave(&master->lock, flags);
Arnd Bergmannca7acee2011-10-02 22:28:02 +0200355 ret = __fsi_reg_read(master->base + reg);
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900356 spin_unlock_irqrestore(&master->lock, flags);
357
358 return ret;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900359}
360
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900361#define fsi_master_mask_set(p, r, m, d) _fsi_master_mask_set(p, MST_##r, m, d)
362#define fsi_core_mask_set(p, r, m, d) _fsi_master_mask_set(p, p->core->r, m, d)
363static void _fsi_master_mask_set(struct fsi_master *master,
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900364 u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900365{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900366 unsigned long flags;
367
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900368 spin_lock_irqsave(&master->lock, flags);
Arnd Bergmannca7acee2011-10-02 22:28:02 +0200369 __fsi_reg_mask_set(master->base + reg, mask, data);
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900370 spin_unlock_irqrestore(&master->lock, flags);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900371}
372
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900373/*
374 * basic function
375 */
Kuninori Morimoto284c6f62012-05-17 17:34:16 -0700376static int fsi_version(struct fsi_master *master)
377{
378 return master->core->ver;
379}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900380
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900381static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900382{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900383 return fsi->master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900384}
385
Kuninori Morimoto6a9ebad2011-04-21 10:33:36 +0900386static int fsi_is_clk_master(struct fsi_priv *fsi)
387{
388 return fsi->clk_master;
389}
390
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900391static int fsi_is_port_a(struct fsi_priv *fsi)
392{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900393 return fsi->master->base == fsi->base;
394}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900395
Kuninori Morimoto9478e0b2011-05-23 20:46:07 +0900396static int fsi_is_spdif(struct fsi_priv *fsi)
397{
398 return fsi->spdif;
399}
400
Kuninori Morimoto2522acd2012-11-16 01:17:30 -0800401static int fsi_is_enable_stream(struct fsi_priv *fsi)
402{
403 return fsi->enable_stream;
404}
405
Kuninori Morimotoa449e462012-02-03 00:54:02 -0800406static int fsi_is_play(struct snd_pcm_substream *substream)
407{
408 return substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
409}
410
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900411static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900412{
413 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900414
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000415 return rtd->cpu_dai;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900416}
417
Kuninori Morimoto0d032c12011-01-20 11:45:51 +0900418static struct fsi_priv *fsi_get_priv_frm_dai(struct snd_soc_dai *dai)
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900419{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000420 struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900421
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000422 if (dai->id == 0)
423 return &master->fsia;
424 else
425 return &master->fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900426}
427
Kuninori Morimoto0d032c12011-01-20 11:45:51 +0900428static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
429{
430 return fsi_get_priv_frm_dai(fsi_get_dai(substream));
431}
432
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800433static u32 fsi_get_port_shift(struct fsi_priv *fsi, struct fsi_stream *io)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900434{
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800435 int is_play = fsi_stream_is_play(fsi, io);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900436 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900437 u32 shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900438
439 if (is_porta)
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900440 shift = is_play ? AO_SHIFT : AI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900441 else
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900442 shift = is_play ? BO_SHIFT : BI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900443
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900444 return shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900445}
446
Kuninori Morimoto2e651ba2011-05-23 20:46:03 +0900447static int fsi_frame2sample(struct fsi_priv *fsi, int frames)
448{
449 return frames * fsi->chan_num;
450}
451
452static int fsi_sample2frame(struct fsi_priv *fsi, int samples)
453{
454 return samples / fsi->chan_num;
455}
456
Kuninori Morimoto7b1b3332012-02-03 00:55:26 -0800457static int fsi_get_current_fifo_samples(struct fsi_priv *fsi,
458 struct fsi_stream *io)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900459{
Kuninori Morimoto7b1b3332012-02-03 00:55:26 -0800460 int is_play = fsi_stream_is_play(fsi, io);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900461 u32 status;
Kuninori Morimoto2e651ba2011-05-23 20:46:03 +0900462 int frames;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900463
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900464 status = is_play ?
465 fsi_reg_read(fsi, DOFF_ST) :
466 fsi_reg_read(fsi, DIFF_ST);
467
Kuninori Morimoto2e651ba2011-05-23 20:46:03 +0900468 frames = 0x1ff & (status >> 8);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900469
Kuninori Morimoto2e651ba2011-05-23 20:46:03 +0900470 return fsi_frame2sample(fsi, frames);
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900471}
472
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900473static void fsi_count_fifo_err(struct fsi_priv *fsi)
474{
475 u32 ostatus = fsi_reg_read(fsi, DOFF_ST);
476 u32 istatus = fsi_reg_read(fsi, DIFF_ST);
477
478 if (ostatus & ERR_OVER)
479 fsi->playback.oerr_num++;
480
481 if (ostatus & ERR_UNDER)
482 fsi->playback.uerr_num++;
483
484 if (istatus & ERR_OVER)
485 fsi->capture.oerr_num++;
486
487 if (istatus & ERR_UNDER)
488 fsi->capture.uerr_num++;
489
490 fsi_reg_write(fsi, DOFF_ST, 0);
491 fsi_reg_write(fsi, DIFF_ST, 0);
492}
493
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900494/*
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800495 * fsi_stream_xx() function
496 */
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800497static inline struct fsi_stream *fsi_stream_get(struct fsi_priv *fsi,
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800498 struct snd_pcm_substream *substream)
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800499{
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800500 return fsi_is_play(substream) ? &fsi->playback : &fsi->capture;
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800501}
502
503static int fsi_stream_is_working(struct fsi_priv *fsi,
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800504 struct fsi_stream *io)
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800505{
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800506 struct fsi_master *master = fsi_get_master(fsi);
507 unsigned long flags;
508 int ret;
509
510 spin_lock_irqsave(&master->lock, flags);
Kuninori Morimoto97df8182012-02-03 00:57:40 -0800511 ret = !!(io->substream && io->substream->runtime);
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800512 spin_unlock_irqrestore(&master->lock, flags);
513
514 return ret;
515}
516
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800517static struct fsi_priv *fsi_stream_to_priv(struct fsi_stream *io)
518{
519 return io->priv;
520}
521
Kuninori Morimoto8c415292012-02-03 00:52:07 -0800522static void fsi_stream_init(struct fsi_priv *fsi,
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800523 struct fsi_stream *io,
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800524 struct snd_pcm_substream *substream)
525{
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800526 struct snd_pcm_runtime *runtime = substream->runtime;
527 struct fsi_master *master = fsi_get_master(fsi);
528 unsigned long flags;
529
530 spin_lock_irqsave(&master->lock, flags);
531 io->substream = substream;
532 io->buff_sample_capa = fsi_frame2sample(fsi, runtime->buffer_size);
533 io->buff_sample_pos = 0;
534 io->period_samples = fsi_frame2sample(fsi, runtime->period_size);
535 io->period_pos = 0;
536 io->sample_width = samples_to_bytes(runtime, 1);
Kuninori Morimoto766812e2012-05-17 17:36:47 -0700537 io->bus_option = 0;
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800538 io->oerr_num = -1; /* ignore 1st err */
539 io->uerr_num = -1; /* ignore 1st err */
Kuninori Morimoto83344022012-02-03 00:59:02 -0800540 fsi_stream_handler_call(io, init, fsi, io);
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800541 spin_unlock_irqrestore(&master->lock, flags);
542}
543
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800544static void fsi_stream_quit(struct fsi_priv *fsi, struct fsi_stream *io)
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800545{
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800546 struct snd_soc_dai *dai = fsi_get_dai(io->substream);
547 struct fsi_master *master = fsi_get_master(fsi);
548 unsigned long flags;
549
550 spin_lock_irqsave(&master->lock, flags);
551
552 if (io->oerr_num > 0)
553 dev_err(dai->dev, "over_run = %d\n", io->oerr_num);
554
555 if (io->uerr_num > 0)
556 dev_err(dai->dev, "under_run = %d\n", io->uerr_num);
557
Kuninori Morimoto83344022012-02-03 00:59:02 -0800558 fsi_stream_handler_call(io, quit, fsi, io);
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800559 io->substream = NULL;
560 io->buff_sample_capa = 0;
561 io->buff_sample_pos = 0;
562 io->period_samples = 0;
563 io->period_pos = 0;
564 io->sample_width = 0;
Kuninori Morimoto766812e2012-05-17 17:36:47 -0700565 io->bus_option = 0;
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800566 io->oerr_num = 0;
567 io->uerr_num = 0;
568 spin_unlock_irqrestore(&master->lock, flags);
569}
570
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800571static int fsi_stream_transfer(struct fsi_stream *io)
572{
573 struct fsi_priv *fsi = fsi_stream_to_priv(io);
574 if (!fsi)
575 return -EIO;
576
577 return fsi_stream_handler_call(io, transfer, fsi, io);
578}
579
Kuninori Morimoto180346e2012-02-03 00:57:25 -0800580#define fsi_stream_start(fsi, io)\
581 fsi_stream_handler_call(io, start_stop, fsi, io, 1)
582
583#define fsi_stream_stop(fsi, io)\
584 fsi_stream_handler_call(io, start_stop, fsi, io, 0)
585
Kuninori Morimotob1226dc2012-05-24 23:56:19 -0700586static int fsi_stream_probe(struct fsi_priv *fsi, struct device *dev)
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800587{
588 struct fsi_stream *io;
589 int ret1, ret2;
590
591 io = &fsi->playback;
Kuninori Morimotob1226dc2012-05-24 23:56:19 -0700592 ret1 = fsi_stream_handler_call(io, probe, fsi, io, dev);
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800593
594 io = &fsi->capture;
Kuninori Morimotob1226dc2012-05-24 23:56:19 -0700595 ret2 = fsi_stream_handler_call(io, probe, fsi, io, dev);
Kuninori Morimoto5e973132012-02-03 00:55:55 -0800596
597 if (ret1 < 0)
598 return ret1;
599 if (ret2 < 0)
600 return ret2;
601
602 return 0;
603}
604
605static int fsi_stream_remove(struct fsi_priv *fsi)
606{
607 struct fsi_stream *io;
608 int ret1, ret2;
609
610 io = &fsi->playback;
611 ret1 = fsi_stream_handler_call(io, remove, fsi, io);
612
613 io = &fsi->capture;
614 ret2 = fsi_stream_handler_call(io, remove, fsi, io);
615
616 if (ret1 < 0)
617 return ret1;
618 if (ret2 < 0)
619 return ret2;
620
621 return 0;
622}
623
Kuninori Morimoto4e62d842012-02-03 00:50:35 -0800624/*
Kuninori Morimoto766812e2012-05-17 17:36:47 -0700625 * format/bus/dma setting
626 */
627static void fsi_format_bus_setup(struct fsi_priv *fsi, struct fsi_stream *io,
628 u32 bus, struct device *dev)
629{
630 struct fsi_master *master = fsi_get_master(fsi);
631 int is_play = fsi_stream_is_play(fsi, io);
632 u32 fmt = fsi->fmt;
633
634 if (fsi_version(master) >= 2) {
635 u32 dma = 0;
636
637 /*
638 * FSI2 needs DMA/Bus setting
639 */
640 switch (bus) {
641 case PACKAGE_24BITBUS_FRONT:
642 fmt |= CR_BWS_24;
643 dma |= VDMD_FRONT;
644 dev_dbg(dev, "24bit bus / package in front\n");
645 break;
646 case PACKAGE_16BITBUS_STREAM:
647 fmt |= CR_BWS_16;
648 dma |= VDMD_STREAM;
649 dev_dbg(dev, "16bit bus / stream mode\n");
650 break;
651 case PACKAGE_24BITBUS_BACK:
652 default:
653 fmt |= CR_BWS_24;
654 dma |= VDMD_BACK;
655 dev_dbg(dev, "24bit bus / package in back\n");
656 break;
657 }
658
659 if (is_play)
660 fsi_reg_write(fsi, OUT_DMAC, dma);
661 else
662 fsi_reg_write(fsi, IN_DMAC, dma);
663 }
664
665 if (is_play)
666 fsi_reg_write(fsi, DO_FMT, fmt);
667 else
668 fsi_reg_write(fsi, DI_FMT, fmt);
669}
670
671/*
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900672 * irq function
673 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900674
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800675static void fsi_irq_enable(struct fsi_priv *fsi, struct fsi_stream *io)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900676{
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800677 u32 data = AB_IO(1, fsi_get_port_shift(fsi, io));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900678 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900679
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900680 fsi_core_mask_set(master, imsk, data, data);
681 fsi_core_mask_set(master, iemsk, data, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900682}
683
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800684static void fsi_irq_disable(struct fsi_priv *fsi, struct fsi_stream *io)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900685{
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800686 u32 data = AB_IO(1, fsi_get_port_shift(fsi, io));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900687 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900688
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900689 fsi_core_mask_set(master, imsk, data, 0);
690 fsi_core_mask_set(master, iemsk, data, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900691}
692
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900693static u32 fsi_irq_get_status(struct fsi_master *master)
694{
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900695 return fsi_core_read(master, int_st);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900696}
697
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900698static void fsi_irq_clear_status(struct fsi_priv *fsi)
699{
700 u32 data = 0;
701 struct fsi_master *master = fsi_get_master(fsi);
702
Kuninori Morimoto938e2a82012-02-03 00:56:57 -0800703 data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->playback));
704 data |= AB_IO(1, fsi_get_port_shift(fsi, &fsi->capture));
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900705
706 /* clear interrupt factor */
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900707 fsi_core_mask_set(master, int_st, data, 0);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900708}
709
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900710/*
711 * SPDIF master clock function
712 *
713 * These functions are used later FSI2
714 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900715static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
716{
717 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900718 u32 mask, val;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900719
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900720 mask = BP | SE;
721 val = enable ? mask : 0;
722
723 fsi_is_port_a(fsi) ?
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900724 fsi_core_mask_set(master, a_mclk, mask, val) :
725 fsi_core_mask_set(master, b_mclk, mask, val);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900726}
727
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900728/*
Kuninori Morimoto1f5e2a32011-04-21 10:33:52 +0900729 * clock function
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900730 */
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800731static int fsi_clk_init(struct device *dev,
732 struct fsi_priv *fsi,
733 int xck,
734 int ick,
735 int div,
736 int (*set_rate)(struct device *dev,
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -0800737 struct fsi_priv *fsi))
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800738{
739 struct fsi_clk *clock = &fsi->clock;
740 int is_porta = fsi_is_port_a(fsi);
741
742 clock->xck = NULL;
743 clock->ick = NULL;
744 clock->div = NULL;
745 clock->rate = 0;
746 clock->count = 0;
747 clock->set_rate = set_rate;
748
749 clock->own = devm_clk_get(dev, NULL);
750 if (IS_ERR(clock->own))
751 return -EINVAL;
752
753 /* external clock */
754 if (xck) {
755 clock->xck = devm_clk_get(dev, is_porta ? "xcka" : "xckb");
756 if (IS_ERR(clock->xck)) {
757 dev_err(dev, "can't get xck clock\n");
758 return -EINVAL;
759 }
760 if (clock->xck == clock->own) {
761 dev_err(dev, "cpu doesn't support xck clock\n");
762 return -EINVAL;
763 }
764 }
765
766 /* FSIACLK/FSIBCLK */
767 if (ick) {
768 clock->ick = devm_clk_get(dev, is_porta ? "icka" : "ickb");
769 if (IS_ERR(clock->ick)) {
770 dev_err(dev, "can't get ick clock\n");
771 return -EINVAL;
772 }
773 if (clock->ick == clock->own) {
774 dev_err(dev, "cpu doesn't support ick clock\n");
775 return -EINVAL;
776 }
777 }
778
779 /* FSI-DIV */
780 if (div) {
781 clock->div = devm_clk_get(dev, is_porta ? "diva" : "divb");
782 if (IS_ERR(clock->div)) {
783 dev_err(dev, "can't get div clock\n");
784 return -EINVAL;
785 }
786 if (clock->div == clock->own) {
787 dev_err(dev, "cpu doens't support div clock\n");
788 return -EINVAL;
789 }
790 }
791
792 return 0;
793}
794
795#define fsi_clk_invalid(fsi) fsi_clk_valid(fsi, 0)
796static void fsi_clk_valid(struct fsi_priv *fsi, unsigned long rate)
797{
798 fsi->clock.rate = rate;
799}
800
801static int fsi_clk_is_valid(struct fsi_priv *fsi)
802{
803 return fsi->clock.set_rate &&
804 fsi->clock.rate;
805}
806
807static int fsi_clk_enable(struct device *dev,
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -0800808 struct fsi_priv *fsi)
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800809{
810 struct fsi_clk *clock = &fsi->clock;
811 int ret = -EINVAL;
812
813 if (!fsi_clk_is_valid(fsi))
814 return ret;
815
816 if (0 == clock->count) {
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -0800817 ret = clock->set_rate(dev, fsi);
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800818 if (ret < 0) {
819 fsi_clk_invalid(fsi);
820 return ret;
821 }
822
Markus Elfring180cf792015-01-03 19:25:55 +0100823 clk_enable(clock->xck);
824 clk_enable(clock->ick);
825 clk_enable(clock->div);
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800826
827 clock->count++;
828 }
829
830 return ret;
831}
832
833static int fsi_clk_disable(struct device *dev,
834 struct fsi_priv *fsi)
835{
836 struct fsi_clk *clock = &fsi->clock;
837
838 if (!fsi_clk_is_valid(fsi))
839 return -EINVAL;
840
841 if (1 == clock->count--) {
Markus Elfringe98c89e2014-12-02 14:34:30 +0100842 clk_disable(clock->xck);
843 clk_disable(clock->ick);
844 clk_disable(clock->div);
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800845 }
846
847 return 0;
848}
849
850static int fsi_clk_set_ackbpf(struct device *dev,
851 struct fsi_priv *fsi,
852 int ackmd, int bpfmd)
853{
854 u32 data = 0;
855
856 /* check ackmd/bpfmd relationship */
857 if (bpfmd > ackmd) {
858 dev_err(dev, "unsupported rate (%d/%d)\n", ackmd, bpfmd);
859 return -EINVAL;
860 }
861
862 /* ACKMD */
863 switch (ackmd) {
864 case 512:
865 data |= (0x0 << 12);
866 break;
867 case 256:
868 data |= (0x1 << 12);
869 break;
870 case 128:
871 data |= (0x2 << 12);
872 break;
873 case 64:
874 data |= (0x3 << 12);
875 break;
876 case 32:
877 data |= (0x4 << 12);
878 break;
879 default:
880 dev_err(dev, "unsupported ackmd (%d)\n", ackmd);
881 return -EINVAL;
882 }
883
884 /* BPFMD */
885 switch (bpfmd) {
886 case 32:
887 data |= (0x0 << 8);
888 break;
889 case 64:
890 data |= (0x1 << 8);
891 break;
892 case 128:
893 data |= (0x2 << 8);
894 break;
895 case 256:
896 data |= (0x3 << 8);
897 break;
898 case 512:
899 data |= (0x4 << 8);
900 break;
901 case 16:
902 data |= (0x7 << 8);
903 break;
904 default:
905 dev_err(dev, "unsupported bpfmd (%d)\n", bpfmd);
906 return -EINVAL;
907 }
908
909 dev_dbg(dev, "ACKMD/BPFMD = %d/%d\n", ackmd, bpfmd);
910
911 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
912 udelay(10);
913
914 return 0;
915}
916
917static int fsi_clk_set_rate_external(struct device *dev,
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -0800918 struct fsi_priv *fsi)
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800919{
920 struct clk *xck = fsi->clock.xck;
921 struct clk *ick = fsi->clock.ick;
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -0800922 unsigned long rate = fsi->clock.rate;
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800923 unsigned long xrate;
924 int ackmd, bpfmd;
925 int ret = 0;
926
927 /* check clock rate */
928 xrate = clk_get_rate(xck);
929 if (xrate % rate) {
930 dev_err(dev, "unsupported clock rate\n");
931 return -EINVAL;
932 }
933
934 clk_set_parent(ick, xck);
935 clk_set_rate(ick, xrate);
936
937 bpfmd = fsi->chan_num * 32;
938 ackmd = xrate / rate;
939
940 dev_dbg(dev, "external/rate = %ld/%ld\n", xrate, rate);
941
942 ret = fsi_clk_set_ackbpf(dev, fsi, ackmd, bpfmd);
943 if (ret < 0)
944 dev_err(dev, "%s failed", __func__);
945
946 return ret;
947}
948
949static int fsi_clk_set_rate_cpg(struct device *dev,
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -0800950 struct fsi_priv *fsi)
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800951{
952 struct clk *ick = fsi->clock.ick;
953 struct clk *div = fsi->clock.div;
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -0800954 unsigned long rate = fsi->clock.rate;
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -0800955 unsigned long target = 0; /* 12288000 or 11289600 */
956 unsigned long actual, cout;
957 unsigned long diff, min;
958 unsigned long best_cout, best_act;
959 int adj;
960 int ackmd, bpfmd;
961 int ret = -EINVAL;
962
963 if (!(12288000 % rate))
964 target = 12288000;
965 if (!(11289600 % rate))
966 target = 11289600;
967 if (!target) {
968 dev_err(dev, "unsupported rate\n");
969 return ret;
970 }
971
972 bpfmd = fsi->chan_num * 32;
973 ackmd = target / rate;
974 ret = fsi_clk_set_ackbpf(dev, fsi, ackmd, bpfmd);
975 if (ret < 0) {
976 dev_err(dev, "%s failed", __func__);
977 return ret;
978 }
979
980 /*
981 * The clock flow is
982 *
983 * [CPG] = cout => [FSI_DIV] = audio => [FSI] => [codec]
984 *
985 * But, it needs to find best match of CPG and FSI_DIV
986 * combination, since it is difficult to generate correct
987 * frequency of audio clock from ick clock only.
988 * Because ick is created from its parent clock.
989 *
990 * target = rate x [512/256/128/64]fs
991 * cout = round(target x adjustment)
992 * actual = cout / adjustment (by FSI-DIV) ~= target
993 * audio = actual
994 */
995 min = ~0;
996 best_cout = 0;
997 best_act = 0;
998 for (adj = 1; adj < 0xffff; adj++) {
999
1000 cout = target * adj;
1001 if (cout > 100000000) /* max clock = 100MHz */
1002 break;
1003
1004 /* cout/actual audio clock */
1005 cout = clk_round_rate(ick, cout);
1006 actual = cout / adj;
1007
1008 /* find best frequency */
1009 diff = abs(actual - target);
1010 if (diff < min) {
1011 min = diff;
1012 best_cout = cout;
1013 best_act = actual;
1014 }
1015 }
1016
1017 ret = clk_set_rate(ick, best_cout);
1018 if (ret < 0) {
1019 dev_err(dev, "ick clock failed\n");
1020 return -EIO;
1021 }
1022
1023 ret = clk_set_rate(div, clk_round_rate(div, best_act));
1024 if (ret < 0) {
1025 dev_err(dev, "div clock failed\n");
1026 return -EIO;
1027 }
1028
1029 dev_dbg(dev, "ick/div = %ld/%ld\n",
1030 clk_get_rate(ick), clk_get_rate(div));
1031
1032 return ret;
1033}
1034
Kuninori Morimotod403e242014-06-22 17:55:41 -07001035static void fsi_pointer_update(struct fsi_stream *io, int size)
1036{
1037 io->buff_sample_pos += size;
1038
1039 if (io->buff_sample_pos >=
1040 io->period_samples * (io->period_pos + 1)) {
1041 struct snd_pcm_substream *substream = io->substream;
1042 struct snd_pcm_runtime *runtime = substream->runtime;
1043
1044 io->period_pos++;
1045
1046 if (io->period_pos >= runtime->periods) {
1047 io->buff_sample_pos = 0;
1048 io->period_pos = 0;
1049 }
1050
1051 snd_pcm_period_elapsed(substream);
1052 }
1053}
1054
Kuninori Morimoto1f5e2a32011-04-21 10:33:52 +09001055/*
Kuninori Morimoto1b0ca1a2012-02-03 00:56:27 -08001056 * pio data transfer handler
Kuninori Morimoto1f5e2a32011-04-21 10:33:52 +09001057 */
Kuninori Morimoto1b0ca1a2012-02-03 00:56:27 -08001058static void fsi_pio_push16(struct fsi_priv *fsi, u8 *_buf, int samples)
1059{
Kuninori Morimoto1b0ca1a2012-02-03 00:56:27 -08001060 int i;
1061
Kuninori Morimoto2522acd2012-11-16 01:17:30 -08001062 if (fsi_is_enable_stream(fsi)) {
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001063 /*
1064 * stream mode
1065 * see
1066 * fsi_pio_push_init()
1067 */
1068 u32 *buf = (u32 *)_buf;
1069
1070 for (i = 0; i < samples / 2; i++)
1071 fsi_reg_write(fsi, DODT, buf[i]);
1072 } else {
1073 /* normal mode */
1074 u16 *buf = (u16 *)_buf;
1075
1076 for (i = 0; i < samples; i++)
1077 fsi_reg_write(fsi, DODT, ((u32)*(buf + i) << 8));
1078 }
Kuninori Morimoto1b0ca1a2012-02-03 00:56:27 -08001079}
1080
1081static void fsi_pio_pop16(struct fsi_priv *fsi, u8 *_buf, int samples)
1082{
1083 u16 *buf = (u16 *)_buf;
1084 int i;
1085
1086 for (i = 0; i < samples; i++)
1087 *(buf + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
1088}
1089
1090static void fsi_pio_push32(struct fsi_priv *fsi, u8 *_buf, int samples)
1091{
1092 u32 *buf = (u32 *)_buf;
1093 int i;
1094
1095 for (i = 0; i < samples; i++)
1096 fsi_reg_write(fsi, DODT, *(buf + i));
1097}
1098
1099static void fsi_pio_pop32(struct fsi_priv *fsi, u8 *_buf, int samples)
1100{
1101 u32 *buf = (u32 *)_buf;
1102 int i;
1103
1104 for (i = 0; i < samples; i++)
1105 *(buf + i) = fsi_reg_read(fsi, DIDT);
1106}
1107
1108static u8 *fsi_pio_get_area(struct fsi_priv *fsi, struct fsi_stream *io)
1109{
1110 struct snd_pcm_runtime *runtime = io->substream->runtime;
1111
1112 return runtime->dma_area +
1113 samples_to_bytes(runtime, io->buff_sample_pos);
1114}
1115
1116static int fsi_pio_transfer(struct fsi_priv *fsi, struct fsi_stream *io,
Kuninori Morimoto95b0cf02012-02-03 00:52:38 -08001117 void (*run16)(struct fsi_priv *fsi, u8 *buf, int samples),
1118 void (*run32)(struct fsi_priv *fsi, u8 *buf, int samples),
1119 int samples)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001120{
Kuninori Morimoto95b0cf02012-02-03 00:52:38 -08001121 u8 *buf;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001122
Kuninori Morimoto97df8182012-02-03 00:57:40 -08001123 if (!fsi_stream_is_working(fsi, io))
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001124 return -EINVAL;
1125
Kuninori Morimoto95b0cf02012-02-03 00:52:38 -08001126 buf = fsi_pio_get_area(fsi, io);
1127
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001128 switch (io->sample_width) {
1129 case 2:
Kuninori Morimoto95b0cf02012-02-03 00:52:38 -08001130 run16(fsi, buf, samples);
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001131 break;
1132 case 4:
Kuninori Morimoto95b0cf02012-02-03 00:52:38 -08001133 run32(fsi, buf, samples);
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001134 break;
1135 default:
1136 return -EINVAL;
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +09001137 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001138
Kuninori Morimotod403e242014-06-22 17:55:41 -07001139 fsi_pointer_update(io, samples);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001140
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +09001141 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001142}
1143
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001144static int fsi_pio_pop(struct fsi_priv *fsi, struct fsi_stream *io)
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001145{
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001146 int sample_residues; /* samples in FSI fifo */
1147 int sample_space; /* ALSA free samples space */
1148 int samples;
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001149
Kuninori Morimoto7b1b3332012-02-03 00:55:26 -08001150 sample_residues = fsi_get_current_fifo_samples(fsi, io);
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001151 sample_space = io->buff_sample_capa - io->buff_sample_pos;
1152
1153 samples = min(sample_residues, sample_space);
1154
Kuninori Morimoto1b0ca1a2012-02-03 00:56:27 -08001155 return fsi_pio_transfer(fsi, io,
Kuninori Morimotod78629e2012-02-03 00:51:14 -08001156 fsi_pio_pop16,
1157 fsi_pio_pop32,
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001158 samples);
Kuninori Morimotod8b33532010-09-17 13:49:05 +09001159}
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001160
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001161static int fsi_pio_push(struct fsi_priv *fsi, struct fsi_stream *io)
Kuninori Morimotod8b33532010-09-17 13:49:05 +09001162{
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001163 int sample_residues; /* ALSA residue samples */
1164 int sample_space; /* FSI fifo free samples space */
1165 int samples;
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001166
1167 sample_residues = io->buff_sample_capa - io->buff_sample_pos;
1168 sample_space = io->fifo_sample_capa -
Kuninori Morimoto7b1b3332012-02-03 00:55:26 -08001169 fsi_get_current_fifo_samples(fsi, io);
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001170
1171 samples = min(sample_residues, sample_space);
1172
Kuninori Morimoto1b0ca1a2012-02-03 00:56:27 -08001173 return fsi_pio_transfer(fsi, io,
Kuninori Morimotod78629e2012-02-03 00:51:14 -08001174 fsi_pio_push16,
1175 fsi_pio_push32,
Kuninori Morimoto376cf382012-02-03 00:50:59 -08001176 samples);
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001177}
1178
Kuninori Morimotoc375b2d2013-05-28 00:55:12 -07001179static int fsi_pio_start_stop(struct fsi_priv *fsi, struct fsi_stream *io,
Kuninori Morimoto180346e2012-02-03 00:57:25 -08001180 int enable)
1181{
1182 struct fsi_master *master = fsi_get_master(fsi);
1183 u32 clk = fsi_is_port_a(fsi) ? CRA : CRB;
1184
1185 if (enable)
1186 fsi_irq_enable(fsi, io);
1187 else
1188 fsi_irq_disable(fsi, io);
1189
1190 if (fsi_is_clk_master(fsi))
1191 fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0);
Kuninori Morimotoc375b2d2013-05-28 00:55:12 -07001192
1193 return 0;
Kuninori Morimoto180346e2012-02-03 00:57:25 -08001194}
1195
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001196static int fsi_pio_push_init(struct fsi_priv *fsi, struct fsi_stream *io)
1197{
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001198 /*
1199 * we can use 16bit stream mode
1200 * when "playback" and "16bit data"
1201 * and platform allows "stream mode"
1202 * see
1203 * fsi_pio_push16()
1204 */
Kuninori Morimoto2522acd2012-11-16 01:17:30 -08001205 if (fsi_is_enable_stream(fsi))
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001206 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
1207 BUSOP_SET(16, PACKAGE_16BITBUS_STREAM);
1208 else
1209 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
1210 BUSOP_SET(16, PACKAGE_24BITBUS_BACK);
1211 return 0;
1212}
1213
1214static int fsi_pio_pop_init(struct fsi_priv *fsi, struct fsi_stream *io)
1215{
1216 /*
1217 * always 24bit bus, package back when "capture"
1218 */
1219 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
1220 BUSOP_SET(16, PACKAGE_24BITBUS_BACK);
1221 return 0;
1222}
1223
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001224static struct fsi_stream_handler fsi_pio_push_handler = {
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001225 .init = fsi_pio_push_init,
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001226 .transfer = fsi_pio_push,
Kuninori Morimoto180346e2012-02-03 00:57:25 -08001227 .start_stop = fsi_pio_start_stop,
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001228};
1229
1230static struct fsi_stream_handler fsi_pio_pop_handler = {
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001231 .init = fsi_pio_pop_init,
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001232 .transfer = fsi_pio_pop,
Kuninori Morimoto180346e2012-02-03 00:57:25 -08001233 .start_stop = fsi_pio_start_stop,
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001234};
1235
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001236static irqreturn_t fsi_interrupt(int irq, void *data)
1237{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001238 struct fsi_master *master = data;
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +09001239 u32 int_st = fsi_irq_get_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001240
1241 /* clear irq status */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +09001242 fsi_master_mask_set(master, SOFT_RST, IR, 0);
1243 fsi_master_mask_set(master, SOFT_RST, IR, IR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001244
Kuninori Morimotocf6edd02010-10-12 11:40:53 +09001245 if (int_st & AB_IO(1, AO_SHIFT))
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001246 fsi_stream_transfer(&master->fsia.playback);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +09001247 if (int_st & AB_IO(1, BO_SHIFT))
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001248 fsi_stream_transfer(&master->fsib.playback);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +09001249 if (int_st & AB_IO(1, AI_SHIFT))
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001250 fsi_stream_transfer(&master->fsia.capture);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +09001251 if (int_st & AB_IO(1, BI_SHIFT))
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001252 fsi_stream_transfer(&master->fsib.capture);
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +09001253
1254 fsi_count_fifo_err(&master->fsia);
1255 fsi_count_fifo_err(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001256
Kuninori Morimoto48d78e52010-12-03 17:37:31 +09001257 fsi_irq_clear_status(&master->fsia);
1258 fsi_irq_clear_status(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001259
1260 return IRQ_HANDLED;
1261}
1262
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001263/*
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001264 * dma data transfer handler
1265 */
1266static int fsi_dma_init(struct fsi_priv *fsi, struct fsi_stream *io)
1267{
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001268 /*
1269 * 24bit data : 24bit bus / package in back
1270 * 16bit data : 16bit bus / stream mode
1271 */
1272 io->bus_option = BUSOP_SET(24, PACKAGE_24BITBUS_BACK) |
1273 BUSOP_SET(16, PACKAGE_16BITBUS_STREAM);
1274
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001275 return 0;
1276}
1277
1278static void fsi_dma_complete(void *data)
1279{
1280 struct fsi_stream *io = (struct fsi_stream *)data;
1281 struct fsi_priv *fsi = fsi_stream_to_priv(io);
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001282
Kuninori Morimotod403e242014-06-22 17:55:41 -07001283 fsi_pointer_update(io, io->period_samples);
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001284
1285 fsi_count_fifo_err(fsi);
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001286}
1287
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001288static int fsi_dma_transfer(struct fsi_priv *fsi, struct fsi_stream *io)
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001289{
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001290 struct snd_soc_dai *dai = fsi_get_dai(io->substream);
1291 struct snd_pcm_substream *substream = io->substream;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001292 struct dma_async_tx_descriptor *desc;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001293 int is_play = fsi_stream_is_play(fsi, io);
Lars-Peter Clausen6c7d1df2014-08-17 16:18:20 +02001294 enum dma_transfer_direction dir;
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001295 int ret = -EIO;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001296
Lars-Peter Clausen6c7d1df2014-08-17 16:18:20 +02001297 if (is_play)
1298 dir = DMA_MEM_TO_DEV;
1299 else
1300 dir = DMA_DEV_TO_MEM;
1301
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001302 desc = dmaengine_prep_dma_cyclic(io->chan,
1303 substream->runtime->dma_addr,
1304 snd_pcm_lib_buffer_bytes(substream),
1305 snd_pcm_lib_period_bytes(substream),
1306 dir,
1307 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1308 if (!desc) {
1309 dev_err(dai->dev, "dmaengine_prep_dma_cyclic() fail\n");
1310 goto fsi_dma_transfer_err;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001311 }
1312
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001313 desc->callback = fsi_dma_complete;
1314 desc->callback_param = io;
1315
1316 if (dmaengine_submit(desc) < 0) {
1317 dev_err(dai->dev, "tx_submit() fail\n");
1318 goto fsi_dma_transfer_err;
1319 }
1320
1321 dma_async_issue_pending(io->chan);
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001322
1323 /*
1324 * FIXME
1325 *
1326 * In DMAEngine case, codec and FSI cannot be started simultaneously
Guennadi Liakhovetski57451e42012-10-03 14:33:50 +02001327 * since FSI is using the scheduler work queue.
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001328 * Therefore, in capture case, probably FSI FIFO will have got
1329 * overflow error in this point.
1330 * in that case, DMA cannot start transfer until error was cleared.
1331 */
1332 if (!is_play) {
1333 if (ERR_OVER & fsi_reg_read(fsi, DIFF_ST)) {
1334 fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR);
1335 fsi_reg_write(fsi, DIFF_ST, 0);
1336 }
1337 }
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001338
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001339 ret = 0;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001340
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001341fsi_dma_transfer_err:
1342 return ret;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001343}
1344
Kuninori Morimotoc375b2d2013-05-28 00:55:12 -07001345static int fsi_dma_push_start_stop(struct fsi_priv *fsi, struct fsi_stream *io,
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001346 int start)
1347{
Kuninori Morimotoe42bb9b2012-05-24 23:55:11 -07001348 struct fsi_master *master = fsi_get_master(fsi);
1349 u32 clk = fsi_is_port_a(fsi) ? CRA : CRB;
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001350 u32 enable = start ? DMA_ON : 0;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001351
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001352 fsi_reg_mask_set(fsi, OUT_DMAC, DMA_ON, enable);
Kuninori Morimotoe42bb9b2012-05-24 23:55:11 -07001353
Kuninori Morimotofbe42f62012-05-28 23:28:22 -07001354 dmaengine_terminate_all(io->chan);
1355
Kuninori Morimotoe42bb9b2012-05-24 23:55:11 -07001356 if (fsi_is_clk_master(fsi))
1357 fsi_master_mask_set(master, CLK_RST, clk, (enable) ? clk : 0);
Kuninori Morimotoc375b2d2013-05-28 00:55:12 -07001358
1359 return 0;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001360}
1361
Kuninori Morimotob1226dc2012-05-24 23:56:19 -07001362static int fsi_dma_probe(struct fsi_priv *fsi, struct fsi_stream *io, struct device *dev)
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001363{
Kuninori Morimotoa0732782013-12-10 20:46:59 -08001364 int is_play = fsi_stream_is_play(fsi, io);
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001365
Arnd Bergmanne6e969f2015-11-18 22:16:48 +01001366#ifdef CONFIG_SUPERH
1367 dma_cap_mask_t mask;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001368 dma_cap_zero(mask);
1369 dma_cap_set(DMA_SLAVE, mask);
1370
Arnd Bergmanne6e969f2015-11-18 22:16:48 +01001371 io->chan = dma_request_channel(mask, shdma_chan_filter,
1372 (void *)io->dma_id);
1373#else
1374 io->chan = dma_request_slave_channel(dev, is_play ? "tx" : "rx");
1375#endif
Kuninori Morimotoa0732782013-12-10 20:46:59 -08001376 if (io->chan) {
Kuninori Morimoto5b7cdc82015-02-17 01:48:08 +00001377 struct dma_slave_config cfg = {};
Kuninori Morimotoa0732782013-12-10 20:46:59 -08001378 int ret;
1379
Kuninori Morimoto7c6cc8f2015-02-17 01:48:19 +00001380 if (is_play) {
1381 cfg.dst_addr = fsi->phys + REG_DODT;
1382 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1383 cfg.direction = DMA_MEM_TO_DEV;
1384 } else {
1385 cfg.src_addr = fsi->phys + REG_DIDT;
1386 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1387 cfg.direction = DMA_DEV_TO_MEM;
1388 }
Kuninori Morimotoa0732782013-12-10 20:46:59 -08001389
1390 ret = dmaengine_slave_config(io->chan, &cfg);
1391 if (ret < 0) {
1392 dma_release_channel(io->chan);
1393 io->chan = NULL;
1394 }
1395 }
1396
Kuninori Morimotob1226dc2012-05-24 23:56:19 -07001397 if (!io->chan) {
1398
1399 /* switch to PIO handler */
Kuninori Morimotoa0732782013-12-10 20:46:59 -08001400 if (is_play)
Kuninori Morimotob1226dc2012-05-24 23:56:19 -07001401 fsi->playback.handler = &fsi_pio_push_handler;
1402 else
1403 fsi->capture.handler = &fsi_pio_pop_handler;
1404
1405 dev_info(dev, "switch handler (dma => pio)\n");
1406
1407 /* probe again */
1408 return fsi_stream_probe(fsi, dev);
1409 }
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001410
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001411 return 0;
1412}
1413
1414static int fsi_dma_remove(struct fsi_priv *fsi, struct fsi_stream *io)
1415{
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001416 fsi_stream_stop(fsi, io);
1417
1418 if (io->chan)
1419 dma_release_channel(io->chan);
1420
1421 io->chan = NULL;
1422 return 0;
1423}
1424
1425static struct fsi_stream_handler fsi_dma_push_handler = {
1426 .init = fsi_dma_init,
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001427 .probe = fsi_dma_probe,
1428 .transfer = fsi_dma_transfer,
1429 .remove = fsi_dma_remove,
1430 .start_stop = fsi_dma_push_start_stop,
1431};
1432
1433/*
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001434 * dai ops
1435 */
Kuninori Morimotob49e8022012-02-03 00:51:29 -08001436static void fsi_fifo_init(struct fsi_priv *fsi,
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001437 struct fsi_stream *io,
Kuninori Morimotob49e8022012-02-03 00:51:29 -08001438 struct device *dev)
1439{
1440 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001441 int is_play = fsi_stream_is_play(fsi, io);
Kuninori Morimotob49e8022012-02-03 00:51:29 -08001442 u32 shift, i;
1443 int frame_capa;
1444
1445 /* get on-chip RAM capacity */
1446 shift = fsi_master_read(master, FIFO_SZ);
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001447 shift >>= fsi_get_port_shift(fsi, io);
Kuninori Morimotob49e8022012-02-03 00:51:29 -08001448 shift &= FIFO_SZ_MASK;
1449 frame_capa = 256 << shift;
1450 dev_dbg(dev, "fifo = %d words\n", frame_capa);
1451
1452 /*
1453 * The maximum number of sample data varies depending
1454 * on the number of channels selected for the format.
1455 *
1456 * FIFOs are used in 4-channel units in 3-channel mode
1457 * and in 8-channel units in 5- to 7-channel mode
1458 * meaning that more FIFOs than the required size of DPRAM
1459 * are used.
1460 *
1461 * ex) if 256 words of DP-RAM is connected
1462 * 1 channel: 256 (256 x 1 = 256)
1463 * 2 channels: 128 (128 x 2 = 256)
1464 * 3 channels: 64 ( 64 x 3 = 192)
1465 * 4 channels: 64 ( 64 x 4 = 256)
1466 * 5 channels: 32 ( 32 x 5 = 160)
1467 * 6 channels: 32 ( 32 x 6 = 192)
1468 * 7 channels: 32 ( 32 x 7 = 224)
1469 * 8 channels: 32 ( 32 x 8 = 256)
1470 */
1471 for (i = 1; i < fsi->chan_num; i <<= 1)
1472 frame_capa >>= 1;
1473 dev_dbg(dev, "%d channel %d store\n",
1474 fsi->chan_num, frame_capa);
1475
1476 io->fifo_sample_capa = fsi_frame2sample(fsi, frame_capa);
1477
1478 /*
1479 * set interrupt generation factor
1480 * clear FIFO
1481 */
1482 if (is_play) {
1483 fsi_reg_write(fsi, DOFF_CTL, IRQ_HALF);
1484 fsi_reg_mask_set(fsi, DOFF_CTL, FIFO_CLR, FIFO_CLR);
1485 } else {
1486 fsi_reg_write(fsi, DIFF_CTL, IRQ_HALF);
1487 fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR);
1488 }
1489}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001490
Kuninori Morimoto23ca8532011-05-23 20:46:26 +09001491static int fsi_hw_startup(struct fsi_priv *fsi,
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001492 struct fsi_stream *io,
Kuninori Morimoto23ca8532011-05-23 20:46:26 +09001493 struct device *dev)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001494{
Kuninori Morimoto9478e0b2011-05-23 20:46:07 +09001495 u32 data = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001496
Kuninori Morimoto9478e0b2011-05-23 20:46:07 +09001497 /* clock setting */
1498 if (fsi_is_clk_master(fsi))
1499 data = DIMD | DOMD;
1500
1501 fsi_reg_mask_set(fsi, CKG1, (DIMD | DOMD), data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001502
1503 /* clock inversion (CKG2) */
1504 data = 0;
Kuninori Morimoto3449f5f2012-11-16 01:17:43 -08001505 if (fsi->bit_clk_inv)
1506 data |= (1 << 0);
1507 if (fsi->lr_clk_inv)
1508 data |= (1 << 4);
1509 if (fsi_is_clk_master(fsi))
1510 data <<= 8;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001511 fsi_reg_write(fsi, CKG2, data);
1512
Kuninori Morimoto9478e0b2011-05-23 20:46:07 +09001513 /* spdif ? */
1514 if (fsi_is_spdif(fsi)) {
1515 fsi_spdif_clk_ctrl(fsi, 1);
1516 fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
1517 }
1518
Kuninori Morimoto65ff03f2011-11-06 22:05:25 -08001519 /*
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001520 * get bus settings
Kuninori Morimoto65ff03f2011-11-06 22:05:25 -08001521 */
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001522 data = 0;
1523 switch (io->sample_width) {
1524 case 2:
1525 data = BUSOP_GET(16, io->bus_option);
1526 break;
1527 case 4:
1528 data = BUSOP_GET(24, io->bus_option);
1529 break;
Kuninori Morimoto65ff03f2011-11-06 22:05:25 -08001530 }
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001531 fsi_format_bus_setup(fsi, io, data, dev);
Kuninori Morimoto65ff03f2011-11-06 22:05:25 -08001532
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +09001533 /* irq clear */
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001534 fsi_irq_disable(fsi, io);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +09001535 fsi_irq_clear_status(fsi);
1536
1537 /* fifo init */
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001538 fsi_fifo_init(fsi, io, dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001539
Kuninori Morimotoddeb2d72012-10-29 00:37:22 -07001540 /* start master clock */
1541 if (fsi_is_clk_master(fsi))
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -08001542 return fsi_clk_enable(dev, fsi);
Kuninori Morimotoddeb2d72012-10-29 00:37:22 -07001543
Kuninori Morimotoa68a3b42010-10-12 11:39:50 +09001544 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001545}
1546
Kuninori Morimoto80b4add2012-10-30 19:59:15 -07001547static int fsi_hw_shutdown(struct fsi_priv *fsi,
Kuninori Morimoto23ca8532011-05-23 20:46:26 +09001548 struct device *dev)
1549{
Kuninori Morimotoddeb2d72012-10-29 00:37:22 -07001550 /* stop master clock */
Kuninori Morimoto23ca8532011-05-23 20:46:26 +09001551 if (fsi_is_clk_master(fsi))
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -08001552 return fsi_clk_disable(dev, fsi);
Kuninori Morimoto80b4add2012-10-30 19:59:15 -07001553
1554 return 0;
Kuninori Morimoto23ca8532011-05-23 20:46:26 +09001555}
1556
1557static int fsi_dai_startup(struct snd_pcm_substream *substream,
1558 struct snd_soc_dai *dai)
1559{
1560 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto23ca8532011-05-23 20:46:26 +09001561
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -08001562 fsi_clk_invalid(fsi);
Kuninori Morimotof33238e2012-05-17 17:35:34 -07001563
1564 return 0;
Kuninori Morimoto23ca8532011-05-23 20:46:26 +09001565}
1566
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001567static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
1568 struct snd_soc_dai *dai)
1569{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001570 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001571
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -08001572 fsi_clk_invalid(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001573}
1574
1575static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
1576 struct snd_soc_dai *dai)
1577{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001578 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001579 struct fsi_stream *io = fsi_stream_get(fsi, substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001580 int ret = 0;
1581
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001582 switch (cmd) {
1583 case SNDRV_PCM_TRIGGER_START:
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001584 fsi_stream_init(fsi, io, substream);
Kuninori Morimoto80b4add2012-10-30 19:59:15 -07001585 if (!ret)
1586 ret = fsi_hw_startup(fsi, io, dai->dev);
1587 if (!ret)
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001588 ret = fsi_stream_start(fsi, io);
Kuninori Morimoto80b4add2012-10-30 19:59:15 -07001589 if (!ret)
Kuninori Morimoto8457e0e2014-06-22 17:55:59 -07001590 ret = fsi_stream_transfer(io);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001591 break;
1592 case SNDRV_PCM_TRIGGER_STOP:
Kuninori Morimoto80b4add2012-10-30 19:59:15 -07001593 if (!ret)
1594 ret = fsi_hw_shutdown(fsi, dai->dev);
Kuninori Morimoto180346e2012-02-03 00:57:25 -08001595 fsi_stream_stop(fsi, io);
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001596 fsi_stream_quit(fsi, io);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001597 break;
1598 }
1599
1600 return ret;
1601}
1602
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001603static int fsi_set_fmt_dai(struct fsi_priv *fsi, unsigned int fmt)
1604{
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001605 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1606 case SND_SOC_DAIFMT_I2S:
Kuninori Morimoto9c59dd32012-05-17 17:34:53 -07001607 fsi->fmt = CR_I2S;
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001608 fsi->chan_num = 2;
1609 break;
1610 case SND_SOC_DAIFMT_LEFT_J:
Kuninori Morimoto9c59dd32012-05-17 17:34:53 -07001611 fsi->fmt = CR_PCM;
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001612 fsi->chan_num = 2;
1613 break;
1614 default:
1615 return -EINVAL;
1616 }
1617
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001618 return 0;
1619}
1620
1621static int fsi_set_fmt_spdif(struct fsi_priv *fsi)
1622{
1623 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001624
Kuninori Morimoto284c6f62012-05-17 17:34:16 -07001625 if (fsi_version(master) < 2)
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001626 return -EINVAL;
1627
Kuninori Morimoto766812e2012-05-17 17:36:47 -07001628 fsi->fmt = CR_DTMD_SPDIF_PCM | CR_PCM;
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001629 fsi->chan_num = 2;
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001630
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001631 return 0;
1632}
1633
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001634static int fsi_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
1635{
1636 struct fsi_priv *fsi = fsi_get_priv_frm_dai(dai);
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001637 int ret;
1638
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001639 /* set master/slave audio interface */
1640 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1641 case SND_SOC_DAIFMT_CBM_CFM:
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001642 break;
1643 case SND_SOC_DAIFMT_CBS_CFS:
Kuninori Morimotoc7a507e2014-03-13 17:56:25 -07001644 fsi->clk_master = 1; /* codec is slave, cpu is master */
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001645 break;
1646 default:
Kuninori Morimoto9478e0b2011-05-23 20:46:07 +09001647 return -EINVAL;
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001648 }
Kuninori Morimoto6a9ebad2011-04-21 10:33:36 +09001649
Kuninori Morimoto3449f5f2012-11-16 01:17:43 -08001650 /* set clock inversion */
1651 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1652 case SND_SOC_DAIFMT_NB_IF:
1653 fsi->bit_clk_inv = 0;
1654 fsi->lr_clk_inv = 1;
1655 break;
1656 case SND_SOC_DAIFMT_IB_NF:
1657 fsi->bit_clk_inv = 1;
1658 fsi->lr_clk_inv = 0;
1659 break;
1660 case SND_SOC_DAIFMT_IB_IF:
1661 fsi->bit_clk_inv = 1;
1662 fsi->lr_clk_inv = 1;
1663 break;
1664 case SND_SOC_DAIFMT_NB_NF:
1665 default:
1666 fsi->bit_clk_inv = 0;
1667 fsi->lr_clk_inv = 0;
1668 break;
1669 }
1670
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -08001671 if (fsi_is_clk_master(fsi)) {
Kuninori Morimotoab6340c2012-11-16 01:17:18 -08001672 if (fsi->clk_cpg)
Kuninori Morimotoab6f6d82012-11-05 18:30:38 -08001673 fsi_clk_init(dai->dev, fsi, 0, 1, 1,
1674 fsi_clk_set_rate_cpg);
Kuninori Morimotoab6340c2012-11-16 01:17:18 -08001675 else
1676 fsi_clk_init(dai->dev, fsi, 1, 1, 0,
1677 fsi_clk_set_rate_external);
Kuninori Morimoto6a9ebad2011-04-21 10:33:36 +09001678 }
1679
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001680 /* set format */
Kuninori Morimotoc2052de2012-11-16 01:17:06 -08001681 if (fsi_is_spdif(fsi))
Kuninori Morimotof17c13c2011-01-24 10:43:19 +09001682 ret = fsi_set_fmt_spdif(fsi);
Kuninori Morimotoc2052de2012-11-16 01:17:06 -08001683 else
1684 ret = fsi_set_fmt_dai(fsi, fmt & SND_SOC_DAIFMT_FORMAT_MASK);
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001685
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001686 return ret;
1687}
1688
Kuninori Morimotoccad7b42010-07-13 12:13:14 +09001689static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
1690 struct snd_pcm_hw_params *params,
1691 struct snd_soc_dai *dai)
1692{
1693 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +09001694
Kuninori Morimoto6cbdbff2012-12-16 22:12:21 -08001695 if (fsi_is_clk_master(fsi))
1696 fsi_clk_valid(fsi, params_rate(params));
Kuninori Morimotoccad7b42010-07-13 12:13:14 +09001697
Kuninori Morimotoddeb2d72012-10-29 00:37:22 -07001698 return 0;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +09001699}
1700
Lars-Peter Clausen85e76522011-11-23 11:40:40 +01001701static const struct snd_soc_dai_ops fsi_dai_ops = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001702 .startup = fsi_dai_startup,
1703 .shutdown = fsi_dai_shutdown,
1704 .trigger = fsi_dai_trigger,
Kuninori Morimoto4d805f72011-01-20 11:46:02 +09001705 .set_fmt = fsi_dai_set_fmt,
Kuninori Morimotoccad7b42010-07-13 12:13:14 +09001706 .hw_params = fsi_dai_hw_params,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001707};
1708
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001709/*
1710 * pcm ops
1711 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001712
Bhumika Goyal5c2e0352017-08-17 15:46:11 +05301713static const struct snd_pcm_hardware fsi_pcm_hardware = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001714 .info = SNDRV_PCM_INFO_INTERLEAVED |
1715 SNDRV_PCM_INFO_MMAP |
Kuninori Morimotoc1b9b9b2014-10-28 21:01:53 -07001716 SNDRV_PCM_INFO_MMAP_VALID,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001717 .buffer_bytes_max = 64 * 1024,
1718 .period_bytes_min = 32,
1719 .period_bytes_max = 8192,
1720 .periods_min = 1,
1721 .periods_max = 32,
1722 .fifo_size = 256,
1723};
1724
1725static int fsi_pcm_open(struct snd_pcm_substream *substream)
1726{
1727 struct snd_pcm_runtime *runtime = substream->runtime;
1728 int ret = 0;
1729
1730 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
1731
1732 ret = snd_pcm_hw_constraint_integer(runtime,
1733 SNDRV_PCM_HW_PARAM_PERIODS);
1734
1735 return ret;
1736}
1737
1738static int fsi_hw_params(struct snd_pcm_substream *substream,
1739 struct snd_pcm_hw_params *hw_params)
1740{
1741 return snd_pcm_lib_malloc_pages(substream,
1742 params_buffer_bytes(hw_params));
1743}
1744
1745static int fsi_hw_free(struct snd_pcm_substream *substream)
1746{
1747 return snd_pcm_lib_free_pages(substream);
1748}
1749
1750static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
1751{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001752 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08001753 struct fsi_stream *io = fsi_stream_get(fsi, substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001754
Kuninori Morimoto19878772012-02-08 16:57:29 -08001755 return fsi_sample2frame(fsi, io->buff_sample_pos);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001756}
1757
Arvind Yadavb23bd342017-08-14 11:26:32 +05301758static const struct snd_pcm_ops fsi_pcm_ops = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001759 .open = fsi_pcm_open,
1760 .ioctl = snd_pcm_lib_ioctl,
1761 .hw_params = fsi_hw_params,
1762 .hw_free = fsi_hw_free,
1763 .pointer = fsi_pointer,
1764};
1765
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001766/*
1767 * snd_soc_platform
1768 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001769
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001770#define PREALLOC_BUFFER (32 * 1024)
1771#define PREALLOC_BUFFER_MAX (32 * 1024)
1772
Liam Girdwood552d1ef2011-06-07 16:08:33 +01001773static int fsi_pcm_new(struct snd_soc_pcm_runtime *rtd)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001774{
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001775 return snd_pcm_lib_preallocate_pages_for_all(
Kuninori Morimotoffb83e82014-06-22 17:55:18 -07001776 rtd->pcm,
1777 SNDRV_DMA_TYPE_DEV,
1778 rtd->card->snd_card->dev,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001779 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1780}
1781
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001782/*
1783 * alsa struct
1784 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001785
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001786static struct snd_soc_dai_driver fsi_soc_dai[] = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001787 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001788 .name = "fsia-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001789 .playback = {
1790 .rates = FSI_RATES,
1791 .formats = FSI_FMTS,
Kuninori Morimoto2a8c8a52012-10-02 19:08:53 -07001792 .channels_min = 2,
1793 .channels_max = 2,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001794 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001795 .capture = {
1796 .rates = FSI_RATES,
1797 .formats = FSI_FMTS,
Kuninori Morimoto2a8c8a52012-10-02 19:08:53 -07001798 .channels_min = 2,
1799 .channels_max = 2,
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001800 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001801 .ops = &fsi_dai_ops,
1802 },
1803 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001804 .name = "fsib-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001805 .playback = {
1806 .rates = FSI_RATES,
1807 .formats = FSI_FMTS,
Kuninori Morimoto2a8c8a52012-10-02 19:08:53 -07001808 .channels_min = 2,
1809 .channels_max = 2,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001810 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001811 .capture = {
1812 .rates = FSI_RATES,
1813 .formats = FSI_FMTS,
Kuninori Morimoto2a8c8a52012-10-02 19:08:53 -07001814 .channels_min = 2,
1815 .channels_max = 2,
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001816 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001817 .ops = &fsi_dai_ops,
1818 },
1819};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001820
Bhumika Goyal51772552017-08-14 17:08:48 +05301821static const struct snd_soc_platform_driver fsi_soc_platform = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001822 .ops = &fsi_pcm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001823 .pcm_new = fsi_pcm_new,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001824};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001825
Kuninori Morimotoda4f2f92013-03-14 00:19:20 -07001826static const struct snd_soc_component_driver fsi_soc_component = {
1827 .name = "fsi",
1828};
1829
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001830/*
1831 * platform function
1832 */
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -08001833static void fsi_of_parse(char *name,
1834 struct device_node *np,
1835 struct sh_fsi_port_info *info,
1836 struct device *dev)
1837{
1838 int i;
1839 char prop[128];
1840 unsigned long flags = 0;
1841 struct {
1842 char *name;
1843 unsigned int val;
1844 } of_parse_property[] = {
1845 { "spdif-connection", SH_FSI_FMT_SPDIF },
1846 { "stream-mode-support", SH_FSI_ENABLE_STREAM_MODE },
1847 { "use-internal-clock", SH_FSI_CLK_CPG },
1848 };
1849
1850 for (i = 0; i < ARRAY_SIZE(of_parse_property); i++) {
1851 sprintf(prop, "%s,%s", name, of_parse_property[i].name);
1852 if (of_get_property(np, prop, NULL))
1853 flags |= of_parse_property[i].val;
1854 }
1855 info->flags = flags;
1856
1857 dev_dbg(dev, "%s flags : %lx\n", name, info->flags);
1858}
1859
Kuninori Morimotoc2052de2012-11-16 01:17:06 -08001860static void fsi_port_info_init(struct fsi_priv *fsi,
1861 struct sh_fsi_port_info *info)
1862{
1863 if (info->flags & SH_FSI_FMT_SPDIF)
1864 fsi->spdif = 1;
Kuninori Morimotoab6340c2012-11-16 01:17:18 -08001865
1866 if (info->flags & SH_FSI_CLK_CPG)
1867 fsi->clk_cpg = 1;
Kuninori Morimoto2522acd2012-11-16 01:17:30 -08001868
1869 if (info->flags & SH_FSI_ENABLE_STREAM_MODE)
1870 fsi->enable_stream = 1;
Kuninori Morimotoc2052de2012-11-16 01:17:06 -08001871}
1872
Kuninori Morimoto943fdad2012-11-16 01:16:52 -08001873static void fsi_handler_init(struct fsi_priv *fsi,
1874 struct sh_fsi_port_info *info)
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001875{
1876 fsi->playback.handler = &fsi_pio_push_handler; /* default PIO */
1877 fsi->playback.priv = fsi;
1878 fsi->capture.handler = &fsi_pio_pop_handler; /* default PIO */
1879 fsi->capture.priv = fsi;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001880
Kuninori Morimoto943fdad2012-11-16 01:16:52 -08001881 if (info->tx_id) {
Kuninori Morimotoa0732782013-12-10 20:46:59 -08001882 fsi->playback.dma_id = info->tx_id;
Guennadi Liakhovetskib8373142012-05-09 17:09:20 +02001883 fsi->playback.handler = &fsi_dma_push_handler;
Kuninori Morimoto7da9ced2012-02-03 00:59:33 -08001884 }
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001885}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001886
Uwe Kleine-König9a42ab02015-03-31 16:48:57 +02001887static const struct fsi_core fsi1_core = {
Uwe Kleine-König3b6281c2015-03-31 16:48:56 +02001888 .ver = 1,
1889
1890 /* Interrupt */
1891 .int_st = INT_ST,
1892 .iemsk = IEMSK,
1893 .imsk = IMSK,
1894};
1895
Uwe Kleine-König9a42ab02015-03-31 16:48:57 +02001896static const struct fsi_core fsi2_core = {
Uwe Kleine-König3b6281c2015-03-31 16:48:56 +02001897 .ver = 2,
1898
1899 /* Interrupt */
1900 .int_st = CPU_INT_ST,
1901 .iemsk = CPU_IEMSK,
1902 .imsk = CPU_IMSK,
1903 .a_mclk = A_MST_CTLR,
1904 .b_mclk = B_MST_CTLR,
1905};
1906
1907static const struct of_device_id fsi_of_match[] = {
1908 { .compatible = "renesas,sh_fsi", .data = &fsi1_core},
1909 { .compatible = "renesas,sh_fsi2", .data = &fsi2_core},
1910 {},
1911};
1912MODULE_DEVICE_TABLE(of, fsi_of_match);
1913
Uwe Kleine-König9a42ab02015-03-31 16:48:57 +02001914static const struct platform_device_id fsi_id_table[] = {
Uwe Kleine-König3b6281c2015-03-31 16:48:56 +02001915 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
Uwe Kleine-König3b6281c2015-03-31 16:48:56 +02001916 {},
1917};
1918MODULE_DEVICE_TABLE(platform, fsi_id_table);
1919
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001920static int fsi_probe(struct platform_device *pdev)
1921{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001922 struct fsi_master *master;
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -08001923 struct device_node *np = pdev->dev.of_node;
Kuninori Morimotofd974e52012-12-27 19:15:08 -08001924 struct sh_fsi_platform_info info;
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -08001925 const struct fsi_core *core;
Kuninori Morimoto40f91182012-11-16 01:16:22 -08001926 struct fsi_priv *fsi;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001927 struct resource *res;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001928 unsigned int irq;
1929 int ret;
1930
Kuninori Morimotofd974e52012-12-27 19:15:08 -08001931 memset(&info, 0, sizeof(info));
Kuninori Morimoto943fdad2012-11-16 01:16:52 -08001932
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -08001933 core = NULL;
1934 if (np) {
Geert Uytterhoevenb48cc1d2017-10-04 14:28:30 +02001935 core = of_device_get_match_data(&pdev->dev);
1936 fsi_of_parse("fsia", np, &info.port_a, &pdev->dev);
1937 fsi_of_parse("fsib", np, &info.port_b, &pdev->dev);
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -08001938 } else {
1939 const struct platform_device_id *id_entry = pdev->id_entry;
1940 if (id_entry)
1941 core = (struct fsi_core *)id_entry->driver_data;
1942
1943 if (pdev->dev.platform_data)
1944 memcpy(&info, pdev->dev.platform_data, sizeof(info));
1945 }
1946
1947 if (!core) {
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001948 dev_err(&pdev->dev, "unknown fsi device\n");
1949 return -ENODEV;
1950 }
1951
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001952 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1953 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb6aa1792009-12-16 17:10:09 +01001954 if (!res || (int)irq <= 0) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001955 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
Kuninori Morimoto6ac42622012-09-10 02:14:31 -07001956 return -ENODEV;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001957 }
1958
Kuninori Morimoto6ac42622012-09-10 02:14:31 -07001959 master = devm_kzalloc(&pdev->dev, sizeof(*master), GFP_KERNEL);
Markus Elfringdd806272017-08-10 18:18:20 +02001960 if (!master)
Kuninori Morimoto6ac42622012-09-10 02:14:31 -07001961 return -ENOMEM;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001962
Kuninori Morimoto6ac42622012-09-10 02:14:31 -07001963 master->base = devm_ioremap_nocache(&pdev->dev,
1964 res->start, resource_size(res));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001965 if (!master->base) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001966 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
Kuninori Morimoto6ac42622012-09-10 02:14:31 -07001967 return -ENXIO;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001968 }
1969
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001970 /* master setting */
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -08001971 master->core = core;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +09001972 spin_lock_init(&master->lock);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001973
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001974 /* FSI A setting */
Kuninori Morimoto40f91182012-11-16 01:16:22 -08001975 fsi = &master->fsia;
1976 fsi->base = master->base;
Kuninori Morimoto7c6cc8f2015-02-17 01:48:19 +00001977 fsi->phys = res->start;
Kuninori Morimoto40f91182012-11-16 01:16:22 -08001978 fsi->master = master;
Kuninori Morimotofd974e52012-12-27 19:15:08 -08001979 fsi_port_info_init(fsi, &info.port_a);
1980 fsi_handler_init(fsi, &info.port_a);
Kuninori Morimoto40f91182012-11-16 01:16:22 -08001981 ret = fsi_stream_probe(fsi, &pdev->dev);
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001982 if (ret < 0) {
1983 dev_err(&pdev->dev, "FSIA stream probe failed\n");
Kuninori Morimoto6ac42622012-09-10 02:14:31 -07001984 return ret;
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001985 }
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001986
1987 /* FSI B setting */
Kuninori Morimoto40f91182012-11-16 01:16:22 -08001988 fsi = &master->fsib;
1989 fsi->base = master->base + 0x40;
Kuninori Morimoto7c6cc8f2015-02-17 01:48:19 +00001990 fsi->phys = res->start + 0x40;
Kuninori Morimoto40f91182012-11-16 01:16:22 -08001991 fsi->master = master;
Kuninori Morimotofd974e52012-12-27 19:15:08 -08001992 fsi_port_info_init(fsi, &info.port_b);
1993 fsi_handler_init(fsi, &info.port_b);
Kuninori Morimoto40f91182012-11-16 01:16:22 -08001994 ret = fsi_stream_probe(fsi, &pdev->dev);
Kuninori Morimoto5e973132012-02-03 00:55:55 -08001995 if (ret < 0) {
1996 dev_err(&pdev->dev, "FSIB stream probe failed\n");
1997 goto exit_fsia;
1998 }
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001999
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09002000 pm_runtime_enable(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002001 dev_set_drvdata(&pdev->dev, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002002
Kuninori Morimoto1ddd8282012-10-02 23:22:57 -07002003 ret = devm_request_irq(&pdev->dev, irq, &fsi_interrupt, 0,
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -08002004 dev_name(&pdev->dev), master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002005 if (ret) {
2006 dev_err(&pdev->dev, "irq request err\n");
Kuninori Morimoto5e973132012-02-03 00:55:55 -08002007 goto exit_fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002008 }
2009
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002010 ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002011 if (ret < 0) {
2012 dev_err(&pdev->dev, "cannot snd soc register\n");
Kuninori Morimoto1ddd8282012-10-02 23:22:57 -07002013 goto exit_fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002014 }
2015
Kuninori Morimotoda4f2f92013-03-14 00:19:20 -07002016 ret = snd_soc_register_component(&pdev->dev, &fsi_soc_component,
2017 fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
Kuninori Morimoto0b5ec872011-04-08 15:09:02 +09002018 if (ret < 0) {
Kuninori Morimotoda4f2f92013-03-14 00:19:20 -07002019 dev_err(&pdev->dev, "cannot snd component register\n");
Kuninori Morimoto0b5ec872011-04-08 15:09:02 +09002020 goto exit_snd_soc;
2021 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002022
Kuninori Morimoto0b5ec872011-04-08 15:09:02 +09002023 return ret;
2024
2025exit_snd_soc:
2026 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimoto5e973132012-02-03 00:55:55 -08002027exit_fsib:
Kuninori Morimotoc35e0052012-09-10 02:13:52 -07002028 pm_runtime_disable(&pdev->dev);
Kuninori Morimoto5e973132012-02-03 00:55:55 -08002029 fsi_stream_remove(&master->fsib);
2030exit_fsia:
2031 fsi_stream_remove(&master->fsia);
Kuninori Morimoto6ac42622012-09-10 02:14:31 -07002032
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002033 return ret;
2034}
2035
2036static int fsi_remove(struct platform_device *pdev)
2037{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09002038 struct fsi_master *master;
2039
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002040 master = dev_get_drvdata(&pdev->dev);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09002041
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09002042 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002043
Kuninori Morimotoda4f2f92013-03-14 00:19:20 -07002044 snd_soc_unregister_component(&pdev->dev);
Kuninori Morimotod985f272011-04-08 15:09:25 +09002045 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002046
Kuninori Morimoto5e973132012-02-03 00:55:55 -08002047 fsi_stream_remove(&master->fsia);
2048 fsi_stream_remove(&master->fsib);
2049
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002050 return 0;
2051}
2052
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002053static void __fsi_suspend(struct fsi_priv *fsi,
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002054 struct fsi_stream *io,
Kuninori Morimoto4f56cde2011-05-23 20:46:18 +09002055 struct device *dev)
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002056{
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002057 if (!fsi_stream_is_working(fsi, io))
Kuninori Morimotocda828c2011-05-23 20:46:35 +09002058 return;
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002059
Kuninori Morimoto180346e2012-02-03 00:57:25 -08002060 fsi_stream_stop(fsi, io);
Kuninori Morimoto41bba152012-02-03 00:51:53 -08002061 fsi_hw_shutdown(fsi, dev);
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002062}
2063
2064static void __fsi_resume(struct fsi_priv *fsi,
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002065 struct fsi_stream *io,
Kuninori Morimoto4f56cde2011-05-23 20:46:18 +09002066 struct device *dev)
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002067{
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002068 if (!fsi_stream_is_working(fsi, io))
Kuninori Morimotocda828c2011-05-23 20:46:35 +09002069 return;
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002070
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002071 fsi_hw_startup(fsi, io, dev);
Kuninori Morimoto180346e2012-02-03 00:57:25 -08002072 fsi_stream_start(fsi, io);
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002073}
2074
2075static int fsi_suspend(struct device *dev)
2076{
2077 struct fsi_master *master = dev_get_drvdata(dev);
Kuninori Morimotocda828c2011-05-23 20:46:35 +09002078 struct fsi_priv *fsia = &master->fsia;
2079 struct fsi_priv *fsib = &master->fsib;
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002080
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002081 __fsi_suspend(fsia, &fsia->playback, dev);
2082 __fsi_suspend(fsia, &fsia->capture, dev);
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002083
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002084 __fsi_suspend(fsib, &fsib->playback, dev);
2085 __fsi_suspend(fsib, &fsib->capture, dev);
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002086
2087 return 0;
2088}
2089
2090static int fsi_resume(struct device *dev)
2091{
2092 struct fsi_master *master = dev_get_drvdata(dev);
Kuninori Morimotocda828c2011-05-23 20:46:35 +09002093 struct fsi_priv *fsia = &master->fsia;
2094 struct fsi_priv *fsib = &master->fsib;
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002095
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002096 __fsi_resume(fsia, &fsia->playback, dev);
2097 __fsi_resume(fsia, &fsia->capture, dev);
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002098
Kuninori Morimoto938e2a82012-02-03 00:56:57 -08002099 __fsi_resume(fsib, &fsib->playback, dev);
2100 __fsi_resume(fsib, &fsib->capture, dev);
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002101
2102 return 0;
2103}
2104
Gustavo A. R. Silva4b2983d2017-07-16 21:12:21 -05002105static const struct dev_pm_ops fsi_pm_ops = {
Kuninori Morimoto106c79e2011-04-21 10:33:47 +09002106 .suspend = fsi_suspend,
2107 .resume = fsi_resume,
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09002108};
2109
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002110static struct platform_driver fsi_driver = {
2111 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002112 .name = "fsi-pcm-audio",
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09002113 .pm = &fsi_pm_ops,
Kuninori Morimoto9e7b6d62013-01-10 00:34:08 -08002114 .of_match_table = fsi_of_match,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002115 },
2116 .probe = fsi_probe,
2117 .remove = fsi_remove,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09002118 .id_table = fsi_id_table,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002119};
2120
Axel Lincb5e8732011-11-25 10:15:07 +08002121module_platform_driver(fsi_driver);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002122
Uwe Kleine-König1c6ae562015-03-29 21:47:16 +02002123MODULE_LICENSE("GPL v2");
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09002124MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
2125MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
Guennadi Liakhovetskib3c27b52011-04-15 20:17:34 +02002126MODULE_ALIAS("platform:fsi-pcm-audio");