arm: omap1: add missing includes
[deliverable/linux.git] / arch / arm / mach-omap1 / mcbsp.c
CommitLineData
44ec9a33
EV
1/*
2 * linux/arch/arm/mach-omap1/mcbsp.c
3 *
4 * Copyright (C) 2008 Instituto Nokia de Tecnologia
5 * Contact: Eduardo Valentin <eduardo.valentin@indt.org.br>
6 *
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.
10 *
11 * Multichannel mode not supported.
12 */
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/clk.h>
16#include <linux/err.h>
17#include <linux/io.h>
18#include <linux/platform_device.h>
5a0e3ad6 19#include <linux/slab.h>
44ec9a33 20
dd7667aa 21#include <mach/irqs.h>
ce491cf8
TL
22#include <plat/dma.h>
23#include <plat/mux.h>
24#include <plat/cpu.h>
25#include <plat/mcbsp.h>
44ec9a33
EV
26
27#define DPS_RSTCT2_PER_EN (1 << 0)
28#define DSP_RSTCT2_WD_PER_EN (1 << 1)
29
b820ce4e
RK
30static int dsp_use;
31static struct clk *api_clk;
32static struct clk *dsp_clk;
44ec9a33 33
44ec9a33
EV
34static void omap1_mcbsp_request(unsigned int id)
35{
36 /*
37 * On 1510, 1610 and 1710, McBSP1 and McBSP3
38 * are DSP public peripherals.
39 */
40 if (id == OMAP_MCBSP1 || id == OMAP_MCBSP3) {
b820ce4e 41 if (dsp_use++ == 0) {
d53eb737
AK
42 api_clk = clk_get(NULL, "api_ck");
43 dsp_clk = clk_get(NULL, "dsp_ck");
b820ce4e
RK
44 if (!IS_ERR(api_clk) && !IS_ERR(dsp_clk)) {
45 clk_enable(api_clk);
46 clk_enable(dsp_clk);
47
b820ce4e
RK
48 /*
49 * DSP external peripheral reset
50 * FIXME: This should be moved to dsp code
51 */
52 __raw_writew(__raw_readw(DSP_RSTCT2) | DPS_RSTCT2_PER_EN |
53 DSP_RSTCT2_WD_PER_EN, DSP_RSTCT2);
54 }
55 }
44ec9a33
EV
56 }
57}
58
59static void omap1_mcbsp_free(unsigned int id)
60{
b820ce4e
RK
61 if (id == OMAP_MCBSP1 || id == OMAP_MCBSP3) {
62 if (--dsp_use == 0) {
b820ce4e
RK
63 if (!IS_ERR(api_clk)) {
64 clk_disable(api_clk);
65 clk_put(api_clk);
66 }
67 if (!IS_ERR(dsp_clk)) {
68 clk_disable(dsp_clk);
69 clk_put(dsp_clk);
70 }
71 }
72 }
44ec9a33
EV
73}
74
75static struct omap_mcbsp_ops omap1_mcbsp_ops = {
44ec9a33
EV
76 .request = omap1_mcbsp_request,
77 .free = omap1_mcbsp_free,
78};
79
bf1cb7eb 80#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
7c006926 81static struct omap_mcbsp_platform_data omap7xx_mcbsp_pdata[] = {
44ec9a33 82 {
7c006926 83 .phys_base = OMAP7XX_MCBSP1_BASE,
44ec9a33
EV
84 .dma_rx_sync = OMAP_DMA_MCBSP1_RX,
85 .dma_tx_sync = OMAP_DMA_MCBSP1_TX,
372b1c32
AB
86 .rx_irq = INT_7XX_McBSP1RX,
87 .tx_irq = INT_7XX_McBSP1TX,
44ec9a33
EV
88 .ops = &omap1_mcbsp_ops,
89 },
90 {
7c006926 91 .phys_base = OMAP7XX_MCBSP2_BASE,
44ec9a33
EV
92 .dma_rx_sync = OMAP_DMA_MCBSP3_RX,
93 .dma_tx_sync = OMAP_DMA_MCBSP3_TX,
372b1c32
AB
94 .rx_irq = INT_7XX_McBSP2RX,
95 .tx_irq = INT_7XX_McBSP2TX,
44ec9a33
EV
96 .ops = &omap1_mcbsp_ops,
97 },
98};
7c006926 99#define OMAP7XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap7xx_mcbsp_pdata)
c8c99699 100#define OMAP7XX_MCBSP_REG_NUM (OMAP_MCBSP_REG_XCERH / sizeof(u16) + 1)
44ec9a33 101#else
7c006926
AB
102#define omap7xx_mcbsp_pdata NULL
103#define OMAP7XX_MCBSP_PDATA_SZ 0
c8c99699 104#define OMAP7XX_MCBSP_REG_NUM 0
44ec9a33
EV
105#endif
106
107#ifdef CONFIG_ARCH_OMAP15XX
108static struct omap_mcbsp_platform_data omap15xx_mcbsp_pdata[] = {
109 {
65846909 110 .phys_base = OMAP1510_MCBSP1_BASE,
44ec9a33
EV
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,
06151158 116 },
44ec9a33 117 {
65846909 118 .phys_base = OMAP1510_MCBSP2_BASE,
44ec9a33
EV
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,
124 },
125 {
65846909 126 .phys_base = OMAP1510_MCBSP3_BASE,
44ec9a33
EV
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,
44ec9a33
EV
132 },
133};
134#define OMAP15XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap15xx_mcbsp_pdata)
c8c99699 135#define OMAP15XX_MCBSP_REG_NUM (OMAP_MCBSP_REG_XCERH / sizeof(u16) + 1)
44ec9a33
EV
136#else
137#define omap15xx_mcbsp_pdata NULL
138#define OMAP15XX_MCBSP_PDATA_SZ 0
c8c99699 139#define OMAP15XX_MCBSP_REG_NUM 0
44ec9a33
EV
140#endif
141
142#ifdef CONFIG_ARCH_OMAP16XX
143static struct omap_mcbsp_platform_data omap16xx_mcbsp_pdata[] = {
144 {
65846909 145 .phys_base = OMAP1610_MCBSP1_BASE,
44ec9a33
EV
146 .dma_rx_sync = OMAP_DMA_MCBSP1_RX,
147 .dma_tx_sync = OMAP_DMA_MCBSP1_TX,
148 .rx_irq = INT_McBSP1RX,
149 .tx_irq = INT_McBSP1TX,
150 .ops = &omap1_mcbsp_ops,
44ec9a33
EV
151 },
152 {
65846909 153 .phys_base = OMAP1610_MCBSP2_BASE,
44ec9a33
EV
154 .dma_rx_sync = OMAP_DMA_MCBSP2_RX,
155 .dma_tx_sync = OMAP_DMA_MCBSP2_TX,
156 .rx_irq = INT_1610_McBSP2_RX,
157 .tx_irq = INT_1610_McBSP2_TX,
158 .ops = &omap1_mcbsp_ops,
159 },
160 {
65846909 161 .phys_base = OMAP1610_MCBSP3_BASE,
44ec9a33
EV
162 .dma_rx_sync = OMAP_DMA_MCBSP3_RX,
163 .dma_tx_sync = OMAP_DMA_MCBSP3_TX,
164 .rx_irq = INT_McBSP3RX,
165 .tx_irq = INT_McBSP3TX,
166 .ops = &omap1_mcbsp_ops,
44ec9a33
EV
167 },
168};
169#define OMAP16XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap16xx_mcbsp_pdata)
c8c99699 170#define OMAP16XX_MCBSP_REG_NUM (OMAP_MCBSP_REG_XCERH / sizeof(u16) + 1)
44ec9a33
EV
171#else
172#define omap16xx_mcbsp_pdata NULL
173#define OMAP16XX_MCBSP_PDATA_SZ 0
c8c99699 174#define OMAP16XX_MCBSP_REG_NUM 0
44ec9a33
EV
175#endif
176
177int __init omap1_mcbsp_init(void)
178{
c8c99699 179 if (cpu_is_omap7xx()) {
7c006926 180 omap_mcbsp_count = OMAP7XX_MCBSP_PDATA_SZ;
c8c99699
JK
181 omap_mcbsp_cache_size = OMAP7XX_MCBSP_REG_NUM * sizeof(u16);
182 } else if (cpu_is_omap15xx()) {
b4b58f58 183 omap_mcbsp_count = OMAP15XX_MCBSP_PDATA_SZ;
c8c99699
JK
184 omap_mcbsp_cache_size = OMAP15XX_MCBSP_REG_NUM * sizeof(u16);
185 } else if (cpu_is_omap16xx()) {
b4b58f58 186 omap_mcbsp_count = OMAP16XX_MCBSP_PDATA_SZ;
c8c99699
JK
187 omap_mcbsp_cache_size = OMAP16XX_MCBSP_REG_NUM * sizeof(u16);
188 }
b4b58f58
CS
189
190 mcbsp_ptr = kzalloc(omap_mcbsp_count * sizeof(struct omap_mcbsp *),
191 GFP_KERNEL);
192 if (!mcbsp_ptr)
193 return -ENOMEM;
194
bf1cb7eb 195 if (cpu_is_omap7xx())
7c006926
AB
196 omap_mcbsp_register_board_cfg(omap7xx_mcbsp_pdata,
197 OMAP7XX_MCBSP_PDATA_SZ);
44ec9a33
EV
198
199 if (cpu_is_omap15xx())
200 omap_mcbsp_register_board_cfg(omap15xx_mcbsp_pdata,
201 OMAP15XX_MCBSP_PDATA_SZ);
202
203 if (cpu_is_omap16xx())
204 omap_mcbsp_register_board_cfg(omap16xx_mcbsp_pdata,
205 OMAP16XX_MCBSP_PDATA_SZ);
206
207 return omap_mcbsp_init();
208}
209
210arch_initcall(omap1_mcbsp_init);
This page took 0.192869 seconds and 5 git commands to generate.