Linux Audio

Check our new training course

Loading...
v4.10.11
  1/*
  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
 27#ifdef CONFIG_ARCH_OMAP1
 28#define mcbsp_omap1()	1
 29#else
 30#define mcbsp_omap1()	0
 31#endif
 32
 33#include <sound/dmaengine_pcm.h>
 34
 35/* McBSP register numbers. Register address offset = num * reg_step */
 36enum {
 37	/* Common registers */
 38	OMAP_MCBSP_REG_SPCR2 = 4,
 39	OMAP_MCBSP_REG_SPCR1,
 40	OMAP_MCBSP_REG_RCR2,
 41	OMAP_MCBSP_REG_RCR1,
 42	OMAP_MCBSP_REG_XCR2,
 43	OMAP_MCBSP_REG_XCR1,
 44	OMAP_MCBSP_REG_SRGR2,
 45	OMAP_MCBSP_REG_SRGR1,
 46	OMAP_MCBSP_REG_MCR2,
 47	OMAP_MCBSP_REG_MCR1,
 48	OMAP_MCBSP_REG_RCERA,
 49	OMAP_MCBSP_REG_RCERB,
 50	OMAP_MCBSP_REG_XCERA,
 51	OMAP_MCBSP_REG_XCERB,
 52	OMAP_MCBSP_REG_PCR0,
 53	OMAP_MCBSP_REG_RCERC,
 54	OMAP_MCBSP_REG_RCERD,
 55	OMAP_MCBSP_REG_XCERC,
 56	OMAP_MCBSP_REG_XCERD,
 57	OMAP_MCBSP_REG_RCERE,
 58	OMAP_MCBSP_REG_RCERF,
 59	OMAP_MCBSP_REG_XCERE,
 60	OMAP_MCBSP_REG_XCERF,
 61	OMAP_MCBSP_REG_RCERG,
 62	OMAP_MCBSP_REG_RCERH,
 63	OMAP_MCBSP_REG_XCERG,
 64	OMAP_MCBSP_REG_XCERH,
 65
 66	/* OMAP1-OMAP2420 registers */
 67	OMAP_MCBSP_REG_DRR2 = 0,
 68	OMAP_MCBSP_REG_DRR1,
 69	OMAP_MCBSP_REG_DXR2,
 70	OMAP_MCBSP_REG_DXR1,
 71
 72	/* OMAP2430 and onwards */
 73	OMAP_MCBSP_REG_DRR = 0,
 74	OMAP_MCBSP_REG_DXR = 2,
 75	OMAP_MCBSP_REG_SYSCON =	35,
 76	OMAP_MCBSP_REG_THRSH2,
 77	OMAP_MCBSP_REG_THRSH1,
 78	OMAP_MCBSP_REG_IRQST = 40,
 79	OMAP_MCBSP_REG_IRQEN,
 80	OMAP_MCBSP_REG_WAKEUPEN,
 81	OMAP_MCBSP_REG_XCCR,
 82	OMAP_MCBSP_REG_RCCR,
 83	OMAP_MCBSP_REG_XBUFFSTAT,
 84	OMAP_MCBSP_REG_RBUFFSTAT,
 85	OMAP_MCBSP_REG_SSELCR,
 86};
 87
 88/* OMAP3 sidetone control registers */
 89#define OMAP_ST_REG_REV		0x00
 90#define OMAP_ST_REG_SYSCONFIG	0x10
 91#define OMAP_ST_REG_IRQSTATUS	0x18
 92#define OMAP_ST_REG_IRQENABLE	0x1C
 93#define OMAP_ST_REG_SGAINCR	0x24
 94#define OMAP_ST_REG_SFIRCR	0x28
 95#define OMAP_ST_REG_SSELCR	0x2C
 96
 97/************************** McBSP SPCR1 bit definitions ***********************/
 98#define RRST			BIT(0)
 99#define RRDY			BIT(1)
