blob: 9ab85936e65d89936d566b2c8a64b9b713e36c8f [file] [log] [blame]
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001/*
2 * Fifo-attached Serial Interface (FSI) support for SH7724
3 *
4 * Copyright (C) 2009 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
6 *
7 * Based on ssi.c
8 * Copyright (c) 2007 Manuel Lauss <mano@roarinelk.homelinux.net>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090015#include <linux/delay.h>
Kuninori Morimoto785d1c42009-11-30 20:24:48 +090016#include <linux/pm_runtime.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090017#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090019#include <sound/soc.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090020#include <sound/sh_fsi.h>
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090021
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +090022/* PortA/PortB register */
23#define REG_DO_FMT 0x0000
24#define REG_DOFF_CTL 0x0004
25#define REG_DOFF_ST 0x0008
26#define REG_DI_FMT 0x000C
27#define REG_DIFF_CTL 0x0010
28#define REG_DIFF_ST 0x0014
29#define REG_CKG1 0x0018
30#define REG_CKG2 0x001C
31#define REG_DIDT 0x0020
32#define REG_DODT 0x0024
33#define REG_MUTE_ST 0x0028
34#define REG_OUT_SEL 0x0030
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090035
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +090036/* master register */
37#define MST_CLK_RST 0x0210
38#define MST_SOFT_RST 0x0214
39#define MST_FIFO_SZ 0x0218
40
41/* core register (depend on FSI version) */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090042#define A_MST_CTLR 0x0180
43#define B_MST_CTLR 0x01A0
Kuninori Morimotocc780d32010-03-25 19:15:53 +090044#define CPU_INT_ST 0x01F4
45#define CPU_IEMSK 0x01F8
46#define CPU_IMSK 0x01FC
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090047#define INT_ST 0x0200
48#define IEMSK 0x0204
49#define IMSK 0x0208
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090050
51/* DO_FMT */
52/* DI_FMT */
Kuninori Morimotof7d711e2010-12-03 17:36:24 +090053#define CR_BWS_24 (0x0 << 20) /* FSI2 */
54#define CR_BWS_16 (0x1 << 20) /* FSI2 */
55#define CR_BWS_20 (0x2 << 20) /* FSI2 */
56
57#define CR_DTMD_PCM (0x0 << 8) /* FSI2 */
58#define CR_DTMD_SPDIF_PCM (0x1 << 8) /* FSI2 */
59#define CR_DTMD_SPDIF_STREAM (0x2 << 8) /* FSI2 */
60
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +090061#define CR_MONO (0x0 << 4)
62#define CR_MONO_D (0x1 << 4)
63#define CR_PCM (0x2 << 4)
64#define CR_I2S (0x3 << 4)
65#define CR_TDM (0x4 << 4)
66#define CR_TDM_D (0x5 << 4)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090067
68/* DOFF_CTL */
69/* DIFF_CTL */
70#define IRQ_HALF 0x00100000
71#define FIFO_CLR 0x00000001
72
73/* DOFF_ST */
74#define ERR_OVER 0x00000010
75#define ERR_UNDER 0x00000001
Kuninori Morimoto59c3b002009-12-28 14:09:16 +090076#define ST_ERR (ERR_OVER | ERR_UNDER)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090077
Kuninori Morimotoccad7b42010-07-13 12:13:14 +090078/* CKG1 */
79#define ACKMD_MASK 0x00007000
80#define BPFMD_MASK 0x00000700
81
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090082/* A/B MST_CTLR */
83#define BP (1 << 4) /* Fix the signal of Biphase output */
84#define SE (1 << 0) /* Fix the master clock */
85
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090086/* CLK_RST */
87#define B_CLK 0x00000010
88#define A_CLK 0x00000001
89
Kuninori Morimotocf6edd02010-10-12 11:40:53 +090090/* IO SHIFT / MACRO */
91#define BI_SHIFT 12
92#define BO_SHIFT 8
93#define AI_SHIFT 4
94#define AO_SHIFT 0
95#define AB_IO(param, shift) (param << shift)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090096
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +090097/* SOFT_RST */
98#define PBSR (1 << 12) /* Port B Software Reset */
99#define PASR (1 << 8) /* Port A Software Reset */
100#define IR (1 << 4) /* Interrupt Reset */
101#define FSISR (1 << 0) /* Software Reset */
102
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900103/* OUT_SEL (FSI2) */
104#define DMMD (1 << 4) /* SPDIF output timing 0: Biphase only */
105 /* 1: Biphase and serial */
106
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900107/* FIFO_SZ */
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900108#define FIFO_SZ_MASK 0x7
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900109
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900110#define FSI_RATES SNDRV_PCM_RATE_8000_96000
111
112#define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)
113
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900114/*
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900115 * FSI driver use below type name for variable
116 *
117 * xxx_len : data length
118 * xxx_width : data width
119 * xxx_offset : data offset
120 * xxx_num : number of data
121 */
122
123/*
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900124 * struct
125 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900126
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900127struct fsi_stream {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900128 struct snd_pcm_substream *substream;
129
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900130 int fifo_max_num;
131 int chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900132
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900133 int buff_offset;
134 int buff_len;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900135 int period_len;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900136 int period_num;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900137};
138
139struct fsi_priv {
140 void __iomem *base;
141 struct fsi_master *master;
142
143 struct fsi_stream playback;
144 struct fsi_stream capture;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900145
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000146 long rate;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900147};
148
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900149struct fsi_core {
150 int ver;
151
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900152 u32 int_st;
153 u32 iemsk;
154 u32 imsk;
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900155 u32 a_mclk;
156 u32 b_mclk;
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900157};
158
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900159struct fsi_master {
160 void __iomem *base;
161 int irq;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900162 struct fsi_priv fsia;
163 struct fsi_priv fsib;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900164 struct fsi_core *core;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900165 struct sh_fsi_platform_info *info;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900166 spinlock_t lock;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900167};
168
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900169/*
170 * basic read write function
171 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900172
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100173static void __fsi_reg_write(u32 reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900174{
175 /* valid data area is 24bit */
176 data &= 0x00ffffff;
177
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100178 __raw_writel(data, reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900179}
180
181static u32 __fsi_reg_read(u32 reg)
182{
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100183 return __raw_readl(reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900184}
185
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100186static void __fsi_reg_mask_set(u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900187{
188 u32 val = __fsi_reg_read(reg);
189
190 val &= ~mask;
191 val |= data & mask;
192
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100193 __fsi_reg_write(reg, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900194}
195
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900196#define fsi_reg_write(p, r, d)\
197 __fsi_reg_write((u32)(p->base + REG_##r), d)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900198
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900199#define fsi_reg_read(p, r)\
200 __fsi_reg_read((u32)(p->base + REG_##r))
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900201
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900202#define fsi_reg_mask_set(p, r, m, d)\
203 __fsi_reg_mask_set((u32)(p->base + REG_##r), m, d)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900204
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900205#define fsi_master_read(p, r) _fsi_master_read(p, MST_##r)
206#define fsi_core_read(p, r) _fsi_master_read(p, p->core->r)
207static u32 _fsi_master_read(struct fsi_master *master, u32 reg)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900208{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900209 u32 ret;
210 unsigned long flags;
211
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900212 spin_lock_irqsave(&master->lock, flags);
213 ret = __fsi_reg_read((u32)(master->base + reg));
214 spin_unlock_irqrestore(&master->lock, flags);
215
216 return ret;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900217}
218
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900219#define fsi_master_mask_set(p, r, m, d) _fsi_master_mask_set(p, MST_##r, m, d)
220#define fsi_core_mask_set(p, r, m, d) _fsi_master_mask_set(p, p->core->r, m, d)
221static void _fsi_master_mask_set(struct fsi_master *master,
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900222 u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900223{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900224 unsigned long flags;
225
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900226 spin_lock_irqsave(&master->lock, flags);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100227 __fsi_reg_mask_set((u32)(master->base + reg), mask, data);
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900228 spin_unlock_irqrestore(&master->lock, flags);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900229}
230
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900231/*
232 * basic function
233 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900234
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900235static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900236{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900237 return fsi->master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900238}
239
240static int fsi_is_port_a(struct fsi_priv *fsi)
241{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900242 return fsi->master->base == fsi->base;
243}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900244
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900245static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900246{
247 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900248
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000249 return rtd->cpu_dai;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900250}
251
252static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
253{
254 struct snd_soc_dai *dai = fsi_get_dai(substream);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000255 struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900256
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000257 if (dai->id == 0)
258 return &master->fsia;
259 else
260 return &master->fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900261}
262
263static u32 fsi_get_info_flags(struct fsi_priv *fsi)
264{
265 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900266 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900267
268 return is_porta ? master->info->porta_flags :
269 master->info->portb_flags;
270}
271
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900272static inline int fsi_stream_is_play(int stream)
273{
274 return stream == SNDRV_PCM_STREAM_PLAYBACK;
275}
276
Kuninori Morimoto00545782010-10-12 18:30:14 +0900277static inline int fsi_is_play(struct snd_pcm_substream *substream)
278{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900279 return fsi_stream_is_play(substream->stream);
280}
281
282static inline struct fsi_stream *fsi_get_stream(struct fsi_priv *fsi,
283 int is_play)
284{
285 return is_play ? &fsi->playback : &fsi->capture;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900286}
287
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900288static int fsi_is_master_mode(struct fsi_priv *fsi, int is_play)
289{
290 u32 mode;
291 u32 flags = fsi_get_info_flags(fsi);
292
293 mode = is_play ? SH_FSI_OUT_SLAVE_MODE : SH_FSI_IN_SLAVE_MODE;
294
295 /* return
296 * 1 : master mode
297 * 0 : slave mode
298 */
299
300 return (mode & flags) != mode;
301}
302
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900303static u32 fsi_get_port_shift(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900304{
305 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900306 u32 shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900307
308 if (is_porta)
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900309 shift = is_play ? AO_SHIFT : AI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900310 else
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900311 shift = is_play ? BO_SHIFT : BI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900312
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900313 return shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900314}
315
316static void fsi_stream_push(struct fsi_priv *fsi,
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900317 int is_play,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900318 struct snd_pcm_substream *substream,
319 u32 buffer_len,
320 u32 period_len)
321{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900322 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
323
324 io->substream = substream;
325 io->buff_len = buffer_len;
326 io->buff_offset = 0;
327 io->period_len = period_len;
328 io->period_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900329}
330
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900331static void fsi_stream_pop(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900332{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900333 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
334
335 io->substream = NULL;
336 io->buff_len = 0;
337 io->buff_offset = 0;
338 io->period_len = 0;
339 io->period_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900340}
341
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900342static int fsi_get_fifo_data_num(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900343{
344 u32 status;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900345 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900346 int data_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900347
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900348 status = is_play ?
349 fsi_reg_read(fsi, DOFF_ST) :
350 fsi_reg_read(fsi, DIFF_ST);
351
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900352 data_num = 0x1ff & (status >> 8);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900353 data_num *= io->chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900354
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900355 return data_num;
356}
357
358static int fsi_len2num(int len, int width)
359{
360 return len / width;
361}
362
363#define fsi_num2offset(a, b) fsi_num2len(a, b)
364static int fsi_num2len(int num, int width)
365{
366 return num * width;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900367}
368
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900369static int fsi_get_frame_width(struct fsi_priv *fsi, int is_play)
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900370{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900371 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
372 struct snd_pcm_substream *substream = io->substream;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900373 struct snd_pcm_runtime *runtime = substream->runtime;
374
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900375 return frames_to_bytes(runtime, 1) / io->chan_num;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900376}
377
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900378/*
379 * dma function
380 */
381
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900382static u8 *fsi_dma_get_area(struct fsi_priv *fsi, int stream)
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900383{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900384 int is_play = fsi_stream_is_play(stream);
385 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
386
387 return io->substream->runtime->dma_area + io->buff_offset;
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900388}
389
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900390static void fsi_dma_soft_push16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900391{
392 u16 *start;
393 int i;
394
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900395 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900396
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900397 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900398 fsi_reg_write(fsi, DODT, ((u32)*(start + i) << 8));
399}
400
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900401static void fsi_dma_soft_pop16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900402{
403 u16 *start;
404 int i;
405
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900406 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
407
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900408
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900409 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900410 *(start + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
411}
412
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900413static void fsi_dma_soft_push32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900414{
415 u32 *start;
416 int i;
417
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900418 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
419
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900420
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900421 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900422 fsi_reg_write(fsi, DODT, *(start + i));
423}
424
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900425static void fsi_dma_soft_pop32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900426{
427 u32 *start;
428 int i;
429
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900430 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900431
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900432 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900433 *(start + i) = fsi_reg_read(fsi, DIDT);
434}
435
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900436/*
437 * irq function
438 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900439
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900440static void fsi_irq_enable(struct fsi_priv *fsi, int is_play)
441{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900442 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900443 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900444
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900445 fsi_core_mask_set(master, imsk, data, data);
446 fsi_core_mask_set(master, iemsk, data, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900447}
448
449static void fsi_irq_disable(struct fsi_priv *fsi, int is_play)
450{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900451 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900452 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900453
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900454 fsi_core_mask_set(master, imsk, data, 0);
455 fsi_core_mask_set(master, iemsk, data, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900456}
457
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900458static u32 fsi_irq_get_status(struct fsi_master *master)
459{
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900460 return fsi_core_read(master, int_st);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900461}
462
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900463static void fsi_irq_clear_status(struct fsi_priv *fsi)
464{
465 u32 data = 0;
466 struct fsi_master *master = fsi_get_master(fsi);
467
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900468 data |= AB_IO(1, fsi_get_port_shift(fsi, 0));
469 data |= AB_IO(1, fsi_get_port_shift(fsi, 1));
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900470
471 /* clear interrupt factor */
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900472 fsi_core_mask_set(master, int_st, data, 0);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900473}
474
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900475/*
476 * SPDIF master clock function
477 *
478 * These functions are used later FSI2
479 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900480static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
481{
482 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900483 u32 mask, val;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900484
485 if (master->core->ver < 2) {
486 pr_err("fsi: register access err (%s)\n", __func__);
487 return;
488 }
489
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +0900490 mask = BP | SE;
491 val = enable ? mask : 0;
492
493 fsi_is_port_a(fsi) ?
Kuninori Morimoto43fa95c2010-12-03 17:38:03 +0900494 fsi_core_mask_set(master, a_mclk, mask, val) :
495 fsi_core_mask_set(master, b_mclk, mask, val);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900496}
497
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900498/*
499 * ctrl function
500 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900501
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900502static void fsi_clk_ctrl(struct fsi_priv *fsi, int enable)
503{
504 u32 val = fsi_is_port_a(fsi) ? (1 << 0) : (1 << 4);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900505 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900506
507 if (enable)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900508 fsi_master_mask_set(master, CLK_RST, val, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900509 else
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900510 fsi_master_mask_set(master, CLK_RST, val, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900511}
512
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900513static void fsi_fifo_init(struct fsi_priv *fsi,
514 int is_play,
515 struct snd_soc_dai *dai)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900516{
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900517 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900518 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900519 u32 shift, i;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900520
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900521 /* get on-chip RAM capacity */
522 shift = fsi_master_read(master, FIFO_SZ);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900523 shift >>= fsi_get_port_shift(fsi, is_play);
524 shift &= FIFO_SZ_MASK;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900525 io->fifo_max_num = 256 << shift;
526 dev_dbg(dai->dev, "fifo = %d words\n", io->fifo_max_num);
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900527
528 /*
529 * The maximum number of sample data varies depending
530 * on the number of channels selected for the format.
531 *
532 * FIFOs are used in 4-channel units in 3-channel mode
533 * and in 8-channel units in 5- to 7-channel mode
534 * meaning that more FIFOs than the required size of DPRAM
535 * are used.
536 *
537 * ex) if 256 words of DP-RAM is connected
538 * 1 channel: 256 (256 x 1 = 256)
539 * 2 channels: 128 (128 x 2 = 256)
540 * 3 channels: 64 ( 64 x 3 = 192)
541 * 4 channels: 64 ( 64 x 4 = 256)
542 * 5 channels: 32 ( 32 x 5 = 160)
543 * 6 channels: 32 ( 32 x 6 = 192)
544 * 7 channels: 32 ( 32 x 7 = 224)
545 * 8 channels: 32 ( 32 x 8 = 256)
546 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900547 for (i = 1; i < io->chan_num; i <<= 1)
548 io->fifo_max_num >>= 1;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900549 dev_dbg(dai->dev, "%d channel %d store\n",
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900550 io->chan_num, io->fifo_max_num);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900551
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900552 /*
553 * set interrupt generation factor
554 * clear FIFO
555 */
556 if (is_play) {
557 fsi_reg_write(fsi, DOFF_CTL, IRQ_HALF);
558 fsi_reg_mask_set(fsi, DOFF_CTL, FIFO_CLR, FIFO_CLR);
559 } else {
560 fsi_reg_write(fsi, DIFF_CTL, IRQ_HALF);
561 fsi_reg_mask_set(fsi, DIFF_CTL, FIFO_CLR, FIFO_CLR);
562 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900563}
564
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900565static void fsi_soft_all_reset(struct fsi_master *master)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900566{
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900567 /* port AB reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900568 fsi_master_mask_set(master, SOFT_RST, PASR | PBSR, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900569 mdelay(10);
570
571 /* soft reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900572 fsi_master_mask_set(master, SOFT_RST, FSISR, 0);
573 fsi_master_mask_set(master, SOFT_RST, FSISR, FSISR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900574 mdelay(10);
575}
576
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900577static int fsi_fifo_data_ctrl(struct fsi_priv *fsi, int startup, int stream)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900578{
579 struct snd_pcm_runtime *runtime;
580 struct snd_pcm_substream *substream = NULL;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900581 int is_play = fsi_stream_is_play(stream);
582 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900583 int data_residue_num;
584 int data_num;
585 int data_num_max;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900586 int ch_width;
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900587 int over_period;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900588 void (*fn)(struct fsi_priv *fsi, int size);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900589
590 if (!fsi ||
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900591 !io->substream ||
592 !io->substream->runtime)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900593 return -EINVAL;
594
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900595 over_period = 0;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900596 substream = io->substream;
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900597 runtime = substream->runtime;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900598
599 /* FSI FIFO has limit.
600 * So, this driver can not send periods data at a time
601 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900602 if (io->buff_offset >=
603 fsi_num2offset(io->period_num + 1, io->period_len)) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900604
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900605 over_period = 1;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900606 io->period_num = (io->period_num + 1) % runtime->periods;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900607
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900608 if (0 == io->period_num)
609 io->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900610 }
611
612 /* get 1 channel data width */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900613 ch_width = fsi_get_frame_width(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900614
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900615 /* get residue data number of alsa */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900616 data_residue_num = fsi_len2num(io->buff_len - io->buff_offset,
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900617 ch_width);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900618
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900619 if (is_play) {
620 /*
621 * for play-back
622 *
623 * data_num_max : number of FSI fifo free space
624 * data_num : number of ALSA residue data
625 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900626 data_num_max = io->fifo_max_num * io->chan_num;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900627 data_num_max -= fsi_get_fifo_data_num(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900628
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900629 data_num = data_residue_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900630
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900631 switch (ch_width) {
632 case 2:
633 fn = fsi_dma_soft_push16;
634 break;
635 case 4:
636 fn = fsi_dma_soft_push32;
637 break;
638 default:
639 return -EINVAL;
640 }
641 } else {
642 /*
643 * for capture
644 *
645 * data_num_max : number of ALSA free space
646 * data_num : number of data in FSI fifo
647 */
648 data_num_max = data_residue_num;
649 data_num = fsi_get_fifo_data_num(fsi, is_play);
650
651 switch (ch_width) {
652 case 2:
653 fn = fsi_dma_soft_pop16;
654 break;
655 case 4:
656 fn = fsi_dma_soft_pop32;
657 break;
658 default:
659 return -EINVAL;
660 }
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +0900661 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900662
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900663 data_num = min(data_num, data_num_max);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900664
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900665 fn(fsi, data_num);
666
667 /* update buff_offset */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900668 io->buff_offset += fsi_num2offset(data_num, ch_width);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900669
670 /* check fifo status */
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900671 if (!startup) {
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900672 struct snd_soc_dai *dai = fsi_get_dai(substream);
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900673 u32 status = is_play ?
674 fsi_reg_read(fsi, DOFF_ST) :
675 fsi_reg_read(fsi, DIFF_ST);
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900676
677 if (status & ERR_OVER)
678 dev_err(dai->dev, "over run\n");
679 if (status & ERR_UNDER)
680 dev_err(dai->dev, "under run\n");
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900681 }
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900682
683 is_play ?
684 fsi_reg_write(fsi, DOFF_ST, 0) :
685 fsi_reg_write(fsi, DIFF_ST, 0);
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900686
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900687 if (over_period)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900688 snd_pcm_period_elapsed(substream);
689
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900690 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900691}
692
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900693static int fsi_data_pop(struct fsi_priv *fsi, int startup)
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900694{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900695 return fsi_fifo_data_ctrl(fsi, startup, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900696}
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900697
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900698static int fsi_data_push(struct fsi_priv *fsi, int startup)
699{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900700 return fsi_fifo_data_ctrl(fsi, startup, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900701}
702
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900703static irqreturn_t fsi_interrupt(int irq, void *data)
704{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900705 struct fsi_master *master = data;
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900706 u32 int_st = fsi_irq_get_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900707
708 /* clear irq status */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900709 fsi_master_mask_set(master, SOFT_RST, IR, 0);
710 fsi_master_mask_set(master, SOFT_RST, IR, IR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900711
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900712 if (int_st & AB_IO(1, AO_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900713 fsi_data_push(&master->fsia, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900714 if (int_st & AB_IO(1, BO_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900715 fsi_data_push(&master->fsib, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900716 if (int_st & AB_IO(1, AI_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900717 fsi_data_pop(&master->fsia, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900718 if (int_st & AB_IO(1, BI_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900719 fsi_data_pop(&master->fsib, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900720
Kuninori Morimoto48d78e52010-12-03 17:37:31 +0900721 fsi_irq_clear_status(&master->fsia);
722 fsi_irq_clear_status(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900723
724 return IRQ_HANDLED;
725}
726
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900727/*
728 * dai ops
729 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900730
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900731static int fsi_dai_startup(struct snd_pcm_substream *substream,
732 struct snd_soc_dai *dai)
733{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900734 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900735 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900736 struct fsi_stream *io;
737 u32 flags = fsi_get_info_flags(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900738 u32 fmt;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900739 u32 data;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900740 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900741 int is_master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900742
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900743 io = fsi_get_stream(fsi, is_play);
744
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900745 pm_runtime_get_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900746
747 /* CKG1 */
748 data = is_play ? (1 << 0) : (1 << 4);
749 is_master = fsi_is_master_mode(fsi, is_play);
750 if (is_master)
751 fsi_reg_mask_set(fsi, CKG1, data, data);
752 else
753 fsi_reg_mask_set(fsi, CKG1, data, 0);
754
755 /* clock inversion (CKG2) */
756 data = 0;
Kuninori Morimotob427b442010-07-13 12:01:15 +0900757 if (SH_FSI_LRM_INV & flags)
758 data |= 1 << 12;
759 if (SH_FSI_BRM_INV & flags)
760 data |= 1 << 8;
761 if (SH_FSI_LRS_INV & flags)
762 data |= 1 << 4;
763 if (SH_FSI_BRS_INV & flags)
764 data |= 1 << 0;
765
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900766 fsi_reg_write(fsi, CKG2, data);
767
768 /* do fmt, di fmt */
769 data = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900770 fmt = is_play ? SH_FSI_GET_OFMT(flags) : SH_FSI_GET_IFMT(flags);
771 switch (fmt) {
772 case SH_FSI_FMT_MONO:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900773 data = CR_MONO;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900774 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900775 break;
776 case SH_FSI_FMT_MONO_DELAY:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900777 data = CR_MONO_D;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900778 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900779 break;
780 case SH_FSI_FMT_PCM:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900781 data = CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900782 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900783 break;
784 case SH_FSI_FMT_I2S:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900785 data = CR_I2S;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900786 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900787 break;
788 case SH_FSI_FMT_TDM:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900789 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900790 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900791 data = CR_TDM | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900792 break;
793 case SH_FSI_FMT_TDM_DELAY:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900794 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900795 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900796 data = CR_TDM_D | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900797 break;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900798 case SH_FSI_FMT_SPDIF:
799 if (master->core->ver < 2) {
800 dev_err(dai->dev, "This FSI can not use SPDIF\n");
801 return -EINVAL;
802 }
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900803 data = CR_BWS_16 | CR_DTMD_SPDIF_PCM | CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900804 io->chan_num = 2;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900805 fsi_spdif_clk_ctrl(fsi, 1);
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900806 fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900807 break;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900808 default:
809 dev_err(dai->dev, "unknown format.\n");
810 return -EINVAL;
811 }
Kuninori Morimotoe8c8b632010-12-03 17:37:55 +0900812 is_play ?
813 fsi_reg_write(fsi, DO_FMT, data) :
814 fsi_reg_write(fsi, DI_FMT, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900815
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900816 /* irq clear */
817 fsi_irq_disable(fsi, is_play);
818 fsi_irq_clear_status(fsi);
819
820 /* fifo init */
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900821 fsi_fifo_init(fsi, is_play, dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900822
Kuninori Morimotoa68a3b42010-10-12 11:39:50 +0900823 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900824}
825
826static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
827 struct snd_soc_dai *dai)
828{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900829 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto00545782010-10-12 18:30:14 +0900830 int is_play = fsi_is_play(substream);
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000831 struct fsi_master *master = fsi_get_master(fsi);
832 int (*set_rate)(struct device *dev, int is_porta, int rate, int enable);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900833
834 fsi_irq_disable(fsi, is_play);
835 fsi_clk_ctrl(fsi, 0);
836
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000837 set_rate = master->info->set_rate;
838 if (set_rate && fsi->rate)
839 set_rate(dai->dev, fsi_is_port_a(fsi), fsi->rate, 0);
840 fsi->rate = 0;
841
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900842 pm_runtime_put_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900843}
844
845static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
846 struct snd_soc_dai *dai)
847{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900848 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900849 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900850 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900851 int ret = 0;
852
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900853 switch (cmd) {
854 case SNDRV_PCM_TRIGGER_START:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900855 fsi_stream_push(fsi, is_play, substream,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900856 frames_to_bytes(runtime, runtime->buffer_size),
857 frames_to_bytes(runtime, runtime->period_size));
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900858 ret = is_play ? fsi_data_push(fsi, 1) : fsi_data_pop(fsi, 1);
Kuninori Morimoto9e261bb2010-12-17 12:52:56 +0900859 fsi_irq_enable(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900860 break;
861 case SNDRV_PCM_TRIGGER_STOP:
862 fsi_irq_disable(fsi, is_play);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900863 fsi_stream_pop(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900864 break;
865 }
866
867 return ret;
868}
869
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900870static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
871 struct snd_pcm_hw_params *params,
872 struct snd_soc_dai *dai)
873{
874 struct fsi_priv *fsi = fsi_get_priv(substream);
875 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000876 int (*set_rate)(struct device *dev, int is_porta, int rate, int enable);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900877 int fsi_ver = master->core->ver;
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000878 long rate = params_rate(params);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900879 int ret;
880
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000881 set_rate = master->info->set_rate;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900882 if (!set_rate)
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900883 return 0;
884
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000885 ret = set_rate(dai->dev, fsi_is_port_a(fsi), rate, 1);
886 if (ret < 0) /* error */
887 return ret;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900888
Kuninori Morimotod4bc99b2010-11-24 02:44:06 +0000889 fsi->rate = rate;
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900890 if (ret > 0) {
891 u32 data = 0;
892
893 switch (ret & SH_FSI_ACKMD_MASK) {
894 default:
895 /* FALL THROUGH */
896 case SH_FSI_ACKMD_512:
897 data |= (0x0 << 12);
898 break;
899 case SH_FSI_ACKMD_256:
900 data |= (0x1 << 12);
901 break;
902 case SH_FSI_ACKMD_128:
903 data |= (0x2 << 12);
904 break;
905 case SH_FSI_ACKMD_64:
906 data |= (0x3 << 12);
907 break;
908 case SH_FSI_ACKMD_32:
909 if (fsi_ver < 2)
910 dev_err(dai->dev, "unsupported ACKMD\n");
911 else
912 data |= (0x4 << 12);
913 break;
914 }
915
916 switch (ret & SH_FSI_BPFMD_MASK) {
917 default:
918 /* FALL THROUGH */
919 case SH_FSI_BPFMD_32:
920 data |= (0x0 << 8);
921 break;
922 case SH_FSI_BPFMD_64:
923 data |= (0x1 << 8);
924 break;
925 case SH_FSI_BPFMD_128:
926 data |= (0x2 << 8);
927 break;
928 case SH_FSI_BPFMD_256:
929 data |= (0x3 << 8);
930 break;
931 case SH_FSI_BPFMD_512:
932 data |= (0x4 << 8);
933 break;
934 case SH_FSI_BPFMD_16:
935 if (fsi_ver < 2)
936 dev_err(dai->dev, "unsupported ACKMD\n");
937 else
938 data |= (0x7 << 8);
939 break;
940 }
941
942 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
943 udelay(10);
944 fsi_clk_ctrl(fsi, 1);
945 ret = 0;
946 }
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900947
948 return ret;
949
950}
951
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900952static struct snd_soc_dai_ops fsi_dai_ops = {
953 .startup = fsi_dai_startup,
954 .shutdown = fsi_dai_shutdown,
955 .trigger = fsi_dai_trigger,
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900956 .hw_params = fsi_dai_hw_params,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900957};
958
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900959/*
960 * pcm ops
961 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900962
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900963static struct snd_pcm_hardware fsi_pcm_hardware = {
964 .info = SNDRV_PCM_INFO_INTERLEAVED |
965 SNDRV_PCM_INFO_MMAP |
966 SNDRV_PCM_INFO_MMAP_VALID |
967 SNDRV_PCM_INFO_PAUSE,
968 .formats = FSI_FMTS,
969 .rates = FSI_RATES,
970 .rate_min = 8000,
971 .rate_max = 192000,
972 .channels_min = 1,
973 .channels_max = 2,
974 .buffer_bytes_max = 64 * 1024,
975 .period_bytes_min = 32,
976 .period_bytes_max = 8192,
977 .periods_min = 1,
978 .periods_max = 32,
979 .fifo_size = 256,
980};
981
982static int fsi_pcm_open(struct snd_pcm_substream *substream)
983{
984 struct snd_pcm_runtime *runtime = substream->runtime;
985 int ret = 0;
986
987 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
988
989 ret = snd_pcm_hw_constraint_integer(runtime,
990 SNDRV_PCM_HW_PARAM_PERIODS);
991
992 return ret;
993}
994
995static int fsi_hw_params(struct snd_pcm_substream *substream,
996 struct snd_pcm_hw_params *hw_params)
997{
998 return snd_pcm_lib_malloc_pages(substream,
999 params_buffer_bytes(hw_params));
1000}
1001
1002static int fsi_hw_free(struct snd_pcm_substream *substream)
1003{
1004 return snd_pcm_lib_free_pages(substream);
1005}
1006
1007static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
1008{
1009 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001010 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001011 struct fsi_stream *io = fsi_get_stream(fsi, fsi_is_play(substream));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001012 long location;
1013
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001014 location = (io->buff_offset - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001015 if (location < 0)
1016 location = 0;
1017
1018 return bytes_to_frames(runtime, location);
1019}
1020
1021static struct snd_pcm_ops fsi_pcm_ops = {
1022 .open = fsi_pcm_open,
1023 .ioctl = snd_pcm_lib_ioctl,
1024 .hw_params = fsi_hw_params,
1025 .hw_free = fsi_hw_free,
1026 .pointer = fsi_pointer,
1027};
1028
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001029/*
1030 * snd_soc_platform
1031 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001032
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001033#define PREALLOC_BUFFER (32 * 1024)
1034#define PREALLOC_BUFFER_MAX (32 * 1024)
1035
1036static void fsi_pcm_free(struct snd_pcm *pcm)
1037{
1038 snd_pcm_lib_preallocate_free_for_all(pcm);
1039}
1040
1041static int fsi_pcm_new(struct snd_card *card,
1042 struct snd_soc_dai *dai,
1043 struct snd_pcm *pcm)
1044{
1045 /*
1046 * dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
1047 * in MMAP mode (i.e. aplay -M)
1048 */
1049 return snd_pcm_lib_preallocate_pages_for_all(
1050 pcm,
1051 SNDRV_DMA_TYPE_CONTINUOUS,
1052 snd_dma_continuous_data(GFP_KERNEL),
1053 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1054}
1055
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001056/*
1057 * alsa struct
1058 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001059
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001060static struct snd_soc_dai_driver fsi_soc_dai[] = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001061 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001062 .name = "fsia-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001063 .playback = {
1064 .rates = FSI_RATES,
1065 .formats = FSI_FMTS,
1066 .channels_min = 1,
1067 .channels_max = 8,
1068 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001069 .capture = {
1070 .rates = FSI_RATES,
1071 .formats = FSI_FMTS,
1072 .channels_min = 1,
1073 .channels_max = 8,
1074 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001075 .ops = &fsi_dai_ops,
1076 },
1077 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001078 .name = "fsib-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001079 .playback = {
1080 .rates = FSI_RATES,
1081 .formats = FSI_FMTS,
1082 .channels_min = 1,
1083 .channels_max = 8,
1084 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001085 .capture = {
1086 .rates = FSI_RATES,
1087 .formats = FSI_FMTS,
1088 .channels_min = 1,
1089 .channels_max = 8,
1090 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001091 .ops = &fsi_dai_ops,
1092 },
1093};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001094
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001095static struct snd_soc_platform_driver fsi_soc_platform = {
1096 .ops = &fsi_pcm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001097 .pcm_new = fsi_pcm_new,
1098 .pcm_free = fsi_pcm_free,
1099};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001100
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001101/*
1102 * platform function
1103 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001104
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001105static int fsi_probe(struct platform_device *pdev)
1106{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001107 struct fsi_master *master;
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001108 const struct platform_device_id *id_entry;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001109 struct resource *res;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001110 unsigned int irq;
1111 int ret;
1112
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001113 id_entry = pdev->id_entry;
1114 if (!id_entry) {
1115 dev_err(&pdev->dev, "unknown fsi device\n");
1116 return -ENODEV;
1117 }
1118
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001119 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1120 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb6aa1792009-12-16 17:10:09 +01001121 if (!res || (int)irq <= 0) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001122 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1123 ret = -ENODEV;
1124 goto exit;
1125 }
1126
1127 master = kzalloc(sizeof(*master), GFP_KERNEL);
1128 if (!master) {
1129 dev_err(&pdev->dev, "Could not allocate master\n");
1130 ret = -ENOMEM;
1131 goto exit;
1132 }
1133
1134 master->base = ioremap_nocache(res->start, resource_size(res));
1135 if (!master->base) {
1136 ret = -ENXIO;
1137 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1138 goto exit_kfree;
1139 }
1140
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001141 /* master setting */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001142 master->irq = irq;
1143 master->info = pdev->dev.platform_data;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001144 master->core = (struct fsi_core *)id_entry->driver_data;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +09001145 spin_lock_init(&master->lock);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001146
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001147 /* FSI A setting */
1148 master->fsia.base = master->base;
1149 master->fsia.master = master;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001150
1151 /* FSI B setting */
1152 master->fsib.base = master->base + 0x40;
1153 master->fsib.master = master;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001154
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001155 pm_runtime_enable(&pdev->dev);
1156 pm_runtime_resume(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001157 dev_set_drvdata(&pdev->dev, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001158
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001159 fsi_soft_all_reset(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001160
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001161 ret = request_irq(irq, &fsi_interrupt, IRQF_DISABLED,
1162 id_entry->name, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001163 if (ret) {
1164 dev_err(&pdev->dev, "irq request err\n");
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +09001165 goto exit_iounmap;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001166 }
1167
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001168 ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001169 if (ret < 0) {
1170 dev_err(&pdev->dev, "cannot snd soc register\n");
1171 goto exit_free_irq;
1172 }
1173
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 return snd_soc_register_dais(&pdev->dev, fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001175
1176exit_free_irq:
1177 free_irq(irq, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001178exit_iounmap:
1179 iounmap(master->base);
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001180 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001181exit_kfree:
1182 kfree(master);
1183 master = NULL;
1184exit:
1185 return ret;
1186}
1187
1188static int fsi_remove(struct platform_device *pdev)
1189{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001190 struct fsi_master *master;
1191
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001192 master = dev_get_drvdata(&pdev->dev);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001193
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001194 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
1195 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001196
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001197 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001198
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001199 free_irq(master->irq, master);
1200
1201 iounmap(master->base);
1202 kfree(master);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001203
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001204 return 0;
1205}
1206
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001207static int fsi_runtime_nop(struct device *dev)
1208{
1209 /* Runtime PM callback shared between ->runtime_suspend()
1210 * and ->runtime_resume(). Simply returns success.
1211 *
1212 * This driver re-initializes all registers after
1213 * pm_runtime_get_sync() anyway so there is no need
1214 * to save and restore registers here.
1215 */
1216 return 0;
1217}
1218
1219static struct dev_pm_ops fsi_pm_ops = {
1220 .runtime_suspend = fsi_runtime_nop,
1221 .runtime_resume = fsi_runtime_nop,
1222};
1223
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001224static struct fsi_core fsi1_core = {
1225 .ver = 1,
1226
1227 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001228 .int_st = INT_ST,
1229 .iemsk = IEMSK,
1230 .imsk = IMSK,
1231};
1232
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001233static struct fsi_core fsi2_core = {
1234 .ver = 2,
1235
1236 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001237 .int_st = CPU_INT_ST,
1238 .iemsk = CPU_IEMSK,
1239 .imsk = CPU_IMSK,
Kuninori Morimoto2b0e7302010-12-03 17:37:44 +09001240 .a_mclk = A_MST_CTLR,
1241 .b_mclk = B_MST_CTLR,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001242};
1243
1244static struct platform_device_id fsi_id_table[] = {
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001245 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
1246 { "sh_fsi2", (kernel_ulong_t)&fsi2_core },
Guennadi Liakhovetski05c69452010-10-05 17:54:28 +02001247 {},
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001248};
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001249MODULE_DEVICE_TABLE(platform, fsi_id_table);
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001250
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001251static struct platform_driver fsi_driver = {
1252 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001253 .name = "fsi-pcm-audio",
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001254 .pm = &fsi_pm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001255 },
1256 .probe = fsi_probe,
1257 .remove = fsi_remove,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001258 .id_table = fsi_id_table,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001259};
1260
1261static int __init fsi_mobile_init(void)
1262{
1263 return platform_driver_register(&fsi_driver);
1264}
1265
1266static void __exit fsi_mobile_exit(void)
1267{
1268 platform_driver_unregister(&fsi_driver);
1269}
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001270
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001271module_init(fsi_mobile_init);
1272module_exit(fsi_mobile_exit);
1273
1274MODULE_LICENSE("GPL");
1275MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
1276MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");