2 * linux/arch/arm/mach-omap1/mcbsp.c
4 * Copyright (C) 2008 Instituto Nokia de Tecnologia
5 * Contact: Eduardo Valentin <eduardo.valentin@indt.org.br>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * Multichannel mode not supported.
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/clk.h>
16 #include <linux/err.h>
18 #include <linux/platform_device.h>
20 #include <mach/irqs.h>
24 #include <mach/mcbsp.h>
25 #include <mach/dsp_common.h>
27 #define DPS_RSTCT2_PER_EN (1 << 0)
28 #define DSP_RSTCT2_WD_PER_EN (1 << 1)
31 static struct clk
*api_clk
;
32 static struct clk
*dsp_clk
;
34 static void omap1_mcbsp_request(unsigned int id
)
37 * On 1510, 1610 and 1710, McBSP1 and McBSP3
38 * are DSP public peripherals.
40 if (id
== OMAP_MCBSP1
|| id
== OMAP_MCBSP3
) {
42 api_clk
= clk_get(NULL
, "api_ck");
43 dsp_clk
= clk_get(NULL
, "dsp_ck");
44 if (!IS_ERR(api_clk
) && !IS_ERR(dsp_clk
)) {
48 omap_dsp_request_mem();
50 * DSP external peripheral reset
51 * FIXME: This should be moved to dsp code
53 __raw_writew(__raw_readw(DSP_RSTCT2
) | DPS_RSTCT2_PER_EN
|
54 DSP_RSTCT2_WD_PER_EN
, DSP_RSTCT2
);
60 static void omap1_mcbsp_free(unsigned int id
)
62 if (id
== OMAP_MCBSP1
|| id
== OMAP_MCBSP3
) {
64 omap_dsp_release_mem();
65 if (!IS_ERR(api_clk
)) {
69 if (!IS_ERR(dsp_clk
)) {
77 static struct omap_mcbsp_ops omap1_mcbsp_ops
= {
78 .request
= omap1_mcbsp_request
,
79 .free
= omap1_mcbsp_free
,
82 #ifdef CONFIG_ARCH_OMAP730
83 static struct omap_mcbsp_platform_data omap730_mcbsp_pdata
[] = {
85 .phys_base
= OMAP730_MCBSP1_BASE
,
86 .dma_rx_sync
= OMAP_DMA_MCBSP1_RX
,
87 .dma_tx_sync
= OMAP_DMA_MCBSP1_TX
,
88 .rx_irq
= INT_730_McBSP1RX
,
89 .tx_irq
= INT_730_McBSP1TX
,
90 .ops
= &omap1_mcbsp_ops
,
93 .phys_base
= OMAP730_MCBSP2_BASE
,
94 .dma_rx_sync
= OMAP_DMA_MCBSP3_RX
,
95 .dma_tx_sync
= OMAP_DMA_MCBSP3_TX
,
96 .rx_irq
= INT_730_McBSP2RX
,
97 .tx_irq
= INT_730_McBSP2TX
,
98 .ops
= &omap1_mcbsp_ops
,
101 #define OMAP730_MCBSP_PDATA_SZ ARRAY_SIZE(omap730_mcbsp_pdata)
103 #define omap730_mcbsp_pdata NULL
104 #define OMAP730_MCBSP_PDATA_SZ 0
107 #ifdef CONFIG_ARCH_OMAP15XX
108 static struct omap_mcbsp_platform_data omap15xx_mcbsp_pdata
[] = {
110 .phys_base
= OMAP1510_MCBSP1_BASE
,
111 .dma_rx_sync
= OMAP_DMA_MCBSP1_RX
,
112 .dma_tx_sync
= OMAP_DMA_MCBSP1_TX
,
113 .rx_irq
= INT_McBSP1RX
,
114 .tx_irq
= INT_McBSP1TX
,
115 .ops
= &omap1_mcbsp_ops
,
118 .phys_base
= OMAP1510_MCBSP2_BASE
,
119 .dma_rx_sync
= OMAP_DMA_MCBSP2_RX
,
120 .dma_tx_sync
= OMAP_DMA_MCBSP2_TX
,
121 .rx_irq
= INT_1510_SPI_RX
,
122 .tx_irq
= INT_1510_SPI_TX
,
123 .ops
= &omap1_mcbsp_ops
,
126 .phys_base
= OMAP1510_MCBSP3_BASE
,
127 .dma_rx_sync
= OMAP_DMA_MCBSP3_RX
,
128 .dma_tx_sync
= OMAP_DMA_MCBSP3_TX
,
129 .rx_irq
= INT_McBSP3RX
,
130 .tx_irq
= INT_McBSP3TX
,
131 .ops
= &omap1_mcbsp_ops
,
134 #define OMAP15XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap15xx_mcbsp_pdata)
136 #define omap15xx_mcbsp_pdata NULL
137 #define OMAP15XX_MCBSP_PDATA_SZ 0
140 #ifdef CONFIG_ARCH_OMAP16XX
141 static struct omap_mcbsp_platform_data omap16xx_mcbsp_pdata
[] = {
143 .phys_base
= OMAP1610_MCBSP1_BASE
,
144 .dma_rx_sync
= OMAP_DMA_MCBSP1_RX
,
145 .dma_tx_sync
= OMAP_DMA_MCBSP1_TX
,
146 .rx_irq
= INT_McBSP1RX
,
147 .tx_irq
= INT_McBSP1TX
,
148 .ops
= &omap1_mcbsp_ops
,
151 .phys_base
= OMAP1610_MCBSP2_BASE
,
152 .dma_rx_sync
= OMAP_DMA_MCBSP2_RX
,
153 .dma_tx_sync
= OMAP_DMA_MCBSP2_TX
,
154 .rx_irq
= INT_1610_McBSP2_RX
,
155 .tx_irq
= INT_1610_McBSP2_TX
,
156 .ops
= &omap1_mcbsp_ops
,
159 .phys_base
= OMAP1610_MCBSP3_BASE
,
160 .dma_rx_sync
= OMAP_DMA_MCBSP3_RX
,
161 .dma_tx_sync
= OMAP_DMA_MCBSP3_TX
,
162 .rx_irq
= INT_McBSP3RX
,
163 .tx_irq
= INT_McBSP3TX
,
164 .ops
= &omap1_mcbsp_ops
,
167 #define OMAP16XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap16xx_mcbsp_pdata)
169 #define omap16xx_mcbsp_pdata NULL
170 #define OMAP16XX_MCBSP_PDATA_SZ 0
173 int __init
omap1_mcbsp_init(void)
175 if (cpu_is_omap730())
176 omap_mcbsp_count
= OMAP730_MCBSP_PDATA_SZ
;
177 if (cpu_is_omap15xx())
178 omap_mcbsp_count
= OMAP15XX_MCBSP_PDATA_SZ
;
179 if (cpu_is_omap16xx())
180 omap_mcbsp_count
= OMAP16XX_MCBSP_PDATA_SZ
;
182 mcbsp_ptr
= kzalloc(omap_mcbsp_count
* sizeof(struct omap_mcbsp
*),
187 if (cpu_is_omap730())
188 omap_mcbsp_register_board_cfg(omap730_mcbsp_pdata
,
189 OMAP730_MCBSP_PDATA_SZ
);
191 if (cpu_is_omap15xx())
192 omap_mcbsp_register_board_cfg(omap15xx_mcbsp_pdata
,
193 OMAP15XX_MCBSP_PDATA_SZ
);
195 if (cpu_is_omap16xx())
196 omap_mcbsp_register_board_cfg(omap16xx_mcbsp_pdata
,
197 OMAP16XX_MCBSP_PDATA_SZ
);
199 return omap_mcbsp_init();
202 arch_initcall(omap1_mcbsp_init
);