100#define RFULL			BIT(2)
101#define RSYNC_ERR		BIT(3)
102#define RINTM(value)		(((value) & 0x3) << 4)	/* bits 4:5 */
103#define ABIS			BIT(6)
104#define DXENA			BIT(7)
105#define CLKSTP(value)		(((value) & 0x3) << 11)	/* bits 11:12 */
106#define RJUST(value)		(((value) & 0x3) << 13)	/* bits 13:14 */
107#define ALB			BIT(15)
108#define DLB			BIT(15)
109
110/************************** McBSP SPCR2 bit definitions ***********************/
111#define XRST			BIT(0)
112#define XRDY			BIT(1)
113#define XEMPTY			BIT(2)
114#define XSYNC_ERR		BIT(3)
115#define XINTM(value)		(((value) & 0x3) << 4)	/* bits 4:5 */
116#define GRST			BIT(6)
117#define FRST			BIT(7)
118#define SOFT			BIT(8)
119#define FREE			BIT(9)
120
121/************************** McBSP PCR bit definitions *************************/
122#define CLKRP			BIT(0)
123#define CLKXP			BIT(1)
124#define FSRP			BIT(2)
125#define FSXP			BIT(3)
126#define DR_STAT			BIT(4)
127#define DX_STAT			BIT(5)
128#define CLKS_STAT		BIT(6)
129#define SCLKME			BIT(7)
130#define CLKRM			BIT(8)
131#define CLKXM			BIT(9)
132#define FSRM			BIT(10)
133#define FSXM			BIT(11)
134#define RIOEN			BIT(12)
135#define XIOEN			BIT(13)
136#define IDLE_EN			BIT(14)
137
138/************************** McBSP RCR1 bit definitions ************************/
139#define RWDLEN1(value)		(((value) & 0x7) << 5)	/* Bits 5:7 */
140#define RFRLEN1(value)		(((value) & 0x7f) << 8)	/* Bits 8:14 */
141
142/************************** McBSP XCR1 bit definitions ************************/
143#define XWDLEN1(value)		(((value) & 0x7) << 5)	/* Bits 5:7 */
144#define XFRLEN1(value)		(((value) & 0x7f) << 8)	/* Bits 8:14 */
145
146/*************************** McBSP RCR2 bit definitions ***********************/
147#define RDATDLY(value)		((value) & 0x3)		/* Bits 0:1 */
148#define RFIG			BIT(2)
149#define RCOMPAND(value)		(((value) & 0x3) << 3)	/* Bits 3:4 */
150#define RWDLEN2(value)		(((value) & 0x7) << 5)	/* Bits 5:7 */
151#define RFRLEN2(value)		(((value) & 0x7f) << 8)	/* Bits 8:14 */
152#define RPHASE			BIT(15)
153
154/*************************** McBSP XCR2 bit definitions ***********************/
155#define XDATDLY(value)		((value) & 0x3)		/* Bits 0:1 */
156#define XFIG			BIT(2)
157#define XCOMPAND(value)		(((value) & 0x3) << 3)	/* Bits 3:4 */
158#define XWDLEN2(value)		(((value) & 0x7) << 5)	/* Bits 5:7 */
159#define XFRLEN2(value)		(((value) & 0x7f) << 8)	/* Bits 8:14 */
160#define XPHASE			BIT(15)
161
162/************************* McBSP SRGR1 bit definitions ************************/
163#define CLKGDV(value)		((value) & 0x7f)		/* Bits 0:7 */
164#define FWID(value)		(((value) & 0xff) << 8)	/* Bits 8:15 */
165
166/************************* McBSP SRGR2 bit definitions ************************/
167#define FPER(value)		((value) & 0x0fff)	/* Bits 0:11 */
168#define FSGM			BIT(12)
169#define CLKSM			BIT(13)
170#define CLKSP			BIT(14)
171#define GSYNC			BIT(15)
172
173/************************* McBSP MCR1 bit definitions *************************/
174#define RMCM			BIT(0)
175#define RCBLK(value)		(((value) & 0x7) << 2)	/* Bits 2:4 */
176#define RPABLK(value)		(((value) & 0x3) << 5)	/* Bits 5:6 */
177#define RPBBLK(value)		(((value) & 0x3) << 7)	/* Bits 7:8 */
178
179/************************* McBSP MCR2 bit definitions *************************/
180#define XMCM(value)		((value) & 0x3)		/* Bits 0:1 */
181#define XCBLK(value)		(((value) & 0x7) << 2)	/* Bits 2:4 */
182#define XPABLK(value)		(((value) & 0x3) << 5)	/* Bits 5:6 */
183#define XPBBLK(value)		(((value) & 0x3) << 7)	/* Bits 7:8 */
184
185/*********************** McBSP XCCR bit definitions *************************/
186#define XDISABLE		BIT(0)
187#define XDMAEN			BIT(3)
188#define DILB			BIT(5)
189#define XFULL_CYCLE		BIT(11)
190#define DXENDLY(value)		(((value) & 0x3) << 12)	/* Bits 12:13 */
191#define PPCONNECT		BIT(14)
192#define EXTCLKGATE		BIT(15)
193
194/********************** McBSP RCCR bit definitions *************************/
195#define RDISABLE		BIT(0)
196#define RDMAEN			BIT(3)
197#define RFULL_CYCLE		BIT(11)
198
199/********************** McBSP SYSCONFIG bit definitions ********************/
200#define SOFTRST			BIT(1)
201#define ENAWAKEUP		BIT(2)
202#define SIDLEMODE(value)	(((value) & 0x3) << 3)
203#define CLOCKACTIVITY(value)	(((value) & 0x3) << 8)
204
205/********************** McBSP SSELCR bit definitions ***********************/
206#define SIDETONEEN		BIT(10)
207
208/********************** McBSP Sidetone SYSCONFIG bit definitions ***********/
209#define ST_AUTOIDLE		BIT(0)
210
211/********************** McBSP Sidetone SGAINCR bit definitions *************/
212#define ST_CH0GAIN(value)	((value) & 0xffff)	/* Bits 0:15 */
213#define ST_CH1GAIN(value)	(((value) & 0xffff) << 16) /* Bits 16:31 */
214
215/********************** McBSP Sidetone SFIRCR bit definitions **************/
216#define ST_FIRCOEFF(value)	((value) & 0xffff)	/* Bits 0:15 */
217
218/********************** McBSP Sidetone SSELCR bit definitions **************/
219#define ST_SIDETONEEN		BIT(0)
220#define ST_COEFFWREN		BIT(1)
221#define ST_COEFFWRDONE		BIT(2)
222
223/********************** McBSP DMA operating modes **************************/
224#define MCBSP_DMA_MODE_ELEMENT		0
225#define MCBSP_DMA_MODE_THRESHOLD	1
226
227/********************** McBSP WAKEUPEN/IRQST/IRQEN bit definitions *********/
228#define RSYNCERREN		BIT(0)
229#define RFSREN			BIT(1)
230#define REOFEN			BIT(2)
231#define RRDYEN			BIT(3)
232#define RUNDFLEN		BIT(4)
233#define ROVFLEN			BIT(5)
234#define XSYNCERREN		BIT(7)
235#define XFSXEN			BIT(8)
236#define XEOFEN			BIT(9)
237#define XRDYEN			BIT(10)
238#define XUNDFLEN		BIT(11)
239#define XOVFLEN			BIT(12)
240#define XEMPTYEOFEN		BIT(14)
241
242/* Clock signal muxing options */
243#define CLKR_SRC_CLKR		0 /* CLKR signal is from the CLKR pin */
244#define CLKR_SRC_CLKX		1 /* CLKR signal is from the CLKX pin */
245#define FSR_SRC_FSR		2 /* FSR signal is from the FSR pin */
246#define FSR_SRC_FSX		3 /* FSR signal is from the FSX pin */
247
248/* McBSP functional clock sources */
249#define MCBSP_CLKS_PRCM_SRC	0
250#define MCBSP_CLKS_PAD_SRC	1
251
252/* we don't do multichannel for now */
253struct omap_mcbsp_reg_cfg {
254	u16 spcr2;
255	u16 spcr1;
256	u16 rcr2;
257	u16 rcr1;
258	u16 xcr2;
259	u16 xcr1;
260	u16 srgr2;
261	u16 srgr1;
262	u16 mcr2;
263	u16 mcr1;
264	u16 pcr0;
265	u16 rcerc;
266	u16 rcerd;
267	u16 xcerc;
268	u16 xcerd;
269	u16 rcere;
270	u16 rcerf;
271	u16 xcere;
272	u16 xcerf;
273	u16 rcerg;
274	u16 rcerh;
275	u16 xcerg;
276	u16 xcerh;
277	u16 xccr;
278	u16 rccr;
279};
280
281struct omap_mcbsp_st_data {
282	void __iomem *io_base_st;
283	struct clk *mcbsp_iclk;
284	bool running;
285	bool enabled;
286	s16 taps[128];	/* Sidetone filter coefficients */
287	int nr_taps;	/* Number of filter coefficients in use */
288	s16 ch0gain;
289	s16 ch1gain;
290};
291
292struct omap_mcbsp {
293	struct device *dev;
294	struct clk *fclk;
295	spinlock_t lock;
296	unsigned long phys_base;
297	unsigned long phys_dma_base;
298	void __iomem *io_base;
299	u8 id;
300	/*
301	 * Flags indicating is the bus already activated and configured by
302	 * another substream
303	 */
304	int active;
305	int configured;
306	u8 free;
307
308	int irq;
309	int rx_irq;
310	int tx_irq;
311
312	/* Protect the field .free, while checking if the mcbsp is in use */
313	struct omap_mcbsp_platform_data *pdata;
314	struct omap_mcbsp_st_data *st_data;
315	struct omap_mcbsp_reg_cfg cfg_regs;
316	struct snd_dmaengine_dai_dma_data dma_data[2];
317	unsigned int dma_req[2];
318	int dma_op_mode;
319	u16 max_tx_thres;
320	u16 max_rx_thres;
321	void *reg_cache;
322	int reg_cache_size;
323
324	unsigned int fmt;
325	unsigned int in_freq;
326	int clk_div;
327	int wlen;
328};
329
330void omap_mcbsp_config(struct omap_mcbsp *mcbsp,
331		       const struct omap_mcbsp_reg_cfg *config);
332void omap_mcbsp_set_tx_threshold(struct omap_mcbsp *mcbsp, u16 threshold);
333void omap_mcbsp_set_rx_threshold(struct omap_mcbsp *mcbsp, u16 threshold);
334u16 omap_mcbsp_get_tx_delay(struct omap_mcbsp *mcbsp);
335u16 omap_mcbsp_get_rx_delay(struct omap_mcbsp *mcbsp);
336int omap_mcbsp_get_dma_op_mode(struct omap_mcbsp *mcbsp);
337int omap_mcbsp_request(struct omap_mcbsp *mcbsp);
338void omap_mcbsp_free(struct omap_mcbsp *mcbsp);
339void omap_mcbsp_start(struct omap_mcbsp *mcbsp, int tx, int rx);
340void omap_mcbsp_stop(struct omap_mcbsp *mcbsp, int tx, int rx);
341
342/* McBSP functional clock source changing function */
343int omap2_mcbsp_set_clks_src(struct omap_mcbsp *mcbsp, u8 fck_src_id);
344
 
 
 
