blob: 9e699947a693d3476326252d7cd45284b1115480 [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001/*
2 * linux/arch/arm/plat-omap/mcbsp.c
3 *
4 * Copyright (C) 2004 Nokia Corporation
5 * Author: Samuel Ortiz <samuel.ortiz@nokia.com>
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * Multichannel mode not supported.
13 */
14
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/device.h>
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +030018#include <linux/platform_device.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010019#include <linux/wait.h>
20#include <linux/completion.h>
21#include <linux/interrupt.h>
22#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000023#include <linux/clk.h>
Tony Lindgren04fbf6a2007-02-12 10:50:53 -080024#include <linux/delay.h>
Eduardo Valentinfb78d802008-07-03 12:24:39 +030025#include <linux/io.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010026
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/dma.h>
28#include <mach/mcbsp.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010029
Chandra Shekharb4b58f52008-10-08 10:01:39 +030030struct omap_mcbsp **mcbsp_ptr;
31int omap_mcbsp_count;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +030032
Chandra Shekharb4b58f52008-10-08 10:01:39 +030033void omap_mcbsp_write(void __iomem *io_base, u16 reg, u32 val)
34{
35 if (cpu_class_is_omap1() || cpu_is_omap2420())
36 __raw_writew((u16)val, io_base + reg);
37 else
38 __raw_writel(val, io_base + reg);
39}
40
41int omap_mcbsp_read(void __iomem *io_base, u16 reg)
42{
43 if (cpu_class_is_omap1() || cpu_is_omap2420())
44 return __raw_readw(io_base + reg);
45 else
46 return __raw_readl(io_base + reg);
47}
48
49#define OMAP_MCBSP_READ(base, reg) \
50 omap_mcbsp_read(base, OMAP_MCBSP_REG_##reg)
51#define OMAP_MCBSP_WRITE(base, reg, val) \
52 omap_mcbsp_write(base, OMAP_MCBSP_REG_##reg, val)
53
54#define omap_mcbsp_check_valid_id(id) (id < omap_mcbsp_count)
55#define id_to_mcbsp_ptr(id) mcbsp_ptr[id];
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010056
57static void omap_mcbsp_dump_reg(u8 id)
58{
Chandra Shekharb4b58f52008-10-08 10:01:39 +030059 struct omap_mcbsp *mcbsp = id_to_mcbsp_ptr(id);
60
61 dev_dbg(mcbsp->dev, "**** McBSP%d regs ****\n", mcbsp->id);
62 dev_dbg(mcbsp->dev, "DRR2: 0x%04x\n",
63 OMAP_MCBSP_READ(mcbsp->io_base, DRR2));
64 dev_dbg(mcbsp->dev, "DRR1: 0x%04x\n",
65 OMAP_MCBSP_READ(mcbsp->io_base, DRR1));
66 dev_dbg(mcbsp->dev, "DXR2: 0x%04x\n",
67 OMAP_MCBSP_READ(mcbsp->io_base, DXR2));
68 dev_dbg(mcbsp->dev, "DXR1: 0x%04x\n",
69 OMAP_MCBSP_READ(mcbsp->io_base, DXR1));
70 dev_dbg(mcbsp->dev, "SPCR2: 0x%04x\n",
71 OMAP_MCBSP_READ(mcbsp->io_base, SPCR2));
72 dev_dbg(mcbsp->dev, "SPCR1: 0x%04x\n",
73 OMAP_MCBSP_READ(mcbsp->io_base, SPCR1));
74 dev_dbg(mcbsp->dev, "RCR2: 0x%04x\n",
75 OMAP_MCBSP_READ(mcbsp->io_base, RCR2));
76 dev_dbg(mcbsp->dev, "RCR1: 0x%04x\n",
77 OMAP_MCBSP_READ(mcbsp->io_base, RCR1));
78 dev_dbg(mcbsp->dev, "XCR2: 0x%04x\n",
79 OMAP_MCBSP_READ(mcbsp->io_base, XCR2));
80 dev_dbg(mcbsp->dev, "XCR1: 0x%04x\n",
81 OMAP_MCBSP_READ(mcbsp->io_base, XCR1));
82 dev_dbg(mcbsp->dev, "SRGR2: 0x%04x\n",
83 OMAP_MCBSP_READ(mcbsp->io_base, SRGR2));
84 dev_dbg(mcbsp->dev, "SRGR1: 0x%04x\n",
85 OMAP_MCBSP_READ(mcbsp->io_base, SRGR1));
86 dev_dbg(mcbsp->dev, "PCR0: 0x%04x\n",
87 OMAP_MCBSP_READ(mcbsp->io_base, PCR0));
88 dev_dbg(mcbsp->dev, "***********************\n");
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010089}
90
Linus Torvalds0cd61b62006-10-06 10:53:39 -070091static irqreturn_t omap_mcbsp_tx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010092{
Jeff Garzike8f2af12007-10-26 05:40:25 -040093 struct omap_mcbsp *mcbsp_tx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -070094 u16 irqst_spcr2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010095
Eero Nurkkalad6d834b2009-05-25 11:08:42 -070096 irqst_spcr2 = OMAP_MCBSP_READ(mcbsp_tx->io_base, SPCR2);
97 dev_dbg(mcbsp_tx->dev, "TX IRQ callback : 0x%x\n", irqst_spcr2);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010098
Eero Nurkkalad6d834b2009-05-25 11:08:42 -070099 if (irqst_spcr2 & XSYNC_ERR) {
100 dev_err(mcbsp_tx->dev, "TX Frame Sync Error! : 0x%x\n",
101 irqst_spcr2);
102 /* Writing zero to XSYNC_ERR clears the IRQ */
103 OMAP_MCBSP_WRITE(mcbsp_tx->io_base, SPCR2,
104 irqst_spcr2 & ~(XSYNC_ERR));
105 } else {
106 complete(&mcbsp_tx->tx_irq_completion);
107 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300108
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100109 return IRQ_HANDLED;
110}
111
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700112static irqreturn_t omap_mcbsp_rx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100113{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400114 struct omap_mcbsp *mcbsp_rx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700115 u16 irqst_spcr1;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100116
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700117 irqst_spcr1 = OMAP_MCBSP_READ(mcbsp_rx->io_base, SPCR1);
118 dev_dbg(mcbsp_rx->dev, "RX IRQ callback : 0x%x\n", irqst_spcr1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100119
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700120 if (irqst_spcr1 & RSYNC_ERR) {
121 dev_err(mcbsp_rx->dev, "RX Frame Sync Error! : 0x%x\n",
122 irqst_spcr1);
123 /* Writing zero to RSYNC_ERR clears the IRQ */
124 OMAP_MCBSP_WRITE(mcbsp_rx->io_base, SPCR1,
125 irqst_spcr1 & ~(RSYNC_ERR));
126 } else {
127 complete(&mcbsp_rx->tx_irq_completion);
128 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300129
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100130 return IRQ_HANDLED;
131}
132
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100133static void omap_mcbsp_tx_dma_callback(int lch, u16 ch_status, void *data)
134{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400135 struct omap_mcbsp *mcbsp_dma_tx = data;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100136
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300137 dev_dbg(mcbsp_dma_tx->dev, "TX DMA callback : 0x%x\n",
138 OMAP_MCBSP_READ(mcbsp_dma_tx->io_base, SPCR2));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100139
140 /* We can free the channels */
141 omap_free_dma(mcbsp_dma_tx->dma_tx_lch);
142 mcbsp_dma_tx->dma_tx_lch = -1;
143
144 complete(&mcbsp_dma_tx->tx_dma_completion);
145}
146
147static void omap_mcbsp_rx_dma_callback(int lch, u16 ch_status, void *data)
148{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400149 struct omap_mcbsp *mcbsp_dma_rx = data;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100150
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300151 dev_dbg(mcbsp_dma_rx->dev, "RX DMA callback : 0x%x\n",
152 OMAP_MCBSP_READ(mcbsp_dma_rx->io_base, SPCR2));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100153
154 /* We can free the channels */
155 omap_free_dma(mcbsp_dma_rx->dma_rx_lch);
156 mcbsp_dma_rx->dma_rx_lch = -1;
157
158 complete(&mcbsp_dma_rx->rx_dma_completion);
159}
160
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100161/*
162 * omap_mcbsp_config simply write a config to the
163 * appropriate McBSP.
164 * You either call this function or set the McBSP registers
165 * by yourself before calling omap_mcbsp_start().
166 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300167void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg *config)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100168{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300169 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100170 void __iomem *io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100171
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300172 if (!omap_mcbsp_check_valid_id(id)) {
173 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
174 return;
175 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300176 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300177
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300178 io_base = mcbsp->io_base;
179 dev_dbg(mcbsp->dev, "Configuring McBSP%d phys_base: 0x%08lx\n",
180 mcbsp->id, mcbsp->phys_base);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100181
182 /* We write the given config */
183 OMAP_MCBSP_WRITE(io_base, SPCR2, config->spcr2);
184 OMAP_MCBSP_WRITE(io_base, SPCR1, config->spcr1);
185 OMAP_MCBSP_WRITE(io_base, RCR2, config->rcr2);
186 OMAP_MCBSP_WRITE(io_base, RCR1, config->rcr1);
187 OMAP_MCBSP_WRITE(io_base, XCR2, config->xcr2);
188 OMAP_MCBSP_WRITE(io_base, XCR1, config->xcr1);
189 OMAP_MCBSP_WRITE(io_base, SRGR2, config->srgr2);
190 OMAP_MCBSP_WRITE(io_base, SRGR1, config->srgr1);
191 OMAP_MCBSP_WRITE(io_base, MCR2, config->mcr2);
192 OMAP_MCBSP_WRITE(io_base, MCR1, config->mcr1);
193 OMAP_MCBSP_WRITE(io_base, PCR0, config->pcr0);
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200194 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
195 OMAP_MCBSP_WRITE(io_base, XCCR, config->xccr);
196 OMAP_MCBSP_WRITE(io_base, RCCR, config->rccr);
197 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100198}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300199EXPORT_SYMBOL(omap_mcbsp_config);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100200
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300201#ifdef CONFIG_ARCH_OMAP34XX
202/*
203 * omap_mcbsp_set_tx_threshold configures how to deal
204 * with transmit threshold. the threshold value and handler can be
205 * configure in here.
206 */
207void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold)
208{
209 struct omap_mcbsp *mcbsp;
210 void __iomem *io_base;
211
212 if (!cpu_is_omap34xx())
213 return;
214
215 if (!omap_mcbsp_check_valid_id(id)) {
216 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
217 return;
218 }
219 mcbsp = id_to_mcbsp_ptr(id);
220 io_base = mcbsp->io_base;
221
222 OMAP_MCBSP_WRITE(io_base, THRSH2, threshold);
223}
224EXPORT_SYMBOL(omap_mcbsp_set_tx_threshold);
225
226/*
227 * omap_mcbsp_set_rx_threshold configures how to deal
228 * with receive threshold. the threshold value and handler can be
229 * configure in here.
230 */
231void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold)
232{
233 struct omap_mcbsp *mcbsp;
234 void __iomem *io_base;
235
236 if (!cpu_is_omap34xx())
237 return;
238
239 if (!omap_mcbsp_check_valid_id(id)) {
240 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
241 return;
242 }
243 mcbsp = id_to_mcbsp_ptr(id);
244 io_base = mcbsp->io_base;
245
246 OMAP_MCBSP_WRITE(io_base, THRSH1, threshold);
247}
248EXPORT_SYMBOL(omap_mcbsp_set_rx_threshold);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +0300249
250/*
251 * omap_mcbsp_get_max_tx_thres just return the current configured
252 * maximum threshold for transmission
253 */
254u16 omap_mcbsp_get_max_tx_threshold(unsigned int id)
255{
256 struct omap_mcbsp *mcbsp;
257
258 if (!omap_mcbsp_check_valid_id(id)) {
259 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
260 return -ENODEV;
261 }
262 mcbsp = id_to_mcbsp_ptr(id);
263
264 return mcbsp->max_tx_thres;
265}
266EXPORT_SYMBOL(omap_mcbsp_get_max_tx_threshold);
267
268/*
269 * omap_mcbsp_get_max_rx_thres just return the current configured
270 * maximum threshold for reception
271 */
272u16 omap_mcbsp_get_max_rx_threshold(unsigned int id)
273{
274 struct omap_mcbsp *mcbsp;
275
276 if (!omap_mcbsp_check_valid_id(id)) {
277 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
278 return -ENODEV;
279 }
280 mcbsp = id_to_mcbsp_ptr(id);
281
282 return mcbsp->max_rx_thres;
283}
284EXPORT_SYMBOL(omap_mcbsp_get_max_rx_threshold);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300285
286/*
287 * omap_mcbsp_get_dma_op_mode just return the current configured
288 * operating mode for the mcbsp channel
289 */
290int omap_mcbsp_get_dma_op_mode(unsigned int id)
291{
292 struct omap_mcbsp *mcbsp;
293 int dma_op_mode;
294
295 if (!omap_mcbsp_check_valid_id(id)) {
296 printk(KERN_ERR "%s: Invalid id (%u)\n", __func__, id + 1);
297 return -ENODEV;
298 }
299 mcbsp = id_to_mcbsp_ptr(id);
300
301 spin_lock_irq(&mcbsp->lock);
302 dma_op_mode = mcbsp->dma_op_mode;
303 spin_unlock_irq(&mcbsp->lock);
304
305 return dma_op_mode;
306}
307EXPORT_SYMBOL(omap_mcbsp_get_dma_op_mode);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300308#endif
309
Tony Lindgren120db2c2006-04-02 17:46:27 +0100310/*
311 * We can choose between IRQ based or polled IO.
312 * This needs to be called before omap_mcbsp_request().
313 */
314int omap_mcbsp_set_io_type(unsigned int id, omap_mcbsp_io_type_t io_type)
315{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300316 struct omap_mcbsp *mcbsp;
317
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300318 if (!omap_mcbsp_check_valid_id(id)) {
319 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
320 return -ENODEV;
321 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300322 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100323
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300324 spin_lock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100325
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300326 if (!mcbsp->free) {
327 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
328 mcbsp->id);
329 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100330 return -EINVAL;
331 }
332
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300333 mcbsp->io_type = io_type;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100334
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300335 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100336
337 return 0;
338}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300339EXPORT_SYMBOL(omap_mcbsp_set_io_type);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100340
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100341int omap_mcbsp_request(unsigned int id)
342{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300343 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100344 int err;
345
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300346 if (!omap_mcbsp_check_valid_id(id)) {
347 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
348 return -ENODEV;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100349 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300350 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300351
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300352 spin_lock(&mcbsp->lock);
353 if (!mcbsp->free) {
354 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
355 mcbsp->id);
356 spin_unlock(&mcbsp->lock);
Russell Kingb820ce42009-01-23 10:26:46 +0000357 return -EBUSY;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100358 }
359
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300360 mcbsp->free = 0;
361 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100362
Russell Kingb820ce42009-01-23 10:26:46 +0000363 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
364 mcbsp->pdata->ops->request(id);
365
366 clk_enable(mcbsp->iclk);
367 clk_enable(mcbsp->fclk);
368
Jarkko Nikula5a070552008-10-08 10:01:41 +0300369 /*
370 * Make sure that transmitter, receiver and sample-rate generator are
371 * not running before activating IRQs.
372 */
373 OMAP_MCBSP_WRITE(mcbsp->io_base, SPCR1, 0);
374 OMAP_MCBSP_WRITE(mcbsp->io_base, SPCR2, 0);
375
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300376 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100377 /* We need to get IRQs here */
Jarkko Nikula5a070552008-10-08 10:01:41 +0300378 init_completion(&mcbsp->tx_irq_completion);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300379 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
380 0, "McBSP", (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100381 if (err != 0) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300382 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
383 "for McBSP%d\n", mcbsp->tx_irq,
384 mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100385 return err;
386 }
387
Jarkko Nikula5a070552008-10-08 10:01:41 +0300388 init_completion(&mcbsp->rx_irq_completion);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300389 err = request_irq(mcbsp->rx_irq, omap_mcbsp_rx_irq_handler,
390 0, "McBSP", (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100391 if (err != 0) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300392 dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
393 "for McBSP%d\n", mcbsp->rx_irq,
394 mcbsp->id);
395 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100396 return err;
397 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100398 }
399
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100400 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100401}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300402EXPORT_SYMBOL(omap_mcbsp_request);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100403
404void omap_mcbsp_free(unsigned int id)
405{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300406 struct omap_mcbsp *mcbsp;
407
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300408 if (!omap_mcbsp_check_valid_id(id)) {
409 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100410 return;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100411 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300412 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100413
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300414 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
415 mcbsp->pdata->ops->free(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300416
Russell Kingb820ce42009-01-23 10:26:46 +0000417 clk_disable(mcbsp->fclk);
418 clk_disable(mcbsp->iclk);
419
420 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
421 /* Free IRQs */
422 free_irq(mcbsp->rx_irq, (void *)mcbsp);
423 free_irq(mcbsp->tx_irq, (void *)mcbsp);
424 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100425
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300426 spin_lock(&mcbsp->lock);
427 if (mcbsp->free) {
428 dev_err(mcbsp->dev, "McBSP%d was not reserved\n",
429 mcbsp->id);
430 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100431 return;
432 }
433
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300434 mcbsp->free = 1;
435 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100436}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300437EXPORT_SYMBOL(omap_mcbsp_free);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100438
439/*
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300440 * Here we start the McBSP, by enabling transmitter, receiver or both.
441 * If no transmitter or receiver is active prior calling, then sample-rate
442 * generator and frame sync are started.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100443 */
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300444void omap_mcbsp_start(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100445{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300446 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100447 void __iomem *io_base;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300448 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100449 u16 w;
450
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300451 if (!omap_mcbsp_check_valid_id(id)) {
452 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100453 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300454 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300455 mcbsp = id_to_mcbsp_ptr(id);
456 io_base = mcbsp->io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100457
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300458 mcbsp->rx_word_length = (OMAP_MCBSP_READ(io_base, RCR1) >> 5) & 0x7;
459 mcbsp->tx_word_length = (OMAP_MCBSP_READ(io_base, XCR1) >> 5) & 0x7;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100460
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300461 idle = !((OMAP_MCBSP_READ(io_base, SPCR2) |
462 OMAP_MCBSP_READ(io_base, SPCR1)) & 1);
463
464 if (idle) {
465 /* Start the sample generator */
466 w = OMAP_MCBSP_READ(io_base, SPCR2);
467 OMAP_MCBSP_WRITE(io_base, SPCR2, w | (1 << 6));
468 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100469
470 /* Enable transmitter and receiver */
471 w = OMAP_MCBSP_READ(io_base, SPCR2);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300472 OMAP_MCBSP_WRITE(io_base, SPCR2, w | (tx & 1));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100473
474 w = OMAP_MCBSP_READ(io_base, SPCR1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300475 OMAP_MCBSP_WRITE(io_base, SPCR1, w | (rx & 1));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100476
Eduardo Valentin44a63112009-08-20 16:18:09 +0300477 /*
478 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
479 * REVISIT: 100us may give enough time for two CLKSRG, however
480 * due to some unknown PM related, clock gating etc. reason it
481 * is now at 500us.
482 */
483 udelay(500);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100484
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300485 if (idle) {
486 /* Start frame sync */
487 w = OMAP_MCBSP_READ(io_base, SPCR2);
488 OMAP_MCBSP_WRITE(io_base, SPCR2, w | (1 << 7));
489 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100490
491 /* Dump McBSP Regs */
492 omap_mcbsp_dump_reg(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100493}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300494EXPORT_SYMBOL(omap_mcbsp_start);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100495
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300496void omap_mcbsp_stop(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100497{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300498 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100499 void __iomem *io_base;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300500 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100501 u16 w;
502
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300503 if (!omap_mcbsp_check_valid_id(id)) {
504 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100505 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300506 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100507
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300508 mcbsp = id_to_mcbsp_ptr(id);
509 io_base = mcbsp->io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100510
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300511 /* Reset transmitter */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100512 w = OMAP_MCBSP_READ(io_base, SPCR2);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300513 OMAP_MCBSP_WRITE(io_base, SPCR2, w & ~(tx & 1));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100514
515 /* Reset receiver */
516 w = OMAP_MCBSP_READ(io_base, SPCR1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300517 OMAP_MCBSP_WRITE(io_base, SPCR1, w & ~(rx & 1));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100518
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300519 idle = !((OMAP_MCBSP_READ(io_base, SPCR2) |
520 OMAP_MCBSP_READ(io_base, SPCR1)) & 1);
521
522 if (idle) {
523 /* Reset the sample rate generator */
524 w = OMAP_MCBSP_READ(io_base, SPCR2);
525 OMAP_MCBSP_WRITE(io_base, SPCR2, w & ~(1 << 6));
526 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100527}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300528EXPORT_SYMBOL(omap_mcbsp_stop);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100529
Eero Nurkkala9abea082009-08-20 16:18:07 +0300530void omap_mcbsp_xmit_enable(unsigned int id, u8 enable)
531{
532 struct omap_mcbsp *mcbsp;
533 void __iomem *io_base;
534 u16 w;
535
536 if (!(cpu_is_omap2430() || cpu_is_omap34xx()))
537 return;
538
539 if (!omap_mcbsp_check_valid_id(id)) {
540 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
541 return;
542 }
543
544 mcbsp = id_to_mcbsp_ptr(id);
545 io_base = mcbsp->io_base;
546
547 w = OMAP_MCBSP_READ(io_base, XCCR);
548
549 if (enable)
550 OMAP_MCBSP_WRITE(io_base, XCCR, w & ~(XDISABLE));
551 else
552 OMAP_MCBSP_WRITE(io_base, XCCR, w | XDISABLE);
553}
554EXPORT_SYMBOL(omap_mcbsp_xmit_enable);
555
556void omap_mcbsp_recv_enable(unsigned int id, u8 enable)
557{
558 struct omap_mcbsp *mcbsp;
559 void __iomem *io_base;
560 u16 w;
561
562 if (!(cpu_is_omap2430() || cpu_is_omap34xx()))
563 return;
564
565 if (!omap_mcbsp_check_valid_id(id)) {
566 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
567 return;
568 }
569
570 mcbsp = id_to_mcbsp_ptr(id);
571 io_base = mcbsp->io_base;
572
573 w = OMAP_MCBSP_READ(io_base, RCCR);
574
575 if (enable)
576 OMAP_MCBSP_WRITE(io_base, RCCR, w & ~(RDISABLE));
577 else
578 OMAP_MCBSP_WRITE(io_base, RCCR, w | RDISABLE);
579}
580EXPORT_SYMBOL(omap_mcbsp_recv_enable);
581
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100582/* polled mcbsp i/o operations */
583int omap_mcbsp_pollwrite(unsigned int id, u16 buf)
584{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300585 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100586 void __iomem *base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300587
588 if (!omap_mcbsp_check_valid_id(id)) {
589 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
590 return -ENODEV;
591 }
592
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300593 mcbsp = id_to_mcbsp_ptr(id);
594 base = mcbsp->io_base;
595
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100596 writew(buf, base + OMAP_MCBSP_REG_DXR1);
597 /* if frame sync error - clear the error */
598 if (readw(base + OMAP_MCBSP_REG_SPCR2) & XSYNC_ERR) {
599 /* clear error */
600 writew(readw(base + OMAP_MCBSP_REG_SPCR2) & (~XSYNC_ERR),
601 base + OMAP_MCBSP_REG_SPCR2);
602 /* resend */
603 return -1;
604 } else {
605 /* wait for transmit confirmation */
606 int attemps = 0;
607 while (!(readw(base + OMAP_MCBSP_REG_SPCR2) & XRDY)) {
608 if (attemps++ > 1000) {
609 writew(readw(base + OMAP_MCBSP_REG_SPCR2) &
610 (~XRST),
611 base + OMAP_MCBSP_REG_SPCR2);
612 udelay(10);
613 writew(readw(base + OMAP_MCBSP_REG_SPCR2) |
614 (XRST),
615 base + OMAP_MCBSP_REG_SPCR2);
616 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300617 dev_err(mcbsp->dev, "Could not write to"
618 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100619 return -2;
620 }
621 }
622 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300623
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100624 return 0;
625}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300626EXPORT_SYMBOL(omap_mcbsp_pollwrite);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100627
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300628int omap_mcbsp_pollread(unsigned int id, u16 *buf)
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100629{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300630 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100631 void __iomem *base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300632
633 if (!omap_mcbsp_check_valid_id(id)) {
634 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
635 return -ENODEV;
636 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300637 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300638
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300639 base = mcbsp->io_base;
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100640 /* if frame sync error - clear the error */
641 if (readw(base + OMAP_MCBSP_REG_SPCR1) & RSYNC_ERR) {
642 /* clear error */
643 writew(readw(base + OMAP_MCBSP_REG_SPCR1) & (~RSYNC_ERR),
644 base + OMAP_MCBSP_REG_SPCR1);
645 /* resend */
646 return -1;
647 } else {
648 /* wait for recieve confirmation */
649 int attemps = 0;
650 while (!(readw(base + OMAP_MCBSP_REG_SPCR1) & RRDY)) {
651 if (attemps++ > 1000) {
652 writew(readw(base + OMAP_MCBSP_REG_SPCR1) &
653 (~RRST),
654 base + OMAP_MCBSP_REG_SPCR1);
655 udelay(10);
656 writew(readw(base + OMAP_MCBSP_REG_SPCR1) |
657 (RRST),
658 base + OMAP_MCBSP_REG_SPCR1);
659 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300660 dev_err(mcbsp->dev, "Could not read from"
661 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100662 return -2;
663 }
664 }
665 }
666 *buf = readw(base + OMAP_MCBSP_REG_DRR1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300667
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100668 return 0;
669}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300670EXPORT_SYMBOL(omap_mcbsp_pollread);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100671
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100672/*
673 * IRQ based word transmission.
674 */
675void omap_mcbsp_xmit_word(unsigned int id, u32 word)
676{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300677 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100678 void __iomem *io_base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300679 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100680
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300681 if (!omap_mcbsp_check_valid_id(id)) {
682 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100683 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300684 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100685
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300686 mcbsp = id_to_mcbsp_ptr(id);
687 io_base = mcbsp->io_base;
688 word_length = mcbsp->tx_word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100689
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300690 wait_for_completion(&mcbsp->tx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100691
692 if (word_length > OMAP_MCBSP_WORD_16)
693 OMAP_MCBSP_WRITE(io_base, DXR2, word >> 16);
694 OMAP_MCBSP_WRITE(io_base, DXR1, word & 0xffff);
695}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300696EXPORT_SYMBOL(omap_mcbsp_xmit_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100697
698u32 omap_mcbsp_recv_word(unsigned int id)
699{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300700 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100701 void __iomem *io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100702 u16 word_lsb, word_msb = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300703 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100704
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300705 if (!omap_mcbsp_check_valid_id(id)) {
706 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
707 return -ENODEV;
708 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300709 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100710
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300711 word_length = mcbsp->rx_word_length;
712 io_base = mcbsp->io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100713
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300714 wait_for_completion(&mcbsp->rx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100715
716 if (word_length > OMAP_MCBSP_WORD_16)
717 word_msb = OMAP_MCBSP_READ(io_base, DRR2);
718 word_lsb = OMAP_MCBSP_READ(io_base, DRR1);
719
720 return (word_lsb | (word_msb << 16));
721}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300722EXPORT_SYMBOL(omap_mcbsp_recv_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100723
Tony Lindgren120db2c2006-04-02 17:46:27 +0100724int omap_mcbsp_spi_master_xmit_word_poll(unsigned int id, u32 word)
725{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300726 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100727 void __iomem *io_base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300728 omap_mcbsp_word_length tx_word_length;
729 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100730 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
731
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300732 if (!omap_mcbsp_check_valid_id(id)) {
733 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
734 return -ENODEV;
735 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300736 mcbsp = id_to_mcbsp_ptr(id);
737 io_base = mcbsp->io_base;
738 tx_word_length = mcbsp->tx_word_length;
739 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300740
Tony Lindgren120db2c2006-04-02 17:46:27 +0100741 if (tx_word_length != rx_word_length)
742 return -EINVAL;
743
744 /* First we wait for the transmitter to be ready */
745 spcr2 = OMAP_MCBSP_READ(io_base, SPCR2);
746 while (!(spcr2 & XRDY)) {
747 spcr2 = OMAP_MCBSP_READ(io_base, SPCR2);
748 if (attempts++ > 1000) {
749 /* We must reset the transmitter */
750 OMAP_MCBSP_WRITE(io_base, SPCR2, spcr2 & (~XRST));
751 udelay(10);
752 OMAP_MCBSP_WRITE(io_base, SPCR2, spcr2 | XRST);
753 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300754 dev_err(mcbsp->dev, "McBSP%d transmitter not "
755 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100756 return -EAGAIN;
757 }
758 }
759
760 /* Now we can push the data */
761 if (tx_word_length > OMAP_MCBSP_WORD_16)
762 OMAP_MCBSP_WRITE(io_base, DXR2, word >> 16);
763 OMAP_MCBSP_WRITE(io_base, DXR1, word & 0xffff);
764
765 /* We wait for the receiver to be ready */
766 spcr1 = OMAP_MCBSP_READ(io_base, SPCR1);
767 while (!(spcr1 & RRDY)) {
768 spcr1 = OMAP_MCBSP_READ(io_base, SPCR1);
769 if (attempts++ > 1000) {
770 /* We must reset the receiver */
771 OMAP_MCBSP_WRITE(io_base, SPCR1, spcr1 & (~RRST));
772 udelay(10);
773 OMAP_MCBSP_WRITE(io_base, SPCR1, spcr1 | RRST);
774 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300775 dev_err(mcbsp->dev, "McBSP%d receiver not "
776 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100777 return -EAGAIN;
778 }
779 }
780
781 /* Receiver is ready, let's read the dummy data */
782 if (rx_word_length > OMAP_MCBSP_WORD_16)
783 word_msb = OMAP_MCBSP_READ(io_base, DRR2);
784 word_lsb = OMAP_MCBSP_READ(io_base, DRR1);
785
786 return 0;
787}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300788EXPORT_SYMBOL(omap_mcbsp_spi_master_xmit_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100789
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300790int omap_mcbsp_spi_master_recv_word_poll(unsigned int id, u32 *word)
Tony Lindgren120db2c2006-04-02 17:46:27 +0100791{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300792 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100793 u32 clock_word = 0;
794 void __iomem *io_base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300795 omap_mcbsp_word_length tx_word_length;
796 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100797 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
798
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300799 if (!omap_mcbsp_check_valid_id(id)) {
800 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
801 return -ENODEV;
802 }
803
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300804 mcbsp = id_to_mcbsp_ptr(id);
805 io_base = mcbsp->io_base;
806
807 tx_word_length = mcbsp->tx_word_length;
808 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300809
Tony Lindgren120db2c2006-04-02 17:46:27 +0100810 if (tx_word_length != rx_word_length)
811 return -EINVAL;
812
813 /* First we wait for the transmitter to be ready */
814 spcr2 = OMAP_MCBSP_READ(io_base, SPCR2);
815 while (!(spcr2 & XRDY)) {
816 spcr2 = OMAP_MCBSP_READ(io_base, SPCR2);
817 if (attempts++ > 1000) {
818 /* We must reset the transmitter */
819 OMAP_MCBSP_WRITE(io_base, SPCR2, spcr2 & (~XRST));
820 udelay(10);
821 OMAP_MCBSP_WRITE(io_base, SPCR2, spcr2 | XRST);
822 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300823 dev_err(mcbsp->dev, "McBSP%d transmitter not "
824 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100825 return -EAGAIN;
826 }
827 }
828
829 /* We first need to enable the bus clock */
830 if (tx_word_length > OMAP_MCBSP_WORD_16)
831 OMAP_MCBSP_WRITE(io_base, DXR2, clock_word >> 16);
832 OMAP_MCBSP_WRITE(io_base, DXR1, clock_word & 0xffff);
833
834 /* We wait for the receiver to be ready */
835 spcr1 = OMAP_MCBSP_READ(io_base, SPCR1);
836 while (!(spcr1 & RRDY)) {
837 spcr1 = OMAP_MCBSP_READ(io_base, SPCR1);
838 if (attempts++ > 1000) {
839 /* We must reset the receiver */
840 OMAP_MCBSP_WRITE(io_base, SPCR1, spcr1 & (~RRST));
841 udelay(10);
842 OMAP_MCBSP_WRITE(io_base, SPCR1, spcr1 | RRST);
843 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300844 dev_err(mcbsp->dev, "McBSP%d receiver not "
845 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100846 return -EAGAIN;
847 }
848 }
849
850 /* Receiver is ready, there is something for us */
851 if (rx_word_length > OMAP_MCBSP_WORD_16)
852 word_msb = OMAP_MCBSP_READ(io_base, DRR2);
853 word_lsb = OMAP_MCBSP_READ(io_base, DRR1);
854
855 word[0] = (word_lsb | (word_msb << 16));
856
857 return 0;
858}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300859EXPORT_SYMBOL(omap_mcbsp_spi_master_recv_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100860
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100861/*
862 * Simple DMA based buffer rx/tx routines.
863 * Nothing fancy, just a single buffer tx/rx through DMA.
864 * The DMA resources are released once the transfer is done.
865 * For anything fancier, you should use your own customized DMA
866 * routines and callbacks.
867 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300868int omap_mcbsp_xmit_buffer(unsigned int id, dma_addr_t buffer,
869 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100870{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300871 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100872 int dma_tx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100873 int src_port = 0;
874 int dest_port = 0;
875 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100876
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300877 if (!omap_mcbsp_check_valid_id(id)) {
878 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
879 return -ENODEV;
880 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300881 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100882
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300883 if (omap_request_dma(mcbsp->dma_tx_sync, "McBSP TX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300884 omap_mcbsp_tx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300885 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300886 &dma_tx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300887 dev_err(mcbsp->dev, " Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300888 "McBSP%d TX. Trying IRQ based TX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300889 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100890 return -EAGAIN;
891 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300892 mcbsp->dma_tx_lch = dma_tx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100893
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300894 dev_err(mcbsp->dev, "McBSP%d TX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300895 dma_tx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100896
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300897 init_completion(&mcbsp->tx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100898
Tony Lindgren120db2c2006-04-02 17:46:27 +0100899 if (cpu_class_is_omap1()) {
900 src_port = OMAP_DMA_PORT_TIPB;
901 dest_port = OMAP_DMA_PORT_EMIFF;
902 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300903 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300904 sync_dev = mcbsp->dma_tx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100905
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300906 omap_set_dma_transfer_params(mcbsp->dma_tx_lch,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100907 OMAP_DMA_DATA_TYPE_S16,
908 length >> 1, 1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000909 OMAP_DMA_SYNC_ELEMENT,
Tony Lindgren120db2c2006-04-02 17:46:27 +0100910 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100911
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300912 omap_set_dma_dest_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +0100913 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100914 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300915 mcbsp->phys_base + OMAP_MCBSP_REG_DXR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000916 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100917
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300918 omap_set_dma_src_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +0100919 dest_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100920 OMAP_DMA_AMODE_POST_INC,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000921 buffer,
922 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100923
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300924 omap_start_dma(mcbsp->dma_tx_lch);
925 wait_for_completion(&mcbsp->tx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300926
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100927 return 0;
928}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300929EXPORT_SYMBOL(omap_mcbsp_xmit_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100930
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300931int omap_mcbsp_recv_buffer(unsigned int id, dma_addr_t buffer,
932 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100933{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300934 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100935 int dma_rx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100936 int src_port = 0;
937 int dest_port = 0;
938 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100939
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300940 if (!omap_mcbsp_check_valid_id(id)) {
941 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
942 return -ENODEV;
943 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300944 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100945
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300946 if (omap_request_dma(mcbsp->dma_rx_sync, "McBSP RX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300947 omap_mcbsp_rx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300948 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300949 &dma_rx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300950 dev_err(mcbsp->dev, "Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300951 "McBSP%d RX. Trying IRQ based RX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300952 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100953 return -EAGAIN;
954 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300955 mcbsp->dma_rx_lch = dma_rx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100956
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300957 dev_err(mcbsp->dev, "McBSP%d RX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300958 dma_rx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100959
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300960 init_completion(&mcbsp->rx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100961
Tony Lindgren120db2c2006-04-02 17:46:27 +0100962 if (cpu_class_is_omap1()) {
963 src_port = OMAP_DMA_PORT_TIPB;
964 dest_port = OMAP_DMA_PORT_EMIFF;
965 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300966 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300967 sync_dev = mcbsp->dma_rx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100968
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300969 omap_set_dma_transfer_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300970 OMAP_DMA_DATA_TYPE_S16,
971 length >> 1, 1,
972 OMAP_DMA_SYNC_ELEMENT,
973 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100974
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300975 omap_set_dma_src_params(mcbsp->dma_rx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +0100976 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100977 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300978 mcbsp->phys_base + OMAP_MCBSP_REG_DRR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000979 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100980
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300981 omap_set_dma_dest_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300982 dest_port,
983 OMAP_DMA_AMODE_POST_INC,
984 buffer,
985 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100986
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300987 omap_start_dma(mcbsp->dma_rx_lch);
988 wait_for_completion(&mcbsp->rx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300989
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100990 return 0;
991}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300992EXPORT_SYMBOL(omap_mcbsp_recv_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100993
994/*
995 * SPI wrapper.
996 * Since SPI setup is much simpler than the generic McBSP one,
997 * this wrapper just need an omap_mcbsp_spi_cfg structure as an input.
998 * Once this is done, you can call omap_mcbsp_start().
999 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001000void omap_mcbsp_set_spi_mode(unsigned int id,
1001 const struct omap_mcbsp_spi_cfg *spi_cfg)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001002{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001003 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001004 struct omap_mcbsp_reg_cfg mcbsp_cfg;
1005
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001006 if (!omap_mcbsp_check_valid_id(id)) {
1007 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001008 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001009 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001010 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001011
1012 memset(&mcbsp_cfg, 0, sizeof(struct omap_mcbsp_reg_cfg));
1013
1014 /* SPI has only one frame */
1015 mcbsp_cfg.rcr1 |= (RWDLEN1(spi_cfg->word_length) | RFRLEN1(0));
1016 mcbsp_cfg.xcr1 |= (XWDLEN1(spi_cfg->word_length) | XFRLEN1(0));
1017
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001018 /* Clock stop mode */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001019 if (spi_cfg->clk_stp_mode == OMAP_MCBSP_CLK_STP_MODE_NO_DELAY)
1020 mcbsp_cfg.spcr1 |= (1 << 12);
1021 else
1022 mcbsp_cfg.spcr1 |= (3 << 11);
1023
1024 /* Set clock parities */
1025 if (spi_cfg->rx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1026 mcbsp_cfg.pcr0 |= CLKRP;
1027 else
1028 mcbsp_cfg.pcr0 &= ~CLKRP;
1029
1030 if (spi_cfg->tx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1031 mcbsp_cfg.pcr0 &= ~CLKXP;
1032 else
1033 mcbsp_cfg.pcr0 |= CLKXP;
1034
1035 /* Set SCLKME to 0 and CLKSM to 1 */
1036 mcbsp_cfg.pcr0 &= ~SCLKME;
1037 mcbsp_cfg.srgr2 |= CLKSM;
1038
1039 /* Set FSXP */
1040 if (spi_cfg->fsx_polarity == OMAP_MCBSP_FS_ACTIVE_HIGH)
1041 mcbsp_cfg.pcr0 &= ~FSXP;
1042 else
1043 mcbsp_cfg.pcr0 |= FSXP;
1044
1045 if (spi_cfg->spi_mode == OMAP_MCBSP_SPI_MASTER) {
1046 mcbsp_cfg.pcr0 |= CLKXM;
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001047 mcbsp_cfg.srgr1 |= CLKGDV(spi_cfg->clk_div - 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001048 mcbsp_cfg.pcr0 |= FSXM;
1049 mcbsp_cfg.srgr2 &= ~FSGM;
1050 mcbsp_cfg.xcr2 |= XDATDLY(1);
1051 mcbsp_cfg.rcr2 |= RDATDLY(1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001052 } else {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001053 mcbsp_cfg.pcr0 &= ~CLKXM;
1054 mcbsp_cfg.srgr1 |= CLKGDV(1);
1055 mcbsp_cfg.pcr0 &= ~FSXM;
1056 mcbsp_cfg.xcr2 &= ~XDATDLY(3);
1057 mcbsp_cfg.rcr2 &= ~RDATDLY(3);
1058 }
1059
1060 mcbsp_cfg.xcr2 &= ~XPHASE;
1061 mcbsp_cfg.rcr2 &= ~RPHASE;
1062
1063 omap_mcbsp_config(id, &mcbsp_cfg);
1064}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001065EXPORT_SYMBOL(omap_mcbsp_set_spi_mode);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001066
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001067#ifdef CONFIG_ARCH_OMAP34XX
1068#define max_thres(m) (mcbsp->pdata->buffer_size)
1069#define valid_threshold(m, val) ((val) <= max_thres(m))
1070#define THRESHOLD_PROP_BUILDER(prop) \
1071static ssize_t prop##_show(struct device *dev, \
1072 struct device_attribute *attr, char *buf) \
1073{ \
1074 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1075 \
1076 return sprintf(buf, "%u\n", mcbsp->prop); \
1077} \
1078 \
1079static ssize_t prop##_store(struct device *dev, \
1080 struct device_attribute *attr, \
1081 const char *buf, size_t size) \
1082{ \
1083 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1084 unsigned long val; \
1085 int status; \
1086 \
1087 status = strict_strtoul(buf, 0, &val); \
1088 if (status) \
1089 return status; \
1090 \
1091 if (!valid_threshold(mcbsp, val)) \
1092 return -EDOM; \
1093 \
1094 mcbsp->prop = val; \
1095 return size; \
1096} \
1097 \
1098static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
1099
1100THRESHOLD_PROP_BUILDER(max_tx_thres);
1101THRESHOLD_PROP_BUILDER(max_rx_thres);
1102
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001103static ssize_t dma_op_mode_show(struct device *dev,
1104 struct device_attribute *attr, char *buf)
1105{
1106 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1107 int dma_op_mode;
1108
1109 spin_lock_irq(&mcbsp->lock);
1110 dma_op_mode = mcbsp->dma_op_mode;
1111 spin_unlock_irq(&mcbsp->lock);
1112
1113 return sprintf(buf, "current mode: %d\n"
1114 "possible mode values are:\n"
1115 "%d - %s\n"
1116 "%d - %s\n"
1117 "%d - %s\n",
1118 dma_op_mode,
1119 MCBSP_DMA_MODE_ELEMENT, "element mode",
1120 MCBSP_DMA_MODE_THRESHOLD, "threshold mode",
1121 MCBSP_DMA_MODE_FRAME, "frame mode");
1122}
1123
1124static ssize_t dma_op_mode_store(struct device *dev,
1125 struct device_attribute *attr,
1126 const char *buf, size_t size)
1127{
1128 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1129 unsigned long val;
1130 int status;
1131
1132 status = strict_strtoul(buf, 0, &val);
1133 if (status)
1134 return status;
1135
1136 spin_lock_irq(&mcbsp->lock);
1137
1138 if (!mcbsp->free) {
1139 size = -EBUSY;
1140 goto unlock;
1141 }
1142
1143 if (val > MCBSP_DMA_MODE_FRAME || val < MCBSP_DMA_MODE_ELEMENT) {
1144 size = -EINVAL;
1145 goto unlock;
1146 }
1147
1148 mcbsp->dma_op_mode = val;
1149
1150unlock:
1151 spin_unlock_irq(&mcbsp->lock);
1152
1153 return size;
1154}
1155
1156static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
1157
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001158static const struct attribute *additional_attrs[] = {
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001159 &dev_attr_max_tx_thres.attr,
1160 &dev_attr_max_rx_thres.attr,
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001161 &dev_attr_dma_op_mode.attr,
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001162 NULL,
1163};
1164
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001165static const struct attribute_group additional_attr_group = {
1166 .attrs = (struct attribute **)additional_attrs,
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001167};
1168
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001169static inline int __devinit omap_additional_add(struct device *dev)
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001170{
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001171 return sysfs_create_group(&dev->kobj, &additional_attr_group);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001172}
1173
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001174static inline void __devexit omap_additional_remove(struct device *dev)
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001175{
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001176 sysfs_remove_group(&dev->kobj, &additional_attr_group);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001177}
1178
1179static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
1180{
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001181 mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001182 if (cpu_is_omap34xx()) {
1183 mcbsp->max_tx_thres = max_thres(mcbsp);
1184 mcbsp->max_rx_thres = max_thres(mcbsp);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001185 /*
1186 * REVISIT: Set dmap_op_mode to THRESHOLD as default
1187 * for mcbsp2 instances.
1188 */
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001189 if (omap_additional_add(mcbsp->dev))
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001190 dev_warn(mcbsp->dev,
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001191 "Unable to create additional controls\n");
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001192 } else {
1193 mcbsp->max_tx_thres = -EINVAL;
1194 mcbsp->max_rx_thres = -EINVAL;
1195 }
1196}
1197
1198static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp)
1199{
1200 if (cpu_is_omap34xx())
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001201 omap_additional_remove(mcbsp->dev);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001202}
1203#else
1204static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {}
1205static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp) {}
1206#endif /* CONFIG_ARCH_OMAP34XX */
1207
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001208/*
1209 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
1210 * 730 has only 2 McBSP, and both of them are MPU peripherals.
1211 */
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001212static int __devinit omap_mcbsp_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001213{
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001214 struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001215 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001216 int id = pdev->id - 1;
1217 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001218
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001219 if (!pdata) {
1220 dev_err(&pdev->dev, "McBSP device initialized without"
1221 "platform data\n");
1222 ret = -EINVAL;
1223 goto exit;
1224 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001225
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001226 dev_dbg(&pdev->dev, "Initializing OMAP McBSP (%d).\n", pdev->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001227
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001228 if (id >= omap_mcbsp_count) {
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001229 dev_err(&pdev->dev, "Invalid McBSP device id (%d)\n", id);
1230 ret = -EINVAL;
1231 goto exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001232 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001233
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001234 mcbsp = kzalloc(sizeof(struct omap_mcbsp), GFP_KERNEL);
1235 if (!mcbsp) {
1236 ret = -ENOMEM;
1237 goto exit;
1238 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001239
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001240 spin_lock_init(&mcbsp->lock);
1241 mcbsp->id = id + 1;
1242 mcbsp->free = 1;
1243 mcbsp->dma_tx_lch = -1;
1244 mcbsp->dma_rx_lch = -1;
1245
1246 mcbsp->phys_base = pdata->phys_base;
1247 mcbsp->io_base = ioremap(pdata->phys_base, SZ_4K);
1248 if (!mcbsp->io_base) {
Russell Kingd592dd12008-09-04 14:25:42 +01001249 ret = -ENOMEM;
1250 goto err_ioremap;
1251 }
1252
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001253 /* Default I/O is IRQ based */
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001254 mcbsp->io_type = OMAP_MCBSP_IRQ_IO;
1255 mcbsp->tx_irq = pdata->tx_irq;
1256 mcbsp->rx_irq = pdata->rx_irq;
1257 mcbsp->dma_rx_sync = pdata->dma_rx_sync;
1258 mcbsp->dma_tx_sync = pdata->dma_tx_sync;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001259
Russell Kingb820ce42009-01-23 10:26:46 +00001260 mcbsp->iclk = clk_get(&pdev->dev, "ick");
1261 if (IS_ERR(mcbsp->iclk)) {
1262 ret = PTR_ERR(mcbsp->iclk);
1263 dev_err(&pdev->dev, "unable to get ick: %d\n", ret);
1264 goto err_iclk;
1265 }
Stanley.Miao06151152009-01-29 08:57:12 -08001266
Russell Kingb820ce42009-01-23 10:26:46 +00001267 mcbsp->fclk = clk_get(&pdev->dev, "fck");
1268 if (IS_ERR(mcbsp->fclk)) {
1269 ret = PTR_ERR(mcbsp->fclk);
1270 dev_err(&pdev->dev, "unable to get fck: %d\n", ret);
1271 goto err_fclk;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001272 }
1273
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001274 mcbsp->pdata = pdata;
1275 mcbsp->dev = &pdev->dev;
Russell Kingb820ce42009-01-23 10:26:46 +00001276 mcbsp_ptr[id] = mcbsp;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001277 platform_set_drvdata(pdev, mcbsp);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001278
1279 /* Initialize mcbsp properties for OMAP34XX if needed / applicable */
1280 omap34xx_device_init(mcbsp);
1281
Russell Kingd592dd12008-09-04 14:25:42 +01001282 return 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001283
Russell Kingb820ce42009-01-23 10:26:46 +00001284err_fclk:
1285 clk_put(mcbsp->iclk);
1286err_iclk:
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001287 iounmap(mcbsp->io_base);
Russell Kingd592dd12008-09-04 14:25:42 +01001288err_ioremap:
Russell Kingb820ce42009-01-23 10:26:46 +00001289 kfree(mcbsp);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001290exit:
1291 return ret;
1292}
1293
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001294static int __devexit omap_mcbsp_remove(struct platform_device *pdev)
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001295{
1296 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
1297
1298 platform_set_drvdata(pdev, NULL);
1299 if (mcbsp) {
1300
1301 if (mcbsp->pdata && mcbsp->pdata->ops &&
1302 mcbsp->pdata->ops->free)
1303 mcbsp->pdata->ops->free(mcbsp->id);
1304
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001305 omap34xx_device_exit(mcbsp);
1306
Russell Kingb820ce42009-01-23 10:26:46 +00001307 clk_disable(mcbsp->fclk);
1308 clk_disable(mcbsp->iclk);
1309 clk_put(mcbsp->fclk);
1310 clk_put(mcbsp->iclk);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001311
Russell Kingd592dd12008-09-04 14:25:42 +01001312 iounmap(mcbsp->io_base);
1313
Russell Kingb820ce42009-01-23 10:26:46 +00001314 mcbsp->fclk = NULL;
1315 mcbsp->iclk = NULL;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001316 mcbsp->free = 0;
1317 mcbsp->dev = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001318 }
1319
1320 return 0;
1321}
1322
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001323static struct platform_driver omap_mcbsp_driver = {
1324 .probe = omap_mcbsp_probe,
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001325 .remove = __devexit_p(omap_mcbsp_remove),
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001326 .driver = {
1327 .name = "omap-mcbsp",
1328 },
1329};
1330
1331int __init omap_mcbsp_init(void)
1332{
1333 /* Register the McBSP driver */
1334 return platform_driver_register(&omap_mcbsp_driver);
1335}