blob: 6d579938a154fd19cf941766ab3e091f00487ae9 [file] [log] [blame]
Peter Ujfalusi219f4312012-02-03 13:11:47 +02001/*
2 * sound/soc/omap/mcbsp.h
3 *
4 * OMAP Multi-Channel Buffered Serial Port
5 *
6 * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
7 * Peter Ujfalusi <peter.ujfalusi@ti.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24#ifndef __ASOC_MCBSP_H
25#define __ASOC_MCBSP_H
26
Peter Ujfalusi45656b42012-02-14 18:20:58 +020027#include "omap-pcm.h"
28
Peter Ujfalusi219f4312012-02-03 13:11:47 +020029/* McBSP register numbers. Register address offset = num * reg_step */
30enum {
31 /* Common registers */
32 OMAP_MCBSP_REG_SPCR2 = 4,
33 OMAP_MCBSP_REG_SPCR1,
34 OMAP_MCBSP_REG_RCR2,
35 OMAP_MCBSP_REG_RCR1,
36 OMAP_MCBSP_REG_XCR2,
37 OMAP_MCBSP_REG_XCR1,
38 OMAP_MCBSP_REG_SRGR2,
39 OMAP_MCBSP_REG_SRGR1,
40 OMAP_MCBSP_REG_MCR2,
41 OMAP_MCBSP_REG_MCR1,
42 OMAP_MCBSP_REG_RCERA,
43 OMAP_MCBSP_REG_RCERB,
44 OMAP_MCBSP_REG_XCERA,
45 OMAP_MCBSP_REG_XCERB,
46 OMAP_MCBSP_REG_PCR0,
47 OMAP_MCBSP_REG_RCERC,
48 OMAP_MCBSP_REG_RCERD,
49 OMAP_MCBSP_REG_XCERC,
50 OMAP_MCBSP_REG_XCERD,
51 OMAP_MCBSP_REG_RCERE,
52 OMAP_MCBSP_REG_RCERF,
53 OMAP_MCBSP_REG_XCERE,
54 OMAP_MCBSP_REG_XCERF,
55 OMAP_MCBSP_REG_RCERG,
56 OMAP_MCBSP_REG_RCERH,
57 OMAP_MCBSP_REG_XCERG,
58 OMAP_MCBSP_REG_XCERH,
59
60 /* OMAP1-OMAP2420 registers */
61 OMAP_MCBSP_REG_DRR2 = 0,
62 OMAP_MCBSP_REG_DRR1,
63 OMAP_MCBSP_REG_DXR2,
64 OMAP_MCBSP_REG_DXR1,
65
66 /* OMAP2430 and onwards */
67 OMAP_MCBSP_REG_DRR = 0,
68 OMAP_MCBSP_REG_DXR = 2,
69 OMAP_MCBSP_REG_SYSCON = 35,
70 OMAP_MCBSP_REG_THRSH2,
71 OMAP_MCBSP_REG_THRSH1,
72 OMAP_MCBSP_REG_IRQST = 40,
73 OMAP_MCBSP_REG_IRQEN,
74 OMAP_MCBSP_REG_WAKEUPEN,
75 OMAP_MCBSP_REG_XCCR,
76 OMAP_MCBSP_REG_RCCR,
77 OMAP_MCBSP_REG_XBUFFSTAT,
78 OMAP_MCBSP_REG_RBUFFSTAT,
79 OMAP_MCBSP_REG_SSELCR,
80};
81
82/* OMAP3 sidetone control registers */
83#define OMAP_ST_REG_REV 0x00
84#define OMAP_ST_REG_SYSCONFIG 0x10
85#define OMAP_ST_REG_IRQSTATUS 0x18
86#define OMAP_ST_REG_IRQENABLE 0x1C
87#define OMAP_ST_REG_SGAINCR 0x24
88#define OMAP_ST_REG_SFIRCR 0x28
89#define OMAP_ST_REG_SSELCR 0x2C
90
91/************************** McBSP SPCR1 bit definitions ***********************/
92#define RRST 0x0001
93#define RRDY 0x0002
94#define RFULL 0x0004
95#define RSYNC_ERR 0x0008
96#define RINTM(value) ((value)<<4) /* bits 4:5 */
97#define ABIS 0x0040
98#define DXENA 0x0080
99#define CLKSTP(value) ((value)<<11) /* bits 11:12 */
100#define RJUST(value) ((value)<<13) /* bits 13:14 */
101#define ALB 0x8000
102#define DLB 0x8000
103
104/************************** McBSP SPCR2 bit definitions ***********************/
105#define XRST 0x0001
106#define XRDY 0x0002
107#define XEMPTY 0x0004
108#define XSYNC_ERR 0x0008
109#define XINTM(value) ((value)<<4) /* bits 4:5 */
110#define GRST 0x0040
111#define FRST 0x0080
112#define SOFT 0x0100
113#define FREE 0x0200
114
115/************************** McBSP PCR bit definitions *************************/
116#define CLKRP 0x0001
117#define CLKXP 0x0002
118#define FSRP 0x0004
119#define FSXP 0x0008
120#define DR_STAT 0x0010
121#define DX_STAT 0x0020
122#define CLKS_STAT 0x0040
123#define SCLKME 0x0080
124#define CLKRM 0x0100
125#define CLKXM 0x0200
126#define FSRM 0x0400
127#define FSXM 0x0800
128#define RIOEN 0x1000
129#define XIOEN 0x2000
130#define IDLE_EN 0x4000
131
132/************************** McBSP RCR1 bit definitions ************************/
133#define RWDLEN1(value) ((value)<<5) /* Bits 5:7 */
134#define RFRLEN1(value) ((value)<<8) /* Bits 8:14 */
135
136/************************** McBSP XCR1 bit definitions ************************/
137#define XWDLEN1(value) ((value)<<5) /* Bits 5:7 */
138#define XFRLEN1(value) ((value)<<8) /* Bits 8:14 */
139
140/*************************** McBSP RCR2 bit definitions ***********************/
141#define RDATDLY(value) (value) /* Bits 0:1 */
142#define RFIG 0x0004
143#define RCOMPAND(value) ((value)<<3) /* Bits 3:4 */
144#define RWDLEN2(value) ((value)<<5) /* Bits 5:7 */
145#define RFRLEN2(value) ((value)<<8) /* Bits 8:14 */
146#define RPHASE 0x8000
147
148/*************************** McBSP XCR2 bit definitions ***********************/
149#define XDATDLY(value) (value) /* Bits 0:1 */
150#define XFIG 0x0004
151#define XCOMPAND(value) ((value)<<3) /* Bits 3:4 */
152#define XWDLEN2(value) ((value)<<5) /* Bits 5:7 */
153#define XFRLEN2(value) ((value)<<8) /* Bits 8:14 */
154#define XPHASE 0x8000
155
156/************************* McBSP SRGR1 bit definitions ************************/
157#define CLKGDV(value) (value) /* Bits 0:7 */
158#define FWID(value) ((value)<<8) /* Bits 8:15 */
159
160/************************* McBSP SRGR2 bit definitions ************************/
161#define FPER(value) (value) /* Bits 0:11 */
162#define FSGM 0x1000
163#define CLKSM 0x2000
164#define CLKSP 0x4000
165#define GSYNC 0x8000
166
167/************************* McBSP MCR1 bit definitions *************************/
168#define RMCM 0x0001
169#define RCBLK(value) ((value)<<2) /* Bits 2:4 */
170#define RPABLK(value) ((value)<<5) /* Bits 5:6 */
171#define RPBBLK(value) ((value)<<7) /* Bits 7:8 */
172
173/************************* McBSP MCR2 bit definitions *************************/
174#define XMCM(value) (value) /* Bits 0:1 */
175#define XCBLK(value) ((value)<<2) /* Bits 2:4 */
176#define XPABLK(value) ((value)<<5) /* Bits 5:6 */
177#define XPBBLK(value) ((value)<<7) /* Bits 7:8 */
178
179/*********************** McBSP XCCR bit definitions *************************/
180#define EXTCLKGATE 0x8000
181#define PPCONNECT 0x4000
182#define DXENDLY(value) ((value)<<12) /* Bits 12:13 */
183#define XFULL_CYCLE 0x0800
184#define DILB 0x0020
185#define XDMAEN 0x0008
186#define XDISABLE 0x0001
187
188/********************** McBSP RCCR bit definitions *************************/
189#define RFULL_CYCLE 0x0800
190#define RDMAEN 0x0008
191#define RDISABLE 0x0001
192
193/********************** McBSP SYSCONFIG bit definitions ********************/
194#define CLOCKACTIVITY(value) ((value)<<8)
195#define SIDLEMODE(value) ((value)<<3)
196#define ENAWAKEUP 0x0004
197#define SOFTRST 0x0002
198
199/********************** McBSP SSELCR bit definitions ***********************/
200#define SIDETONEEN 0x0400
201
202/********************** McBSP Sidetone SYSCONFIG bit definitions ***********/
203#define ST_AUTOIDLE 0x0001
204
205/********************** McBSP Sidetone SGAINCR bit definitions *************/
206#define ST_CH1GAIN(value) ((value<<16)) /* Bits 16:31 */
207#define ST_CH0GAIN(value) (value) /* Bits 0:15 */
208
209/********************** McBSP Sidetone SFIRCR bit definitions **************/
210#define ST_FIRCOEFF(value) (value) /* Bits 0:15 */
211
212/********************** McBSP Sidetone SSELCR bit definitions **************/
213#define ST_COEFFWRDONE 0x0004
214#define ST_COEFFWREN 0x0002
215#define ST_SIDETONEEN 0x0001
216
217/********************** McBSP DMA operating modes **************************/
218#define MCBSP_DMA_MODE_ELEMENT 0
219#define MCBSP_DMA_MODE_THRESHOLD 1
220#define MCBSP_DMA_MODE_FRAME 2
221
222/********************** McBSP WAKEUPEN bit definitions *********************/
223#define XEMPTYEOFEN 0x4000
224#define XRDYEN 0x0400
225#define XEOFEN 0x0200
226#define XFSXEN 0x0100
227#define XSYNCERREN 0x0080
228#define RRDYEN 0x0008
229#define REOFEN 0x0004
230#define RFSREN 0x0002
231#define RSYNCERREN 0x0001
232
233/* we don't do multichannel for now */
234struct omap_mcbsp_reg_cfg {
235 u16 spcr2;
236 u16 spcr1;
237 u16 rcr2;
238 u16 rcr1;
239 u16 xcr2;
240 u16 xcr1;
241 u16 srgr2;
242 u16 srgr1;
243 u16 mcr2;
244 u16 mcr1;
245 u16 pcr0;
246 u16 rcerc;
247 u16 rcerd;
248 u16 xcerc;
249 u16 xcerd;
250 u16 rcere;
251 u16 rcerf;
252 u16 xcere;
253 u16 xcerf;
254 u16 rcerg;
255 u16 rcerh;
256 u16 xcerg;
257 u16 xcerh;
258 u16 xccr;
259 u16 rccr;
260};
261
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200262struct omap_mcbsp_st_data {
263 void __iomem *io_base_st;
264 bool running;
265 bool enabled;
266 s16 taps[128]; /* Sidetone filter coefficients */
267 int nr_taps; /* Number of filter coefficients in use */
268 s16 ch0gain;
269 s16 ch1gain;
270};
271
272struct omap_mcbsp_data {
273 struct omap_mcbsp_reg_cfg regs;
274 struct omap_pcm_dma_data dma_data[2];
275 unsigned int fmt;
276 /*
277 * Flags indicating is the bus already activated and configured by
278 * another substream
279 */
280 int active;
281 int configured;
282 unsigned int in_freq;
283 int clk_div;
284 int wlen;
285};
286
287struct omap_mcbsp {
288 struct device *dev;
289 unsigned long phys_base;
290 unsigned long phys_dma_base;
291 void __iomem *io_base;
292 u8 id;
293 u8 free;
294
295 int rx_irq;
296 int tx_irq;
297
298 /* DMA stuff */
299 u8 dma_rx_sync;
300 u8 dma_tx_sync;
301
302 /* Protect the field .free, while checking if the mcbsp is in use */
303 spinlock_t lock;
304 struct omap_mcbsp_platform_data *pdata;
305 struct clk *fclk;
306 struct omap_mcbsp_st_data *st_data;
307 struct omap_mcbsp_data mcbsp_data;
308 int dma_op_mode;
309 u16 max_tx_thres;
310 u16 max_rx_thres;
311 void *reg_cache;
312 int reg_cache_size;
313};
314
315void omap_mcbsp_config(struct omap_mcbsp *mcbsp,
Peter Ujfalusi219f4312012-02-03 13:11:47 +0200316 const struct omap_mcbsp_reg_cfg *config);
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200317void omap_mcbsp_set_tx_threshold(struct omap_mcbsp *mcbsp, u16 threshold);
318void omap_mcbsp_set_rx_threshold(struct omap_mcbsp *mcbsp, u16 threshold);
319u16 omap_mcbsp_get_max_tx_threshold(struct omap_mcbsp *mcbsp);
320u16 omap_mcbsp_get_max_rx_threshold(struct omap_mcbsp *mcbsp);
321u16 omap_mcbsp_get_fifo_size(struct omap_mcbsp *mcbsp);
322u16 omap_mcbsp_get_tx_delay(struct omap_mcbsp *mcbsp);
323u16 omap_mcbsp_get_rx_delay(struct omap_mcbsp *mcbsp);
324int omap_mcbsp_get_dma_op_mode(struct omap_mcbsp *mcbsp);
325int omap_mcbsp_request(struct omap_mcbsp *mcbsp);
326void omap_mcbsp_free(struct omap_mcbsp *mcbsp);
327void omap_mcbsp_start(struct omap_mcbsp *mcbsp, int tx, int rx);
328void omap_mcbsp_stop(struct omap_mcbsp *mcbsp, int tx, int rx);
Peter Ujfalusi219f4312012-02-03 13:11:47 +0200329
330/* McBSP functional clock source changing function */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200331int omap2_mcbsp_set_clks_src(struct omap_mcbsp *mcbsp, u8 fck_src_id);
Peter Ujfalusi219f4312012-02-03 13:11:47 +0200332
333/* McBSP signal muxing API */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200334void omap2_mcbsp1_mux_clkr_src(struct omap_mcbsp *mcbsp, u8 mux);
335void omap2_mcbsp1_mux_fsr_src(struct omap_mcbsp *mcbsp, u8 mux);
Peter Ujfalusi219f4312012-02-03 13:11:47 +0200336
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200337int omap_mcbsp_dma_ch_params(struct omap_mcbsp *mcbsp, unsigned int stream);
338int omap_mcbsp_dma_reg_params(struct omap_mcbsp *mcbsp, unsigned int stream);
Peter Ujfalusi219f4312012-02-03 13:11:47 +0200339
340/* Sidetone specific API */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200341int omap_st_set_chgain(struct omap_mcbsp *mcbsp, int channel, s16 chgain);
342int omap_st_get_chgain(struct omap_mcbsp *mcbsp, int channel, s16 *chgain);
343int omap_st_enable(struct omap_mcbsp *mcbsp);
344int omap_st_disable(struct omap_mcbsp *mcbsp);
345int omap_st_is_enabled(struct omap_mcbsp *mcbsp);
346
347int __devinit omap_mcbsp_probe(struct platform_device *pdev);
348int __devexit omap_mcbsp_remove(struct platform_device *pdev);
Peter Ujfalusi219f4312012-02-03 13:11:47 +0200349
350#endif /* __ASOC_MCBSP_H */