blob: 2544aa5bccd3fea2f21bb16a7a8517e0fb721163 [file] [log] [blame]
Russell Kinga09e64f2008-08-05 16:14:15 +01001/*
2 * arch/arm/plat-omap/include/mach/mcbsp.h
3 *
4 * Defines for Multi-Channel Buffered Serial Port
5 *
6 * Copyright (C) 2002 RidgeRun, Inc.
7 * Author: Steve Johnson
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 __ASM_ARCH_OMAP_MCBSP_H
25#define __ASM_ARCH_OMAP_MCBSP_H
26
27#include <linux/completion.h>
28#include <linux/spinlock.h>
29
30#include <mach/hardware.h>
31#include <mach/clock.h>
32
33#define OMAP730_MCBSP1_BASE 0xfffb1000
34#define OMAP730_MCBSP2_BASE 0xfffb1800
35
36#define OMAP1510_MCBSP1_BASE 0xe1011800
37#define OMAP1510_MCBSP2_BASE 0xfffb1000
38#define OMAP1510_MCBSP3_BASE 0xe1017000
39
40#define OMAP1610_MCBSP1_BASE 0xe1011800
41#define OMAP1610_MCBSP2_BASE 0xfffb1000
42#define OMAP1610_MCBSP3_BASE 0xe1017000
43
44#define OMAP24XX_MCBSP1_BASE 0x48074000
45#define OMAP24XX_MCBSP2_BASE 0x48076000
Jarkko Nikula05228c32008-10-08 10:01:40 +030046#define OMAP2430_MCBSP3_BASE 0x4808c000
47#define OMAP2430_MCBSP4_BASE 0x4808e000
48#define OMAP2430_MCBSP5_BASE 0x48096000
Russell Kinga09e64f2008-08-05 16:14:15 +010049
50#define OMAP34XX_MCBSP1_BASE 0x48074000
51#define OMAP34XX_MCBSP2_BASE 0x49022000
Chandra Shekhar9c8e3a02008-10-08 10:01:40 +030052#define OMAP34XX_MCBSP3_BASE 0x49024000
53#define OMAP34XX_MCBSP4_BASE 0x49026000
54#define OMAP34XX_MCBSP5_BASE 0x48096000
Russell Kinga09e64f2008-08-05 16:14:15 +010055
56#if defined(CONFIG_ARCH_OMAP15XX) || defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP730)
57
58#define OMAP_MCBSP_REG_DRR2 0x00
59#define OMAP_MCBSP_REG_DRR1 0x02
60#define OMAP_MCBSP_REG_DXR2 0x04
61#define OMAP_MCBSP_REG_DXR1 0x06
62#define OMAP_MCBSP_REG_SPCR2 0x08
63#define OMAP_MCBSP_REG_SPCR1 0x0a
64#define OMAP_MCBSP_REG_RCR2 0x0c
65#define OMAP_MCBSP_REG_RCR1 0x0e
66#define OMAP_MCBSP_REG_XCR2 0x10
67#define OMAP_MCBSP_REG_XCR1 0x12
68#define OMAP_MCBSP_REG_SRGR2 0x14
69#define OMAP_MCBSP_REG_SRGR1 0x16
70#define OMAP_MCBSP_REG_MCR2 0x18
71#define OMAP_MCBSP_REG_MCR1 0x1a
72#define OMAP_MCBSP_REG_RCERA 0x1c
73#define OMAP_MCBSP_REG_RCERB 0x1e
74#define OMAP_MCBSP_REG_XCERA 0x20
75#define OMAP_MCBSP_REG_XCERB 0x22
76#define OMAP_MCBSP_REG_PCR0 0x24
77#define OMAP_MCBSP_REG_RCERC 0x26
78#define OMAP_MCBSP_REG_RCERD 0x28
79#define OMAP_MCBSP_REG_XCERC 0x2A
80#define OMAP_MCBSP_REG_XCERD 0x2C
81#define OMAP_MCBSP_REG_RCERE 0x2E
82#define OMAP_MCBSP_REG_RCERF 0x30
83#define OMAP_MCBSP_REG_XCERE 0x32
84#define OMAP_MCBSP_REG_XCERF 0x34
85#define OMAP_MCBSP_REG_RCERG 0x36
86#define OMAP_MCBSP_REG_RCERH 0x38
87#define OMAP_MCBSP_REG_XCERG 0x3A
88#define OMAP_MCBSP_REG_XCERH 0x3C
89
Tony Lindgren3127f8f2009-01-15 13:09:54 +020090/* Dummy defines, these are not available on omap1 */
91#define OMAP_MCBSP_REG_XCCR 0x00
92#define OMAP_MCBSP_REG_RCCR 0x00
93
Russell Kinga09e64f2008-08-05 16:14:15 +010094#define AUDIO_MCBSP_DATAWRITE (OMAP1510_MCBSP1_BASE + OMAP_MCBSP_REG_DXR1)
95#define AUDIO_MCBSP_DATAREAD (OMAP1510_MCBSP1_BASE + OMAP_MCBSP_REG_DRR1)
96
97#define AUDIO_MCBSP OMAP_MCBSP1
98#define AUDIO_DMA_TX OMAP_DMA_MCBSP1_TX
99#define AUDIO_DMA_RX OMAP_DMA_MCBSP1_RX
100
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300101#elif defined(CONFIG_ARCH_OMAP24XX) || defined(CONFIG_ARCH_OMAP34XX)
Russell Kinga09e64f2008-08-05 16:14:15 +0100102
103#define OMAP_MCBSP_REG_DRR2 0x00
104#define OMAP_MCBSP_REG_DRR1 0x04
105#define OMAP_MCBSP_REG_DXR2 0x08
106#define OMAP_MCBSP_REG_DXR1 0x0C
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300107#define OMAP_MCBSP_REG_DRR 0x00
108#define OMAP_MCBSP_REG_DXR 0x08
Russell Kinga09e64f2008-08-05 16:14:15 +0100109#define OMAP_MCBSP_REG_SPCR2 0x10
110#define OMAP_MCBSP_REG_SPCR1 0x14
111#define OMAP_MCBSP_REG_RCR2 0x18
112#define OMAP_MCBSP_REG_RCR1 0x1C
113#define OMAP_MCBSP_REG_XCR2 0x20
114#define OMAP_MCBSP_REG_XCR1 0x24
115#define OMAP_MCBSP_REG_SRGR2 0x28
116#define OMAP_MCBSP_REG_SRGR1 0x2C
117#define OMAP_MCBSP_REG_MCR2 0x30
118#define OMAP_MCBSP_REG_MCR1 0x34
119#define OMAP_MCBSP_REG_RCERA 0x38
120#define OMAP_MCBSP_REG_RCERB 0x3C
121#define OMAP_MCBSP_REG_XCERA 0x40
122#define OMAP_MCBSP_REG_XCERB 0x44
123#define OMAP_MCBSP_REG_PCR0 0x48
124#define OMAP_MCBSP_REG_RCERC 0x4C
125#define OMAP_MCBSP_REG_RCERD 0x50
126#define OMAP_MCBSP_REG_XCERC 0x54
127#define OMAP_MCBSP_REG_XCERD 0x58
128#define OMAP_MCBSP_REG_RCERE 0x5C
129#define OMAP_MCBSP_REG_RCERF 0x60
130#define OMAP_MCBSP_REG_XCERE 0x64
131#define OMAP_MCBSP_REG_XCERF 0x68
132#define OMAP_MCBSP_REG_RCERG 0x6C
133#define OMAP_MCBSP_REG_RCERH 0x70
134#define OMAP_MCBSP_REG_XCERG 0x74
135#define OMAP_MCBSP_REG_XCERH 0x78
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300136#define OMAP_MCBSP_REG_SYSCON 0x8C
Eduardo Valentin946a49a2009-08-20 16:18:08 +0300137#define OMAP_MCBSP_REG_THRSH2 0x90
138#define OMAP_MCBSP_REG_THRSH1 0x94
139#define OMAP_MCBSP_REG_IRQST 0xA0
140#define OMAP_MCBSP_REG_IRQEN 0xA4
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300141#define OMAP_MCBSP_REG_XCCR 0xAC
142#define OMAP_MCBSP_REG_RCCR 0xB0
Russell Kinga09e64f2008-08-05 16:14:15 +0100143
144#define AUDIO_MCBSP_DATAWRITE (OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DXR1)
145#define AUDIO_MCBSP_DATAREAD (OMAP24XX_MCBSP2_BASE + OMAP_MCBSP_REG_DRR1)
146
147#define AUDIO_MCBSP OMAP_MCBSP2
148#define AUDIO_DMA_TX OMAP24XX_DMA_MCBSP2_TX
149#define AUDIO_DMA_RX OMAP24XX_DMA_MCBSP2_RX
150
151#endif
152
Russell Kinga09e64f2008-08-05 16:14:15 +0100153/************************** McBSP SPCR1 bit definitions ***********************/
154#define RRST 0x0001
155#define RRDY 0x0002
156#define RFULL 0x0004
157#define RSYNC_ERR 0x0008
158#define RINTM(value) ((value)<<4) /* bits 4:5 */
159#define ABIS 0x0040
160#define DXENA 0x0080
161#define CLKSTP(value) ((value)<<11) /* bits 11:12 */
162#define RJUST(value) ((value)<<13) /* bits 13:14 */
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300163#define ALB 0x8000
Russell Kinga09e64f2008-08-05 16:14:15 +0100164#define DLB 0x8000
165
166/************************** McBSP SPCR2 bit definitions ***********************/
167#define XRST 0x0001
168#define XRDY 0x0002
169#define XEMPTY 0x0004
170#define XSYNC_ERR 0x0008
171#define XINTM(value) ((value)<<4) /* bits 4:5 */
172#define GRST 0x0040
173#define FRST 0x0080
174#define SOFT 0x0100
175#define FREE 0x0200
176
177/************************** McBSP PCR bit definitions *************************/
178#define CLKRP 0x0001
179#define CLKXP 0x0002
180#define FSRP 0x0004
181#define FSXP 0x0008
182#define DR_STAT 0x0010
183#define DX_STAT 0x0020
184#define CLKS_STAT 0x0040
185#define SCLKME 0x0080
186#define CLKRM 0x0100
187#define CLKXM 0x0200
188#define FSRM 0x0400
189#define FSXM 0x0800
190#define RIOEN 0x1000
191#define XIOEN 0x2000
192#define IDLE_EN 0x4000
193
194/************************** McBSP RCR1 bit definitions ************************/
195#define RWDLEN1(value) ((value)<<5) /* Bits 5:7 */
196#define RFRLEN1(value) ((value)<<8) /* Bits 8:14 */
197
198/************************** McBSP XCR1 bit definitions ************************/
199#define XWDLEN1(value) ((value)<<5) /* Bits 5:7 */
200#define XFRLEN1(value) ((value)<<8) /* Bits 8:14 */
201
202/*************************** McBSP RCR2 bit definitions ***********************/
203#define RDATDLY(value) (value) /* Bits 0:1 */
204#define RFIG 0x0004
205#define RCOMPAND(value) ((value)<<3) /* Bits 3:4 */
206#define RWDLEN2(value) ((value)<<5) /* Bits 5:7 */
207#define RFRLEN2(value) ((value)<<8) /* Bits 8:14 */
208#define RPHASE 0x8000
209
210/*************************** McBSP XCR2 bit definitions ***********************/
211#define XDATDLY(value) (value) /* Bits 0:1 */
212#define XFIG 0x0004
213#define XCOMPAND(value) ((value)<<3) /* Bits 3:4 */
214#define XWDLEN2(value) ((value)<<5) /* Bits 5:7 */
215#define XFRLEN2(value) ((value)<<8) /* Bits 8:14 */
216#define XPHASE 0x8000
217
218/************************* McBSP SRGR1 bit definitions ************************/
219#define CLKGDV(value) (value) /* Bits 0:7 */
220#define FWID(value) ((value)<<8) /* Bits 8:15 */
221
222/************************* McBSP SRGR2 bit definitions ************************/
223#define FPER(value) (value) /* Bits 0:11 */
224#define FSGM 0x1000
225#define CLKSM 0x2000
226#define CLKSP 0x4000
227#define GSYNC 0x8000
228
229/************************* McBSP MCR1 bit definitions *************************/
230#define RMCM 0x0001
231#define RCBLK(value) ((value)<<2) /* Bits 2:4 */
232#define RPABLK(value) ((value)<<5) /* Bits 5:6 */
233#define RPBBLK(value) ((value)<<7) /* Bits 7:8 */
234
235/************************* McBSP MCR2 bit definitions *************************/
236#define XMCM(value) (value) /* Bits 0:1 */
237#define XCBLK(value) ((value)<<2) /* Bits 2:4 */
238#define XPABLK(value) ((value)<<5) /* Bits 5:6 */
239#define XPBBLK(value) ((value)<<7) /* Bits 7:8 */
240
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300241/*********************** McBSP XCCR bit definitions *************************/
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200242#define EXTCLKGATE 0x8000
243#define PPCONNECT 0x4000
244#define DXENDLY(value) ((value)<<12) /* Bits 12:13 */
245#define XFULL_CYCLE 0x0800
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300246#define DILB 0x0020
247#define XDMAEN 0x0008
248#define XDISABLE 0x0001
249
250/********************** McBSP RCCR bit definitions *************************/
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200251#define RFULL_CYCLE 0x0800
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300252#define RDMAEN 0x0008
253#define RDISABLE 0x0001
254
255/********************** McBSP SYSCONFIG bit definitions ********************/
256#define SOFTRST 0x0002
Russell Kinga09e64f2008-08-05 16:14:15 +0100257
258/* we don't do multichannel for now */
259struct omap_mcbsp_reg_cfg {
260 u16 spcr2;
261 u16 spcr1;
262 u16 rcr2;
263 u16 rcr1;
264 u16 xcr2;
265 u16 xcr1;
266 u16 srgr2;
267 u16 srgr1;
268 u16 mcr2;
269 u16 mcr1;
270 u16 pcr0;
271 u16 rcerc;
272 u16 rcerd;
273 u16 xcerc;
274 u16 xcerd;
275 u16 rcere;
276 u16 rcerf;
277 u16 xcere;
278 u16 xcerf;
279 u16 rcerg;
280 u16 rcerh;
281 u16 xcerg;
282 u16 xcerh;
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200283 u16 xccr;
284 u16 rccr;
Russell Kinga09e64f2008-08-05 16:14:15 +0100285};
286
287typedef enum {
288 OMAP_MCBSP1 = 0,
289 OMAP_MCBSP2,
290 OMAP_MCBSP3,
Chandra Shekhar9c8e3a02008-10-08 10:01:40 +0300291 OMAP_MCBSP4,
292 OMAP_MCBSP5
Russell Kinga09e64f2008-08-05 16:14:15 +0100293} omap_mcbsp_id;
294
295typedef int __bitwise omap_mcbsp_io_type_t;
296#define OMAP_MCBSP_IRQ_IO ((__force omap_mcbsp_io_type_t) 1)
297#define OMAP_MCBSP_POLL_IO ((__force omap_mcbsp_io_type_t) 2)
298
299typedef enum {
300 OMAP_MCBSP_WORD_8 = 0,
301 OMAP_MCBSP_WORD_12,
302 OMAP_MCBSP_WORD_16,
303 OMAP_MCBSP_WORD_20,
304 OMAP_MCBSP_WORD_24,
305 OMAP_MCBSP_WORD_32,
306} omap_mcbsp_word_length;
307
308typedef enum {
309 OMAP_MCBSP_CLK_RISING = 0,
310 OMAP_MCBSP_CLK_FALLING,
311} omap_mcbsp_clk_polarity;
312
313typedef enum {
314 OMAP_MCBSP_FS_ACTIVE_HIGH = 0,
315 OMAP_MCBSP_FS_ACTIVE_LOW,
316} omap_mcbsp_fs_polarity;
317
318typedef enum {
319 OMAP_MCBSP_CLK_STP_MODE_NO_DELAY = 0,
320 OMAP_MCBSP_CLK_STP_MODE_DELAY,
321} omap_mcbsp_clk_stp_mode;
322
323
324/******* SPI specific mode **********/
325typedef enum {
326 OMAP_MCBSP_SPI_MASTER = 0,
327 OMAP_MCBSP_SPI_SLAVE,
328} omap_mcbsp_spi_mode;
329
330struct omap_mcbsp_spi_cfg {
331 omap_mcbsp_spi_mode spi_mode;
332 omap_mcbsp_clk_polarity rx_clock_polarity;
333 omap_mcbsp_clk_polarity tx_clock_polarity;
334 omap_mcbsp_fs_polarity fsx_polarity;
335 u8 clk_div;
336 omap_mcbsp_clk_stp_mode clk_stp_mode;
337 omap_mcbsp_word_length word_length;
338};
339
340/* Platform specific configuration */
341struct omap_mcbsp_ops {
342 void (*request)(unsigned int);
343 void (*free)(unsigned int);
Russell Kinga09e64f2008-08-05 16:14:15 +0100344};
345
346struct omap_mcbsp_platform_data {
Russell King65846902008-09-03 23:46:18 +0100347 unsigned long phys_base;
Russell Kinga09e64f2008-08-05 16:14:15 +0100348 u8 dma_rx_sync, dma_tx_sync;
349 u16 rx_irq, tx_irq;
350 struct omap_mcbsp_ops *ops;
Russell Kinga09e64f2008-08-05 16:14:15 +0100351};
352
353struct omap_mcbsp {
354 struct device *dev;
Russell King65846902008-09-03 23:46:18 +0100355 unsigned long phys_base;
Russell Kingd592dd12008-09-04 14:25:42 +0100356 void __iomem *io_base;
Russell Kinga09e64f2008-08-05 16:14:15 +0100357 u8 id;
358 u8 free;
359 omap_mcbsp_word_length rx_word_length;
360 omap_mcbsp_word_length tx_word_length;
361
362 omap_mcbsp_io_type_t io_type; /* IRQ or poll */
363 /* IRQ based TX/RX */
364 int rx_irq;
365 int tx_irq;
366
367 /* DMA stuff */
368 u8 dma_rx_sync;
369 short dma_rx_lch;
370 u8 dma_tx_sync;
371 short dma_tx_lch;
372
373 /* Completion queues */
374 struct completion tx_irq_completion;
375 struct completion rx_irq_completion;
376 struct completion tx_dma_completion;
377 struct completion rx_dma_completion;
378
379 /* Protect the field .free, while checking if the mcbsp is in use */
380 spinlock_t lock;
381 struct omap_mcbsp_platform_data *pdata;
Russell Kingb820ce42009-01-23 10:26:46 +0000382 struct clk *iclk;
383 struct clk *fclk;
Russell Kinga09e64f2008-08-05 16:14:15 +0100384};
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300385extern struct omap_mcbsp **mcbsp_ptr;
386extern int omap_mcbsp_count;
Russell Kinga09e64f2008-08-05 16:14:15 +0100387
388int omap_mcbsp_init(void);
389void omap_mcbsp_register_board_cfg(struct omap_mcbsp_platform_data *config,
390 int size);
391void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg * config);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300392#ifdef CONFIG_ARCH_OMAP34XX
393void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold);
394void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold);
395#else
396static inline void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold)
397{ }
398static inline void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold)
399{ }
400#endif
Russell Kinga09e64f2008-08-05 16:14:15 +0100401int omap_mcbsp_request(unsigned int id);
402void omap_mcbsp_free(unsigned int id);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300403void omap_mcbsp_start(unsigned int id, int tx, int rx);
404void omap_mcbsp_stop(unsigned int id, int tx, int rx);
Eero Nurkkala9abea082009-08-20 16:18:07 +0300405void omap_mcbsp_xmit_enable(unsigned int id, u8 enable);
406void omap_mcbsp_recv_enable(unsigned int id, u8 enable);
Russell Kinga09e64f2008-08-05 16:14:15 +0100407void omap_mcbsp_xmit_word(unsigned int id, u32 word);
408u32 omap_mcbsp_recv_word(unsigned int id);
409
410int omap_mcbsp_xmit_buffer(unsigned int id, dma_addr_t buffer, unsigned int length);
411int omap_mcbsp_recv_buffer(unsigned int id, dma_addr_t buffer, unsigned int length);
412int omap_mcbsp_spi_master_xmit_word_poll(unsigned int id, u32 word);
413int omap_mcbsp_spi_master_recv_word_poll(unsigned int id, u32 * word);
414
415
416/* SPI specific API */
417void omap_mcbsp_set_spi_mode(unsigned int id, const struct omap_mcbsp_spi_cfg * spi_cfg);
418
419/* Polled read/write functions */
420int omap_mcbsp_pollread(unsigned int id, u16 * buf);
421int omap_mcbsp_pollwrite(unsigned int id, u16 buf);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300422int omap_mcbsp_set_io_type(unsigned int id, omap_mcbsp_io_type_t io_type);
Russell Kinga09e64f2008-08-05 16:14:15 +0100423
424#endif