blob: 2b3a50d48ce553c2df9cf63c59bc16f4d8052694 [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 Morimotod8b33532010-09-17 13:49:05 +0900575 u32 status_reg = is_play ? DOFF_ST : DIFF_ST;
576 int data_residue_num;
577 int data_num;
578 int data_num_max;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900579 int ch_width;
Kuninori Morimotob9fde182010-09-17 13:48:32 +0900580 int over_period;
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900581 void (*fn)(struct fsi_priv *fsi, int size);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900582
583 if (!fsi ||
584 !fsi->substream ||
585 !fsi->substream->runtime)
586 return -EINVAL;
587
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900588 over_period = 0;
589 substream = fsi->substream;
590 runtime = substream->runtime;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900591
592 /* FSI FIFO has limit.
593 * So, this driver can not send periods data at a time
594 */
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900595 if (fsi->buff_offset >=
596 fsi_num2offset(fsi->period_num + 1, fsi->period_len)) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900597
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900598 over_period = 1;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900599 fsi->period_num = (fsi->period_num + 1) % runtime->periods;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900600
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900601 if (0 == fsi->period_num)
602 fsi->buff_offset = 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900603 }
604
605 /* get 1 channel data width */
Kuninori Morimotocca1b232010-10-12 11:39:25 +0900606 ch_width = fsi_get_frame_width(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900607
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900608 /* get residue data number of alsa */
609 data_residue_num = fsi_len2num(fsi->buff_len - fsi->buff_offset,
610 ch_width);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900611
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900612 if (is_play) {
613 /*
614 * for play-back
615 *
616 * data_num_max : number of FSI fifo free space
617 * data_num : number of ALSA residue data
618 */
619 data_num_max = fsi->fifo_max_num * fsi->chan_num;
620 data_num_max -= fsi_get_fifo_data_num(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900621
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900622 data_num = data_residue_num;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900623
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900624 switch (ch_width) {
625 case 2:
626 fn = fsi_dma_soft_push16;
627 break;
628 case 4:
629 fn = fsi_dma_soft_push32;
630 break;
631 default:
632 return -EINVAL;
633 }
634 } else {
635 /*
636 * for capture
637 *
638 * data_num_max : number of ALSA free space
639 * data_num : number of data in FSI fifo
640 */
641 data_num_max = data_residue_num;
642 data_num = fsi_get_fifo_data_num(fsi, is_play);
643
644 switch (ch_width) {
645 case 2:
646 fn = fsi_dma_soft_pop16;
647 break;
648 case 4:
649 fn = fsi_dma_soft_pop32;
650 break;
651 default:
652 return -EINVAL;
653 }
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +0900654 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900655
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900656 data_num = min(data_num, data_num_max);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900657
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900658 fn(fsi, data_num);
659
660 /* update buff_offset */
661 fsi->buff_offset += fsi_num2offset(data_num, ch_width);
662
663 /* check fifo status */
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900664 if (!startup) {
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900665 struct snd_soc_dai *dai = fsi_get_dai(substream);
Kuninori Morimoto75eda9682010-10-12 11:40:14 +0900666 u32 status = fsi_reg_read(fsi, status_reg);
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900667
668 if (status & ERR_OVER)
669 dev_err(dai->dev, "over run\n");
670 if (status & ERR_UNDER)
671 dev_err(dai->dev, "under run\n");
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900672 }
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900673 fsi_reg_write(fsi, status_reg, 0);
Kuninori Morimoto59c3b002009-12-28 14:09:16 +0900674
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900675 /* re-enable irq */
676 fsi_irq_enable(fsi, is_play);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900677
Kuninori Morimoto1c418d12009-12-28 14:09:05 +0900678 if (over_period)
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900679 snd_pcm_period_elapsed(substream);
680
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900681 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900682}
683
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900684static int fsi_data_pop(struct fsi_priv *fsi, int startup)
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900685{
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900686 return fsi_fifo_data_ctrl(fsi, startup, 0);
687}
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900688
Kuninori Morimotod8b33532010-09-17 13:49:05 +0900689static int fsi_data_push(struct fsi_priv *fsi, int startup)
690{
691 return fsi_fifo_data_ctrl(fsi, startup, 1);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900692}
693
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900694static irqreturn_t fsi_interrupt(int irq, void *data)
695{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900696 struct fsi_master *master = data;
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900697 u32 int_st = fsi_irq_get_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900698
699 /* clear irq status */
Kuninori Morimotofeb58cf2010-03-24 15:27:24 +0900700 fsi_master_mask_set(master, SOFT_RST, IR, 0);
701 fsi_master_mask_set(master, SOFT_RST, IR, IR);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900702
703 if (int_st & INT_A_OUT)
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900704 fsi_data_push(&master->fsia, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900705 if (int_st & INT_B_OUT)
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900706 fsi_data_push(&master->fsib, 0);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900707 if (int_st & INT_A_IN)
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900708 fsi_data_pop(&master->fsia, 0);
Kuninori Morimoto07102f32009-10-30 12:02:44 +0900709 if (int_st & INT_B_IN)
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900710 fsi_data_pop(&master->fsib, 0);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900711
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900712 fsi_irq_clear_all_status(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900713
714 return IRQ_HANDLED;
715}
716
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900717/*
718 * dai ops
719 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900720
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900721static int fsi_dai_startup(struct snd_pcm_substream *substream,
722 struct snd_soc_dai *dai)
723{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900724 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900725 u32 flags = fsi_get_info_flags(fsi);
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900726 struct fsi_master *master = fsi_get_master(fsi);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900727 u32 fmt;
728 u32 reg;
729 u32 data;
730 int is_play = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
731 int is_master;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900732
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900733 pm_runtime_get_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900734
735 /* CKG1 */
736 data = is_play ? (1 << 0) : (1 << 4);
737 is_master = fsi_is_master_mode(fsi, is_play);
738 if (is_master)
739 fsi_reg_mask_set(fsi, CKG1, data, data);
740 else
741 fsi_reg_mask_set(fsi, CKG1, data, 0);
742
743 /* clock inversion (CKG2) */
744 data = 0;
Kuninori Morimotob427b442010-07-13 12:01:15 +0900745 if (SH_FSI_LRM_INV & flags)
746 data |= 1 << 12;
747 if (SH_FSI_BRM_INV & flags)
748 data |= 1 << 8;
749 if (SH_FSI_LRS_INV & flags)
750 data |= 1 << 4;
751 if (SH_FSI_BRS_INV & flags)
752 data |= 1 << 0;
753
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900754 fsi_reg_write(fsi, CKG2, data);
755
756 /* do fmt, di fmt */
757 data = 0;
758 reg = is_play ? DO_FMT : DI_FMT;
759 fmt = is_play ? SH_FSI_GET_OFMT(flags) : SH_FSI_GET_IFMT(flags);
760 switch (fmt) {
761 case SH_FSI_FMT_MONO:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900762 data = CR_MONO;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900763 fsi->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900764 break;
765 case SH_FSI_FMT_MONO_DELAY:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900766 data = CR_MONO_D;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900767 fsi->chan_num = 1;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900768 break;
769 case SH_FSI_FMT_PCM:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900770 data = CR_PCM;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900771 fsi->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900772 break;
773 case SH_FSI_FMT_I2S:
Kuninori Morimotoa7ffb522010-07-13 12:13:00 +0900774 data = CR_I2S;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900775 fsi->chan_num = 2;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900776 break;
777 case SH_FSI_FMT_TDM:
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900778 fsi->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900779 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900780 data = CR_TDM | (fsi->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900781 break;
782 case SH_FSI_FMT_TDM_DELAY:
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900783 fsi->chan_num = is_play ?
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900784 SH_FSI_GET_CH_O(flags) : SH_FSI_GET_CH_I(flags);
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900785 data = CR_TDM_D | (fsi->chan_num - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900786 break;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900787 case SH_FSI_FMT_SPDIF:
788 if (master->core->ver < 2) {
789 dev_err(dai->dev, "This FSI can not use SPDIF\n");
790 return -EINVAL;
791 }
792 data = CR_SPDIF;
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900793 fsi->chan_num = 2;
Kuninori Morimoto3bc28072010-07-29 16:48:32 +0900794 fsi_spdif_clk_ctrl(fsi, 1);
795 fsi_reg_mask_set(fsi, OUT_SEL, 0x0010, 0x0010);
796 break;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900797 default:
798 dev_err(dai->dev, "unknown format.\n");
799 return -EINVAL;
800 }
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900801 fsi_reg_write(fsi, reg, data);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900802
Kuninori Morimoto10ea76c2010-03-23 11:47:54 +0900803 /* irq clear */
804 fsi_irq_disable(fsi, is_play);
805 fsi_irq_clear_status(fsi);
806
807 /* fifo init */
Kuninori Morimoto4a942b42010-03-25 19:15:51 +0900808 fsi_fifo_init(fsi, is_play, dai);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900809
Kuninori Morimotoa68a3b42010-10-12 11:39:50 +0900810 return 0;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900811}
812
813static void fsi_dai_shutdown(struct snd_pcm_substream *substream,
814 struct snd_soc_dai *dai)
815{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900816 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900817 int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
818
819 fsi_irq_disable(fsi, is_play);
820 fsi_clk_ctrl(fsi, 0);
821
Kuninori Morimoto785d1c42009-11-30 20:24:48 +0900822 pm_runtime_put_sync(dai->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900823}
824
825static int fsi_dai_trigger(struct snd_pcm_substream *substream, int cmd,
826 struct snd_soc_dai *dai)
827{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900828 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900829 struct snd_pcm_runtime *runtime = substream->runtime;
830 int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
831 int ret = 0;
832
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900833 switch (cmd) {
834 case SNDRV_PCM_TRIGGER_START:
835 fsi_stream_push(fsi, substream,
836 frames_to_bytes(runtime, runtime->buffer_size),
837 frames_to_bytes(runtime, runtime->period_size));
Kuninori Morimoto47fc9a02010-02-22 16:41:57 +0900838 ret = is_play ? fsi_data_push(fsi, 1) : fsi_data_pop(fsi, 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900839 break;
840 case SNDRV_PCM_TRIGGER_STOP:
841 fsi_irq_disable(fsi, is_play);
842 fsi_stream_pop(fsi);
843 break;
844 }
845
846 return ret;
847}
848
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900849static int fsi_dai_hw_params(struct snd_pcm_substream *substream,
850 struct snd_pcm_hw_params *params,
851 struct snd_soc_dai *dai)
852{
853 struct fsi_priv *fsi = fsi_get_priv(substream);
854 struct fsi_master *master = fsi_get_master(fsi);
855 int (*set_rate)(int is_porta, int rate) = master->info->set_rate;
856 int fsi_ver = master->core->ver;
857 int is_play = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK);
858 int ret;
859
860 /* if slave mode, set_rate is not needed */
861 if (!fsi_is_master_mode(fsi, is_play))
862 return 0;
863
864 /* it is error if no set_rate */
865 if (!set_rate)
866 return -EIO;
867
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900868 ret = set_rate(fsi_is_port_a(fsi), params_rate(params));
869 if (ret > 0) {
870 u32 data = 0;
871
872 switch (ret & SH_FSI_ACKMD_MASK) {
873 default:
874 /* FALL THROUGH */
875 case SH_FSI_ACKMD_512:
876 data |= (0x0 << 12);
877 break;
878 case SH_FSI_ACKMD_256:
879 data |= (0x1 << 12);
880 break;
881 case SH_FSI_ACKMD_128:
882 data |= (0x2 << 12);
883 break;
884 case SH_FSI_ACKMD_64:
885 data |= (0x3 << 12);
886 break;
887 case SH_FSI_ACKMD_32:
888 if (fsi_ver < 2)
889 dev_err(dai->dev, "unsupported ACKMD\n");
890 else
891 data |= (0x4 << 12);
892 break;
893 }
894
895 switch (ret & SH_FSI_BPFMD_MASK) {
896 default:
897 /* FALL THROUGH */
898 case SH_FSI_BPFMD_32:
899 data |= (0x0 << 8);
900 break;
901 case SH_FSI_BPFMD_64:
902 data |= (0x1 << 8);
903 break;
904 case SH_FSI_BPFMD_128:
905 data |= (0x2 << 8);
906 break;
907 case SH_FSI_BPFMD_256:
908 data |= (0x3 << 8);
909 break;
910 case SH_FSI_BPFMD_512:
911 data |= (0x4 << 8);
912 break;
913 case SH_FSI_BPFMD_16:
914 if (fsi_ver < 2)
915 dev_err(dai->dev, "unsupported ACKMD\n");
916 else
917 data |= (0x7 << 8);
918 break;
919 }
920
921 fsi_reg_mask_set(fsi, CKG1, (ACKMD_MASK | BPFMD_MASK) , data);
922 udelay(10);
923 fsi_clk_ctrl(fsi, 1);
924 ret = 0;
925 }
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900926
927 return ret;
928
929}
930
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900931static struct snd_soc_dai_ops fsi_dai_ops = {
932 .startup = fsi_dai_startup,
933 .shutdown = fsi_dai_shutdown,
934 .trigger = fsi_dai_trigger,
Kuninori Morimotoccad7b42010-07-13 12:13:14 +0900935 .hw_params = fsi_dai_hw_params,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900936};
937
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +0900938/*
939 * pcm ops
940 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900941
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900942static struct snd_pcm_hardware fsi_pcm_hardware = {
943 .info = SNDRV_PCM_INFO_INTERLEAVED |
944 SNDRV_PCM_INFO_MMAP |
945 SNDRV_PCM_INFO_MMAP_VALID |
946 SNDRV_PCM_INFO_PAUSE,
947 .formats = FSI_FMTS,
948 .rates = FSI_RATES,
949 .rate_min = 8000,
950 .rate_max = 192000,
951 .channels_min = 1,
952 .channels_max = 2,
953 .buffer_bytes_max = 64 * 1024,
954 .period_bytes_min = 32,
955 .period_bytes_max = 8192,
956 .periods_min = 1,
957 .periods_max = 32,
958 .fifo_size = 256,
959};
960
961static int fsi_pcm_open(struct snd_pcm_substream *substream)
962{
963 struct snd_pcm_runtime *runtime = substream->runtime;
964 int ret = 0;
965
966 snd_soc_set_runtime_hwparams(substream, &fsi_pcm_hardware);
967
968 ret = snd_pcm_hw_constraint_integer(runtime,
969 SNDRV_PCM_HW_PARAM_PERIODS);
970
971 return ret;
972}
973
974static int fsi_hw_params(struct snd_pcm_substream *substream,
975 struct snd_pcm_hw_params *hw_params)
976{
977 return snd_pcm_lib_malloc_pages(substream,
978 params_buffer_bytes(hw_params));
979}
980
981static int fsi_hw_free(struct snd_pcm_substream *substream)
982{
983 return snd_pcm_lib_free_pages(substream);
984}
985
986static snd_pcm_uframes_t fsi_pointer(struct snd_pcm_substream *substream)
987{
988 struct snd_pcm_runtime *runtime = substream->runtime;
Kuninori Morimoto71f6e062009-12-02 15:11:08 +0900989 struct fsi_priv *fsi = fsi_get_priv(substream);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900990 long location;
991
Kuninori Morimoto5bfb9ad2010-09-17 13:48:45 +0900992 location = (fsi->buff_offset - 1);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +0900993 if (location < 0)
994 location = 0;
995
996 return bytes_to_frames(runtime, location);
997}
998
999static struct snd_pcm_ops fsi_pcm_ops = {
1000 .open = fsi_pcm_open,
1001 .ioctl = snd_pcm_lib_ioctl,
1002 .hw_params = fsi_hw_params,
1003 .hw_free = fsi_hw_free,
1004 .pointer = fsi_pointer,
1005};
1006
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001007/*
1008 * snd_soc_platform
1009 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001010
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001011#define PREALLOC_BUFFER (32 * 1024)
1012#define PREALLOC_BUFFER_MAX (32 * 1024)
1013
1014static void fsi_pcm_free(struct snd_pcm *pcm)
1015{
1016 snd_pcm_lib_preallocate_free_for_all(pcm);
1017}
1018
1019static int fsi_pcm_new(struct snd_card *card,
1020 struct snd_soc_dai *dai,
1021 struct snd_pcm *pcm)
1022{
1023 /*
1024 * dont use SNDRV_DMA_TYPE_DEV, since it will oops the SH kernel
1025 * in MMAP mode (i.e. aplay -M)
1026 */
1027 return snd_pcm_lib_preallocate_pages_for_all(
1028 pcm,
1029 SNDRV_DMA_TYPE_CONTINUOUS,
1030 snd_dma_continuous_data(GFP_KERNEL),
1031 PREALLOC_BUFFER, PREALLOC_BUFFER_MAX);
1032}
1033
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001034/*
1035 * alsa struct
1036 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001037
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001038static struct snd_soc_dai_driver fsi_soc_dai[] = {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001039 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001040 .name = "fsia-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001041 .playback = {
1042 .rates = FSI_RATES,
1043 .formats = FSI_FMTS,
1044 .channels_min = 1,
1045 .channels_max = 8,
1046 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001047 .capture = {
1048 .rates = FSI_RATES,
1049 .formats = FSI_FMTS,
1050 .channels_min = 1,
1051 .channels_max = 8,
1052 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001053 .ops = &fsi_dai_ops,
1054 },
1055 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001056 .name = "fsib-dai",
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001057 .playback = {
1058 .rates = FSI_RATES,
1059 .formats = FSI_FMTS,
1060 .channels_min = 1,
1061 .channels_max = 8,
1062 },
Kuninori Morimoto07102f32009-10-30 12:02:44 +09001063 .capture = {
1064 .rates = FSI_RATES,
1065 .formats = FSI_FMTS,
1066 .channels_min = 1,
1067 .channels_max = 8,
1068 },
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001069 .ops = &fsi_dai_ops,
1070 },
1071};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001072
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001073static struct snd_soc_platform_driver fsi_soc_platform = {
1074 .ops = &fsi_pcm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001075 .pcm_new = fsi_pcm_new,
1076 .pcm_free = fsi_pcm_free,
1077};
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001078
Kuninori Morimotoc8fe2572010-09-17 13:48:17 +09001079/*
1080 * platform function
1081 */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001082
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001083static int fsi_probe(struct platform_device *pdev)
1084{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001085 struct fsi_master *master;
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001086 const struct platform_device_id *id_entry;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001087 struct resource *res;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001088 unsigned int irq;
1089 int ret;
1090
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001091 id_entry = pdev->id_entry;
1092 if (!id_entry) {
1093 dev_err(&pdev->dev, "unknown fsi device\n");
1094 return -ENODEV;
1095 }
1096
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001097 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1098 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Königb6aa1792009-12-16 17:10:09 +01001099 if (!res || (int)irq <= 0) {
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001100 dev_err(&pdev->dev, "Not enough FSI platform resources.\n");
1101 ret = -ENODEV;
1102 goto exit;
1103 }
1104
1105 master = kzalloc(sizeof(*master), GFP_KERNEL);
1106 if (!master) {
1107 dev_err(&pdev->dev, "Could not allocate master\n");
1108 ret = -ENOMEM;
1109 goto exit;
1110 }
1111
1112 master->base = ioremap_nocache(res->start, resource_size(res));
1113 if (!master->base) {
1114 ret = -ENXIO;
1115 dev_err(&pdev->dev, "Unable to ioremap FSI registers.\n");
1116 goto exit_kfree;
1117 }
1118
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001119 /* master setting */
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001120 master->irq = irq;
1121 master->info = pdev->dev.platform_data;
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001122 master->core = (struct fsi_core *)id_entry->driver_data;
Kuninori Morimoto8fc176d2010-01-28 13:46:16 +09001123 spin_lock_init(&master->lock);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001124
Kuninori Morimoto3bc28072010-07-29 16:48:32 +09001125 /* FSI A setting */
1126 master->fsia.base = master->base;
1127 master->fsia.master = master;
1128 master->fsia.mst_ctrl = A_MST_CTLR;
1129
1130 /* FSI B setting */
1131 master->fsib.base = master->base + 0x40;
1132 master->fsib.master = master;
1133 master->fsib.mst_ctrl = B_MST_CTLR;
1134
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001135 pm_runtime_enable(&pdev->dev);
1136 pm_runtime_resume(&pdev->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001137 dev_set_drvdata(&pdev->dev, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001138
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001139 fsi_soft_all_reset(master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001140
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001141 ret = request_irq(irq, &fsi_interrupt, IRQF_DISABLED,
1142 id_entry->name, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001143 if (ret) {
1144 dev_err(&pdev->dev, "irq request err\n");
Kuninori Morimoto9ddc9aa2009-10-30 12:02:39 +09001145 goto exit_iounmap;
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001146 }
1147
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001148 ret = snd_soc_register_platform(&pdev->dev, &fsi_soc_platform);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001149 if (ret < 0) {
1150 dev_err(&pdev->dev, "cannot snd soc register\n");
1151 goto exit_free_irq;
1152 }
1153
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001154 return snd_soc_register_dais(&pdev->dev, fsi_soc_dai, ARRAY_SIZE(fsi_soc_dai));
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001155
1156exit_free_irq:
1157 free_irq(irq, master);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001158exit_iounmap:
1159 iounmap(master->base);
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001160 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001161exit_kfree:
1162 kfree(master);
1163 master = NULL;
1164exit:
1165 return ret;
1166}
1167
1168static int fsi_remove(struct platform_device *pdev)
1169{
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001170 struct fsi_master *master;
1171
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001172 master = dev_get_drvdata(&pdev->dev);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001173
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(fsi_soc_dai));
1175 snd_soc_unregister_platform(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001176
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001177 pm_runtime_disable(&pdev->dev);
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001178
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001179 free_irq(master->irq, master);
1180
1181 iounmap(master->base);
1182 kfree(master);
Kuninori Morimoto71f6e062009-12-02 15:11:08 +09001183
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001184 return 0;
1185}
1186
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001187static int fsi_runtime_nop(struct device *dev)
1188{
1189 /* Runtime PM callback shared between ->runtime_suspend()
1190 * and ->runtime_resume(). Simply returns success.
1191 *
1192 * This driver re-initializes all registers after
1193 * pm_runtime_get_sync() anyway so there is no need
1194 * to save and restore registers here.
1195 */
1196 return 0;
1197}
1198
1199static struct dev_pm_ops fsi_pm_ops = {
1200 .runtime_suspend = fsi_runtime_nop,
1201 .runtime_resume = fsi_runtime_nop,
1202};
1203
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001204static struct fsi_core fsi1_core = {
1205 .ver = 1,
1206
1207 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001208 .int_st = INT_ST,
1209 .iemsk = IEMSK,
1210 .imsk = IMSK,
1211};
1212
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001213static struct fsi_core fsi2_core = {
1214 .ver = 2,
1215
1216 /* Interrupt */
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001217 .int_st = CPU_INT_ST,
1218 .iemsk = CPU_IEMSK,
1219 .imsk = CPU_IMSK,
1220};
1221
1222static struct platform_device_id fsi_id_table[] = {
Kuninori Morimoto73b92c12010-07-13 12:13:04 +09001223 { "sh_fsi", (kernel_ulong_t)&fsi1_core },
1224 { "sh_fsi2", (kernel_ulong_t)&fsi2_core },
Guennadi Liakhovetski05c69452010-10-05 17:54:28 +02001225 {},
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001226};
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001227MODULE_DEVICE_TABLE(platform, fsi_id_table);
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001228
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001229static struct platform_driver fsi_driver = {
1230 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001231 .name = "fsi-pcm-audio",
Kuninori Morimoto785d1c42009-11-30 20:24:48 +09001232 .pm = &fsi_pm_ops,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001233 },
1234 .probe = fsi_probe,
1235 .remove = fsi_remove,
Kuninori Morimotocc780d32010-03-25 19:15:53 +09001236 .id_table = fsi_id_table,
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001237};
1238
1239static int __init fsi_mobile_init(void)
1240{
1241 return platform_driver_register(&fsi_driver);
1242}
1243
1244static void __exit fsi_mobile_exit(void)
1245{
1246 platform_driver_unregister(&fsi_driver);
1247}
Dzianis Kahanovichd85a6d72010-09-17 16:42:05 +03001248
Kuninori Morimotoa4d7d552009-08-20 21:01:05 +09001249module_init(fsi_mobile_init);
1250module_exit(fsi_mobile_exit);
1251
1252MODULE_LICENSE("GPL");
1253MODULE_DESCRIPTION("SuperH onchip FSI audio driver");
1254MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");