345/* Sidetone specific API */
346int omap_st_set_chgain(struct omap_mcbsp *mcbsp, int channel, s16 chgain);
347int omap_st_get_chgain(struct omap_mcbsp *mcbsp, int channel, s16 *chgain);
348int omap_st_enable(struct omap_mcbsp *mcbsp);
349int omap_st_disable(struct omap_mcbsp *mcbsp);
350int omap_st_is_enabled(struct omap_mcbsp *mcbsp);
351
352int omap_mcbsp_init(struct platform_device *pdev);
353void omap_mcbsp_cleanup(struct omap_mcbsp *mcbsp);
354
355#endif /* __ASOC_MCBSP_H */
v3.5.6
  1/*
  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
 27#include "omap-pcm.h"
 
 
 
 
 
 
 28
 29/* 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			BIT(0)
 93#define RRDY			BIT(1)
 94#define RFULL			BIT(2)
 95#define RSYNC_ERR		BIT(3)
 96#define RINTM(value)		(((value) & 0x3) << 4)	/* bits 4:5 */
 97#define ABIS			BIT(6)
 98#define DXENA			BIT(7)
 99#define CLKSTP(value)		(((value) & 0x3) << 11)	/* bits 11:12 */
100#define RJUST(value)		(((value) & 0x3) << 13)	/* bits 13:14 */
101#define ALB			BIT(15)
102#define DLB			BIT(15)
103
104/************************** McBSP SPCR2 bit definitions ***********************/
105#define XRST			BIT(0)
106#define XRDY			BIT(1)
107#define XEMPTY			BIT(2)
108#define XSYNC_ERR		BIT(3)
109#define XINTM(value)		(((value) & 0x3) << 4)	/* bits 4:5 */
110#define GRST			BIT(6)
111#define FRST			BIT(7)
112#define SOFT			BIT(8)
113#define FREE			BIT(9)
114
115/************************** McBSP PCR bit definitions *************************/
116#define CLKRP			BIT(0)
117#define CLKXP			BIT(1)
118#define FSRP			BIT(2)
119#define FSXP			BIT(3)
120#define DR_STAT			BIT(4)
121#define DX_STAT			BIT(5)
122#define CLKS_STAT		BIT(6)
123#define SCLKME			BIT(7)
124#define CLKRM			BIT(8)
125#define CLKXM			BIT(9)
126#define FSRM			BIT(10)
127#define FSXM			BIT(11)
128#define RIOEN			BIT(12)
129#define XIOEN			BIT(13)
130#define IDLE_EN			BIT(14)
131
132/************************** McBSP RCR1 bit definitions ************************/
133#define RWDLEN1(value)		(((value) & 0x7) << 5)	/* Bits 5:7 */
134#define RFRLEN1(value)		(((value) & 0x7f) << 8)	/* Bits 8:14 */
135
136/************************** McBSP XCR1 bit definitions ************************/
137#define XWDLEN1(value)		(((value) & 0x7) << 5)	/* Bits 5:7 */
138#define XFRLEN1(value)		(((value) & 0x7f) << 8)	/* Bits 8:14 */
139
140/*************************** McBSP RCR2 bit definitions ***********************/
141#define RDATDLY(value)		((value) & 0x3)		/* Bits 0:1 */
142#define RFIG			BIT(2)
143#define RCOMPAND(value)		(((value) & 0x3) << 3)	/* Bits 3:4 */
144#define RWDLEN2(value)		(((value) & 0x7) << 5)	/* Bits 5:7 */
145#define RFRLEN2(value)		(((value) & 0x7f) << 8)	/* Bits 8:14 */
146#define RPHASE			BIT(15)
147
148/*************************** McBSP XCR2 bit definitions ***********************/
149#define XDATDLY(value)		((value) & 0x3)		/* Bits 0:1 */
150#define XFIG			BIT(2)
151#define XCOMPAND(value)		(((value) & 0x3) << 3)	/* Bits 3:4 */
152#define XWDLEN2(value)		(((value) & 0x7) << 5)	/* Bits 5:7 */
153#define XFRLEN2(value)		(((value) & 0x7f) << 8)	/* Bits 8:14 */
154#define XPHASE			BIT(15)
155
156/************************* McBSP SRGR1 bit definitions ************************/
157#define CLKGDV(value)		((value) & 0x7f)		/* Bits 0:7 */
158#define FWID(value)		(((value) & 0xff) << 8)	/* Bits 8:15 */
159
160/************************* McBSP SRGR2 bit definitions ************************/
161#define FPER(value)		((value) & 0x0fff)	/* Bits 0:11 */
162#define FSGM			BIT(12)
163#define CLKSM			BIT(13)
164#define CLKSP			BIT(14)
165#define GSYNC			BIT(15)
166
167/************************* McBSP MCR1 bit definitions *************************/
168#define RMCM			BIT(0)
169#define RCBLK(value)		(((value) & 0x7) << 2)	/* Bits 2:4 */
170#define RPABLK(value)		(((value) & 0x3) << 5)	/* Bits 5:6 */
171#define RPBBLK(value)		(((value) & 0x3) << 7)	/* Bits 7:8 */
172
173/************************* McBSP MCR2 bit definitions *************************/
174#define XMCM(value)		((value) & 0x3)		/* Bits 0:1 */
175#define XCBLK(value)		(((value) & 0x7) << 2)	/* Bits 2:4 */
176#define XPABLK(value)		(((value) & 0x3) << 5)	/* Bits 5:6 */
177#define XPBBLK(value)		(((value) & 0x3) << 7)	/* Bits 7:8 */
178
179/*********************** McBSP XCCR bit definitions *************************/
180#define XDISABLE		BIT(0)
181#define XDMAEN			BIT(3)
182#define DILB			BIT(5)
183#define XFULL_CYCLE		BIT(11)
184#define DXENDLY(value)		(((value) & 0x3) << 12)	/* Bits 12:13 */
185#define PPCONNECT		BIT(14)
186#define EXTCLKGATE		BIT(15)
187
188/********************** McBSP RCCR bit definitions *************************/
189#define RDISABLE		BIT(0)
190#define RDMAEN			BIT(3)
191#define RFULL_CYCLE		BIT(11)
192
193/********************** McBSP SYSCONFIG bit definitions ********************/
194#define SOFTRST			BIT(1)
195#define ENAWAKEUP		BIT(2)
196#define SIDLEMODE(value)	(((value) & 0x3) << 3)
197#define CLOCKACTIVITY(value)	(((value) & 0x3) << 8)
198
199/********************** McBSP SSELCR bit definitions ***********************/
200#define SIDETONEEN		BIT(10)
201
202/********************** McBSP Sidetone SYSCONFIG bit definitions ***********/
203#define ST_AUTOIDLE		BIT(0)
204
205/********************** McBSP Sidetone SGAINCR bit definitions *************/
206#define ST_CH0GAIN(value)	((value) & 0xffff)	/* Bits 0:15 */
207#define ST_CH1GAIN(value)	(((value) & 0xffff) << 16) /* Bits 16:31 */
208
209/********************** McBSP Sidetone SFIRCR bit definitions **************/
210#define ST_FIRCOEFF(value)	((value) & 0xffff)	/* Bits 0:15 */
211
212/********************** McBSP Sidetone SSELCR bit definitions **************/
213#define ST_SIDETONEEN		BIT(0)
214#define ST_COEFFWREN		BIT(1)
215#define ST_COEFFWRDONE		BIT(2)
216
217/********************** McBSP DMA operating modes **************************/
218#define MCBSP_DMA_MODE_ELEMENT		0
219#define MCBSP_DMA_MODE_THRESHOLD	1
220
221/********************** McBSP WAKEUPEN/IRQST/IRQEN bit definitions *********/
222#define RSYNCERREN		BIT(0)
223#define RFSREN			BIT(1)
224#define REOFEN			BIT(2)
225#define RRDYEN			BIT(3)
226#define RUNDFLEN		BIT(4)
227#define ROVFLEN			BIT(5)
228#define XSYNCERREN		BIT(7)
229#define XFSXEN			BIT(8)
230#define XEOFEN			BIT(9)
231#define XRDYEN			BIT(10)
232#define XUNDFLEN		BIT(11)
233#define XOVFLEN			BIT(12)
234#define XEMPTYEOFEN		BIT(14)
235
236/* Clock signal muxing options */
237#define CLKR_SRC_CLKR		0 /* CLKR signal is from the CLKR pin */
238#define CLKR_SRC_CLKX		1 /* CLKR signal is from the CLKX pin */
239#define FSR_SRC_FSR		2 /* FSR signal is from the FSR pin */
240#define FSR_SRC_FSX		3 /* FSR signal is from the FSX pin */
241
242/* McBSP functional clock sources */
243#define MCBSP_CLKS_PRCM_SRC	0
244#define MCBSP_CLKS_PAD_SRC	1
245
246/* we don't do multichannel for now */
247struct omap_mcbsp_reg_cfg {
248	u16 spcr2;
249	u16 spcr1;
250	u16 rcr2;
251	u16 rcr1;
252	u16 xcr2;
253	u16 xcr1;
254	u16 srgr2;
255	u16 srgr1;
256	u16 mcr2;
257	u16 mcr1;
258	u16 pcr0;
259	u16 rcerc;
260	u16 rcerd;
261	u16 xcerc;
262	u16 xcerd;
263	u16 rcere;
264	u16 rcerf;
265	u16 xcere;
266	u16 xcerf;
267	u16 rcerg;
268	u16 rcerh;
269	u16 xcerg;
270	u16 xcerh;
271	u16 xccr;
272	u16 rccr;
273};
274
275struct omap_mcbsp_st_data {
276	void __iomem *io_base_st;
 
277	bool running;
278	bool enabled;
279	s16 taps[128];	/* Sidetone filter coefficients */
280	int nr_taps;	/* Number of filter coefficients in use */
281	s16 ch0gain;
282	s16 ch1gain;
283};
284
285struct omap_mcbsp {
286	struct device *dev;
287	struct clk *fclk;
288	spinlock_t lock;
289	unsigned long phys_base;
290	unsigned long phys_dma_base;
291	void __iomem *io_base;
292	u8 id;
293	/*
294	 * Flags indicating is the bus already activated and configured by
295	 * another substream
296	 */
297	int active;
298	int configured;
299	u8 free;
300
301	int irq;
302	int rx_irq;
303	int tx_irq;
304
305	/* Protect the field .free, while checking if the mcbsp is in use */
306	struct omap_mcbsp_platform_data *pdata;
307	struct omap_mcbsp_st_data *st_data;
308	struct omap_mcbsp_reg_cfg cfg_regs;
309	struct omap_pcm_dma_data dma_data[2];
 
310	int dma_op_mode;
311	u16 max_tx_thres;
312	u16 max_rx_thres;
313	void *reg_cache;
314	int reg_cache_size;
315
316	unsigned int fmt;
317	unsigned int in_freq;
318	int clk_div;
319	int wlen;
320};
321
322void omap_mcbsp_config(struct omap_mcbsp *mcbsp,
323		       const struct omap_mcbsp_reg_cfg *config);
324void omap_mcbsp_set_tx_threshold(struct omap_mcbsp *mcbsp, u16 threshold);
325void omap_mcbsp_set_rx_threshold(struct omap_mcbsp *mcbsp, u16 threshold);
326u16 omap_mcbsp_get_tx_delay(struct omap_mcbsp *mcbsp);
327u16 omap_mcbsp_get_rx_delay(struct omap_mcbsp *mcbsp);
328int omap_mcbsp_get_dma_op_mode(struct omap_mcbsp *mcbsp);
329int omap_mcbsp_request(struct omap_mcbsp *mcbsp);
330void omap_mcbsp_free(struct omap_mcbsp *mcbsp);
331void omap_mcbsp_start(struct omap_mcbsp *mcbsp, int tx, int rx);
332void omap_mcbsp_stop(struct omap_mcbsp *mcbsp, int tx, int rx);
333
334/* McBSP functional clock source changing function */
335int omap2_mcbsp_set_clks_src(struct omap_mcbsp *mcbsp, u8 fck_src_id);
336
337/* McBSP signal muxing API */
338int omap_mcbsp_6pin_src_mux(struct omap_mcbsp *mcbsp, u8 mux);
339
340/* Sidetone specific API */
341int 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_init(struct platform_device *pdev);
348void __devexit omap_mcbsp_sysfs_remove(struct omap_mcbsp *mcbsp);
349
350#endif /* __ASOC_MCBSP_H */