blob: 2b06402801efd5fe1e49fa7575916804828042c5 [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
255static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
256{
257 struct snd_soc_dai *dai = fsi_get_dai(substream);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000258 struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900259
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000260 if (dai->id == 0)
261 return &master->fsia;
262 else
263 return &master->fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900264}
265
266static u32 fsi_get_info_flags(struct fsi_priv *fsi)
267{
268 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900269 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900270
271 return is_porta ? master->info->porta_flags :
272 master->info->portb_flags;
273}
274
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900275static inline int fsi_stream_is_play(int stream)
276{
277 return stream == SNDRV_PCM_STREAM_PLAYBACK;
278}
279
Kuninori Morimoto00545782010-10-12 18:30:14 +0900280static inline int fsi_is_play(struct snd_pcm_substream *substream)
281{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900282 return fsi_stream_is_play(substream->stream);
283}
284
285static inline struct fsi_stream *fsi_get_stream(struct fsi_priv *fsi,
286 int is_play)
287{
288 return is_play ? &fsi->playback : &fsi->capture;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900289}
290
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900291static int fsi_is_master_mode(struct fsi_priv *fsi, int is_play)
292{
293 u32 mode;
294 u32 flags = fsi_get_info_flags(fsi);
295
296 mode = is_play ? SH_FSI_OUT_SLAVE_MODE : SH_FSI_IN_SLAVE_MODE;
297
298 /* return
299 * 1 : master mode
300 * 0 : slave mode
301 */
302
303 return (mode & flags) != mode;
304}
305
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900306static u32 fsi_get_port_shift(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900307{
308 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900309 u32 shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900310
311 if (is_porta)
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900312 shift = is_play ? AO_SHIFT : AI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900313 else
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900314 shift = is_play ? BO_SHIFT : BI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900315
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900316 return shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900317}
318
319static void fsi_stream_push(struct fsi_priv *fsi,
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900320 int is_play,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900321 struct snd_pcm_substream *substream,
322 u32 buffer_len,
323 u32 period_len)
324{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900325 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
326
327 io->substream = substream;
328 io->buff_len = buffer_len;
329 io->buff_offset = 0;
330 io->period_len = period_len;
331 io->period_num = 0;
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900332 io->oerr_num = -1; /* ignore 1st err */
333 io->uerr_num = -1; /* ignore 1st err */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900334}
335
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900336static void fsi_stream_pop(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900337{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900338 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900339 struct snd_soc_dai *dai = fsi_get_dai(io->substream);
340
341
342 if (io->oerr_num > 0)
343 dev_err(dai->dev, "over_run = %d\n", io->oerr_num);
344
345 if (io->uerr_num > 0)
346 dev_err(dai->dev, "under_run = %d\n", io->uerr_num);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900347
348 io->substream = NULL;
349 io->buff_len = 0;
350 io->buff_offset = 0;
351 io->period_len = 0;
352 io->period_num = 0;
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900353 io->oerr_num = 0;
354 io->uerr_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900355}
356
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900357static int fsi_get_fifo_data_num(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900358{
359 u32 status;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900360 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900361 int data_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900362
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900363 status = is_play ?
364 fsi_reg_read(fsi, DOFF_ST) :
365 fsi_reg_read(fsi, DIFF_ST);
366
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900367 data_num = 0x1ff & (status >> 8);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900368 data_num *= io->chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900369
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900370 return data_num;
371}
372
373static int fsi_len2num(int len, int width)
374{
375 return len / width;
376}
377
378#define fsi_num2offset(a, b) fsi_num2len(a, b)
379static int fsi_num2len(int num, int width)
380{
381 return num * width;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900382}
383
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900384static int fsi_get_frame_width(struct fsi_priv *fsi, int is_play)
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900385{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900386 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
387 struct snd_pcm_substream *substream = io->substream;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900388 struct snd_pcm_runtime *runtime = substream->runtime;
389
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900390 return frames_to_bytes(runtime, 1) / io->chan_num;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900391}
392
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900393static void fsi_count_fifo_err(struct fsi_priv *fsi)
394{
395 u32 ostatus = fsi_reg_read(fsi, DOFF_ST);
396 u32 istatus = fsi_reg_read(fsi, DIFF_ST);
397
398 if (ostatus & ERR_OVER)
399 fsi->playback.oerr_num++;
400
401 if (ostatus & ERR_UNDER)
402 fsi->playback.uerr_num++;
403
404 if (istatus & ERR_OVER)
405 fsi->capture.oerr_num++;
406
407 if (istatus & ERR_UNDER)
408 fsi->capture.uerr_num++;
409
410 fsi_reg_write(fsi, DOFF_ST, 0);
411 fsi_reg_write(fsi, DIFF_ST, 0);
412}
413
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900414/*
415 * dma function
416 */
417
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900418static u8 *fsi_dma_get_area(struct fsi_priv *fsi, int stream)
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900419{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900420 int is_play = fsi_stream_is_play(stream);
421 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
422
423 return io->substream->runtime->dma_area + io->buff_offset;
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900424}
425
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900426static void fsi_dma_soft_push16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900427{
428 u16 *start;
429 int i;
430
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900431 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900432
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900433 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900434 fsi_reg_write(fsi, DODT, ((u32)*(start + i) << 8));
435}
436
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900437static void fsi_dma_soft_pop16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900438{
439 u16 *start;
440 int i;
441
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900442 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
443
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900444
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900445 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900446 *(start + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
447}
448
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900449static void fsi_dma_soft_push32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900450{
451 u32 *start;
452 int i;
453
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900454 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
455
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900456
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900457 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900458 fsi_reg_write(fsi, DODT, *(start + i));
459}
460
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900461static void fsi_dma_soft_pop32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900462{
463 u32 *start;
464 int i;
465
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900466 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900467
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900468 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900469 *(start + i) = fsi_reg_read(fsi, DIDT);
470}
471
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900472/*
473 * irq function
474 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900475
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900476static void fsi_irq_enable(struct fsi_priv *fsi, int is_play)
477{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900478 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900479 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900480
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900481 fsi_core_mask_set(master, imsk, data, data);
482 fsi_core_mask_set(master, iemsk, data, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900483}
484
485static void fsi_irq_disable(struct fsi_priv *fsi, int is_play)
486{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900487 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900488 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900489
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900490 fsi_core_mask_set(master, imsk, data, 0);
491 fsi_core_mask_set(master, iemsk, data, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900492}
493
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900494static u32 fsi_irq_get_status(struct fsi_master *master)
495{
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900496 return fsi_core_read(master, int_st);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900497}
498
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900499static void fsi_irq_clear_status(struct fsi_priv *fsi)
500{
501 u32 data = 0;
502 struct fsi_master *master = fsi_get_master(fsi);
503
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900504 data |= AB_IO(1, fsi_get_port_shift(fsi, 0));
505 data |= AB_IO(1, fsi_get_port_shift(fsi, 1));
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900506
507 /* clear interrupt factor */
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900508 fsi_core_mask_set(master, int_st, data, 0);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900509}
510
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900511/*
512 * SPDIF master clock function
513 *
514 * These functions are used later FSI2
515 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900516static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
517{
518 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900519 u32 mask, val;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900520
521 if (master->core->ver < 2) {
522 pr_err("fsi: register access err (%s)\n", __func__);
523 return;
524 }
525
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900526 mask = BP | SE;
527 val = enable ? mask : 0;
528
529 fsi_is_port_a(fsi) ?
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900530 fsi_core_mask_set(master, a_mclk, mask, val) :
531 fsi_core_mask_set(master, b_mclk, mask, val);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900532}
533
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900534/*
535 * ctrl function
536 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900537
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900538static void fsi_clk_ctrl(struct fsi_priv *fsi, int enable)
539{
540 u32 val = fsi_is_port_a(fsi) ? (1 << 0) : (1 << 4);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900541 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900542
543 if (enable)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900544 fsi_master_mask_set(master, CLK_RST, val, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900545 else
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900546 fsi_master_mask_set(master, CLK_RST, val, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900547}
548
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900549static void fsi_fifo_init(struct fsi_priv *fsi,
550 int is_play,
551 struct snd_soc_dai *dai)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900552{
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900553 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900554 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900555 u32 shift, i;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900556
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900557 /* get on-chip RAM capacity */
558 shift = fsi_master_read(master, FIFO_SZ);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900559 shift >>= fsi_get_port_shift(fsi, is_play);
560 shift &= FIFO_SZ_MASK;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900561 io->fifo_max_num = 256 << shift;
562 dev_dbg(dai->dev, "fifo = %d words\n", io->fifo_max_num);
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900563
564 /*
565 * The maximum number of sample data varies depending
566 * on the number of channels selected for the format.
567 *
568 * FIFOs are used in 4-channel units in 3-channel mode
569 * and in 8-channel units in 5- to 7-channel mode
570 * meaning that more FIFOs than the required size of DPRAM
571 * are used.
572 *
573 * ex) if 256 words of DP-RAM is connected
574 * 1 channel: 256 (256 x 1 = 256)
575 * 2 channels: 128 (128 x 2 = 256)
576 * 3 channels: 64 ( 64 x 3 = 192)
577 * 4 channels: 64 ( 64 x 4 = 256)
578 * 5 channels: 32 ( 32 x 5 = 160)
579 * 6 channels: 32 ( 32 x 6 = 192)
580 * 7 channels: 32 ( 32 x 7 = 224)
581 * 8 channels: 32 ( 32 x 8 = 256)
582 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900583 for (i = 1; i < io->chan_num; i <<= 1)
584 io->fifo_max_num >>= 1;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900585 dev_dbg(dai->dev, "%d channel %d store\n",
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900586 io->chan_num, io->fifo_max_num);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900587
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900588 /*
589 * set interrupt generation factor
590 * clear FIFO
591 */
592 if (is_play) {
593 fsi_reg_write(fsi, DOFF_CTL, IRQ_HALF);
594 fsi_reg_mask_set(fsi, DOFF_CTL, FIFO_CLR, FIFO_CLR);
595 } else {
596 fsi_reg_write(fsi, DIFF_CTL, IRQ_HALF);
597 fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR);
598 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900599}
600
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900601static void fsi_soft_all_reset(struct fsi_master *master)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900602{
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900603 /* port AB reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900604 fsi_master_mask_set(master, SOFT_RST, PASR | PBSR, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900605 mdelay(10);
606
607 /* soft reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900608 fsi_master_mask_set(master, SOFT_RST, FSISR, 0);
609 fsi_master_mask_set(master, SOFT_RST, FSISR, FSISR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900610 mdelay(10);
611}
612
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900613static int fsi_fifo_data_ctrl(struct fsi_priv *fsi, int stream)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900614{
615 struct snd_pcm_runtime *runtime;
616 struct snd_pcm_substream *substream = NULL;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900617 int is_play = fsi_stream_is_play(stream);
618 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900619 int data_residue_num;
620 int data_num;
621 int data_num_max;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900622 int ch_width;
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900623 int over_period;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900624 void (*fn)(struct fsi_priv *fsi, int size);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900625
626 if (!fsi ||
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900627 !io->substream ||
628 !io->substream->runtime)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900629 return -EINVAL;
630
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900631 over_period = 0;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900632 substream = io->substream;
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900633 runtime = substream->runtime;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900634
635 /* FSI FIFO has limit.
636 * So, this driver can not send periods data at a time
637 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900638 if (io->buff_offset >=
639 fsi_num2offset(io->period_num + 1, io->period_len)) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900640
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900641 over_period = 1;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900642 io->period_num = (io->period_num + 1) % runtime->periods;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900643
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900644 if (0 == io->period_num)
645 io->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900646 }
647
648 /* get 1 channel data width */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900649 ch_width = fsi_get_frame_width(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900650
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900651 /* get residue data number of alsa */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900652 data_residue_num = fsi_len2num(io->buff_len - io->buff_offset,
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900653 ch_width);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900654
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900655 if (is_play) {
656 /*
657 * for play-back
658 *
659 * data_num_max : number of FSI fifo free space
660 * data_num : number of ALSA residue data
661 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900662 data_num_max = io->fifo_max_num * io->chan_num;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900663 data_num_max -= fsi_get_fifo_data_num(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900664
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900665 data_num = data_residue_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900666
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900667 switch (ch_width) {
668 case 2:
669 fn = fsi_dma_soft_push16;
670 break;
671 case 4:
672 fn = fsi_dma_soft_push32;
673 break;
674 default:
675 return -EINVAL;
676 }
677 } else {
678 /*
679 * for capture
680 *
681 * data_num_max : number of ALSA free space
682 * data_num : number of data in FSI fifo
683 */
684 data_num_max = data_residue_num;
685 data_num = fsi_get_fifo_data_num(fsi, is_play);
686
687 switch (ch_width) {
688 case 2:
689 fn = fsi_dma_soft_pop16;
690 break;
691 case 4:
692 fn = fsi_dma_soft_pop32;
693 break;
694 default:
695 return -EINVAL;
696 }
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +0900697 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900698
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900699 data_num = min(data_num, data_num_max);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900700
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900701 fn(fsi, data_num);
702
703 /* update buff_offset */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900704 io->buff_offset += fsi_num2offset(data_num, ch_width);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900705
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900706 if (over_period)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900707 snd_pcm_period_elapsed(substream);
708
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900709 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900710}
711
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900712static int fsi_data_pop(struct fsi_priv *fsi)
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900713{
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900714 return fsi_fifo_data_ctrl(fsi, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900715}
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900716
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900717static int fsi_data_push(struct fsi_priv *fsi)
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900718{
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900719 return fsi_fifo_data_ctrl(fsi, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900720}
721
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900722static irqreturn_t fsi_interrupt(int irq, void *data)
723{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900724 struct fsi_master *master = data;
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900725 u32 int_st = fsi_irq_get_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900726
727 /* clear irq status */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900728 fsi_master_mask_set(master, SOFT_RST, IR, 0);
729 fsi_master_mask_set(master, SOFT_RST, IR, IR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900730
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900731 if (int_st & AB_IO(1, AO_SHIFT))
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900732 fsi_data_push(&master->fsia);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900733 if (int_st & AB_IO(1, BO_SHIFT))
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900734 fsi_data_push(&master->fsib);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900735 if (int_st & AB_IO(1, AI_SHIFT))
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900736 fsi_data_pop(&master->fsia);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900737 if (int_st & AB_IO(1, BI_SHIFT))
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900738 fsi_data_pop(&master->fsib);
739
740 fsi_count_fifo_err(&master->fsia);
741 fsi_count_fifo_err(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900742
Kuninori Morimoto48d78e52010-12-03 17:37:31 +0900743 fsi_irq_clear_status(&master->fsia);
744 fsi_irq_clear_status(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900745
746 return IRQ_HANDLED;
747}
748
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900749/*
750 * dai ops
751 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900752
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900753static int fsi_dai_startup(struct snd_pcm_substream *substream,
754 struct snd_soc_dai *dai)
755{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900756 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900757 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900758 struct fsi_stream *io;
759 u32 flags = fsi_get_info_flags(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900760 u32 fmt;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900761 u32 data;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900762 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900763 int is_master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900764
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900765 io = fsi_get_stream(fsi, is_play);
766
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900767 pm_runtime_get_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900768
769 /* CKG1 */
770 data = is_play ? (1 << 0) : (1 << 4);
771 is_master = fsi_is_master_mode(fsi, is_play);
772 if (is_master)
773 fsi_reg_mask_set(fsi, CKG1, data, data);
774 else
775 fsi_reg_mask_set(fsi, CKG1, data, 0);
776
777 /* clock inversion (CKG2) */
778 data = 0;
Kuninori Morimotob427b442010-07-13 12:01:15 +0900779 if (SH_FSI_LRM_INV & flags)
780 data |= 1 << 12;
781 if (SH_FSI_BRM_INV & flags)
782 data |= 1 << 8;
783 if (SH_FSI_LRS_INV & flags)
784 data |= 1 << 4;
785 if (SH_FSI_BRS_INV & flags)
786 data |= 1 << 0;
787
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900788 fsi_reg_write(fsi, CKG2, data);
789
790 /* do fmt, di fmt */
791 data = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900792 fmt = is_play ? SH_FSI_GET_OFMT(flags) : SH_FSI_GET_IFMT(flags);
793 switch (fmt) {
794 case SH_FSI_FMT_MONO:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900795 data = CR_MONO;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900796 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900797 break;
798 case SH_FSI_FMT_MONO_DELAY:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900799 data = CR_MONO_D;
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_PCM:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900803 data = CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900804 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900805 break;
806 case SH_FSI_FMT_I2S:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900807 data = CR_I2S;
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_TDM:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900811 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900812 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900813 data = CR_TDM | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900814 break;
815 case SH_FSI_FMT_TDM_DELAY:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900816 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900817 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900818 data = CR_TDM_D | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900819 break;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900820 case SH_FSI_FMT_SPDIF:
821 if (master->core->ver < 2) {
822 dev_err(dai->dev, "This FSI can not use SPDIF\n");
823 return -EINVAL;
824 }
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900825 data = CR_BWS_16 | CR_DTMD_SPDIF_PCM | CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900826 io->chan_num = 2;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900827 fsi_spdif_clk_ctrl(fsi, 1);
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900828 fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900829 break;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900830 default:
831 dev_err(dai->dev, "unknown format.\n");
832 return -EINVAL;
833 }
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900834 is_play ?
835 fsi_reg_write(fsi, DO_FMT, data) :
836 fsi_reg_write(fsi, DI_FMT, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900837
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900838 /* irq clear */
839 fsi_irq_disable(fsi, is_play);
840 fsi_irq_clear_status(fsi);
841
842 /* fifo init */
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900843 fsi_fifo_init(fsi, is_play, dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900844
Kuninori Morimotoa68a3b42010-10-12 11:39:50 +0900845 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900846}
847
848static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
849 struct snd_soc_dai *dai)
850{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900851 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto00545782010-10-12 18:30:14 +0900852 int is_play = fsi_is_play(substream);
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000853 struct fsi_master *master = fsi_get_master(fsi);
854 int (*set_rate)(struct device *dev, int is_porta, int rate, int enable);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900855
856 fsi_irq_disable(fsi, is_play);
857 fsi_clk_ctrl(fsi, 0);
858
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000859 set_rate = master->info->set_rate;
860 if (set_rate && fsi->rate)
861 set_rate(dai->dev, fsi_is_port_a(fsi), fsi->rate, 0);
862 fsi->rate = 0;
863
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900864 pm_runtime_put_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900865}
866
867static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
868 struct snd_soc_dai *dai)
869{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900870 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900871 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900872 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900873 int ret = 0;
874
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900875 switch (cmd) {
876 case SNDRV_PCM_TRIGGER_START:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900877 fsi_stream_push(fsi, is_play, substream,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900878 frames_to_bytes(runtime, runtime->buffer_size),
879 frames_to_bytes(runtime, runtime->period_size));
Kuninori Morimoto1ec9bc32010-12-17 12:55:22 +0900880 ret = is_play ? fsi_data_push(fsi) : fsi_data_pop(fsi);
Kuninori Morimoto9e261bb2010-12-17 12:52:56 +0900881 fsi_irq_enable(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900882 break;
883 case SNDRV_PCM_TRIGGER_STOP:
884 fsi_irq_disable(fsi, is_play);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900885 fsi_stream_pop(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900886 break;
887 }
888
889 return ret;
890}
891
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900892static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
893 struct snd_pcm_hw_params *params,
894 struct snd_soc_dai *dai)
895{
896 struct fsi_priv *fsi = fsi_get_priv(substream);
897 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000898 int (*set_rate)(struct device *dev, int is_porta, int rate, int enable);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900899 int fsi_ver = master->core->ver;
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000900 long rate = params_rate(params);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900901 int ret;
902
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000903 set_rate = master->info->set_rate;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900904 if (!set_rate)
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900905 return 0;
906
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000907 ret = set_rate(dai->dev, fsi_is_port_a(fsi), rate, 1);
908 if (ret < 0) /* error */
909 return ret;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900910
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000911 fsi->rate = rate;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900912 if (ret > 0) {
913 u32 data = 0;
914
915 switch (ret & SH_FSI_ACKMD_MASK) {
916 default:
917 /* FALL THROUGH */
918 case SH_FSI_ACKMD_512:
919 data |= (0x0 << 12);
920 break;
921 case SH_FSI_ACKMD_256:
922 data |= (0x1 << 12);
923 break;
924 case SH_FSI_ACKMD_128:
925 data |= (0x2 << 12);
926 break;
927 case SH_FSI_ACKMD_64:
928 data |= (0x3 << 12);
929 break;
930 case SH_FSI_ACKMD_32:
931 if (fsi_ver < 2)
932 dev_err(dai->dev, "unsupported ACKMD\n");
933 else
934 data |= (0x4 << 12);
935 break;
936 }
937
938 switch (ret & SH_FSI_BPFMD_MASK) {
939 default:
940 /* FALL THROUGH */
941 case SH_FSI_BPFMD_32:
942 data |= (0x0 << 8);
943 break;
944 case SH_FSI_BPFMD_64:
945 data |= (0x1 << 8);
946 break;
947 case SH_FSI_BPFMD_128:
948 data |= (0x2 << 8);
949 break;
950 case SH_FSI_BPFMD_256:
951 data |= (0x3 << 8);
952 break;
953 case SH_FSI_BPFMD_512:
954 data |= (0x4 << 8);
955 break;
956 case SH_FSI_BPFMD_16:
957 if (fsi_ver < 2)
958 dev_err(dai->dev, "unsupported ACKMD\n");
959 else
960 data |= (0x7 << 8);
961 break;
962 }
963
964 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
965 udelay(10);
966 fsi_clk_ctrl(fsi, 1);
967 ret = 0;
968 }
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900969
970 return ret;
971
972}
973
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900974static struct snd_soc_dai_ops fsi_dai_ops = {
975 .startup = fsi_dai_startup,
976 .shutdown = fsi_dai_shutdown,
977 .trigger = fsi_dai_trigger,
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900978 .hw_params = fsi_dai_hw_params,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900979};
980
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900981/*
982 * pcm ops
983 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900984
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900985static struct snd_pcm_hardware fsi_pcm_hardware = {
986 .info = SNDRV_PCM_INFO_INTERLEAVED |
987 SNDRV_PCM_INFO_MMAP |
988 SNDRV_PCM_INFO_MMAP_VALID |
989 SNDRV_PCM_INFO_PAUSE,
990 .formats = FSI_FMTS,
991 .rates = FSI_RATES,
992 .rate_min = 8000,
993 .rate_max = 192000,
994 .channels_min = 1,
995 .channels_max = 2,
996 .buffer_bytes_max = 64 * 1024,
997 .period_bytes_min = 32,
998 .period_bytes_max = 8192,
999 .periods_min = 1,
1000 .periods_max = 32,
1001 .fifo_size = 256,
1002};
1003
1004static int fsi_pcm_open(struct snd_pcm_substream *substream)
1005{
1006 struct snd_pcm_runtime *runtime = substream->runtime;
1007 int ret = 0;
1008
1009 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
1010
1011 ret = snd_pcm_hw_constraint_integer(runtime,
1012 SNDRV_PCM_HW_PARAM_PERIODS);
1013
1014 return ret;
1015}
1016
1017static int fsi_hw_params(struct snd_pcm_substream *substream,
1018 struct snd_pcm_hw_params *hw_params)
1019{
1020 return snd_pcm_lib_malloc_pages(substream,
1021 params_buffer_bytes(hw_params));
1022}
1023
1024static int fsi_hw_free(struct snd_pcm_substream *substream)
1025{
1026 return snd_pcm_lib_free_pages(substream);
1027}
1028
1029static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
1030{
1031 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001032 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001033 struct fsi_stream *io = fsi_get_stream(fsi, fsi_is_play(substream));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001034 long location;
1035
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001036 location = (io->buff_offset - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001037 if (location < 0)
1038 location = 0;
1039
1040 return bytes_to_frames(runtime, location);
1041}
1042
1043static struct snd_pcm_ops fsi_pcm_ops = {
1044 .open = fsi_pcm_open,
1045 .ioctl = snd_pcm_lib_ioctl,
1046 .hw_params = fsi_hw_params,
1047 .hw_free = fsi_hw_free,
1048 .pointer = fsi_pointer,
1049};
1050
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001051/*
1052 * snd_soc_platform
1053 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001054
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001055#define PREALLOC_BUFFER (32 * 1024)
1056#define PREALLOC_BUFFER_MAX (32 * 1024)
1057
1058static void fsi_pcm_free(struct snd_pcm *pcm)
1059{
1060 snd_pcm_lib_preallocate_free_for_all(pcm);
1061}
1062
1063static int fsi_pcm_new(struct snd_card *card,
1064 struct snd_soc_dai *dai,
1065 struct snd_pcm *pcm)
1066{
1067 /*
1068 * dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
1069 * in MMAP mode (i.e. aplay -M)
1070 */
1071 return snd_pcm_lib_preallocate_pages_for_all(
1072 pcm,
1073 SNDRV_DMA_TYPE_CONTINUOUS,
1074 snd_dma_continuous_data(GFP_KERNEL),
1075 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1076}
1077
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001078/*
1079 * alsa struct
1080 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001081
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001082static struct snd_soc_dai_driver fsi_soc_dai[] = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001083 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001084 .name = "fsia-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001085 .playback = {
1086 .rates = FSI_RATES,
1087 .formats = FSI_FMTS,
1088 .channels_min = 1,
1089 .channels_max = 8,
1090 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001091 .capture = {
1092 .rates = FSI_RATES,
1093 .formats = FSI_FMTS,
1094 .channels_min = 1,
1095 .channels_max = 8,
1096 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001097 .ops = &fsi_dai_ops,
1098 },
1099 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001100 .name = "fsib-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001101 .playback = {
1102 .rates = FSI_RATES,
1103 .formats = FSI_FMTS,
1104 .channels_min = 1,
1105 .channels_max = 8,
1106 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001107 .capture = {
1108 .rates = FSI_RATES,
1109 .formats = FSI_FMTS,
1110 .channels_min = 1,
1111 .channels_max = 8,
1112 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001113 .ops = &fsi_dai_ops,
1114 },
1115};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001116
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001117static struct snd_soc_platform_driver fsi_soc_platform = {
1118 .ops = &fsi_pcm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001119 .pcm_new = fsi_pcm_new,
1120 .pcm_free = fsi_pcm_free,
1121};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001122
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001123/*
1124 * platform function
1125 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001126
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001127static int fsi_probe(struct platform_device *pdev)
1128{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001129 struct fsi_master *master;
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001130 const struct platform_device_id *id_entry;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001131 struct resource *res;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001132 unsigned int irq;
1133 int ret;
1134
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001135 id_entry = pdev->id_entry;
1136 if (!id_entry) {
1137 dev_err(&pdev->dev, "unknown fsi device\n");
1138 return -ENODEV;
1139 }
1140
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001141 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1142 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb6aa1792009-12-16 17:10:09 +01001143 if (!res || (int)irq <= 0) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001144 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1145 ret = -ENODEV;
1146 goto exit;
1147 }
1148
1149 master = kzalloc(sizeof(*master), GFP_KERNEL);
1150 if (!master) {
1151 dev_err(&pdev->dev, "Could not allocate master\n");
1152 ret = -ENOMEM;
1153 goto exit;
1154 }
1155
1156 master->base = ioremap_nocache(res->start, resource_size(res));
1157 if (!master->base) {
1158 ret = -ENXIO;
1159 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1160 goto exit_kfree;
1161 }
1162
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001163 /* master setting */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001164 master->irq = irq;
1165 master->info = pdev->dev.platform_data;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001166 master->core = (struct fsi_core *)id_entry->driver_data;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +09001167 spin_lock_init(&master->lock);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001168
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001169 /* FSI A setting */
1170 master->fsia.base = master->base;
1171 master->fsia.master = master;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001172
1173 /* FSI B setting */
1174 master->fsib.base = master->base + 0x40;
1175 master->fsib.master = master;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001176
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001177 pm_runtime_enable(&pdev->dev);
1178 pm_runtime_resume(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001179 dev_set_drvdata(&pdev->dev, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001180
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001181 fsi_soft_all_reset(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001182
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001183 ret = request_irq(irq, &fsi_interrupt, IRQF_DISABLED,
1184 id_entry->name, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001185 if (ret) {
1186 dev_err(&pdev->dev, "irq request err\n");
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +09001187 goto exit_iounmap;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001188 }
1189
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001190 ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001191 if (ret < 0) {
1192 dev_err(&pdev->dev, "cannot snd soc register\n");
1193 goto exit_free_irq;
1194 }
1195
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001196 return snd_soc_register_dais(&pdev->dev, fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001197
1198exit_free_irq:
1199 free_irq(irq, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001200exit_iounmap:
1201 iounmap(master->base);
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001202 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001203exit_kfree:
1204 kfree(master);
1205 master = NULL;
1206exit:
1207 return ret;
1208}
1209
1210static int fsi_remove(struct platform_device *pdev)
1211{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001212 struct fsi_master *master;
1213
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001214 master = dev_get_drvdata(&pdev->dev);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001215
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001216 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
1217 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001218
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001219 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001220
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001221 free_irq(master->irq, master);
1222
1223 iounmap(master->base);
1224 kfree(master);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001225
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001226 return 0;
1227}
1228
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001229static int fsi_runtime_nop(struct device *dev)
1230{
1231 /* Runtime PM callback shared between ->runtime_suspend()
1232 * and ->runtime_resume(). Simply returns success.
1233 *
1234 * This driver re-initializes all registers after
1235 * pm_runtime_get_sync() anyway so there is no need
1236 * to save and restore registers here.
1237 */
1238 return 0;
1239}
1240
1241static struct dev_pm_ops fsi_pm_ops = {
1242 .runtime_suspend = fsi_runtime_nop,
1243 .runtime_resume = fsi_runtime_nop,
1244};
1245
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001246static struct fsi_core fsi1_core = {
1247 .ver = 1,
1248
1249 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001250 .int_st = INT_ST,
1251 .iemsk = IEMSK,
1252 .imsk = IMSK,
1253};
1254
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001255static struct fsi_core fsi2_core = {
1256 .ver = 2,
1257
1258 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001259 .int_st = CPU_INT_ST,
1260 .iemsk = CPU_IEMSK,
1261 .imsk = CPU_IMSK,
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +09001262 .a_mclk = A_MST_CTLR,
1263 .b_mclk = B_MST_CTLR,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001264};
1265
1266static struct platform_device_id fsi_id_table[] = {
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001267 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
1268 { "sh_fsi2", (kernel_ulong_t)&fsi2_core },
Guennadi Liakhovetski05c69452010-10-05 17:54:28 +02001269 {},
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001270};
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001271MODULE_DEVICE_TABLE(platform, fsi_id_table);
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001272
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001273static struct platform_driver fsi_driver = {
1274 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001275 .name = "fsi-pcm-audio",
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001276 .pm = &fsi_pm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001277 },
1278 .probe = fsi_probe,
1279 .remove = fsi_remove,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001280 .id_table = fsi_id_table,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001281};
1282
1283static int __init fsi_mobile_init(void)
1284{
1285 return platform_driver_register(&fsi_driver);
1286}
1287
1288static void __exit fsi_mobile_exit(void)
1289{
1290 platform_driver_unregister(&fsi_driver);
1291}
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001292
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001293module_init(fsi_mobile_init);
1294module_exit(fsi_mobile_exit);
1295
1296MODULE_LICENSE("GPL");
1297MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
1298MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");