blob: 1d0a16e80919f788f5566f6cff64f857bbecb9a0 [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 Morimoto1ec9bc32010-12-17 12:55:22 +0900137
138 int uerr_num;
139 int oerr_num;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900140};
141
142struct fsi_priv {
143 void __iomem *base;
144 struct fsi_master *master;
145
146 struct fsi_stream playback;
147 struct fsi_stream capture;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900148
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000149 long rate;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900150};
151
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900152struct fsi_core {
153 int ver;
154
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900155 u32 int_st;
156 u32 iemsk;
157 u32 imsk;
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900158 u32 a_mclk;
159 u32 b_mclk;
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900160};
161
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900162struct fsi_master {
163 void __iomem *base;
164 int irq;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900165 struct fsi_priv fsia;
166 struct fsi_priv fsib;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900167 struct fsi_core *core;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900168 struct sh_fsi_platform_info *info;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900169 spinlock_t lock;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900170};
171
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900172/*
173 * basic read write function
174 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900175
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100176static void __fsi_reg_write(u32 reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900177{
178 /* valid data area is 24bit */
179 data &= 0x00ffffff;
180
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100181 __raw_writel(data, reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900182}
183
184static u32 __fsi_reg_read(u32 reg)
185{
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100186 return __raw_readl(reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900187}
188
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100189static void __fsi_reg_mask_set(u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900190{
191 u32 val = __fsi_reg_read(reg);
192
193 val &= ~mask;
194 val |= data & mask;
195
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100196 __fsi_reg_write(reg, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900197}
198
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900199#define fsi_reg_write(p, r, d)\
200 __fsi_reg_write((u32)(p->base + REG_##r), d)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900201
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900202#define fsi_reg_read(p, r)\
203 __fsi_reg_read((u32)(p->base + REG_##r))
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900204
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900205#define fsi_reg_mask_set(p, r, m, d)\
206 __fsi_reg_mask_set((u32)(p->base + REG_##r), m, d)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900207
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900208#define fsi_master_read(p, r) _fsi_master_read(p, MST_##r)
209#define fsi_core_read(p, r) _fsi_master_read(p, p->core->r)
210static u32 _fsi_master_read(struct fsi_master *master, u32 reg)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900211{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900212 u32 ret;
213 unsigned long flags;
214
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900215 spin_lock_irqsave(&master->lock, flags);
216 ret = __fsi_reg_read((u32)(master->base + reg));
217 spin_unlock_irqrestore(&master->lock, flags);
218
219 return ret;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900220}
221
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900222#define fsi_master_mask_set(p, r, m, d) _fsi_master_mask_set(p, MST_##r, m, d)
223#define fsi_core_mask_set(p, r, m, d) _fsi_master_mask_set(p, p->core->r, m, d)
224static void _fsi_master_mask_set(struct fsi_master *master,
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900225 u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900226{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900227 unsigned long flags;
228
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900229 spin_lock_irqsave(&master->lock, flags);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100230 __fsi_reg_mask_set((u32)(master->base + reg), mask, data);
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900231 spin_unlock_irqrestore(&master->lock, flags);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900232}
233
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900234/*
235 * basic function
236 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900237
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900238static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900239{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900240 return fsi->master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900241}
242
243static int fsi_is_port_a(struct fsi_priv *fsi)
244{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900245 return fsi->master->base == fsi->base;
246}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900247
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900248static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900249{
250 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900251
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000252 return rtd->cpu_dai;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900253}
254
Kuninori Morimoto0d032c12011-01-20 11:45:51 +0900255static struct fsi_priv *fsi_get_priv_frm_dai(struct snd_soc_dai *dai)
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900256{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000257 struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900258
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000259 if (dai->id == 0)
260 return &master->fsia;
261 else
262 return &master->fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900263}
264
Kuninori Morimoto0d032c12011-01-20 11:45:51 +0900265static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
266{
267 return fsi_get_priv_frm_dai(fsi_get_dai(substream));
268}
269
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900270static u32 fsi_get_info_flags(struct fsi_priv *fsi)
271{
272 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900273 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900274
275 return is_porta ? master->info->porta_flags :
276 master->info->portb_flags;
277}
278
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900279static inline int fsi_stream_is_play(int stream)
280{
281 return stream == SNDRV_PCM_STREAM_PLAYBACK;
282}
283
Kuninori Morimoto00545782010-10-12 18:30:14 +0900284static inline int fsi_is_play(struct snd_pcm_substream *substream)
285{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900286 return fsi_stream_is_play(substream->stream);
287}
288
289static inline struct fsi_stream *fsi_get_stream(struct fsi_priv *fsi,
290 int is_play)
291{
292 return is_play ? &fsi->playback : &fsi->capture;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900293}
294
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900295static int fsi_is_master_mode(struct fsi_priv *fsi, int is_play)
296{
297 u32 mode;
298 u32 flags = fsi_get_info_flags(fsi);
299
300 mode = is_play ? SH_FSI_OUT_SLAVE_MODE : SH_FSI_IN_SLAVE_MODE;
301
302 /* return
303 * 1 : master mode
304 * 0 : slave mode
305 */
306
307 return (mode & flags) != mode;
308}
309
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900310static u32 fsi_get_port_shift(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900311{
312 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900313 u32 shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900314
315 if (is_porta)
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900316 shift = is_play ? AO_SHIFT : AI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900317 else
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900318 shift = is_play ? BO_SHIFT : BI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900319
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900320 return shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900321}
322
323static void fsi_stream_push(struct fsi_priv *fsi,
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900324 int is_play,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900325 struct snd_pcm_substream *substream,
326 u32 buffer_len,
327 u32 period_len)
328{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900329 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
330
331 io->substream = substream;
332 io->buff_len = buffer_len;
333 io->buff_offset = 0;
334 io->period_len = period_len;
335 io->period_num = 0;
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900336 io->oerr_num = -1; /* ignore 1st err */
337 io->uerr_num = -1; /* ignore 1st err */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900338}
339
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900340static void fsi_stream_pop(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900341{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900342 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900343 struct snd_soc_dai *dai = fsi_get_dai(io->substream);
344
345
346 if (io->oerr_num > 0)
347 dev_err(dai->dev, "over_run = %d\n", io->oerr_num);
348
349 if (io->uerr_num > 0)
350 dev_err(dai->dev, "under_run = %d\n", io->uerr_num);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900351
352 io->substream = NULL;
353 io->buff_len = 0;
354 io->buff_offset = 0;
355 io->period_len = 0;
356 io->period_num = 0;
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900357 io->oerr_num = 0;
358 io->uerr_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900359}
360
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900361static int fsi_get_fifo_data_num(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900362{
363 u32 status;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900364 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900365 int data_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900366
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900367 status = is_play ?
368 fsi_reg_read(fsi, DOFF_ST) :
369 fsi_reg_read(fsi, DIFF_ST);
370
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900371 data_num = 0x1ff & (status >> 8);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900372 data_num *= io->chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900373
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900374 return data_num;
375}
376
377static int fsi_len2num(int len, int width)
378{
379 return len / width;
380}
381
382#define fsi_num2offset(a, b) fsi_num2len(a, b)
383static int fsi_num2len(int num, int width)
384{
385 return num * width;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900386}
387
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900388static int fsi_get_frame_width(struct fsi_priv *fsi, int is_play)
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900389{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900390 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
391 struct snd_pcm_substream *substream = io->substream;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900392 struct snd_pcm_runtime *runtime = substream->runtime;
393
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900394 return frames_to_bytes(runtime, 1) / io->chan_num;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900395}
396
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900397static void fsi_count_fifo_err(struct fsi_priv *fsi)
398{
399 u32 ostatus = fsi_reg_read(fsi, DOFF_ST);
400 u32 istatus = fsi_reg_read(fsi, DIFF_ST);
401
402 if (ostatus & ERR_OVER)
403 fsi->playback.oerr_num++;
404
405 if (ostatus & ERR_UNDER)
406 fsi->playback.uerr_num++;
407
408 if (istatus & ERR_OVER)
409 fsi->capture.oerr_num++;
410
411 if (istatus & ERR_UNDER)
412 fsi->capture.uerr_num++;
413
414 fsi_reg_write(fsi, DOFF_ST, 0);
415 fsi_reg_write(fsi, DIFF_ST, 0);
416}
417
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900418/*
419 * dma function
420 */
421
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900422static u8 *fsi_dma_get_area(struct fsi_priv *fsi, int stream)
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900423{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900424 int is_play = fsi_stream_is_play(stream);
425 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
426
427 return io->substream->runtime->dma_area + io->buff_offset;
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900428}
429
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900430static void fsi_dma_soft_push16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900431{
432 u16 *start;
433 int i;
434
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900435 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900436
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900437 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900438 fsi_reg_write(fsi, DODT, ((u32)*(start + i) << 8));
439}
440
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900441static void fsi_dma_soft_pop16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900442{
443 u16 *start;
444 int i;
445
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900446 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
447
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900448
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900449 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900450 *(start + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
451}
452
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900453static void fsi_dma_soft_push32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900454{
455 u32 *start;
456 int i;
457
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900458 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
459
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900460
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900461 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900462 fsi_reg_write(fsi, DODT, *(start + i));
463}
464
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900465static void fsi_dma_soft_pop32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900466{
467 u32 *start;
468 int i;
469
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900470 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900471
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900472 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900473 *(start + i) = fsi_reg_read(fsi, DIDT);
474}
475
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900476/*
477 * irq function
478 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900479
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900480static void fsi_irq_enable(struct fsi_priv *fsi, int is_play)
481{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900482 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900483 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900484
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900485 fsi_core_mask_set(master, imsk, data, data);
486 fsi_core_mask_set(master, iemsk, data, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900487}
488
489static void fsi_irq_disable(struct fsi_priv *fsi, int is_play)
490{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900491 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900492 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900493
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900494 fsi_core_mask_set(master, imsk, data, 0);
495 fsi_core_mask_set(master, iemsk, data, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900496}
497
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900498static u32 fsi_irq_get_status(struct fsi_master *master)
499{
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900500 return fsi_core_read(master, int_st);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900501}
502
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900503static void fsi_irq_clear_status(struct fsi_priv *fsi)
504{
505 u32 data = 0;
506 struct fsi_master *master = fsi_get_master(fsi);
507
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900508 data |= AB_IO(1, fsi_get_port_shift(fsi, 0));
509 data |= AB_IO(1, fsi_get_port_shift(fsi, 1));
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900510
511 /* clear interrupt factor */
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900512 fsi_core_mask_set(master, int_st, data, 0);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900513}
514
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900515/*
516 * SPDIF master clock function
517 *
518 * These functions are used later FSI2
519 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900520static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
521{
522 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900523 u32 mask, val;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900524
525 if (master->core->ver < 2) {
526 pr_err("fsi: register access err (%s)\n", __func__);
527 return;
528 }
529
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900530 mask = BP | SE;
531 val = enable ? mask : 0;
532
533 fsi_is_port_a(fsi) ?
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900534 fsi_core_mask_set(master, a_mclk, mask, val) :
535 fsi_core_mask_set(master, b_mclk, mask, val);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900536}
537
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900538/*
539 * ctrl function
540 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900541
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900542static void fsi_clk_ctrl(struct fsi_priv *fsi, int enable)
543{
544 u32 val = fsi_is_port_a(fsi) ? (1 << 0) : (1 << 4);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900545 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900546
547 if (enable)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900548 fsi_master_mask_set(master, CLK_RST, val, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900549 else
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900550 fsi_master_mask_set(master, CLK_RST, val, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900551}
552
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900553static void fsi_fifo_init(struct fsi_priv *fsi,
554 int is_play,
555 struct snd_soc_dai *dai)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900556{
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900557 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900558 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900559 u32 shift, i;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900560
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900561 /* get on-chip RAM capacity */
562 shift = fsi_master_read(master, FIFO_SZ);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900563 shift >>= fsi_get_port_shift(fsi, is_play);
564 shift &= FIFO_SZ_MASK;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900565 io->fifo_max_num = 256 << shift;
566 dev_dbg(dai->dev, "fifo = %d words\n", io->fifo_max_num);
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900567
568 /*
569 * The maximum number of sample data varies depending
570 * on the number of channels selected for the format.
571 *
572 * FIFOs are used in 4-channel units in 3-channel mode
573 * and in 8-channel units in 5- to 7-channel mode
574 * meaning that more FIFOs than the required size of DPRAM
575 * are used.
576 *
577 * ex) if 256 words of DP-RAM is connected
578 * 1 channel: 256 (256 x 1 = 256)
579 * 2 channels: 128 (128 x 2 = 256)
580 * 3 channels: 64 ( 64 x 3 = 192)
581 * 4 channels: 64 ( 64 x 4 = 256)
582 * 5 channels: 32 ( 32 x 5 = 160)
583 * 6 channels: 32 ( 32 x 6 = 192)
584 * 7 channels: 32 ( 32 x 7 = 224)
585 * 8 channels: 32 ( 32 x 8 = 256)
586 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900587 for (i = 1; i < io->chan_num; i <<= 1)
588 io->fifo_max_num >>= 1;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900589 dev_dbg(dai->dev, "%d channel %d store\n",
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900590 io->chan_num, io->fifo_max_num);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900591
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900592 /*
593 * set interrupt generation factor
594 * clear FIFO
595 */
596 if (is_play) {
597 fsi_reg_write(fsi, DOFF_CTL, IRQ_HALF);
598 fsi_reg_mask_set(fsi, DOFF_CTL, FIFO_CLR, FIFO_CLR);
599 } else {
600 fsi_reg_write(fsi, DIFF_CTL, IRQ_HALF);
601 fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR);
602 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900603}
604
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900605static void fsi_soft_all_reset(struct fsi_master *master)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900606{
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900607 /* port AB reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900608 fsi_master_mask_set(master, SOFT_RST, PASR | PBSR, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900609 mdelay(10);
610
611 /* soft reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900612 fsi_master_mask_set(master, SOFT_RST, FSISR, 0);
613 fsi_master_mask_set(master, SOFT_RST, FSISR, FSISR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900614 mdelay(10);
615}
616
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900617static int fsi_fifo_data_ctrl(struct fsi_priv *fsi, int stream)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900618{
619 struct snd_pcm_runtime *runtime;
620 struct snd_pcm_substream *substream = NULL;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900621 int is_play = fsi_stream_is_play(stream);
622 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900623 int data_residue_num;
624 int data_num;
625 int data_num_max;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900626 int ch_width;
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900627 int over_period;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900628 void (*fn)(struct fsi_priv *fsi, int size);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900629
630 if (!fsi ||
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900631 !io->substream ||
632 !io->substream->runtime)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900633 return -EINVAL;
634
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900635 over_period = 0;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900636 substream = io->substream;
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900637 runtime = substream->runtime;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900638
639 /* FSI FIFO has limit.
640 * So, this driver can not send periods data at a time
641 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900642 if (io->buff_offset >=
643 fsi_num2offset(io->period_num + 1, io->period_len)) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900644
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900645 over_period = 1;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900646 io->period_num = (io->period_num + 1) % runtime->periods;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900647
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900648 if (0 == io->period_num)
649 io->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900650 }
651
652 /* get 1 channel data width */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900653 ch_width = fsi_get_frame_width(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900654
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900655 /* get residue data number of alsa */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900656 data_residue_num = fsi_len2num(io->buff_len - io->buff_offset,
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900657 ch_width);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900658
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900659 if (is_play) {
660 /*
661 * for play-back
662 *
663 * data_num_max : number of FSI fifo free space
664 * data_num : number of ALSA residue data
665 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900666 data_num_max = io->fifo_max_num * io->chan_num;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900667 data_num_max -= fsi_get_fifo_data_num(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900668
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900669 data_num = data_residue_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900670
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900671 switch (ch_width) {
672 case 2:
673 fn = fsi_dma_soft_push16;
674 break;
675 case 4:
676 fn = fsi_dma_soft_push32;
677 break;
678 default:
679 return -EINVAL;
680 }
681 } else {
682 /*
683 * for capture
684 *
685 * data_num_max : number of ALSA free space
686 * data_num : number of data in FSI fifo
687 */
688 data_num_max = data_residue_num;
689 data_num = fsi_get_fifo_data_num(fsi, is_play);
690
691 switch (ch_width) {
692 case 2:
693 fn = fsi_dma_soft_pop16;
694 break;
695 case 4:
696 fn = fsi_dma_soft_pop32;
697 break;
698 default:
699 return -EINVAL;
700 }
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +0900701 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900702
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900703 data_num = min(data_num, data_num_max);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900704
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900705 fn(fsi, data_num);
706
707 /* update buff_offset */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900708 io->buff_offset += fsi_num2offset(data_num, ch_width);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900709
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900710 if (over_period)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900711 snd_pcm_period_elapsed(substream);
712
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900713 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900714}
715
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900716static int fsi_data_pop(struct fsi_priv *fsi)
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900717{
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900718 return fsi_fifo_data_ctrl(fsi, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900719}
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900720
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900721static int fsi_data_push(struct fsi_priv *fsi)
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900722{
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900723 return fsi_fifo_data_ctrl(fsi, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900724}
725
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900726static irqreturn_t fsi_interrupt(int irq, void *data)
727{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900728 struct fsi_master *master = data;
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900729 u32 int_st = fsi_irq_get_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900730
731 /* clear irq status */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900732 fsi_master_mask_set(master, SOFT_RST, IR, 0);
733 fsi_master_mask_set(master, SOFT_RST, IR, IR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900734
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900735 if (int_st & AB_IO(1, AO_SHIFT))
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900736 fsi_data_push(&master->fsia);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900737 if (int_st & AB_IO(1, BO_SHIFT))
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900738 fsi_data_push(&master->fsib);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900739 if (int_st & AB_IO(1, AI_SHIFT))
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900740 fsi_data_pop(&master->fsia);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900741 if (int_st & AB_IO(1, BI_SHIFT))
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900742 fsi_data_pop(&master->fsib);
743
744 fsi_count_fifo_err(&master->fsia);
745 fsi_count_fifo_err(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900746
Kuninori Morimoto48d78e52010-12-03 17:37:31 +0900747 fsi_irq_clear_status(&master->fsia);
748 fsi_irq_clear_status(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900749
750 return IRQ_HANDLED;
751}
752
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900753/*
754 * dai ops
755 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900756
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900757static int fsi_dai_startup(struct snd_pcm_substream *substream,
758 struct snd_soc_dai *dai)
759{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900760 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900761 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900762 struct fsi_stream *io;
763 u32 flags = fsi_get_info_flags(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900764 u32 fmt;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900765 u32 data;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900766 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900767 int is_master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900768
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900769 io = fsi_get_stream(fsi, is_play);
770
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900771 pm_runtime_get_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900772
773 /* CKG1 */
774 data = is_play ? (1 << 0) : (1 << 4);
775 is_master = fsi_is_master_mode(fsi, is_play);
776 if (is_master)
777 fsi_reg_mask_set(fsi, CKG1, data, data);
778 else
779 fsi_reg_mask_set(fsi, CKG1, data, 0);
780
781 /* clock inversion (CKG2) */
782 data = 0;
Kuninori Morimotob427b442010-07-13 12:01:15 +0900783 if (SH_FSI_LRM_INV & flags)
784 data |= 1 << 12;
785 if (SH_FSI_BRM_INV & flags)
786 data |= 1 << 8;
787 if (SH_FSI_LRS_INV & flags)
788 data |= 1 << 4;
789 if (SH_FSI_BRS_INV & flags)
790 data |= 1 << 0;
791
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900792 fsi_reg_write(fsi, CKG2, data);
793
794 /* do fmt, di fmt */
795 data = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900796 fmt = is_play ? SH_FSI_GET_OFMT(flags) : SH_FSI_GET_IFMT(flags);
797 switch (fmt) {
798 case SH_FSI_FMT_MONO:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900799 data = CR_MONO;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900800 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900801 break;
802 case SH_FSI_FMT_MONO_DELAY:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900803 data = CR_MONO_D;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900804 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900805 break;
806 case SH_FSI_FMT_PCM:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900807 data = CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900808 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900809 break;
810 case SH_FSI_FMT_I2S:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900811 data = CR_I2S;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900812 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900813 break;
814 case SH_FSI_FMT_TDM:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900815 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900816 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900817 data = CR_TDM | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900818 break;
819 case SH_FSI_FMT_TDM_DELAY:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900820 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900821 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900822 data = CR_TDM_D | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900823 break;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900824 case SH_FSI_FMT_SPDIF:
825 if (master->core->ver < 2) {
826 dev_err(dai->dev, "This FSI can not use SPDIF\n");
827 return -EINVAL;
828 }
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900829 data = CR_BWS_16 | CR_DTMD_SPDIF_PCM | CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900830 io->chan_num = 2;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900831 fsi_spdif_clk_ctrl(fsi, 1);
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900832 fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900833 break;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900834 default:
835 dev_err(dai->dev, "unknown format.\n");
836 return -EINVAL;
837 }
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900838 is_play ?
839 fsi_reg_write(fsi, DO_FMT, data) :
840 fsi_reg_write(fsi, DI_FMT, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900841
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900842 /* irq clear */
843 fsi_irq_disable(fsi, is_play);
844 fsi_irq_clear_status(fsi);
845
846 /* fifo init */
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900847 fsi_fifo_init(fsi, is_play, dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900848
Kuninori Morimotoa68a3b42010-10-12 11:39:50 +0900849 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900850}
851
852static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
853 struct snd_soc_dai *dai)
854{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900855 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto00545782010-10-12 18:30:14 +0900856 int is_play = fsi_is_play(substream);
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000857 struct fsi_master *master = fsi_get_master(fsi);
858 int (*set_rate)(struct device *dev, int is_porta, int rate, int enable);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900859
860 fsi_irq_disable(fsi, is_play);
861 fsi_clk_ctrl(fsi, 0);
862
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000863 set_rate = master->info->set_rate;
864 if (set_rate && fsi->rate)
865 set_rate(dai->dev, fsi_is_port_a(fsi), fsi->rate, 0);
866 fsi->rate = 0;
867
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900868 pm_runtime_put_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900869}
870
871static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
872 struct snd_soc_dai *dai)
873{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900874 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900875 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900876 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900877 int ret = 0;
878
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900879 switch (cmd) {
880 case SNDRV_PCM_TRIGGER_START:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900881 fsi_stream_push(fsi, is_play, substream,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900882 frames_to_bytes(runtime, runtime->buffer_size),
883 frames_to_bytes(runtime, runtime->period_size));
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900884 ret = is_play ? fsi_data_push(fsi) : fsi_data_pop(fsi);
Kuninori Morimoto9e261bb2010-12-17 12:52:56 +0900885 fsi_irq_enable(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900886 break;
887 case SNDRV_PCM_TRIGGER_STOP:
888 fsi_irq_disable(fsi, is_play);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900889 fsi_stream_pop(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900890 break;
891 }
892
893 return ret;
894}
895
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900896static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
897 struct snd_pcm_hw_params *params,
898 struct snd_soc_dai *dai)
899{
900 struct fsi_priv *fsi = fsi_get_priv(substream);
901 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000902 int (*set_rate)(struct device *dev, int is_porta, int rate, int enable);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900903 int fsi_ver = master->core->ver;
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000904 long rate = params_rate(params);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900905 int ret;
906
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000907 set_rate = master->info->set_rate;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900908 if (!set_rate)
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900909 return 0;
910
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000911 ret = set_rate(dai->dev, fsi_is_port_a(fsi), rate, 1);
912 if (ret < 0) /* error */
913 return ret;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900914
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000915 fsi->rate = rate;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900916 if (ret > 0) {
917 u32 data = 0;
918
919 switch (ret & SH_FSI_ACKMD_MASK) {
920 default:
921 /* FALL THROUGH */
922 case SH_FSI_ACKMD_512:
923 data |= (0x0 << 12);
924 break;
925 case SH_FSI_ACKMD_256:
926 data |= (0x1 << 12);
927 break;
928 case SH_FSI_ACKMD_128:
929 data |= (0x2 << 12);
930 break;
931 case SH_FSI_ACKMD_64:
932 data |= (0x3 << 12);
933 break;
934 case SH_FSI_ACKMD_32:
935 if (fsi_ver < 2)
936 dev_err(dai->dev, "unsupported ACKMD\n");
937 else
938 data |= (0x4 << 12);
939 break;
940 }
941
942 switch (ret & SH_FSI_BPFMD_MASK) {
943 default:
944 /* FALL THROUGH */
945 case SH_FSI_BPFMD_32:
946 data |= (0x0 << 8);
947 break;
948 case SH_FSI_BPFMD_64:
949 data |= (0x1 << 8);
950 break;
951 case SH_FSI_BPFMD_128:
952 data |= (0x2 << 8);
953 break;
954 case SH_FSI_BPFMD_256:
955 data |= (0x3 << 8);
956 break;
957 case SH_FSI_BPFMD_512:
958 data |= (0x4 << 8);
959 break;
960 case SH_FSI_BPFMD_16:
961 if (fsi_ver < 2)
962 dev_err(dai->dev, "unsupported ACKMD\n");
963 else
964 data |= (0x7 << 8);
965 break;
966 }
967
968 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
969 udelay(10);
970 fsi_clk_ctrl(fsi, 1);
971 ret = 0;
972 }
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900973
974 return ret;
975
976}
977
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900978static struct snd_soc_dai_ops fsi_dai_ops = {
979 .startup = fsi_dai_startup,
980 .shutdown = fsi_dai_shutdown,
981 .trigger = fsi_dai_trigger,
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900982 .hw_params = fsi_dai_hw_params,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900983};
984
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900985/*
986 * pcm ops
987 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900988
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900989static struct snd_pcm_hardware fsi_pcm_hardware = {
990 .info = SNDRV_PCM_INFO_INTERLEAVED |
991 SNDRV_PCM_INFO_MMAP |
992 SNDRV_PCM_INFO_MMAP_VALID |
993 SNDRV_PCM_INFO_PAUSE,
994 .formats = FSI_FMTS,
995 .rates = FSI_RATES,
996 .rate_min = 8000,
997 .rate_max = 192000,
998 .channels_min = 1,
999 .channels_max = 2,
1000 .buffer_bytes_max = 64 * 1024,
1001 .period_bytes_min = 32,
1002 .period_bytes_max = 8192,
1003 .periods_min = 1,
1004 .periods_max = 32,
1005 .fifo_size = 256,
1006};
1007
1008static int fsi_pcm_open(struct snd_pcm_substream *substream)
1009{
1010 struct snd_pcm_runtime *runtime = substream->runtime;
1011 int ret = 0;
1012
1013 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
1014
1015 ret = snd_pcm_hw_constraint_integer(runtime,
1016 SNDRV_PCM_HW_PARAM_PERIODS);
1017
1018 return ret;
1019}
1020
1021static int fsi_hw_params(struct snd_pcm_substream *substream,
1022 struct snd_pcm_hw_params *hw_params)
1023{
1024 return snd_pcm_lib_malloc_pages(substream,
1025 params_buffer_bytes(hw_params));
1026}
1027
1028static int fsi_hw_free(struct snd_pcm_substream *substream)
1029{
1030 return snd_pcm_lib_free_pages(substream);
1031}
1032
1033static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
1034{
1035 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001036 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001037 struct fsi_stream *io = fsi_get_stream(fsi, fsi_is_play(substream));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001038 long location;
1039
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001040 location = (io->buff_offset - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001041 if (location < 0)
1042 location = 0;
1043
1044 return bytes_to_frames(runtime, location);
1045}
1046
1047static struct snd_pcm_ops fsi_pcm_ops = {
1048 .open = fsi_pcm_open,
1049 .ioctl = snd_pcm_lib_ioctl,
1050 .hw_params = fsi_hw_params,
1051 .hw_free = fsi_hw_free,
1052 .pointer = fsi_pointer,
1053};
1054
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001055/*
1056 * snd_soc_platform
1057 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001058
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001059#define PREALLOC_BUFFER (32 * 1024)
1060#define PREALLOC_BUFFER_MAX (32 * 1024)
1061
1062static void fsi_pcm_free(struct snd_pcm *pcm)
1063{
1064 snd_pcm_lib_preallocate_free_for_all(pcm);
1065}
1066
1067static int fsi_pcm_new(struct snd_card *card,
1068 struct snd_soc_dai *dai,
1069 struct snd_pcm *pcm)
1070{
1071 /*
1072 * dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
1073 * in MMAP mode (i.e. aplay -M)
1074 */
1075 return snd_pcm_lib_preallocate_pages_for_all(
1076 pcm,
1077 SNDRV_DMA_TYPE_CONTINUOUS,
1078 snd_dma_continuous_data(GFP_KERNEL),
1079 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1080}
1081
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001082/*
1083 * alsa struct
1084 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001085
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001086static struct snd_soc_dai_driver fsi_soc_dai[] = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001087 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001088 .name = "fsia-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001089 .playback = {
1090 .rates = FSI_RATES,
1091 .formats = FSI_FMTS,
1092 .channels_min = 1,
1093 .channels_max = 8,
1094 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001095 .capture = {
1096 .rates = FSI_RATES,
1097 .formats = FSI_FMTS,
1098 .channels_min = 1,
1099 .channels_max = 8,
1100 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001101 .ops = &fsi_dai_ops,
1102 },
1103 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001104 .name = "fsib-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001105 .playback = {
1106 .rates = FSI_RATES,
1107 .formats = FSI_FMTS,
1108 .channels_min = 1,
1109 .channels_max = 8,
1110 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001111 .capture = {
1112 .rates = FSI_RATES,
1113 .formats = FSI_FMTS,
1114 .channels_min = 1,
1115 .channels_max = 8,
1116 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001117 .ops = &fsi_dai_ops,
1118 },
1119};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001120
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001121static struct snd_soc_platform_driver fsi_soc_platform = {
1122 .ops = &fsi_pcm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001123 .pcm_new = fsi_pcm_new,
1124 .pcm_free = fsi_pcm_free,
1125};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001126
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001127/*
1128 * platform function
1129 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001130
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001131static int fsi_probe(struct platform_device *pdev)
1132{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001133 struct fsi_master *master;
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001134 const struct platform_device_id *id_entry;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001135 struct resource *res;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001136 unsigned int irq;
1137 int ret;
1138
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001139 id_entry = pdev->id_entry;
1140 if (!id_entry) {
1141 dev_err(&pdev->dev, "unknown fsi device\n");
1142 return -ENODEV;
1143 }
1144
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001145 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1146 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb6aa1792009-12-16 17:10:09 +01001147 if (!res || (int)irq <= 0) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001148 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1149 ret = -ENODEV;
1150 goto exit;
1151 }
1152
1153 master = kzalloc(sizeof(*master), GFP_KERNEL);
1154 if (!master) {
1155 dev_err(&pdev->dev, "Could not allocate master\n");
1156 ret = -ENOMEM;
1157 goto exit;
1158 }
1159
1160 master->base = ioremap_nocache(res->start, resource_size(res));
1161 if (!master->base) {
1162 ret = -ENXIO;
1163 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1164 goto exit_kfree;
1165 }
1166
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001167 /* master setting */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001168 master->irq = irq;
1169 master->info = pdev->dev.platform_data;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001170 master->core = (struct fsi_core *)id_entry->driver_data;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +09001171 spin_lock_init(&master->lock);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001172
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001173 /* FSI A setting */
1174 master->fsia.base = master->base;
1175 master->fsia.master = master;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001176
1177 /* FSI B setting */
1178 master->fsib.base = master->base + 0x40;
1179 master->fsib.master = master;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001180
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001181 pm_runtime_enable(&pdev->dev);
1182 pm_runtime_resume(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001183 dev_set_drvdata(&pdev->dev, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001184
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001185 fsi_soft_all_reset(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001186
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001187 ret = request_irq(irq, &fsi_interrupt, IRQF_DISABLED,
1188 id_entry->name, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001189 if (ret) {
1190 dev_err(&pdev->dev, "irq request err\n");
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +09001191 goto exit_iounmap;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001192 }
1193
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001194 ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001195 if (ret < 0) {
1196 dev_err(&pdev->dev, "cannot snd soc register\n");
1197 goto exit_free_irq;
1198 }
1199
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001200 return snd_soc_register_dais(&pdev->dev, fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001201
1202exit_free_irq:
1203 free_irq(irq, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001204exit_iounmap:
1205 iounmap(master->base);
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001206 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001207exit_kfree:
1208 kfree(master);
1209 master = NULL;
1210exit:
1211 return ret;
1212}
1213
1214static int fsi_remove(struct platform_device *pdev)
1215{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001216 struct fsi_master *master;
1217
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001218 master = dev_get_drvdata(&pdev->dev);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001219
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001220 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
1221 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001222
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001223 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001224
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001225 free_irq(master->irq, master);
1226
1227 iounmap(master->base);
1228 kfree(master);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001229
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001230 return 0;
1231}
1232
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001233static int fsi_runtime_nop(struct device *dev)
1234{
1235 /* Runtime PM callback shared between ->runtime_suspend()
1236 * and ->runtime_resume(). Simply returns success.
1237 *
1238 * This driver re-initializes all registers after
1239 * pm_runtime_get_sync() anyway so there is no need
1240 * to save and restore registers here.
1241 */
1242 return 0;
1243}
1244
1245static struct dev_pm_ops fsi_pm_ops = {
1246 .runtime_suspend = fsi_runtime_nop,
1247 .runtime_resume = fsi_runtime_nop,
1248};
1249
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001250static struct fsi_core fsi1_core = {
1251 .ver = 1,
1252
1253 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001254 .int_st = INT_ST,
1255 .iemsk = IEMSK,
1256 .imsk = IMSK,
1257};
1258
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001259static struct fsi_core fsi2_core = {
1260 .ver = 2,
1261
1262 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001263 .int_st = CPU_INT_ST,
1264 .iemsk = CPU_IEMSK,
1265 .imsk = CPU_IMSK,
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +09001266 .a_mclk = A_MST_CTLR,
1267 .b_mclk = B_MST_CTLR,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001268};
1269
1270static struct platform_device_id fsi_id_table[] = {
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001271 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
1272 { "sh_fsi2", (kernel_ulong_t)&fsi2_core },
Guennadi Liakhovetski05c69452010-10-05 17:54:28 +02001273 {},
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001274};
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001275MODULE_DEVICE_TABLE(platform, fsi_id_table);
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001276
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001277static struct platform_driver fsi_driver = {
1278 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001279 .name = "fsi-pcm-audio",
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001280 .pm = &fsi_pm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001281 },
1282 .probe = fsi_probe,
1283 .remove = fsi_remove,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001284 .id_table = fsi_id_table,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001285};
1286
1287static int __init fsi_mobile_init(void)
1288{
1289 return platform_driver_register(&fsi_driver);
1290}
1291
1292static void __exit fsi_mobile_exit(void)
1293{
1294 platform_driver_unregister(&fsi_driver);
1295}
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001296
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001297module_init(fsi_mobile_init);
1298module_exit(fsi_mobile_exit);
1299
1300MODULE_LICENSE("GPL");
1301MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
1302MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");