blob: aa2cbb1ea98899c3c1b4c4eade23af3bf895200c [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 Morimotoa7ffb522010-07-13 12:13:00 +090053#define CR_MONO (0x0 << 4)
54#define CR_MONO_D (0x1 << 4)
55#define CR_PCM (0x2 << 4)
56#define CR_I2S (0x3 << 4)
57#define CR_TDM (0x4 << 4)
58#define CR_TDM_D (0x5 << 4)
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090059#define CR_SPDIF 0x00100120
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090060
61/* DOFF_CTL */
62/* DIFF_CTL */
63#define IRQ_HALF 0x00100000
64#define FIFO_CLR 0x00000001
65
66/* DOFF_ST */
67#define ERR_OVER 0x00000010
68#define ERR_UNDER 0x00000001
Kuninori Morimoto59c3b002009-12-28 14:09:16 +090069#define ST_ERR (ERR_OVER | ERR_UNDER)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090070
Kuninori Morimotoccad7b42010-07-13 12:13:14 +090071/* CKG1 */
72#define ACKMD_MASK 0x00007000
73#define BPFMD_MASK 0x00000700
74
Kuninori Morimoto3bc28072010-07-29 16:48:32 +090075/* A/B MST_CTLR */
76#define BP (1 << 4) /* Fix the signal of Biphase output */
77#define SE (1 << 0) /* Fix the master clock */
78
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +090079/* CLK_RST */
80#define B_CLK 0x00000010
81#define A_CLK 0x00000001
82
83/* INT_ST */
84#define INT_B_IN (1 << 12)
85#define INT_B_OUT (1 << 8)
86#define INT_A_IN (1 << 4)
87#define INT_A_OUT (1 << 0)
88
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +090089/* SOFT_RST */
90#define PBSR (1 << 12) /* Port B Software Reset */
91#define PASR (1 << 8) /* Port A Software Reset */
92#define IR (1 << 4) /* Interrupt Reset */
93#define FSISR (1 << 0) /* Software Reset */
94
Kuninori Morimoto4a942b42010-03-25 19:15:51 +090095/* FIFO_SZ */
96#define OUT_SZ_MASK 0x7
97#define BO_SZ_SHIFT 8
98#define AO_SZ_SHIFT 0
99
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900100#define FSI_RATES SNDRV_PCM_RATE_8000_96000
101
102#define FSI_FMTS (SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S16_LE)
103
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900104/*
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900105 * FSI driver use below type name for variable
106 *
107 * xxx_len : data length
108 * xxx_width : data width
109 * xxx_offset : data offset
110 * xxx_num : number of data
111 */
112
113/*
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900114 * struct
115 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900116
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900117struct fsi_priv {
118 void __iomem *base;
119 struct snd_pcm_substream *substream;
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900120 struct fsi_master *master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900121
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900122 int fifo_max_num;
123 int chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900124
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900125 int buff_offset;
126 int buff_len;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900127 int period_len;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900128 int period_num;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900129
130 u32 mst_ctrl;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900131};
132
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900133struct fsi_core {
134 int ver;
135
Kuninori Morimotocc780d32010-03-25 19:15:53 +0900136 u32 int_st;
137 u32 iemsk;
138 u32 imsk;
139};
140
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900141struct fsi_master {
142 void __iomem *base;
143 int irq;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900144 struct fsi_priv fsia;
145 struct fsi_priv fsib;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900146 struct fsi_core *core;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900147 struct sh_fsi_platform_info *info;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900148 spinlock_t lock;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900149};
150
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900151/*
152 * basic read write function
153 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900154
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100155static void __fsi_reg_write(u32 reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900156{
157 /* valid data area is 24bit */
158 data &= 0x00ffffff;
159
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100160 __raw_writel(data, reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900161}
162
163static u32 __fsi_reg_read(u32 reg)
164{
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100165 return __raw_readl(reg);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900166}
167
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100168static void __fsi_reg_mask_set(u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900169{
170 u32 val = __fsi_reg_read(reg);
171
172 val &= ~mask;
173 val |= data & mask;
174
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100175 __fsi_reg_write(reg, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900176}
177
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100178static void fsi_reg_write(struct fsi_priv *fsi, u32 reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900179{
Kuninori Morimotod7854142010-07-13 12:13:09 +0900180 if (reg > REG_END) {
181 pr_err("fsi: register access err (%s)\n", __func__);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100182 return;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900183 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900184
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100185 __fsi_reg_write((u32)(fsi->base + reg), data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900186}
187
188static u32 fsi_reg_read(struct fsi_priv *fsi, u32 reg)
189{
Kuninori Morimotod7854142010-07-13 12:13:09 +0900190 if (reg > REG_END) {
191 pr_err("fsi: register access err (%s)\n", __func__);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900192 return 0;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900193 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900194
195 return __fsi_reg_read((u32)(fsi->base + reg));
196}
197
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100198static void fsi_reg_mask_set(struct fsi_priv *fsi, u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900199{
Kuninori Morimotod7854142010-07-13 12:13:09 +0900200 if (reg > REG_END) {
201 pr_err("fsi: register access err (%s)\n", __func__);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100202 return;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900203 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900204
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100205 __fsi_reg_mask_set((u32)(fsi->base + reg), mask, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900206}
207
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100208static void fsi_master_write(struct fsi_master *master, u32 reg, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900209{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900210 unsigned long flags;
211
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900212 if ((reg < MREG_START) ||
Kuninori Morimotod7854142010-07-13 12:13:09 +0900213 (reg > MREG_END)) {
214 pr_err("fsi: register access err (%s)\n", __func__);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100215 return;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900216 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900217
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900218 spin_lock_irqsave(&master->lock, flags);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100219 __fsi_reg_write((u32)(master->base + reg), data);
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900220 spin_unlock_irqrestore(&master->lock, flags);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900221}
222
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900223static u32 fsi_master_read(struct fsi_master *master, u32 reg)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900224{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900225 u32 ret;
226 unsigned long flags;
227
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900228 if ((reg < MREG_START) ||
Kuninori Morimotod7854142010-07-13 12:13:09 +0900229 (reg > MREG_END)) {
230 pr_err("fsi: register access err (%s)\n", __func__);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900231 return 0;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900232 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900233
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900234 spin_lock_irqsave(&master->lock, flags);
235 ret = __fsi_reg_read((u32)(master->base + reg));
236 spin_unlock_irqrestore(&master->lock, flags);
237
238 return ret;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900239}
240
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100241static void fsi_master_mask_set(struct fsi_master *master,
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900242 u32 reg, u32 mask, u32 data)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900243{
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900244 unsigned long flags;
245
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900246 if ((reg < MREG_START) ||
Kuninori Morimotod7854142010-07-13 12:13:09 +0900247 (reg > MREG_END)) {
248 pr_err("fsi: register access err (%s)\n", __func__);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100249 return;
Kuninori Morimotod7854142010-07-13 12:13:09 +0900250 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900251
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900252 spin_lock_irqsave(&master->lock, flags);
Guennadi Liakhovetski0f69d972010-02-03 17:37:23 +0100253 __fsi_reg_mask_set((u32)(master->base + reg), mask, data);
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +0900254 spin_unlock_irqrestore(&master->lock, flags);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900255}
256
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900257/*
258 * basic function
259 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900260
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900261static struct fsi_master *fsi_get_master(struct fsi_priv *fsi)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900262{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900263 return fsi->master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900264}
265
266static int fsi_is_port_a(struct fsi_priv *fsi)
267{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900268 return fsi->master->base == fsi->base;
269}
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900270
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900271static struct snd_soc_dai *fsi_get_dai(struct snd_pcm_substream *substream)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900272{
273 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900274
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000275 return rtd->cpu_dai;
Kuninori Morimoto142e8172009-12-28 14:09:11 +0900276}
277
278static struct fsi_priv *fsi_get_priv(struct snd_pcm_substream *substream)
279{
280 struct snd_soc_dai *dai = fsi_get_dai(substream);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000281 struct fsi_master *master = snd_soc_dai_get_drvdata(dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900282
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000283 if (dai->id == 0)
284 return &master->fsia;
285 else
286 return &master->fsib;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900287}
288
289static u32 fsi_get_info_flags(struct fsi_priv *fsi)
290{
291 int is_porta = fsi_is_port_a(fsi);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900292 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900293
294 return is_porta ? master->info->porta_flags :
295 master->info->portb_flags;
296}
297
298static int fsi_is_master_mode(struct fsi_priv *fsi, int is_play)
299{
300 u32 mode;
301 u32 flags = fsi_get_info_flags(fsi);
302
303 mode = is_play ? SH_FSI_OUT_SLAVE_MODE : SH_FSI_IN_SLAVE_MODE;
304
305 /* return
306 * 1 : master mode
307 * 0 : slave mode
308 */
309
310 return (mode & flags) != mode;
311}
312
313static u32 fsi_port_ab_io_bit(struct fsi_priv *fsi, int is_play)
314{
315 int is_porta = fsi_is_port_a(fsi);
316 u32 data;
317
318 if (is_porta)
319 data = is_play ? (1 << 0) : (1 << 4);
320 else
321 data = is_play ? (1 << 8) : (1 << 12);
322
323 return data;
324}
325
326static void fsi_stream_push(struct fsi_priv *fsi,
327 struct snd_pcm_substream *substream,
328 u32 buffer_len,
329 u32 period_len)
330{
331 fsi->substream = substream;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900332 fsi->buff_len = buffer_len;
333 fsi->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900334 fsi->period_len = period_len;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900335 fsi->period_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900336}
337
338static void fsi_stream_pop(struct fsi_priv *fsi)
339{
340 fsi->substream = NULL;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900341 fsi->buff_len = 0;
342 fsi->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900343 fsi->period_len = 0;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900344 fsi->period_num = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900345}
346
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900347static int fsi_get_fifo_data_num(struct fsi_priv *fsi, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900348{
349 u32 status;
350 u32 reg = is_play ? DOFF_ST : DIFF_ST;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900351 int data_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900352
353 status = fsi_reg_read(fsi, reg);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900354 data_num = 0x1ff & (status >> 8);
355 data_num *= fsi->chan_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900356
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900357 return data_num;
358}
359
360static int fsi_len2num(int len, int width)
361{
362 return len / width;
363}
364
365#define fsi_num2offset(a, b) fsi_num2len(a, b)
366static int fsi_num2len(int num, int width)
367{
368 return num * width;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900369}
370
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900371static int fsi_get_frame_width(struct fsi_priv *fsi)
372{
373 struct snd_pcm_substream *substream = fsi->substream;
374 struct snd_pcm_runtime *runtime = substream->runtime;
375
376 return frames_to_bytes(runtime, 1) / fsi->chan_num;
377}
378
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900379/*
380 * dma function
381 */
382
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900383static u8 *fsi_dma_get_area(struct fsi_priv *fsi)
384{
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900385 return fsi->substream->runtime->dma_area + fsi->buff_offset;
Kuninori Morimotoc79eab32010-09-17 13:48:05 +0900386}
387
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900388static void fsi_dma_soft_push16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900389{
390 u16 *start;
391 int i;
392
393 start = (u16 *)fsi_dma_get_area(fsi);
394
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900395 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900396 fsi_reg_write(fsi, DODT, ((u32)*(start + i) << 8));
397}
398
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900399static void fsi_dma_soft_pop16(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900400{
401 u16 *start;
402 int i;
403
404 start = (u16 *)fsi_dma_get_area(fsi);
405
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900406 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900407 *(start + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
408}
409
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900410static void fsi_dma_soft_push32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900411{
412 u32 *start;
413 int i;
414
415 start = (u32 *)fsi_dma_get_area(fsi);
416
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900417 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900418 fsi_reg_write(fsi, DODT, *(start + i));
419}
420
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900421static void fsi_dma_soft_pop32(struct fsi_priv *fsi, int num)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900422{
423 u32 *start;
424 int i;
425
426 start = (u32 *)fsi_dma_get_area(fsi);
427
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900428 for (i = 0; i < num; i++)
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900429 *(start + i) = fsi_reg_read(fsi, DIDT);
430}
431
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900432/*
433 * irq function
434 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900435
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900436static void fsi_irq_enable(struct fsi_priv *fsi, int is_play)
437{
438 u32 data = fsi_port_ab_io_bit(fsi, is_play);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900439 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900440
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900441 fsi_master_mask_set(master, master->core->imsk, data, data);
442 fsi_master_mask_set(master, master->core->iemsk, data, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900443}
444
445static void fsi_irq_disable(struct fsi_priv *fsi, int is_play)
446{
447 u32 data = fsi_port_ab_io_bit(fsi, is_play);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900448 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900449
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900450 fsi_master_mask_set(master, master->core->imsk, data, 0);
451 fsi_master_mask_set(master, master->core->iemsk, data, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900452}
453
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900454static u32 fsi_irq_get_status(struct fsi_master *master)
455{
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900456 return fsi_master_read(master, master->core->int_st);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900457}
458
459static void fsi_irq_clear_all_status(struct fsi_master *master)
460{
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900461 fsi_master_write(master, master->core->int_st, 0);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900462}
463
464static void fsi_irq_clear_status(struct fsi_priv *fsi)
465{
466 u32 data = 0;
467 struct fsi_master *master = fsi_get_master(fsi);
468
469 data |= fsi_port_ab_io_bit(fsi, 0);
470 data |= fsi_port_ab_io_bit(fsi, 1);
471
472 /* clear interrupt factor */
Kuninori Morimoto73b92c12010-07-13 12:13:04 +0900473 fsi_master_mask_set(master, master->core->int_st, data, 0);
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900474}
475
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900476/*
477 * SPDIF master clock function
478 *
479 * These functions are used later FSI2
480 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900481static void fsi_spdif_clk_ctrl(struct fsi_priv *fsi, int enable)
482{
483 struct fsi_master *master = fsi_get_master(fsi);
484 u32 val = BP | SE;
485
486 if (master->core->ver < 2) {
487 pr_err("fsi: register access err (%s)\n", __func__);
488 return;
489 }
490
491 if (enable)
492 fsi_master_mask_set(master, fsi->mst_ctrl, val, val);
493 else
494 fsi_master_mask_set(master, fsi->mst_ctrl, val, 0);
495}
496
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900497/*
498 * ctrl function
499 */
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900500
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900501static void fsi_clk_ctrl(struct fsi_priv *fsi, int enable)
502{
503 u32 val = fsi_is_port_a(fsi) ? (1 << 0) : (1 << 4);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900504 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900505
506 if (enable)
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900507 fsi_master_mask_set(master, CLK_RST, val, val);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900508 else
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900509 fsi_master_mask_set(master, CLK_RST, val, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900510}
511
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900512static void fsi_fifo_init(struct fsi_priv *fsi,
513 int is_play,
514 struct snd_soc_dai *dai)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900515{
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900516 struct fsi_master *master = fsi_get_master(fsi);
517 u32 ctrl, shift, i;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900518
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900519 /* get on-chip RAM capacity */
520 shift = fsi_master_read(master, FIFO_SZ);
521 shift >>= fsi_is_port_a(fsi) ? AO_SZ_SHIFT : BO_SZ_SHIFT;
522 shift &= OUT_SZ_MASK;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900523 fsi->fifo_max_num = 256 << shift;
524 dev_dbg(dai->dev, "fifo = %d words\n", fsi->fifo_max_num);
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900525
526 /*
527 * The maximum number of sample data varies depending
528 * on the number of channels selected for the format.
529 *
530 * FIFOs are used in 4-channel units in 3-channel mode
531 * and in 8-channel units in 5- to 7-channel mode
532 * meaning that more FIFOs than the required size of DPRAM
533 * are used.
534 *
535 * ex) if 256 words of DP-RAM is connected
536 * 1 channel: 256 (256 x 1 = 256)
537 * 2 channels: 128 (128 x 2 = 256)
538 * 3 channels: 64 ( 64 x 3 = 192)
539 * 4 channels: 64 ( 64 x 4 = 256)
540 * 5 channels: 32 ( 32 x 5 = 160)
541 * 6 channels: 32 ( 32 x 6 = 192)
542 * 7 channels: 32 ( 32 x 7 = 224)
543 * 8 channels: 32 ( 32 x 8 = 256)
544 */
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900545 for (i = 1; i < fsi->chan_num; i <<= 1)
546 fsi->fifo_max_num >>= 1;
547 dev_dbg(dai->dev, "%d channel %d store\n",
548 fsi->chan_num, fsi->fifo_max_num);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900549
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900550 ctrl = is_play ? DOFF_CTL : DIFF_CTL;
551
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900552 /* set interrupt generation factor */
553 fsi_reg_write(fsi, ctrl, IRQ_HALF);
554
555 /* clear FIFO */
556 fsi_reg_mask_set(fsi, ctrl, FIFO_CLR, FIFO_CLR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900557}
558
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900559static void fsi_soft_all_reset(struct fsi_master *master)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900560{
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900561 /* port AB reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900562 fsi_master_mask_set(master, SOFT_RST, PASR | PBSR, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900563 mdelay(10);
564
565 /* soft reset */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900566 fsi_master_mask_set(master, SOFT_RST, FSISR, 0);
567 fsi_master_mask_set(master, SOFT_RST, FSISR, FSISR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900568 mdelay(10);
569}
570
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900571static int fsi_fifo_data_ctrl(struct fsi_priv *fsi, int startup, int is_play)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900572{
573 struct snd_pcm_runtime *runtime;
574 struct snd_pcm_substream *substream = NULL;
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900575 u32 status;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900576 u32 status_reg = is_play ? DOFF_ST : DIFF_ST;
577 int data_residue_num;
578 int data_num;
579 int data_num_max;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900580 int ch_width;
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900581 int over_period;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900582 void (*fn)(struct fsi_priv *fsi, int size);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900583
584 if (!fsi ||
585 !fsi->substream ||
586 !fsi->substream->runtime)
587 return -EINVAL;
588
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900589 over_period = 0;
590 substream = fsi->substream;
591 runtime = substream->runtime;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900592
593 /* FSI FIFO has limit.
594 * So, this driver can not send periods data at a time
595 */
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900596 if (fsi->buff_offset >=
597 fsi_num2offset(fsi->period_num + 1, fsi->period_len)) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900598
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900599 over_period = 1;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900600 fsi->period_num = (fsi->period_num + 1) % runtime->periods;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900601
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900602 if (0 == fsi->period_num)
603 fsi->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900604 }
605
606 /* get 1 channel data width */
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900607 ch_width = fsi_get_frame_width(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900608
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900609 /* get residue data number of alsa */
610 data_residue_num = fsi_len2num(fsi->buff_len - fsi->buff_offset,
611 ch_width);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900612
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900613 if (is_play) {
614 /*
615 * for play-back
616 *
617 * data_num_max : number of FSI fifo free space
618 * data_num : number of ALSA residue data
619 */
620 data_num_max = fsi->fifo_max_num * fsi->chan_num;
621 data_num_max -= fsi_get_fifo_data_num(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900622
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900623 data_num = data_residue_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900624
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900625 switch (ch_width) {
626 case 2:
627 fn = fsi_dma_soft_push16;
628 break;
629 case 4:
630 fn = fsi_dma_soft_push32;
631 break;
632 default:
633 return -EINVAL;
634 }
635 } else {
636 /*
637 * for capture
638 *
639 * data_num_max : number of ALSA free space
640 * data_num : number of data in FSI fifo
641 */
642 data_num_max = data_residue_num;
643 data_num = fsi_get_fifo_data_num(fsi, is_play);
644
645 switch (ch_width) {
646 case 2:
647 fn = fsi_dma_soft_pop16;
648 break;
649 case 4:
650 fn = fsi_dma_soft_pop32;
651 break;
652 default:
653 return -EINVAL;
654 }
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +0900655 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900656
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900657 data_num = min(data_num, data_num_max);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900658
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900659 fn(fsi, data_num);
660
661 /* update buff_offset */
662 fsi->buff_offset += fsi_num2offset(data_num, ch_width);
663
664 /* check fifo status */
665 status = fsi_reg_read(fsi, status_reg);
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900666 if (!startup) {
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900667 struct snd_soc_dai *dai = fsi_get_dai(substream);
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900668
669 if (status & ERR_OVER)
670 dev_err(dai->dev, "over run\n");
671 if (status & ERR_UNDER)
672 dev_err(dai->dev, "under run\n");
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900673 }
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900674 fsi_reg_write(fsi, status_reg, 0);
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900675
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900676 /* re-enable irq */
677 fsi_irq_enable(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900678
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900679 if (over_period)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900680 snd_pcm_period_elapsed(substream);
681
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900682 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900683}
684
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900685static int fsi_data_pop(struct fsi_priv *fsi, int startup)
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900686{
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900687 return fsi_fifo_data_ctrl(fsi, startup, 0);
688}
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900689
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900690static int fsi_data_push(struct fsi_priv *fsi, int startup)
691{
692 return fsi_fifo_data_ctrl(fsi, startup, 1);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900693}
694
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900695static irqreturn_t fsi_interrupt(int irq, void *data)
696{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900697 struct fsi_master *master = data;
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900698 u32 int_st = fsi_irq_get_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900699
700 /* clear irq status */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900701 fsi_master_mask_set(master, SOFT_RST, IR, 0);
702 fsi_master_mask_set(master, SOFT_RST, IR, IR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900703
704 if (int_st & INT_A_OUT)
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900705 fsi_data_push(&master->fsia, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900706 if (int_st & INT_B_OUT)
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900707 fsi_data_push(&master->fsib, 0);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900708 if (int_st & INT_A_IN)
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900709 fsi_data_pop(&master->fsia, 0);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900710 if (int_st & INT_B_IN)
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900711 fsi_data_pop(&master->fsib, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900712
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900713 fsi_irq_clear_all_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900714
715 return IRQ_HANDLED;
716}
717
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900718/*
719 * dai ops
720 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900721
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900722static int fsi_dai_startup(struct snd_pcm_substream *substream,
723 struct snd_soc_dai *dai)
724{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900725 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900726 u32 flags = fsi_get_info_flags(fsi);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900727 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900728 u32 fmt;
729 u32 reg;
730 u32 data;
731 int is_play = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
732 int is_master;
733 int ret = 0;
734
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900735 pm_runtime_get_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900736
737 /* CKG1 */
738 data = is_play ? (1 << 0) : (1 << 4);
739 is_master = fsi_is_master_mode(fsi, is_play);
740 if (is_master)
741 fsi_reg_mask_set(fsi, CKG1, data, data);
742 else
743 fsi_reg_mask_set(fsi, CKG1, data, 0);
744
745 /* clock inversion (CKG2) */
746 data = 0;
Kuninori Morimotob427b442010-07-13 12:01:15 +0900747 if (SH_FSI_LRM_INV & flags)
748 data |= 1 << 12;
749 if (SH_FSI_BRM_INV & flags)
750 data |= 1 << 8;
751 if (SH_FSI_LRS_INV & flags)
752 data |= 1 << 4;
753 if (SH_FSI_BRS_INV & flags)
754 data |= 1 << 0;
755
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900756 fsi_reg_write(fsi, CKG2, data);
757
758 /* do fmt, di fmt */
759 data = 0;
760 reg = is_play ? DO_FMT : DI_FMT;
761 fmt = is_play ? SH_FSI_GET_OFMT(flags) : SH_FSI_GET_IFMT(flags);
762 switch (fmt) {
763 case SH_FSI_FMT_MONO:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900764 data = CR_MONO;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900765 fsi->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900766 break;
767 case SH_FSI_FMT_MONO_DELAY:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900768 data = CR_MONO_D;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900769 fsi->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900770 break;
771 case SH_FSI_FMT_PCM:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900772 data = CR_PCM;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900773 fsi->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900774 break;
775 case SH_FSI_FMT_I2S:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900776 data = CR_I2S;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900777 fsi->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900778 break;
779 case SH_FSI_FMT_TDM:
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900780 fsi->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900781 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900782 data = CR_TDM | (fsi->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900783 break;
784 case SH_FSI_FMT_TDM_DELAY:
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900785 fsi->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900786 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900787 data = CR_TDM_D | (fsi->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900788 break;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900789 case SH_FSI_FMT_SPDIF:
790 if (master->core->ver < 2) {
791 dev_err(dai->dev, "This FSI can not use SPDIF\n");
792 return -EINVAL;
793 }
794 data = CR_SPDIF;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900795 fsi->chan_num = 2;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900796 fsi_spdif_clk_ctrl(fsi, 1);
797 fsi_reg_mask_set(fsi, OUT_SEL, 0x0010, 0x0010);
798 break;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900799 default:
800 dev_err(dai->dev, "unknown format.\n");
801 return -EINVAL;
802 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900803 fsi_reg_write(fsi, reg, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900804
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900805 /* irq clear */
806 fsi_irq_disable(fsi, is_play);
807 fsi_irq_clear_status(fsi);
808
809 /* fifo init */
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900810 fsi_fifo_init(fsi, is_play, dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900811
812 return ret;
813}
814
815static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
816 struct snd_soc_dai *dai)
817{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900818 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900819 int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
820
821 fsi_irq_disable(fsi, is_play);
822 fsi_clk_ctrl(fsi, 0);
823
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900824 pm_runtime_put_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900825}
826
827static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
828 struct snd_soc_dai *dai)
829{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900830 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900831 struct snd_pcm_runtime *runtime = substream->runtime;
832 int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
833 int ret = 0;
834
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900835 switch (cmd) {
836 case SNDRV_PCM_TRIGGER_START:
837 fsi_stream_push(fsi, substream,
838 frames_to_bytes(runtime, runtime->buffer_size),
839 frames_to_bytes(runtime, runtime->period_size));
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900840 ret = is_play ? fsi_data_push(fsi, 1) : fsi_data_pop(fsi, 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900841 break;
842 case SNDRV_PCM_TRIGGER_STOP:
843 fsi_irq_disable(fsi, is_play);
844 fsi_stream_pop(fsi);
845 break;
846 }
847
848 return ret;
849}
850
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900851static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
852 struct snd_pcm_hw_params *params,
853 struct snd_soc_dai *dai)
854{
855 struct fsi_priv *fsi = fsi_get_priv(substream);
856 struct fsi_master *master = fsi_get_master(fsi);
857 int (*set_rate)(int is_porta, int rate) = master->info->set_rate;
858 int fsi_ver = master->core->ver;
859 int is_play = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
860 int ret;
861
862 /* if slave mode, set_rate is not needed */
863 if (!fsi_is_master_mode(fsi, is_play))
864 return 0;
865
866 /* it is error if no set_rate */
867 if (!set_rate)
868 return -EIO;
869
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900870 ret = set_rate(fsi_is_port_a(fsi), params_rate(params));
871 if (ret > 0) {
872 u32 data = 0;
873
874 switch (ret & SH_FSI_ACKMD_MASK) {
875 default:
876 /* FALL THROUGH */
877 case SH_FSI_ACKMD_512:
878 data |= (0x0 << 12);
879 break;
880 case SH_FSI_ACKMD_256:
881 data |= (0x1 << 12);
882 break;
883 case SH_FSI_ACKMD_128:
884 data |= (0x2 << 12);
885 break;
886 case SH_FSI_ACKMD_64:
887 data |= (0x3 << 12);
888 break;
889 case SH_FSI_ACKMD_32:
890 if (fsi_ver < 2)
891 dev_err(dai->dev, "unsupported ACKMD\n");
892 else
893 data |= (0x4 << 12);
894 break;
895 }
896
897 switch (ret & SH_FSI_BPFMD_MASK) {
898 default:
899 /* FALL THROUGH */
900 case SH_FSI_BPFMD_32:
901 data |= (0x0 << 8);
902 break;
903 case SH_FSI_BPFMD_64:
904 data |= (0x1 << 8);
905 break;
906 case SH_FSI_BPFMD_128:
907 data |= (0x2 << 8);
908 break;
909 case SH_FSI_BPFMD_256:
910 data |= (0x3 << 8);
911 break;
912 case SH_FSI_BPFMD_512:
913 data |= (0x4 << 8);
914 break;
915 case SH_FSI_BPFMD_16:
916 if (fsi_ver < 2)
917 dev_err(dai->dev, "unsupported ACKMD\n");
918 else
919 data |= (0x7 << 8);
920 break;
921 }
922
923 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
924 udelay(10);
925 fsi_clk_ctrl(fsi, 1);
926 ret = 0;
927 }
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900928
929 return ret;
930
931}
932
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900933static struct snd_soc_dai_ops fsi_dai_ops = {
934 .startup = fsi_dai_startup,
935 .shutdown = fsi_dai_shutdown,
936 .trigger = fsi_dai_trigger,
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900937 .hw_params = fsi_dai_hw_params,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900938};
939
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900940/*
941 * pcm ops
942 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900943
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900944static struct snd_pcm_hardware fsi_pcm_hardware = {
945 .info = SNDRV_PCM_INFO_INTERLEAVED |
946 SNDRV_PCM_INFO_MMAP |
947 SNDRV_PCM_INFO_MMAP_VALID |
948 SNDRV_PCM_INFO_PAUSE,
949 .formats = FSI_FMTS,
950 .rates = FSI_RATES,
951 .rate_min = 8000,
952 .rate_max = 192000,
953 .channels_min = 1,
954 .channels_max = 2,
955 .buffer_bytes_max = 64 * 1024,
956 .period_bytes_min = 32,
957 .period_bytes_max = 8192,
958 .periods_min = 1,
959 .periods_max = 32,
960 .fifo_size = 256,
961};
962
963static int fsi_pcm_open(struct snd_pcm_substream *substream)
964{
965 struct snd_pcm_runtime *runtime = substream->runtime;
966 int ret = 0;
967
968 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
969
970 ret = snd_pcm_hw_constraint_integer(runtime,
971 SNDRV_PCM_HW_PARAM_PERIODS);
972
973 return ret;
974}
975
976static int fsi_hw_params(struct snd_pcm_substream *substream,
977 struct snd_pcm_hw_params *hw_params)
978{
979 return snd_pcm_lib_malloc_pages(substream,
980 params_buffer_bytes(hw_params));
981}
982
983static int fsi_hw_free(struct snd_pcm_substream *substream)
984{
985 return snd_pcm_lib_free_pages(substream);
986}
987
988static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
989{
990 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900991 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900992 long location;
993
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900994 location = (fsi->buff_offset - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900995 if (location < 0)
996 location = 0;
997
998 return bytes_to_frames(runtime, location);
999}
1000
1001static struct snd_pcm_ops fsi_pcm_ops = {
1002 .open = fsi_pcm_open,
1003 .ioctl = snd_pcm_lib_ioctl,
1004 .hw_params = fsi_hw_params,
1005 .hw_free = fsi_hw_free,
1006 .pointer = fsi_pointer,
1007};
1008
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001009/*
1010 * snd_soc_platform
1011 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001012
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001013#define PREALLOC_BUFFER (32 * 1024)
1014#define PREALLOC_BUFFER_MAX (32 * 1024)
1015
1016static void fsi_pcm_free(struct snd_pcm *pcm)
1017{
1018 snd_pcm_lib_preallocate_free_for_all(pcm);
1019}
1020
1021static int fsi_pcm_new(struct snd_card *card,
1022 struct snd_soc_dai *dai,
1023 struct snd_pcm *pcm)
1024{
1025 /*
1026 * dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
1027 * in MMAP mode (i.e. aplay -M)
1028 */
1029 return snd_pcm_lib_preallocate_pages_for_all(
1030 pcm,
1031 SNDRV_DMA_TYPE_CONTINUOUS,
1032 snd_dma_continuous_data(GFP_KERNEL),
1033 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1034}
1035
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001036/*
1037 * alsa struct
1038 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001039
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001040static struct snd_soc_dai_driver fsi_soc_dai[] = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001041 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001042 .name = "fsia-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001043 .playback = {
1044 .rates = FSI_RATES,
1045 .formats = FSI_FMTS,
1046 .channels_min = 1,
1047 .channels_max = 8,
1048 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001049 .capture = {
1050 .rates = FSI_RATES,
1051 .formats = FSI_FMTS,
1052 .channels_min = 1,
1053 .channels_max = 8,
1054 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001055 .ops = &fsi_dai_ops,
1056 },
1057 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001058 .name = "fsib-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001059 .playback = {
1060 .rates = FSI_RATES,
1061 .formats = FSI_FMTS,
1062 .channels_min = 1,
1063 .channels_max = 8,
1064 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001065 .capture = {
1066 .rates = FSI_RATES,
1067 .formats = FSI_FMTS,
1068 .channels_min = 1,
1069 .channels_max = 8,
1070 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001071 .ops = &fsi_dai_ops,
1072 },
1073};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001074
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001075static struct snd_soc_platform_driver fsi_soc_platform = {
1076 .ops = &fsi_pcm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001077 .pcm_new = fsi_pcm_new,
1078 .pcm_free = fsi_pcm_free,
1079};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001080
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001081/*
1082 * platform function
1083 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001084
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001085static int fsi_probe(struct platform_device *pdev)
1086{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001087 struct fsi_master *master;
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001088 const struct platform_device_id *id_entry;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001089 struct resource *res;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001090 unsigned int irq;
1091 int ret;
1092
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001093 id_entry = pdev->id_entry;
1094 if (!id_entry) {
1095 dev_err(&pdev->dev, "unknown fsi device\n");
1096 return -ENODEV;
1097 }
1098
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001099 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1100 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb6aa1792009-12-16 17:10:09 +01001101 if (!res || (int)irq <= 0) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001102 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1103 ret = -ENODEV;
1104 goto exit;
1105 }
1106
1107 master = kzalloc(sizeof(*master), GFP_KERNEL);
1108 if (!master) {
1109 dev_err(&pdev->dev, "Could not allocate master\n");
1110 ret = -ENOMEM;
1111 goto exit;
1112 }
1113
1114 master->base = ioremap_nocache(res->start, resource_size(res));
1115 if (!master->base) {
1116 ret = -ENXIO;
1117 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1118 goto exit_kfree;
1119 }
1120
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001121 /* master setting */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001122 master->irq = irq;
1123 master->info = pdev->dev.platform_data;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001124 master->core = (struct fsi_core *)id_entry->driver_data;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +09001125 spin_lock_init(&master->lock);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001126
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001127 /* FSI A setting */
1128 master->fsia.base = master->base;
1129 master->fsia.master = master;
1130 master->fsia.mst_ctrl = A_MST_CTLR;
1131
1132 /* FSI B setting */
1133 master->fsib.base = master->base + 0x40;
1134 master->fsib.master = master;
1135 master->fsib.mst_ctrl = B_MST_CTLR;
1136
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001137 pm_runtime_enable(&pdev->dev);
1138 pm_runtime_resume(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001139 dev_set_drvdata(&pdev->dev, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001140
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001141 fsi_soft_all_reset(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001142
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001143 ret = request_irq(irq, &fsi_interrupt, IRQF_DISABLED,
1144 id_entry->name, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001145 if (ret) {
1146 dev_err(&pdev->dev, "irq request err\n");
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +09001147 goto exit_iounmap;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001148 }
1149
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001150 ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001151 if (ret < 0) {
1152 dev_err(&pdev->dev, "cannot snd soc register\n");
1153 goto exit_free_irq;
1154 }
1155
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001156 return snd_soc_register_dais(&pdev->dev, fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001157
1158exit_free_irq:
1159 free_irq(irq, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001160exit_iounmap:
1161 iounmap(master->base);
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001162 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001163exit_kfree:
1164 kfree(master);
1165 master = NULL;
1166exit:
1167 return ret;
1168}
1169
1170static int fsi_remove(struct platform_device *pdev)
1171{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001172 struct fsi_master *master;
1173
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 master = dev_get_drvdata(&pdev->dev);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001175
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001176 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
1177 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001178
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001179 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001180
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001181 free_irq(master->irq, master);
1182
1183 iounmap(master->base);
1184 kfree(master);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001185
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001186 return 0;
1187}
1188
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001189static int fsi_runtime_nop(struct device *dev)
1190{
1191 /* Runtime PM callback shared between ->runtime_suspend()
1192 * and ->runtime_resume(). Simply returns success.
1193 *
1194 * This driver re-initializes all registers after
1195 * pm_runtime_get_sync() anyway so there is no need
1196 * to save and restore registers here.
1197 */
1198 return 0;
1199}
1200
1201static struct dev_pm_ops fsi_pm_ops = {
1202 .runtime_suspend = fsi_runtime_nop,
1203 .runtime_resume = fsi_runtime_nop,
1204};
1205
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001206static struct fsi_core fsi1_core = {
1207 .ver = 1,
1208
1209 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001210 .int_st = INT_ST,
1211 .iemsk = IEMSK,
1212 .imsk = IMSK,
1213};
1214
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001215static struct fsi_core fsi2_core = {
1216 .ver = 2,
1217
1218 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001219 .int_st = CPU_INT_ST,
1220 .iemsk = CPU_IEMSK,
1221 .imsk = CPU_IMSK,
1222};
1223
1224static struct platform_device_id fsi_id_table[] = {
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001225 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
1226 { "sh_fsi2", (kernel_ulong_t)&fsi2_core },
Guennadi Liakhovetski05c69452010-10-05 17:54:28 +02001227 {},
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001228};
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001229MODULE_DEVICE_TABLE(platform, fsi_id_table);
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001230
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001231static struct platform_driver fsi_driver = {
1232 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001233 .name = "fsi-pcm-audio",
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001234 .pm = &fsi_pm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001235 },
1236 .probe = fsi_probe,
1237 .remove = fsi_remove,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001238 .id_table = fsi_id_table,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001239};
1240
1241static int __init fsi_mobile_init(void)
1242{
1243 return platform_driver_register(&fsi_driver);
1244}
1245
1246static void __exit fsi_mobile_exit(void)
1247{
1248 platform_driver_unregister(&fsi_driver);
1249}
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001250
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001251module_init(fsi_mobile_init);
1252module_exit(fsi_mobile_exit);
1253
1254MODULE_LICENSE("GPL");
1255MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
1256MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");