blob: 19a2f99be60c5f2a1cb0b8b191b20fd267d29704 [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 Morimoto785d1c42009-11-30 20:24:48 +090016#include <linux/pm_runtime.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090017#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090019#include <sound/soc.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090020#include <sound/sh_fsi.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090021
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +090022/* PortA/PortB register */
23#define REG_DO_FMT 0x0000
24#define REG_DOFF_CTL 0x0004
25#define REG_DOFF_ST 0x0008
26#define REG_DI_FMT 0x000C
27#define REG_DIFF_CTL 0x0010
28#define REG_DIFF_ST 0x0014
29#define REG_CKG1 0x0018
30#define REG_CKG2 0x001C
31#define REG_DIDT 0x0020
32#define REG_DODT 0x0024
33#define REG_MUTE_ST 0x0028
34#define REG_OUT_SEL 0x0030
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090035
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +090036/* master register */
37#define MST_CLK_RST 0x0210
38#define MST_SOFT_RST 0x0214
39#define MST_FIFO_SZ 0x0218
40
41/* core register (depend on FSI version) */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090042#define A_MST_CTLR 0x0180
43#define B_MST_CTLR 0x01A0
Kuninori Morimotocc780d32010-03-25 19:15:53 +090044#define CPU_INT_ST 0x01F4
45#define CPU_IEMSK 0x01F8
46#define CPU_IMSK 0x01FC
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090047#define INT_ST 0x0200
48#define IEMSK 0x0204
49#define IMSK 0x0208
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090050
51/* DO_FMT */
52/* DI_FMT */
Kuninori Morimotof7d711e2010-12-03 17:36:24 +090053#define CR_BWS_24 (0x0 << 20) /* FSI2 */
54#define CR_BWS_16 (0x1 << 20) /* FSI2 */
55#define CR_BWS_20 (0x2 << 20) /* FSI2 */
56
57#define CR_DTMD_PCM (0x0 << 8) /* FSI2 */
58#define CR_DTMD_SPDIF_PCM (0x1 << 8) /* FSI2 */
59#define CR_DTMD_SPDIF_STREAM (0x2 << 8) /* FSI2 */
60
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +090061#define CR_MONO (0x0 << 4)
62#define CR_MONO_D (0x1 << 4)
63#define CR_PCM (0x2 << 4)
64#define CR_I2S (0x3 << 4)
65#define CR_TDM (0x4 << 4)
66#define CR_TDM_D (0x5 << 4)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090067
68/* DOFF_CTL */
69/* DIFF_CTL */
70#define IRQ_HALF 0x00100000
71#define FIFO_CLR 0x00000001
72
73/* DOFF_ST */
74#define ERR_OVER 0x00000010
75#define ERR_UNDER 0x00000001
Kuninori Morimoto59c3b002009-12-28 14:09:16 +090076#define ST_ERR (ERR_OVER | ERR_UNDER)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090077
Kuninori Morimotoccad7b42010-07-13 12:13:14 +090078/* CKG1 */
79#define ACKMD_MASK 0x00007000
80#define BPFMD_MASK 0x00000700
81
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090082/* A/B MST_CTLR */
83#define BP (1 << 4) /* Fix the signal of Biphase output */
84#define SE (1 << 0) /* Fix the master clock */
85
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090086/* CLK_RST */
87#define B_CLK 0x00000010
88#define A_CLK 0x00000001
89
Kuninori Morimotocf6edd02010-10-12 11:40:53 +090090/* IO SHIFT / MACRO */
91#define BI_SHIFT 12
92#define BO_SHIFT 8
93#define AI_SHIFT 4
94#define AO_SHIFT 0
95#define AB_IO(param, shift) (param << shift)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090096
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +090097/* SOFT_RST */
98#define PBSR (1 << 12) /* Port B Software Reset */
99#define PASR (1 << 8) /* Port A Software Reset */
100#define IR (1 << 4) /* Interrupt Reset */
101#define FSISR (1 << 0) /* Software Reset */
102
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900103/* OUT_SEL (FSI2) */
104#define DMMD (1 << 4) /* SPDIF output timing 0: Biphase only */
105 /* 1: Biphase and serial */
106
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900107/* FIFO_SZ */
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900108#define FIFO_SZ_MASK 0x7
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900109
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900110#define FSI_RATES SNDRV_PCM_RATE_8000_96000
111
112#define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)
113
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900114/*
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900115 * FSI driver use below type name for variable
116 *
117 * xxx_len : data length
118 * xxx_width : data width
119 * xxx_offset : data offset
120 * xxx_num : number of data
121 */
122
123/*
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900124 * struct
125 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900126
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900127struct fsi_stream {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900128 struct snd_pcm_substream *substream;
129
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900130 int fifo_max_num;
131 int chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900132
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900133 int buff_offset;
134 int buff_len;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900135 int period_len;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900136 int period_num;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900137};
138
139struct fsi_priv {
140 void __iomem *base;
141 struct fsi_master *master;
142
143 struct fsi_stream playback;
144 struct fsi_stream capture;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900145};
146
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900147struct fsi_core {
148 int ver;
149
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900150 u32 int_st;
151 u32 iemsk;
152 u32 imsk;
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900153 u32 a_mclk;
154 u32 b_mclk;
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900155};
156
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900157struct fsi_master {
158 void __iomem *base;
159 int irq;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900160 struct fsi_priv fsia;
161 struct fsi_priv fsib;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900162 struct fsi_core *core;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900163 struct sh_fsi_platform_info *info;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900164 spinlock_t lock;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900165};
166
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900167/*
168 * basic read write function
169 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900170
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100171static void __fsi_reg_write(u32 reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900172{
173 /* valid data area is 24bit */
174 data &= 0x00ffffff;
175
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100176 __raw_writel(data, reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900177}
178
179static u32 __fsi_reg_read(u32 reg)
180{
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100181 return __raw_readl(reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900182}
183
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100184static void __fsi_reg_mask_set(u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900185{
186 u32 val = __fsi_reg_read(reg);
187
188 val &= ~mask;
189 val |= data & mask;
190
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100191 __fsi_reg_write(reg, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900192}
193
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900194#define fsi_reg_write(p, r, d)\
195 __fsi_reg_write((u32)(p->base + REG_##r), d)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900196
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900197#define fsi_reg_read(p, r)\
198 __fsi_reg_read((u32)(p->base + REG_##r))
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900199
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900200#define fsi_reg_mask_set(p, r, m, d)\
201 __fsi_reg_mask_set((u32)(p->base + REG_##r), m, d)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900202
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900203#define fsi_master_read(p, r) _fsi_master_read(p, MST_##r)
204#define fsi_core_read(p, r) _fsi_master_read(p, p->core->r)
205static u32 _fsi_master_read(struct fsi_master *master, u32 reg)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900206{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900207 u32 ret;
208 unsigned long flags;
209
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900210 spin_lock_irqsave(&master->lock, flags);
211 ret = __fsi_reg_read((u32)(master->base + reg));
212 spin_unlock_irqrestore(&master->lock, flags);
213
214 return ret;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900215}
216
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900217#define fsi_master_mask_set(p, r, m, d) _fsi_master_mask_set(p, MST_##r, m, d)
218#define fsi_core_mask_set(p, r, m, d) _fsi_master_mask_set(p, p->core->r, m, d)
219static void _fsi_master_mask_set(struct fsi_master *master,
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900220 u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900221{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900222 unsigned long flags;
223
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900224 spin_lock_irqsave(&master->lock, flags);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100225 __fsi_reg_mask_set((u32)(master->base + reg), mask, data);
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900226 spin_unlock_irqrestore(&master->lock, flags);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900227}
228
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900229/*
230 * basic function
231 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900232
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900233static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900234{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900235 return fsi->master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900236}
237
238static int fsi_is_port_a(struct fsi_priv *fsi)
239{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900240 return fsi->master->base == fsi->base;
241}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900242
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900243static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900244{
245 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900246
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000247 return rtd->cpu_dai;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900248}
249
250static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
251{
252 struct snd_soc_dai *dai = fsi_get_dai(substream);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000253 struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900254
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000255 if (dai->id == 0)
256 return &master->fsia;
257 else
258 return &master->fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900259}
260
261static u32 fsi_get_info_flags(struct fsi_priv *fsi)
262{
263 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900264 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900265
266 return is_porta ? master->info->porta_flags :
267 master->info->portb_flags;
268}
269
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900270static inline int fsi_stream_is_play(int stream)
271{
272 return stream == SNDRV_PCM_STREAM_PLAYBACK;
273}
274
Kuninori Morimoto00545782010-10-12 18:30:14 +0900275static inline int fsi_is_play(struct snd_pcm_substream *substream)
276{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900277 return fsi_stream_is_play(substream->stream);
278}
279
280static inline struct fsi_stream *fsi_get_stream(struct fsi_priv *fsi,
281 int is_play)
282{
283 return is_play ? &fsi->playback : &fsi->capture;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900284}
285
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900286static int fsi_is_master_mode(struct fsi_priv *fsi, int is_play)
287{
288 u32 mode;
289 u32 flags = fsi_get_info_flags(fsi);
290
291 mode = is_play ? SH_FSI_OUT_SLAVE_MODE : SH_FSI_IN_SLAVE_MODE;
292
293 /* return
294 * 1 : master mode
295 * 0 : slave mode
296 */
297
298 return (mode & flags) != mode;
299}
300
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900301static u32 fsi_get_port_shift(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900302{
303 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900304 u32 shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900305
306 if (is_porta)
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900307 shift = is_play ? AO_SHIFT : AI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900308 else
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900309 shift = is_play ? BO_SHIFT : BI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900310
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900311 return shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900312}
313
314static void fsi_stream_push(struct fsi_priv *fsi,
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900315 int is_play,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900316 struct snd_pcm_substream *substream,
317 u32 buffer_len,
318 u32 period_len)
319{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900320 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
321
322 io->substream = substream;
323 io->buff_len = buffer_len;
324 io->buff_offset = 0;
325 io->period_len = period_len;
326 io->period_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900327}
328
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900329static void fsi_stream_pop(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900330{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900331 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
332
333 io->substream = NULL;
334 io->buff_len = 0;
335 io->buff_offset = 0;
336 io->period_len = 0;
337 io->period_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900338}
339
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900340static int fsi_get_fifo_data_num(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900341{
342 u32 status;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900343 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900344 int data_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900345
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900346 status = is_play ?
347 fsi_reg_read(fsi, DOFF_ST) :
348 fsi_reg_read(fsi, DIFF_ST);
349
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900350 data_num = 0x1ff & (status >> 8);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900351 data_num *= io->chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900352
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900353 return data_num;
354}
355
356static int fsi_len2num(int len, int width)
357{
358 return len / width;
359}
360
361#define fsi_num2offset(a, b) fsi_num2len(a, b)
362static int fsi_num2len(int num, int width)
363{
364 return num * width;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900365}
366
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900367static int fsi_get_frame_width(struct fsi_priv *fsi, int is_play)
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900368{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900369 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
370 struct snd_pcm_substream *substream = io->substream;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900371 struct snd_pcm_runtime *runtime = substream->runtime;
372
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900373 return frames_to_bytes(runtime, 1) / io->chan_num;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900374}
375
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900376/*
377 * dma function
378 */
379
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900380static u8 *fsi_dma_get_area(struct fsi_priv *fsi, int stream)
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900381{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900382 int is_play = fsi_stream_is_play(stream);
383 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
384
385 return io->substream->runtime->dma_area + io->buff_offset;
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900386}
387
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900388static void fsi_dma_soft_push16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900389{
390 u16 *start;
391 int i;
392
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900393 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900394
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900395 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900396 fsi_reg_write(fsi, DODT, ((u32)*(start + i) << 8));
397}
398
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900399static void fsi_dma_soft_pop16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900400{
401 u16 *start;
402 int i;
403
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900404 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
405
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900406
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900407 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900408 *(start + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
409}
410
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900411static void fsi_dma_soft_push32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900412{
413 u32 *start;
414 int i;
415
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900416 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
417
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900418
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900419 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900420 fsi_reg_write(fsi, DODT, *(start + i));
421}
422
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900423static void fsi_dma_soft_pop32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900424{
425 u32 *start;
426 int i;
427
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900428 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900429
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900430 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900431 *(start + i) = fsi_reg_read(fsi, DIDT);
432}
433
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900434/*
435 * irq function
436 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900437
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900438static void fsi_irq_enable(struct fsi_priv *fsi, int is_play)
439{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900440 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900441 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900442
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900443 fsi_core_mask_set(master, imsk, data, data);
444 fsi_core_mask_set(master, iemsk, data, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900445}
446
447static void fsi_irq_disable(struct fsi_priv *fsi, int is_play)
448{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900449 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900450 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900451
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900452 fsi_core_mask_set(master, imsk, data, 0);
453 fsi_core_mask_set(master, iemsk, data, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900454}
455
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900456static u32 fsi_irq_get_status(struct fsi_master *master)
457{
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900458 return fsi_core_read(master, int_st);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900459}
460
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900461static void fsi_irq_clear_status(struct fsi_priv *fsi)
462{
463 u32 data = 0;
464 struct fsi_master *master = fsi_get_master(fsi);
465
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900466 data |= AB_IO(1, fsi_get_port_shift(fsi, 0));
467 data |= AB_IO(1, fsi_get_port_shift(fsi, 1));
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900468
469 /* clear interrupt factor */
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900470 fsi_core_mask_set(master, int_st, data, 0);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900471}
472
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900473/*
474 * SPDIF master clock function
475 *
476 * These functions are used later FSI2
477 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900478static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
479{
480 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900481 u32 mask, val;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900482
483 if (master->core->ver < 2) {
484 pr_err("fsi: register access err (%s)\n", __func__);
485 return;
486 }
487
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900488 mask = BP | SE;
489 val = enable ? mask : 0;
490
491 fsi_is_port_a(fsi) ?
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900492 fsi_core_mask_set(master, a_mclk, mask, val) :
493 fsi_core_mask_set(master, b_mclk, mask, val);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900494}
495
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900496/*
497 * ctrl function
498 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900499
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900500static void fsi_clk_ctrl(struct fsi_priv *fsi, int enable)
501{
502 u32 val = fsi_is_port_a(fsi) ? (1 << 0) : (1 << 4);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900503 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900504
505 if (enable)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900506 fsi_master_mask_set(master, CLK_RST, val, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900507 else
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900508 fsi_master_mask_set(master, CLK_RST, val, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900509}
510
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900511static void fsi_fifo_init(struct fsi_priv *fsi,
512 int is_play,
513 struct snd_soc_dai *dai)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900514{
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900515 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900516 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900517 u32 shift, i;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900518
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900519 /* get on-chip RAM capacity */
520 shift = fsi_master_read(master, FIFO_SZ);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900521 shift >>= fsi_get_port_shift(fsi, is_play);
522 shift &= FIFO_SZ_MASK;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900523 io->fifo_max_num = 256 << shift;
524 dev_dbg(dai->dev, "fifo = %d words\n", io->fifo_max_num);
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900525
526 /*
527 * The maximum number of sample data varies depending
528 * on the number of channels selected for the format.
529 *
530 * FIFOs are used in 4-channel units in 3-channel mode
531 * and in 8-channel units in 5- to 7-channel mode
532 * meaning that more FIFOs than the required size of DPRAM
533 * are used.
534 *
535 * ex) if 256 words of DP-RAM is connected
536 * 1 channel: 256 (256 x 1 = 256)
537 * 2 channels: 128 (128 x 2 = 256)
538 * 3 channels: 64 ( 64 x 3 = 192)
539 * 4 channels: 64 ( 64 x 4 = 256)
540 * 5 channels: 32 ( 32 x 5 = 160)
541 * 6 channels: 32 ( 32 x 6 = 192)
542 * 7 channels: 32 ( 32 x 7 = 224)
543 * 8 channels: 32 ( 32 x 8 = 256)
544 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900545 for (i = 1; i < io->chan_num; i <<= 1)
546 io->fifo_max_num >>= 1;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900547 dev_dbg(dai->dev, "%d channel %d store\n",
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900548 io->chan_num, io->fifo_max_num);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900549
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900550 /*
551 * set interrupt generation factor
552 * clear FIFO
553 */
554 if (is_play) {
555 fsi_reg_write(fsi, DOFF_CTL, IRQ_HALF);
556 fsi_reg_mask_set(fsi, DOFF_CTL, FIFO_CLR, FIFO_CLR);
557 } else {
558 fsi_reg_write(fsi, DIFF_CTL, IRQ_HALF);
559 fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR);
560 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900561}
562
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900563static void fsi_soft_all_reset(struct fsi_master *master)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900564{
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900565 /* port AB reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900566 fsi_master_mask_set(master, SOFT_RST, PASR | PBSR, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900567 mdelay(10);
568
569 /* soft reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900570 fsi_master_mask_set(master, SOFT_RST, FSISR, 0);
571 fsi_master_mask_set(master, SOFT_RST, FSISR, FSISR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900572 mdelay(10);
573}
574
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900575static int fsi_fifo_data_ctrl(struct fsi_priv *fsi, int startup, int stream)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900576{
577 struct snd_pcm_runtime *runtime;
578 struct snd_pcm_substream *substream = NULL;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900579 int is_play = fsi_stream_is_play(stream);
580 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900581 int data_residue_num;
582 int data_num;
583 int data_num_max;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900584 int ch_width;
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900585 int over_period;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900586 void (*fn)(struct fsi_priv *fsi, int size);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900587
588 if (!fsi ||
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900589 !io->substream ||
590 !io->substream->runtime)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900591 return -EINVAL;
592
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900593 over_period = 0;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900594 substream = io->substream;
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900595 runtime = substream->runtime;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900596
597 /* FSI FIFO has limit.
598 * So, this driver can not send periods data at a time
599 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900600 if (io->buff_offset >=
601 fsi_num2offset(io->period_num + 1, io->period_len)) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900602
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900603 over_period = 1;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900604 io->period_num = (io->period_num + 1) % runtime->periods;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900605
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900606 if (0 == io->period_num)
607 io->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900608 }
609
610 /* get 1 channel data width */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900611 ch_width = fsi_get_frame_width(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900612
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900613 /* get residue data number of alsa */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900614 data_residue_num = fsi_len2num(io->buff_len - io->buff_offset,
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900615 ch_width);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900616
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900617 if (is_play) {
618 /*
619 * for play-back
620 *
621 * data_num_max : number of FSI fifo free space
622 * data_num : number of ALSA residue data
623 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900624 data_num_max = io->fifo_max_num * io->chan_num;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900625 data_num_max -= fsi_get_fifo_data_num(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900626
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900627 data_num = data_residue_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900628
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900629 switch (ch_width) {
630 case 2:
631 fn = fsi_dma_soft_push16;
632 break;
633 case 4:
634 fn = fsi_dma_soft_push32;
635 break;
636 default:
637 return -EINVAL;
638 }
639 } else {
640 /*
641 * for capture
642 *
643 * data_num_max : number of ALSA free space
644 * data_num : number of data in FSI fifo
645 */
646 data_num_max = data_residue_num;
647 data_num = fsi_get_fifo_data_num(fsi, is_play);
648
649 switch (ch_width) {
650 case 2:
651 fn = fsi_dma_soft_pop16;
652 break;
653 case 4:
654 fn = fsi_dma_soft_pop32;
655 break;
656 default:
657 return -EINVAL;
658 }
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +0900659 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900660
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900661 data_num = min(data_num, data_num_max);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900662
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900663 fn(fsi, data_num);
664
665 /* update buff_offset */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900666 io->buff_offset += fsi_num2offset(data_num, ch_width);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900667
668 /* check fifo status */
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900669 if (!startup) {
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900670 struct snd_soc_dai *dai = fsi_get_dai(substream);
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900671 u32 status = is_play ?
672 fsi_reg_read(fsi, DOFF_ST) :
673 fsi_reg_read(fsi, DIFF_ST);
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900674
675 if (status & ERR_OVER)
676 dev_err(dai->dev, "over run\n");
677 if (status & ERR_UNDER)
678 dev_err(dai->dev, "under run\n");
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900679 }
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900680
681 is_play ?
682 fsi_reg_write(fsi, DOFF_ST, 0) :
683 fsi_reg_write(fsi, DIFF_ST, 0);
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900684
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900685 /* re-enable irq */
686 fsi_irq_enable(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900687
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900688 if (over_period)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900689 snd_pcm_period_elapsed(substream);
690
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900691 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900692}
693
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900694static int fsi_data_pop(struct fsi_priv *fsi, int startup)
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900695{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900696 return fsi_fifo_data_ctrl(fsi, startup, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900697}
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900698
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900699static int fsi_data_push(struct fsi_priv *fsi, int startup)
700{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900701 return fsi_fifo_data_ctrl(fsi, startup, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900702}
703
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900704static irqreturn_t fsi_interrupt(int irq, void *data)
705{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900706 struct fsi_master *master = data;
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900707 u32 int_st = fsi_irq_get_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900708
709 /* clear irq status */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900710 fsi_master_mask_set(master, SOFT_RST, IR, 0);
711 fsi_master_mask_set(master, SOFT_RST, IR, IR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900712
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900713 if (int_st & AB_IO(1, AO_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900714 fsi_data_push(&master->fsia, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900715 if (int_st & AB_IO(1, BO_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900716 fsi_data_push(&master->fsib, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900717 if (int_st & AB_IO(1, AI_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900718 fsi_data_pop(&master->fsia, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900719 if (int_st & AB_IO(1, BI_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900720 fsi_data_pop(&master->fsib, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900721
Kuninori Morimoto48d78e52010-12-03 17:37:31 +0900722 fsi_irq_clear_status(&master->fsia);
723 fsi_irq_clear_status(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900724
725 return IRQ_HANDLED;
726}
727
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900728/*
729 * dai ops
730 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900731
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900732static int fsi_dai_startup(struct snd_pcm_substream *substream,
733 struct snd_soc_dai *dai)
734{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900735 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900736 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900737 struct fsi_stream *io;
738 u32 flags = fsi_get_info_flags(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900739 u32 fmt;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900740 u32 data;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900741 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900742 int is_master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900743
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900744 io = fsi_get_stream(fsi, is_play);
745
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900746 pm_runtime_get_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900747
748 /* CKG1 */
749 data = is_play ? (1 << 0) : (1 << 4);
750 is_master = fsi_is_master_mode(fsi, is_play);
751 if (is_master)
752 fsi_reg_mask_set(fsi, CKG1, data, data);
753 else
754 fsi_reg_mask_set(fsi, CKG1, data, 0);
755
756 /* clock inversion (CKG2) */
757 data = 0;
Kuninori Morimotob427b442010-07-13 12:01:15 +0900758 if (SH_FSI_LRM_INV & flags)
759 data |= 1 << 12;
760 if (SH_FSI_BRM_INV & flags)
761 data |= 1 << 8;
762 if (SH_FSI_LRS_INV & flags)
763 data |= 1 << 4;
764 if (SH_FSI_BRS_INV & flags)
765 data |= 1 << 0;
766
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900767 fsi_reg_write(fsi, CKG2, data);
768
769 /* do fmt, di fmt */
770 data = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900771 fmt = is_play ? SH_FSI_GET_OFMT(flags) : SH_FSI_GET_IFMT(flags);
772 switch (fmt) {
773 case SH_FSI_FMT_MONO:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900774 data = CR_MONO;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900775 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900776 break;
777 case SH_FSI_FMT_MONO_DELAY:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900778 data = CR_MONO_D;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900779 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900780 break;
781 case SH_FSI_FMT_PCM:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900782 data = CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900783 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900784 break;
785 case SH_FSI_FMT_I2S:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900786 data = CR_I2S;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900787 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900788 break;
789 case SH_FSI_FMT_TDM:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900790 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900791 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900792 data = CR_TDM | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900793 break;
794 case SH_FSI_FMT_TDM_DELAY:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900795 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900796 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900797 data = CR_TDM_D | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900798 break;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900799 case SH_FSI_FMT_SPDIF:
800 if (master->core->ver < 2) {
801 dev_err(dai->dev, "This FSI can not use SPDIF\n");
802 return -EINVAL;
803 }
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900804 data = CR_BWS_16 | CR_DTMD_SPDIF_PCM | CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900805 io->chan_num = 2;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900806 fsi_spdif_clk_ctrl(fsi, 1);
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900807 fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900808 break;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900809 default:
810 dev_err(dai->dev, "unknown format.\n");
811 return -EINVAL;
812 }
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900813 is_play ?
814 fsi_reg_write(fsi, DO_FMT, data) :
815 fsi_reg_write(fsi, DI_FMT, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900816
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900817 /* irq clear */
818 fsi_irq_disable(fsi, is_play);
819 fsi_irq_clear_status(fsi);
820
821 /* fifo init */
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900822 fsi_fifo_init(fsi, is_play, dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900823
Kuninori Morimotoa68a3b42010-10-12 11:39:50 +0900824 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900825}
826
827static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
828 struct snd_soc_dai *dai)
829{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900830 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto00545782010-10-12 18:30:14 +0900831 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900832
833 fsi_irq_disable(fsi, is_play);
834 fsi_clk_ctrl(fsi, 0);
835
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900836 pm_runtime_put_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900837}
838
839static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
840 struct snd_soc_dai *dai)
841{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900842 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900843 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900844 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900845 int ret = 0;
846
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900847 switch (cmd) {
848 case SNDRV_PCM_TRIGGER_START:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900849 fsi_stream_push(fsi, is_play, substream,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900850 frames_to_bytes(runtime, runtime->buffer_size),
851 frames_to_bytes(runtime, runtime->period_size));
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900852 ret = is_play ? fsi_data_push(fsi, 1) : fsi_data_pop(fsi, 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900853 break;
854 case SNDRV_PCM_TRIGGER_STOP:
855 fsi_irq_disable(fsi, is_play);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900856 fsi_stream_pop(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900857 break;
858 }
859
860 return ret;
861}
862
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900863static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
864 struct snd_pcm_hw_params *params,
865 struct snd_soc_dai *dai)
866{
867 struct fsi_priv *fsi = fsi_get_priv(substream);
868 struct fsi_master *master = fsi_get_master(fsi);
869 int (*set_rate)(int is_porta, int rate) = master->info->set_rate;
870 int fsi_ver = master->core->ver;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900871 int is_play = fsi_is_play(substream);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900872 int ret;
873
874 /* if slave mode, set_rate is not needed */
875 if (!fsi_is_master_mode(fsi, is_play))
876 return 0;
877
878 /* it is error if no set_rate */
879 if (!set_rate)
880 return -EIO;
881
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900882 ret = set_rate(fsi_is_port_a(fsi), params_rate(params));
883 if (ret > 0) {
884 u32 data = 0;
885
886 switch (ret & SH_FSI_ACKMD_MASK) {
887 default:
888 /* FALL THROUGH */
889 case SH_FSI_ACKMD_512:
890 data |= (0x0 << 12);
891 break;
892 case SH_FSI_ACKMD_256:
893 data |= (0x1 << 12);
894 break;
895 case SH_FSI_ACKMD_128:
896 data |= (0x2 << 12);
897 break;
898 case SH_FSI_ACKMD_64:
899 data |= (0x3 << 12);
900 break;
901 case SH_FSI_ACKMD_32:
902 if (fsi_ver < 2)
903 dev_err(dai->dev, "unsupported ACKMD\n");
904 else
905 data |= (0x4 << 12);
906 break;
907 }
908
909 switch (ret & SH_FSI_BPFMD_MASK) {
910 default:
911 /* FALL THROUGH */
912 case SH_FSI_BPFMD_32:
913 data |= (0x0 << 8);
914 break;
915 case SH_FSI_BPFMD_64:
916 data |= (0x1 << 8);
917 break;
918 case SH_FSI_BPFMD_128:
919 data |= (0x2 << 8);
920 break;
921 case SH_FSI_BPFMD_256:
922 data |= (0x3 << 8);
923 break;
924 case SH_FSI_BPFMD_512:
925 data |= (0x4 << 8);
926 break;
927 case SH_FSI_BPFMD_16:
928 if (fsi_ver < 2)
929 dev_err(dai->dev, "unsupported ACKMD\n");
930 else
931 data |= (0x7 << 8);
932 break;
933 }
934
935 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
936 udelay(10);
937 fsi_clk_ctrl(fsi, 1);
938 ret = 0;
939 }
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900940
941 return ret;
942
943}
944
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900945static struct snd_soc_dai_ops fsi_dai_ops = {
946 .startup = fsi_dai_startup,
947 .shutdown = fsi_dai_shutdown,
948 .trigger = fsi_dai_trigger,
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900949 .hw_params = fsi_dai_hw_params,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900950};
951
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900952/*
953 * pcm ops
954 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900955
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900956static struct snd_pcm_hardware fsi_pcm_hardware = {
957 .info = SNDRV_PCM_INFO_INTERLEAVED |
958 SNDRV_PCM_INFO_MMAP |
959 SNDRV_PCM_INFO_MMAP_VALID |
960 SNDRV_PCM_INFO_PAUSE,
961 .formats = FSI_FMTS,
962 .rates = FSI_RATES,
963 .rate_min = 8000,
964 .rate_max = 192000,
965 .channels_min = 1,
966 .channels_max = 2,
967 .buffer_bytes_max = 64 * 1024,
968 .period_bytes_min = 32,
969 .period_bytes_max = 8192,
970 .periods_min = 1,
971 .periods_max = 32,
972 .fifo_size = 256,
973};
974
975static int fsi_pcm_open(struct snd_pcm_substream *substream)
976{
977 struct snd_pcm_runtime *runtime = substream->runtime;
978 int ret = 0;
979
980 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
981
982 ret = snd_pcm_hw_constraint_integer(runtime,
983 SNDRV_PCM_HW_PARAM_PERIODS);
984
985 return ret;
986}
987
988static int fsi_hw_params(struct snd_pcm_substream *substream,
989 struct snd_pcm_hw_params *hw_params)
990{
991 return snd_pcm_lib_malloc_pages(substream,
992 params_buffer_bytes(hw_params));
993}
994
995static int fsi_hw_free(struct snd_pcm_substream *substream)
996{
997 return snd_pcm_lib_free_pages(substream);
998}
999
1000static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
1001{
1002 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001003 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001004 struct fsi_stream *io = fsi_get_stream(fsi, fsi_is_play(substream));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001005 long location;
1006
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001007 location = (io->buff_offset - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001008 if (location < 0)
1009 location = 0;
1010
1011 return bytes_to_frames(runtime, location);
1012}
1013
1014static struct snd_pcm_ops fsi_pcm_ops = {
1015 .open = fsi_pcm_open,
1016 .ioctl = snd_pcm_lib_ioctl,
1017 .hw_params = fsi_hw_params,
1018 .hw_free = fsi_hw_free,
1019 .pointer = fsi_pointer,
1020};
1021
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001022/*
1023 * snd_soc_platform
1024 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001025
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001026#define PREALLOC_BUFFER (32 * 1024)
1027#define PREALLOC_BUFFER_MAX (32 * 1024)
1028
1029static void fsi_pcm_free(struct snd_pcm *pcm)
1030{
1031 snd_pcm_lib_preallocate_free_for_all(pcm);
1032}
1033
1034static int fsi_pcm_new(struct snd_card *card,
1035 struct snd_soc_dai *dai,
1036 struct snd_pcm *pcm)
1037{
1038 /*
1039 * dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
1040 * in MMAP mode (i.e. aplay -M)
1041 */
1042 return snd_pcm_lib_preallocate_pages_for_all(
1043 pcm,
1044 SNDRV_DMA_TYPE_CONTINUOUS,
1045 snd_dma_continuous_data(GFP_KERNEL),
1046 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1047}
1048
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001049/*
1050 * alsa struct
1051 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001052
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001053static struct snd_soc_dai_driver fsi_soc_dai[] = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001054 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001055 .name = "fsia-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001056 .playback = {
1057 .rates = FSI_RATES,
1058 .formats = FSI_FMTS,
1059 .channels_min = 1,
1060 .channels_max = 8,
1061 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001062 .capture = {
1063 .rates = FSI_RATES,
1064 .formats = FSI_FMTS,
1065 .channels_min = 1,
1066 .channels_max = 8,
1067 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001068 .ops = &fsi_dai_ops,
1069 },
1070 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001071 .name = "fsib-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001072 .playback = {
1073 .rates = FSI_RATES,
1074 .formats = FSI_FMTS,
1075 .channels_min = 1,
1076 .channels_max = 8,
1077 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001078 .capture = {
1079 .rates = FSI_RATES,
1080 .formats = FSI_FMTS,
1081 .channels_min = 1,
1082 .channels_max = 8,
1083 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001084 .ops = &fsi_dai_ops,
1085 },
1086};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001087
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001088static struct snd_soc_platform_driver fsi_soc_platform = {
1089 .ops = &fsi_pcm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001090 .pcm_new = fsi_pcm_new,
1091 .pcm_free = fsi_pcm_free,
1092};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001093
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001094/*
1095 * platform function
1096 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001097
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001098static int fsi_probe(struct platform_device *pdev)
1099{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001100 struct fsi_master *master;
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001101 const struct platform_device_id *id_entry;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001102 struct resource *res;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001103 unsigned int irq;
1104 int ret;
1105
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001106 id_entry = pdev->id_entry;
1107 if (!id_entry) {
1108 dev_err(&pdev->dev, "unknown fsi device\n");
1109 return -ENODEV;
1110 }
1111
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001112 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1113 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb6aa1792009-12-16 17:10:09 +01001114 if (!res || (int)irq <= 0) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001115 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1116 ret = -ENODEV;
1117 goto exit;
1118 }
1119
1120 master = kzalloc(sizeof(*master), GFP_KERNEL);
1121 if (!master) {
1122 dev_err(&pdev->dev, "Could not allocate master\n");
1123 ret = -ENOMEM;
1124 goto exit;
1125 }
1126
1127 master->base = ioremap_nocache(res->start, resource_size(res));
1128 if (!master->base) {
1129 ret = -ENXIO;
1130 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1131 goto exit_kfree;
1132 }
1133
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001134 /* master setting */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001135 master->irq = irq;
1136 master->info = pdev->dev.platform_data;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001137 master->core = (struct fsi_core *)id_entry->driver_data;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +09001138 spin_lock_init(&master->lock);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001139
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001140 /* FSI A setting */
1141 master->fsia.base = master->base;
1142 master->fsia.master = master;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001143
1144 /* FSI B setting */
1145 master->fsib.base = master->base + 0x40;
1146 master->fsib.master = master;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001147
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001148 pm_runtime_enable(&pdev->dev);
1149 pm_runtime_resume(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001150 dev_set_drvdata(&pdev->dev, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001151
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001152 fsi_soft_all_reset(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001153
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001154 ret = request_irq(irq, &fsi_interrupt, IRQF_DISABLED,
1155 id_entry->name, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001156 if (ret) {
1157 dev_err(&pdev->dev, "irq request err\n");
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +09001158 goto exit_iounmap;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001159 }
1160
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001161 ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001162 if (ret < 0) {
1163 dev_err(&pdev->dev, "cannot snd soc register\n");
1164 goto exit_free_irq;
1165 }
1166
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001167 return snd_soc_register_dais(&pdev->dev, fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001168
1169exit_free_irq:
1170 free_irq(irq, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001171exit_iounmap:
1172 iounmap(master->base);
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001173 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001174exit_kfree:
1175 kfree(master);
1176 master = NULL;
1177exit:
1178 return ret;
1179}
1180
1181static int fsi_remove(struct platform_device *pdev)
1182{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001183 struct fsi_master *master;
1184
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001185 master = dev_get_drvdata(&pdev->dev);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001186
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001187 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
1188 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001189
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001190 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001191
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001192 free_irq(master->irq, master);
1193
1194 iounmap(master->base);
1195 kfree(master);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001196
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001197 return 0;
1198}
1199
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001200static int fsi_runtime_nop(struct device *dev)
1201{
1202 /* Runtime PM callback shared between ->runtime_suspend()
1203 * and ->runtime_resume(). Simply returns success.
1204 *
1205 * This driver re-initializes all registers after
1206 * pm_runtime_get_sync() anyway so there is no need
1207 * to save and restore registers here.
1208 */
1209 return 0;
1210}
1211
1212static struct dev_pm_ops fsi_pm_ops = {
1213 .runtime_suspend = fsi_runtime_nop,
1214 .runtime_resume = fsi_runtime_nop,
1215};
1216
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001217static struct fsi_core fsi1_core = {
1218 .ver = 1,
1219
1220 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001221 .int_st = INT_ST,
1222 .iemsk = IEMSK,
1223 .imsk = IMSK,
1224};
1225
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001226static struct fsi_core fsi2_core = {
1227 .ver = 2,
1228
1229 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001230 .int_st = CPU_INT_ST,
1231 .iemsk = CPU_IEMSK,
1232 .imsk = CPU_IMSK,
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +09001233 .a_mclk = A_MST_CTLR,
1234 .b_mclk = B_MST_CTLR,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001235};
1236
1237static struct platform_device_id fsi_id_table[] = {
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001238 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
1239 { "sh_fsi2", (kernel_ulong_t)&fsi2_core },
Guennadi Liakhovetski05c69452010-10-05 17:54:28 +02001240 {},
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001241};
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001242MODULE_DEVICE_TABLE(platform, fsi_id_table);
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001243
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001244static struct platform_driver fsi_driver = {
1245 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001246 .name = "fsi-pcm-audio",
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001247 .pm = &fsi_pm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001248 },
1249 .probe = fsi_probe,
1250 .remove = fsi_remove,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001251 .id_table = fsi_id_table,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001252};
1253
1254static int __init fsi_mobile_init(void)
1255{
1256 return platform_driver_register(&fsi_driver);
1257}
1258
1259static void __exit fsi_mobile_exit(void)
1260{
1261 platform_driver_unregister(&fsi_driver);
1262}
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001263
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001264module_init(fsi_mobile_init);
1265module_exit(fsi_mobile_exit);
1266
1267MODULE_LICENSE("GPL");
1268MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
1269MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");