blob: 41f49776d6f21e525206c25489d1ba9fa4a15ed5 [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
22#define DO_FMT 0x0000
23#define DOFF_CTL 0x0004
24#define DOFF_ST 0x0008
25#define DI_FMT 0x000C
26#define DIFF_CTL 0x0010
27#define DIFF_ST 0x0014
28#define CKG1 0x0018
29#define CKG2 0x001C
30#define DIDT 0x0020
31#define DODT 0x0024
32#define MUTE_ST 0x0028
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090033#define OUT_SEL 0x0030
34#define REG_END OUT_SEL
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090035
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090036#define A_MST_CTLR 0x0180
37#define B_MST_CTLR 0x01A0
Kuninori Morimotocc780d32010-03-25 19:15:53 +090038#define CPU_INT_ST 0x01F4
39#define CPU_IEMSK 0x01F8
40#define CPU_IMSK 0x01FC
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090041#define INT_ST 0x0200
42#define IEMSK 0x0204
43#define IMSK 0x0208
44#define MUTE 0x020C
45#define CLK_RST 0x0210
46#define SOFT_RST 0x0214
Kuninori Morimoto4a942b42010-03-25 19:15:51 +090047#define FIFO_SZ 0x0218
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090048#define MREG_START A_MST_CTLR
Kuninori Morimoto4a942b42010-03-25 19:15:51 +090049#define MREG_END FIFO_SZ
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
146 u32 mst_ctrl;
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;
155};
156
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900157struct fsi_master {
158 void __iomem *base;
159 int irq;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900160 struct fsi_priv fsia;
161 struct fsi_priv fsib;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900162 struct fsi_core *core;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900163 struct sh_fsi_platform_info *info;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900164 spinlock_t lock;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900165};
166
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900167/*
168 * basic read write function
169 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900170
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100171static void __fsi_reg_write(u32 reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900172{
173 /* valid data area is 24bit */
174 data &= 0x00ffffff;
175
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100176 __raw_writel(data, reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900177}
178
179static u32 __fsi_reg_read(u32 reg)
180{
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100181 return __raw_readl(reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900182}
183
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100184static void __fsi_reg_mask_set(u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900185{
186 u32 val = __fsi_reg_read(reg);
187
188 val &= ~mask;
189 val |= data & mask;
190
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100191 __fsi_reg_write(reg, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900192}
193
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100194static void fsi_reg_write(struct fsi_priv *fsi, u32 reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900195{
Kuninori Morimotod7854142010-07-13 12:13:09 +0900196 if (reg > REG_END) {
197 pr_err("fsi: register access err (%s)\n", __func__);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100198 return;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900199 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900200
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100201 __fsi_reg_write((u32)(fsi->base + reg), data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900202}
203
204static u32 fsi_reg_read(struct fsi_priv *fsi, u32 reg)
205{
Kuninori Morimotod7854142010-07-13 12:13:09 +0900206 if (reg > REG_END) {
207 pr_err("fsi: register access err (%s)\n", __func__);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900208 return 0;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900209 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900210
211 return __fsi_reg_read((u32)(fsi->base + reg));
212}
213
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100214static void fsi_reg_mask_set(struct fsi_priv *fsi, u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900215{
Kuninori Morimotod7854142010-07-13 12:13:09 +0900216 if (reg > REG_END) {
217 pr_err("fsi: register access err (%s)\n", __func__);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100218 return;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900219 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900220
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100221 __fsi_reg_mask_set((u32)(fsi->base + reg), mask, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900222}
223
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900224static u32 fsi_master_read(struct fsi_master *master, u32 reg)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900225{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900226 u32 ret;
227 unsigned long flags;
228
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900229 if ((reg < MREG_START) ||
Kuninori Morimotod7854142010-07-13 12:13:09 +0900230 (reg > MREG_END)) {
231 pr_err("fsi: register access err (%s)\n", __func__);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900232 return 0;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900233 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900234
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900235 spin_lock_irqsave(&master->lock, flags);
236 ret = __fsi_reg_read((u32)(master->base + reg));
237 spin_unlock_irqrestore(&master->lock, flags);
238
239 return ret;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900240}
241
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100242static void fsi_master_mask_set(struct fsi_master *master,
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900243 u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900244{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900245 unsigned long flags;
246
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900247 if ((reg < MREG_START) ||
Kuninori Morimotod7854142010-07-13 12:13:09 +0900248 (reg > MREG_END)) {
249 pr_err("fsi: register access err (%s)\n", __func__);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100250 return;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900251 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900252
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900253 spin_lock_irqsave(&master->lock, flags);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100254 __fsi_reg_mask_set((u32)(master->base + reg), mask, data);
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900255 spin_unlock_irqrestore(&master->lock, flags);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900256}
257
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900258/*
259 * basic function
260 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900261
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900262static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900263{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900264 return fsi->master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900265}
266
267static int fsi_is_port_a(struct fsi_priv *fsi)
268{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900269 return fsi->master->base == fsi->base;
270}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900271
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900272static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900273{
274 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900275
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000276 return rtd->cpu_dai;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900277}
278
279static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
280{
281 struct snd_soc_dai *dai = fsi_get_dai(substream);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000282 struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900283
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000284 if (dai->id == 0)
285 return &master->fsia;
286 else
287 return &master->fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900288}
289
290static u32 fsi_get_info_flags(struct fsi_priv *fsi)
291{
292 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900293 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900294
295 return is_porta ? master->info->porta_flags :
296 master->info->portb_flags;
297}
298
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900299static inline int fsi_stream_is_play(int stream)
300{
301 return stream == SNDRV_PCM_STREAM_PLAYBACK;
302}
303
Kuninori Morimoto00545782010-10-12 18:30:14 +0900304static inline int fsi_is_play(struct snd_pcm_substream *substream)
305{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900306 return fsi_stream_is_play(substream->stream);
307}
308
309static inline struct fsi_stream *fsi_get_stream(struct fsi_priv *fsi,
310 int is_play)
311{
312 return is_play ? &fsi->playback : &fsi->capture;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900313}
314
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900315static int fsi_is_master_mode(struct fsi_priv *fsi, int is_play)
316{
317 u32 mode;
318 u32 flags = fsi_get_info_flags(fsi);
319
320 mode = is_play ? SH_FSI_OUT_SLAVE_MODE : SH_FSI_IN_SLAVE_MODE;
321
322 /* return
323 * 1 : master mode
324 * 0 : slave mode
325 */
326
327 return (mode & flags) != mode;
328}
329
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900330static u32 fsi_get_port_shift(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900331{
332 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900333 u32 shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900334
335 if (is_porta)
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900336 shift = is_play ? AO_SHIFT : AI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900337 else
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900338 shift = is_play ? BO_SHIFT : BI_SHIFT;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900339
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900340 return shift;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900341}
342
343static void fsi_stream_push(struct fsi_priv *fsi,
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900344 int is_play,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900345 struct snd_pcm_substream *substream,
346 u32 buffer_len,
347 u32 period_len)
348{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900349 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
350
351 io->substream = substream;
352 io->buff_len = buffer_len;
353 io->buff_offset = 0;
354 io->period_len = period_len;
355 io->period_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900356}
357
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900358static void fsi_stream_pop(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900359{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900360 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
361
362 io->substream = NULL;
363 io->buff_len = 0;
364 io->buff_offset = 0;
365 io->period_len = 0;
366 io->period_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900367}
368
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900369static int fsi_get_fifo_data_num(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900370{
371 u32 status;
372 u32 reg = is_play ? DOFF_ST : DIFF_ST;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900373 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900374 int data_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900375
376 status = fsi_reg_read(fsi, reg);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900377 data_num = 0x1ff & (status >> 8);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900378 data_num *= io->chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900379
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900380 return data_num;
381}
382
383static int fsi_len2num(int len, int width)
384{
385 return len / width;
386}
387
388#define fsi_num2offset(a, b) fsi_num2len(a, b)
389static int fsi_num2len(int num, int width)
390{
391 return num * width;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900392}
393
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900394static int fsi_get_frame_width(struct fsi_priv *fsi, int is_play)
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900395{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900396 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
397 struct snd_pcm_substream *substream = io->substream;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900398 struct snd_pcm_runtime *runtime = substream->runtime;
399
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900400 return frames_to_bytes(runtime, 1) / io->chan_num;
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900401}
402
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900403/*
404 * dma function
405 */
406
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900407static u8 *fsi_dma_get_area(struct fsi_priv *fsi, int stream)
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900408{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900409 int is_play = fsi_stream_is_play(stream);
410 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
411
412 return io->substream->runtime->dma_area + io->buff_offset;
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900413}
414
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900415static void fsi_dma_soft_push16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900416{
417 u16 *start;
418 int i;
419
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900420 start = (u16 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900421
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900422 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900423 fsi_reg_write(fsi, DODT, ((u32)*(start + i) << 8));
424}
425
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900426static void fsi_dma_soft_pop16(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_CAPTURE);
432
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900433
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900434 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900435 *(start + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
436}
437
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900438static void fsi_dma_soft_push32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900439{
440 u32 *start;
441 int i;
442
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900443 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_PLAYBACK);
444
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900445
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900446 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900447 fsi_reg_write(fsi, DODT, *(start + i));
448}
449
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900450static void fsi_dma_soft_pop32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900451{
452 u32 *start;
453 int i;
454
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900455 start = (u32 *)fsi_dma_get_area(fsi, SNDRV_PCM_STREAM_CAPTURE);
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 *(start + i) = fsi_reg_read(fsi, DIDT);
459}
460
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900461/*
462 * irq function
463 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900464
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900465static void fsi_irq_enable(struct fsi_priv *fsi, int is_play)
466{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900467 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900468 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900469
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900470 fsi_master_mask_set(master, master->core->imsk, data, data);
471 fsi_master_mask_set(master, master->core->iemsk, data, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900472}
473
474static void fsi_irq_disable(struct fsi_priv *fsi, int is_play)
475{
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900476 u32 data = AB_IO(1, fsi_get_port_shift(fsi, is_play));
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900477 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900478
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900479 fsi_master_mask_set(master, master->core->imsk, data, 0);
480 fsi_master_mask_set(master, master->core->iemsk, data, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900481}
482
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900483static u32 fsi_irq_get_status(struct fsi_master *master)
484{
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900485 return fsi_master_read(master, master->core->int_st);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900486}
487
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900488static void fsi_irq_clear_status(struct fsi_priv *fsi)
489{
490 u32 data = 0;
491 struct fsi_master *master = fsi_get_master(fsi);
492
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900493 data |= AB_IO(1, fsi_get_port_shift(fsi, 0));
494 data |= AB_IO(1, fsi_get_port_shift(fsi, 1));
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900495
496 /* clear interrupt factor */
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900497 fsi_master_mask_set(master, master->core->int_st, data, 0);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900498}
499
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900500/*
501 * SPDIF master clock function
502 *
503 * These functions are used later FSI2
504 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900505static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
506{
507 struct fsi_master *master = fsi_get_master(fsi);
508 u32 val = BP | SE;
509
510 if (master->core->ver < 2) {
511 pr_err("fsi: register access err (%s)\n", __func__);
512 return;
513 }
514
515 if (enable)
516 fsi_master_mask_set(master, fsi->mst_ctrl, val, val);
517 else
518 fsi_master_mask_set(master, fsi->mst_ctrl, val, 0);
519}
520
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900521/*
522 * ctrl function
523 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900524
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900525static void fsi_clk_ctrl(struct fsi_priv *fsi, int enable)
526{
527 u32 val = fsi_is_port_a(fsi) ? (1 << 0) : (1 << 4);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900528 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900529
530 if (enable)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900531 fsi_master_mask_set(master, CLK_RST, val, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900532 else
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900533 fsi_master_mask_set(master, CLK_RST, val, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900534}
535
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900536static void fsi_fifo_init(struct fsi_priv *fsi,
537 int is_play,
538 struct snd_soc_dai *dai)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900539{
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900540 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900541 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900542 u32 ctrl, shift, i;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900543
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900544 /* get on-chip RAM capacity */
545 shift = fsi_master_read(master, FIFO_SZ);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900546 shift >>= fsi_get_port_shift(fsi, is_play);
547 shift &= FIFO_SZ_MASK;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900548 io->fifo_max_num = 256 << shift;
549 dev_dbg(dai->dev, "fifo = %d words\n", io->fifo_max_num);
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900550
551 /*
552 * The maximum number of sample data varies depending
553 * on the number of channels selected for the format.
554 *
555 * FIFOs are used in 4-channel units in 3-channel mode
556 * and in 8-channel units in 5- to 7-channel mode
557 * meaning that more FIFOs than the required size of DPRAM
558 * are used.
559 *
560 * ex) if 256 words of DP-RAM is connected
561 * 1 channel: 256 (256 x 1 = 256)
562 * 2 channels: 128 (128 x 2 = 256)
563 * 3 channels: 64 ( 64 x 3 = 192)
564 * 4 channels: 64 ( 64 x 4 = 256)
565 * 5 channels: 32 ( 32 x 5 = 160)
566 * 6 channels: 32 ( 32 x 6 = 192)
567 * 7 channels: 32 ( 32 x 7 = 224)
568 * 8 channels: 32 ( 32 x 8 = 256)
569 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900570 for (i = 1; i < io->chan_num; i <<= 1)
571 io->fifo_max_num >>= 1;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900572 dev_dbg(dai->dev, "%d channel %d store\n",
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900573 io->chan_num, io->fifo_max_num);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900574
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900575 ctrl = is_play ? DOFF_CTL : DIFF_CTL;
576
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900577 /* set interrupt generation factor */
578 fsi_reg_write(fsi, ctrl, IRQ_HALF);
579
580 /* clear FIFO */
581 fsi_reg_mask_set(fsi, ctrl, FIFO_CLR, FIFO_CLR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900582}
583
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900584static void fsi_soft_all_reset(struct fsi_master *master)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900585{
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900586 /* port AB reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900587 fsi_master_mask_set(master, SOFT_RST, PASR | PBSR, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900588 mdelay(10);
589
590 /* soft reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900591 fsi_master_mask_set(master, SOFT_RST, FSISR, 0);
592 fsi_master_mask_set(master, SOFT_RST, FSISR, FSISR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900593 mdelay(10);
594}
595
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900596static int fsi_fifo_data_ctrl(struct fsi_priv *fsi, int startup, int stream)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900597{
598 struct snd_pcm_runtime *runtime;
599 struct snd_pcm_substream *substream = NULL;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900600 int is_play = fsi_stream_is_play(stream);
601 struct fsi_stream *io = fsi_get_stream(fsi, is_play);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900602 u32 status_reg = is_play ? DOFF_ST : DIFF_ST;
603 int data_residue_num;
604 int data_num;
605 int data_num_max;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900606 int ch_width;
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900607 int over_period;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900608 void (*fn)(struct fsi_priv *fsi, int size);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900609
610 if (!fsi ||
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900611 !io->substream ||
612 !io->substream->runtime)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900613 return -EINVAL;
614
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900615 over_period = 0;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900616 substream = io->substream;
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900617 runtime = substream->runtime;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900618
619 /* FSI FIFO has limit.
620 * So, this driver can not send periods data at a time
621 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900622 if (io->buff_offset >=
623 fsi_num2offset(io->period_num + 1, io->period_len)) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900624
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900625 over_period = 1;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900626 io->period_num = (io->period_num + 1) % runtime->periods;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900627
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900628 if (0 == io->period_num)
629 io->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900630 }
631
632 /* get 1 channel data width */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900633 ch_width = fsi_get_frame_width(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900634
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900635 /* get residue data number of alsa */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900636 data_residue_num = fsi_len2num(io->buff_len - io->buff_offset,
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900637 ch_width);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900638
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900639 if (is_play) {
640 /*
641 * for play-back
642 *
643 * data_num_max : number of FSI fifo free space
644 * data_num : number of ALSA residue data
645 */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900646 data_num_max = io->fifo_max_num * io->chan_num;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900647 data_num_max -= fsi_get_fifo_data_num(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900648
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900649 data_num = data_residue_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900650
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900651 switch (ch_width) {
652 case 2:
653 fn = fsi_dma_soft_push16;
654 break;
655 case 4:
656 fn = fsi_dma_soft_push32;
657 break;
658 default:
659 return -EINVAL;
660 }
661 } else {
662 /*
663 * for capture
664 *
665 * data_num_max : number of ALSA free space
666 * data_num : number of data in FSI fifo
667 */
668 data_num_max = data_residue_num;
669 data_num = fsi_get_fifo_data_num(fsi, is_play);
670
671 switch (ch_width) {
672 case 2:
673 fn = fsi_dma_soft_pop16;
674 break;
675 case 4:
676 fn = fsi_dma_soft_pop32;
677 break;
678 default:
679 return -EINVAL;
680 }
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +0900681 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900682
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900683 data_num = min(data_num, data_num_max);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900684
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900685 fn(fsi, data_num);
686
687 /* update buff_offset */
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900688 io->buff_offset += fsi_num2offset(data_num, ch_width);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900689
690 /* check fifo status */
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900691 if (!startup) {
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900692 struct snd_soc_dai *dai = fsi_get_dai(substream);
Kuninori Morimoto75eda9682010-10-12 11:40:14 +0900693 u32 status = fsi_reg_read(fsi, status_reg);
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900694
695 if (status & ERR_OVER)
696 dev_err(dai->dev, "over run\n");
697 if (status & ERR_UNDER)
698 dev_err(dai->dev, "under run\n");
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900699 }
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900700 fsi_reg_write(fsi, status_reg, 0);
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900701
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900702 /* re-enable irq */
703 fsi_irq_enable(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900704
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900705 if (over_period)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900706 snd_pcm_period_elapsed(substream);
707
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900708 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900709}
710
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900711static int fsi_data_pop(struct fsi_priv *fsi, int startup)
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900712{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900713 return fsi_fifo_data_ctrl(fsi, startup, SNDRV_PCM_STREAM_CAPTURE);
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900714}
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900715
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900716static int fsi_data_push(struct fsi_priv *fsi, int startup)
717{
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900718 return fsi_fifo_data_ctrl(fsi, startup, SNDRV_PCM_STREAM_PLAYBACK);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900719}
720
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900721static irqreturn_t fsi_interrupt(int irq, void *data)
722{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900723 struct fsi_master *master = data;
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900724 u32 int_st = fsi_irq_get_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900725
726 /* clear irq status */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900727 fsi_master_mask_set(master, SOFT_RST, IR, 0);
728 fsi_master_mask_set(master, SOFT_RST, IR, IR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900729
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900730 if (int_st & AB_IO(1, AO_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900731 fsi_data_push(&master->fsia, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900732 if (int_st & AB_IO(1, BO_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900733 fsi_data_push(&master->fsib, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900734 if (int_st & AB_IO(1, AI_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900735 fsi_data_pop(&master->fsia, 0);
Kuninori Morimotocf6edd02010-10-12 11:40:53 +0900736 if (int_st & AB_IO(1, BI_SHIFT))
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900737 fsi_data_pop(&master->fsib, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900738
Kuninori Morimoto48d78e52010-12-03 17:37:31 +0900739 fsi_irq_clear_status(&master->fsia);
740 fsi_irq_clear_status(&master->fsib);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900741
742 return IRQ_HANDLED;
743}
744
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900745/*
746 * dai ops
747 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900748
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900749static int fsi_dai_startup(struct snd_pcm_substream *substream,
750 struct snd_soc_dai *dai)
751{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900752 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900753 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900754 struct fsi_stream *io;
755 u32 flags = fsi_get_info_flags(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900756 u32 fmt;
757 u32 reg;
758 u32 data;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900759 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900760 int is_master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900761
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900762 io = fsi_get_stream(fsi, is_play);
763
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900764 pm_runtime_get_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900765
766 /* CKG1 */
767 data = is_play ? (1 << 0) : (1 << 4);
768 is_master = fsi_is_master_mode(fsi, is_play);
769 if (is_master)
770 fsi_reg_mask_set(fsi, CKG1, data, data);
771 else
772 fsi_reg_mask_set(fsi, CKG1, data, 0);
773
774 /* clock inversion (CKG2) */
775 data = 0;
Kuninori Morimotob427b442010-07-13 12:01:15 +0900776 if (SH_FSI_LRM_INV & flags)
777 data |= 1 << 12;
778 if (SH_FSI_BRM_INV & flags)
779 data |= 1 << 8;
780 if (SH_FSI_LRS_INV & flags)
781 data |= 1 << 4;
782 if (SH_FSI_BRS_INV & flags)
783 data |= 1 << 0;
784
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900785 fsi_reg_write(fsi, CKG2, data);
786
787 /* do fmt, di fmt */
788 data = 0;
789 reg = is_play ? DO_FMT : DI_FMT;
790 fmt = is_play ? SH_FSI_GET_OFMT(flags) : SH_FSI_GET_IFMT(flags);
791 switch (fmt) {
792 case SH_FSI_FMT_MONO:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900793 data = CR_MONO;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900794 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900795 break;
796 case SH_FSI_FMT_MONO_DELAY:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900797 data = CR_MONO_D;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900798 io->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900799 break;
800 case SH_FSI_FMT_PCM:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900801 data = CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900802 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900803 break;
804 case SH_FSI_FMT_I2S:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900805 data = CR_I2S;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900806 io->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900807 break;
808 case SH_FSI_FMT_TDM:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900809 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900810 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900811 data = CR_TDM | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900812 break;
813 case SH_FSI_FMT_TDM_DELAY:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900814 io->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900815 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900816 data = CR_TDM_D | (io->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900817 break;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900818 case SH_FSI_FMT_SPDIF:
819 if (master->core->ver < 2) {
820 dev_err(dai->dev, "This FSI can not use SPDIF\n");
821 return -EINVAL;
822 }
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900823 data = CR_BWS_16 | CR_DTMD_SPDIF_PCM | CR_PCM;
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900824 io->chan_num = 2;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900825 fsi_spdif_clk_ctrl(fsi, 1);
Kuninori Morimotof7d711e2010-12-03 17:36:24 +0900826 fsi_reg_mask_set(fsi, OUT_SEL, DMMD, DMMD);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900827 break;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900828 default:
829 dev_err(dai->dev, "unknown format.\n");
830 return -EINVAL;
831 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900832 fsi_reg_write(fsi, reg, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900833
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900834 /* irq clear */
835 fsi_irq_disable(fsi, is_play);
836 fsi_irq_clear_status(fsi);
837
838 /* fifo init */
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900839 fsi_fifo_init(fsi, is_play, dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900840
Kuninori Morimotoa68a3b42010-10-12 11:39:50 +0900841 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900842}
843
844static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
845 struct snd_soc_dai *dai)
846{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900847 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto00545782010-10-12 18:30:14 +0900848 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900849
850 fsi_irq_disable(fsi, is_play);
851 fsi_clk_ctrl(fsi, 0);
852
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900853 pm_runtime_put_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900854}
855
856static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
857 struct snd_soc_dai *dai)
858{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900859 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900860 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900861 int is_play = fsi_is_play(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900862 int ret = 0;
863
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900864 switch (cmd) {
865 case SNDRV_PCM_TRIGGER_START:
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900866 fsi_stream_push(fsi, is_play, substream,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900867 frames_to_bytes(runtime, runtime->buffer_size),
868 frames_to_bytes(runtime, runtime->period_size));
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900869 ret = is_play ? fsi_data_push(fsi, 1) : fsi_data_pop(fsi, 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900870 break;
871 case SNDRV_PCM_TRIGGER_STOP:
872 fsi_irq_disable(fsi, is_play);
Kuninori Morimoto93193c22010-10-12 19:19:28 +0900873 fsi_stream_pop(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900874 break;
875 }
876
877 return ret;
878}
879
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900880static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
881 struct snd_pcm_hw_params *params,
882 struct snd_soc_dai *dai)
883{
884 struct fsi_priv *fsi = fsi_get_priv(substream);
885 struct fsi_master *master = fsi_get_master(fsi);
886 int (*set_rate)(int is_porta, int rate) = master->info->set_rate;
887 int fsi_ver = master->core->ver;
Kuninori Morimoto00545782010-10-12 18:30:14 +0900888 int is_play = fsi_is_play(substream);
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900889 int ret;
890
891 /* if slave mode, set_rate is not needed */
892 if (!fsi_is_master_mode(fsi, is_play))
893 return 0;
894
895 /* it is error if no set_rate */
896 if (!set_rate)
897 return -EIO;
898
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900899 ret = set_rate(fsi_is_port_a(fsi), params_rate(params));
900 if (ret > 0) {
901 u32 data = 0;
902
903 switch (ret & SH_FSI_ACKMD_MASK) {
904 default:
905 /* FALL THROUGH */
906 case SH_FSI_ACKMD_512:
907 data |= (0x0 << 12);
908 break;
909 case SH_FSI_ACKMD_256:
910 data |= (0x1 << 12);
911 break;
912 case SH_FSI_ACKMD_128:
913 data |= (0x2 << 12);
914 break;
915 case SH_FSI_ACKMD_64:
916 data |= (0x3 << 12);
917 break;
918 case SH_FSI_ACKMD_32:
919 if (fsi_ver < 2)
920 dev_err(dai->dev, "unsupported ACKMD\n");
921 else
922 data |= (0x4 << 12);
923 break;
924 }
925
926 switch (ret & SH_FSI_BPFMD_MASK) {
927 default:
928 /* FALL THROUGH */
929 case SH_FSI_BPFMD_32:
930 data |= (0x0 << 8);
931 break;
932 case SH_FSI_BPFMD_64:
933 data |= (0x1 << 8);
934 break;
935 case SH_FSI_BPFMD_128:
936 data |= (0x2 << 8);
937 break;
938 case SH_FSI_BPFMD_256:
939 data |= (0x3 << 8);
940 break;
941 case SH_FSI_BPFMD_512:
942 data |= (0x4 << 8);
943 break;
944 case SH_FSI_BPFMD_16:
945 if (fsi_ver < 2)
946 dev_err(dai->dev, "unsupported ACKMD\n");
947 else
948 data |= (0x7 << 8);
949 break;
950 }
951
952 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
953 udelay(10);
954 fsi_clk_ctrl(fsi, 1);
955 ret = 0;
956 }
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900957
958 return ret;
959
960}
961
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900962static struct snd_soc_dai_ops fsi_dai_ops = {
963 .startup = fsi_dai_startup,
964 .shutdown = fsi_dai_shutdown,
965 .trigger = fsi_dai_trigger,
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900966 .hw_params = fsi_dai_hw_params,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900967};
968
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900969/*
970 * pcm ops
971 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900972
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900973static struct snd_pcm_hardware fsi_pcm_hardware = {
974 .info = SNDRV_PCM_INFO_INTERLEAVED |
975 SNDRV_PCM_INFO_MMAP |
976 SNDRV_PCM_INFO_MMAP_VALID |
977 SNDRV_PCM_INFO_PAUSE,
978 .formats = FSI_FMTS,
979 .rates = FSI_RATES,
980 .rate_min = 8000,
981 .rate_max = 192000,
982 .channels_min = 1,
983 .channels_max = 2,
984 .buffer_bytes_max = 64 * 1024,
985 .period_bytes_min = 32,
986 .period_bytes_max = 8192,
987 .periods_min = 1,
988 .periods_max = 32,
989 .fifo_size = 256,
990};
991
992static int fsi_pcm_open(struct snd_pcm_substream *substream)
993{
994 struct snd_pcm_runtime *runtime = substream->runtime;
995 int ret = 0;
996
997 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
998
999 ret = snd_pcm_hw_constraint_integer(runtime,
1000 SNDRV_PCM_HW_PARAM_PERIODS);
1001
1002 return ret;
1003}
1004
1005static int fsi_hw_params(struct snd_pcm_substream *substream,
1006 struct snd_pcm_hw_params *hw_params)
1007{
1008 return snd_pcm_lib_malloc_pages(substream,
1009 params_buffer_bytes(hw_params));
1010}
1011
1012static int fsi_hw_free(struct snd_pcm_substream *substream)
1013{
1014 return snd_pcm_lib_free_pages(substream);
1015}
1016
1017static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
1018{
1019 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001020 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001021 struct fsi_stream *io = fsi_get_stream(fsi, fsi_is_play(substream));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001022 long location;
1023
Kuninori Morimoto93193c22010-10-12 19:19:28 +09001024 location = (io->buff_offset - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001025 if (location < 0)
1026 location = 0;
1027
1028 return bytes_to_frames(runtime, location);
1029}
1030
1031static struct snd_pcm_ops fsi_pcm_ops = {
1032 .open = fsi_pcm_open,
1033 .ioctl = snd_pcm_lib_ioctl,
1034 .hw_params = fsi_hw_params,
1035 .hw_free = fsi_hw_free,
1036 .pointer = fsi_pointer,
1037};
1038
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001039/*
1040 * snd_soc_platform
1041 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001042
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001043#define PREALLOC_BUFFER (32 * 1024)
1044#define PREALLOC_BUFFER_MAX (32 * 1024)
1045
1046static void fsi_pcm_free(struct snd_pcm *pcm)
1047{
1048 snd_pcm_lib_preallocate_free_for_all(pcm);
1049}
1050
1051static int fsi_pcm_new(struct snd_card *card,
1052 struct snd_soc_dai *dai,
1053 struct snd_pcm *pcm)
1054{
1055 /*
1056 * dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
1057 * in MMAP mode (i.e. aplay -M)
1058 */
1059 return snd_pcm_lib_preallocate_pages_for_all(
1060 pcm,
1061 SNDRV_DMA_TYPE_CONTINUOUS,
1062 snd_dma_continuous_data(GFP_KERNEL),
1063 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1064}
1065
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001066/*
1067 * alsa struct
1068 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001069
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001070static struct snd_soc_dai_driver fsi_soc_dai[] = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001071 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001072 .name = "fsia-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001073 .playback = {
1074 .rates = FSI_RATES,
1075 .formats = FSI_FMTS,
1076 .channels_min = 1,
1077 .channels_max = 8,
1078 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001079 .capture = {
1080 .rates = FSI_RATES,
1081 .formats = FSI_FMTS,
1082 .channels_min = 1,
1083 .channels_max = 8,
1084 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001085 .ops = &fsi_dai_ops,
1086 },
1087 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001088 .name = "fsib-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001089 .playback = {
1090 .rates = FSI_RATES,
1091 .formats = FSI_FMTS,
1092 .channels_min = 1,
1093 .channels_max = 8,
1094 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001095 .capture = {
1096 .rates = FSI_RATES,
1097 .formats = FSI_FMTS,
1098 .channels_min = 1,
1099 .channels_max = 8,
1100 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001101 .ops = &fsi_dai_ops,
1102 },
1103};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001104
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001105static struct snd_soc_platform_driver fsi_soc_platform = {
1106 .ops = &fsi_pcm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001107 .pcm_new = fsi_pcm_new,
1108 .pcm_free = fsi_pcm_free,
1109};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001110
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001111/*
1112 * platform function
1113 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001114
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001115static int fsi_probe(struct platform_device *pdev)
1116{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001117 struct fsi_master *master;
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001118 const struct platform_device_id *id_entry;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001119 struct resource *res;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001120 unsigned int irq;
1121 int ret;
1122
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001123 id_entry = pdev->id_entry;
1124 if (!id_entry) {
1125 dev_err(&pdev->dev, "unknown fsi device\n");
1126 return -ENODEV;
1127 }
1128
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001129 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1130 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb6aa1792009-12-16 17:10:09 +01001131 if (!res || (int)irq <= 0) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001132 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1133 ret = -ENODEV;
1134 goto exit;
1135 }
1136
1137 master = kzalloc(sizeof(*master), GFP_KERNEL);
1138 if (!master) {
1139 dev_err(&pdev->dev, "Could not allocate master\n");
1140 ret = -ENOMEM;
1141 goto exit;
1142 }
1143
1144 master->base = ioremap_nocache(res->start, resource_size(res));
1145 if (!master->base) {
1146 ret = -ENXIO;
1147 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1148 goto exit_kfree;
1149 }
1150
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001151 /* master setting */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001152 master->irq = irq;
1153 master->info = pdev->dev.platform_data;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001154 master->core = (struct fsi_core *)id_entry->driver_data;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +09001155 spin_lock_init(&master->lock);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001156
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001157 /* FSI A setting */
1158 master->fsia.base = master->base;
1159 master->fsia.master = master;
1160 master->fsia.mst_ctrl = A_MST_CTLR;
1161
1162 /* FSI B setting */
1163 master->fsib.base = master->base + 0x40;
1164 master->fsib.master = master;
1165 master->fsib.mst_ctrl = B_MST_CTLR;
1166
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001167 pm_runtime_enable(&pdev->dev);
1168 pm_runtime_resume(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001169 dev_set_drvdata(&pdev->dev, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001170
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001171 fsi_soft_all_reset(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001172
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001173 ret = request_irq(irq, &fsi_interrupt, IRQF_DISABLED,
1174 id_entry->name, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001175 if (ret) {
1176 dev_err(&pdev->dev, "irq request err\n");
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +09001177 goto exit_iounmap;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001178 }
1179
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001180 ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001181 if (ret < 0) {
1182 dev_err(&pdev->dev, "cannot snd soc register\n");
1183 goto exit_free_irq;
1184 }
1185
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001186 return snd_soc_register_dais(&pdev->dev, fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001187
1188exit_free_irq:
1189 free_irq(irq, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001190exit_iounmap:
1191 iounmap(master->base);
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001192 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001193exit_kfree:
1194 kfree(master);
1195 master = NULL;
1196exit:
1197 return ret;
1198}
1199
1200static int fsi_remove(struct platform_device *pdev)
1201{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001202 struct fsi_master *master;
1203
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001204 master = dev_get_drvdata(&pdev->dev);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001205
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001206 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
1207 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001208
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001209 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001210
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001211 free_irq(master->irq, master);
1212
1213 iounmap(master->base);
1214 kfree(master);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001215
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001216 return 0;
1217}
1218
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001219static int fsi_runtime_nop(struct device *dev)
1220{
1221 /* Runtime PM callback shared between ->runtime_suspend()
1222 * and ->runtime_resume(). Simply returns success.
1223 *
1224 * This driver re-initializes all registers after
1225 * pm_runtime_get_sync() anyway so there is no need
1226 * to save and restore registers here.
1227 */
1228 return 0;
1229}
1230
1231static struct dev_pm_ops fsi_pm_ops = {
1232 .runtime_suspend = fsi_runtime_nop,
1233 .runtime_resume = fsi_runtime_nop,
1234};
1235
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001236static struct fsi_core fsi1_core = {
1237 .ver = 1,
1238
1239 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001240 .int_st = INT_ST,
1241 .iemsk = IEMSK,
1242 .imsk = IMSK,
1243};
1244
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001245static struct fsi_core fsi2_core = {
1246 .ver = 2,
1247
1248 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001249 .int_st = CPU_INT_ST,
1250 .iemsk = CPU_IEMSK,
1251 .imsk = CPU_IMSK,
1252};
1253
1254static struct platform_device_id fsi_id_table[] = {
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001255 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
1256 { "sh_fsi2", (kernel_ulong_t)&fsi2_core },
Guennadi Liakhovetski05c69452010-10-05 17:54:28 +02001257 {},
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001258};
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001259MODULE_DEVICE_TABLE(platform, fsi_id_table);
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001260
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001261static struct platform_driver fsi_driver = {
1262 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001263 .name = "fsi-pcm-audio",
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001264 .pm = &fsi_pm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001265 },
1266 .probe = fsi_probe,
1267 .remove = fsi_remove,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001268 .id_table = fsi_id_table,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001269};
1270
1271static int __init fsi_mobile_init(void)
1272{
1273 return platform_driver_register(&fsi_driver);
1274}
1275
1276static void __exit fsi_mobile_exit(void)
1277{
1278 platform_driver_unregister(&fsi_driver);
1279}
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001280
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001281module_init(fsi_mobile_init);
1282module_exit(fsi_mobile_exit);
1283
1284MODULE_LICENSE("GPL");
1285MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
1286MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");