blob: f2401a831f991f3f2a27a1705ae32c14190b9bbc [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;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010094
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +030095 dev_dbg(mcbsp_tx->dev, "TX IRQ callback : 0x%x\n",
96 OMAP_MCBSP_READ(mcbsp_tx->io_base, SPCR2));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010097
98 complete(&mcbsp_tx->tx_irq_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +030099
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100100 return IRQ_HANDLED;
101}
102
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700103static irqreturn_t omap_mcbsp_rx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100104{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400105 struct omap_mcbsp *mcbsp_rx = dev_id;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100106
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300107 dev_dbg(mcbsp_rx->dev, "RX IRQ callback : 0x%x\n",
108 OMAP_MCBSP_READ(mcbsp_rx->io_base, SPCR2));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100109
110 complete(&mcbsp_rx->rx_irq_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300111
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100112 return IRQ_HANDLED;
113}
114
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100115static void omap_mcbsp_tx_dma_callback(int lch, u16 ch_status, void *data)
116{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400117 struct omap_mcbsp *mcbsp_dma_tx = data;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100118
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300119 dev_dbg(mcbsp_dma_tx->dev, "TX DMA callback : 0x%x\n",
120 OMAP_MCBSP_READ(mcbsp_dma_tx->io_base, SPCR2));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100121
122 /* We can free the channels */
123 omap_free_dma(mcbsp_dma_tx->dma_tx_lch);
124 mcbsp_dma_tx->dma_tx_lch = -1;
125
126 complete(&mcbsp_dma_tx->tx_dma_completion);
127}
128
129static void omap_mcbsp_rx_dma_callback(int lch, u16 ch_status, void *data)
130{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400131 struct omap_mcbsp *mcbsp_dma_rx = data;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100132
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300133 dev_dbg(mcbsp_dma_rx->dev, "RX DMA callback : 0x%x\n",
134 OMAP_MCBSP_READ(mcbsp_dma_rx->io_base, SPCR2));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100135
136 /* We can free the channels */
137 omap_free_dma(mcbsp_dma_rx->dma_rx_lch);
138 mcbsp_dma_rx->dma_rx_lch = -1;
139
140 complete(&mcbsp_dma_rx->rx_dma_completion);
141}
142
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100143/*
144 * omap_mcbsp_config simply write a config to the
145 * appropriate McBSP.
146 * You either call this function or set the McBSP registers
147 * by yourself before calling omap_mcbsp_start().
148 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300149void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg *config)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100150{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300151 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100152 void __iomem *io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100153
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300154 if (!omap_mcbsp_check_valid_id(id)) {
155 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
156 return;
157 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300158 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300159
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300160 io_base = mcbsp->io_base;
161 dev_dbg(mcbsp->dev, "Configuring McBSP%d phys_base: 0x%08lx\n",
162 mcbsp->id, mcbsp->phys_base);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100163
164 /* We write the given config */
165 OMAP_MCBSP_WRITE(io_base, SPCR2, config->spcr2);
166 OMAP_MCBSP_WRITE(io_base, SPCR1, config->spcr1);
167 OMAP_MCBSP_WRITE(io_base, RCR2, config->rcr2);
168 OMAP_MCBSP_WRITE(io_base, RCR1, config->rcr1);
169 OMAP_MCBSP_WRITE(io_base, XCR2, config->xcr2);
170 OMAP_MCBSP_WRITE(io_base, XCR1, config->xcr1);
171 OMAP_MCBSP_WRITE(io_base, SRGR2, config->srgr2);
172 OMAP_MCBSP_WRITE(io_base, SRGR1, config->srgr1);
173 OMAP_MCBSP_WRITE(io_base, MCR2, config->mcr2);
174 OMAP_MCBSP_WRITE(io_base, MCR1, config->mcr1);
175 OMAP_MCBSP_WRITE(io_base, PCR0, config->pcr0);
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200176 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
177 OMAP_MCBSP_WRITE(io_base, XCCR, config->xccr);
178 OMAP_MCBSP_WRITE(io_base, RCCR, config->rccr);
179 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100180}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300181EXPORT_SYMBOL(omap_mcbsp_config);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100182
Tony Lindgren120db2c2006-04-02 17:46:27 +0100183/*
184 * We can choose between IRQ based or polled IO.
185 * This needs to be called before omap_mcbsp_request().
186 */
187int omap_mcbsp_set_io_type(unsigned int id, omap_mcbsp_io_type_t io_type)
188{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300189 struct omap_mcbsp *mcbsp;
190
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300191 if (!omap_mcbsp_check_valid_id(id)) {
192 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
193 return -ENODEV;
194 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300195 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100196
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300197 spin_lock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100198
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300199 if (!mcbsp->free) {
200 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
201 mcbsp->id);
202 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100203 return -EINVAL;
204 }
205
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300206 mcbsp->io_type = io_type;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100207
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300208 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100209
210 return 0;
211}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300212EXPORT_SYMBOL(omap_mcbsp_set_io_type);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100213
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100214int omap_mcbsp_request(unsigned int id)
215{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300216 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100217 int err;
218
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300219 if (!omap_mcbsp_check_valid_id(id)) {
220 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
221 return -ENODEV;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100222 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300223 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300224
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300225 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
226 mcbsp->pdata->ops->request(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300227
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300228 clk_enable(mcbsp->clk);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100229
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300230 spin_lock(&mcbsp->lock);
231 if (!mcbsp->free) {
232 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
233 mcbsp->id);
234 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100235 return -1;
236 }
237
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300238 mcbsp->free = 0;
239 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100240
Jarkko Nikula5a070552008-10-08 10:01:41 +0300241 /*
242 * Make sure that transmitter, receiver and sample-rate generator are
243 * not running before activating IRQs.
244 */
245 OMAP_MCBSP_WRITE(mcbsp->io_base, SPCR1, 0);
246 OMAP_MCBSP_WRITE(mcbsp->io_base, SPCR2, 0);
247
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300248 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100249 /* We need to get IRQs here */
Jarkko Nikula5a070552008-10-08 10:01:41 +0300250 init_completion(&mcbsp->tx_irq_completion);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300251 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
252 0, "McBSP", (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100253 if (err != 0) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300254 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
255 "for McBSP%d\n", mcbsp->tx_irq,
256 mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100257 return err;
258 }
259
Jarkko Nikula5a070552008-10-08 10:01:41 +0300260 init_completion(&mcbsp->rx_irq_completion);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300261 err = request_irq(mcbsp->rx_irq, omap_mcbsp_rx_irq_handler,
262 0, "McBSP", (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100263 if (err != 0) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300264 dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
265 "for McBSP%d\n", mcbsp->rx_irq,
266 mcbsp->id);
267 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100268 return err;
269 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100270 }
271
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100272 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100273}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300274EXPORT_SYMBOL(omap_mcbsp_request);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100275
276void omap_mcbsp_free(unsigned int id)
277{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300278 struct omap_mcbsp *mcbsp;
279
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300280 if (!omap_mcbsp_check_valid_id(id)) {
281 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100282 return;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100283 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300284 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100285
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300286 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
287 mcbsp->pdata->ops->free(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300288
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300289 clk_disable(mcbsp->clk);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100290
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300291 spin_lock(&mcbsp->lock);
292 if (mcbsp->free) {
293 dev_err(mcbsp->dev, "McBSP%d was not reserved\n",
294 mcbsp->id);
295 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100296 return;
297 }
298
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300299 mcbsp->free = 1;
300 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100301
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300302 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100303 /* Free IRQs */
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300304 free_irq(mcbsp->rx_irq, (void *)mcbsp);
305 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100306 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100307}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300308EXPORT_SYMBOL(omap_mcbsp_free);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100309
310/*
311 * Here we start the McBSP, by enabling the sample
312 * generator, both transmitter and receivers,
313 * and the frame sync.
314 */
315void omap_mcbsp_start(unsigned int id)
316{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300317 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100318 void __iomem *io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100319 u16 w;
320
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300321 if (!omap_mcbsp_check_valid_id(id)) {
322 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100323 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300324 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300325 mcbsp = id_to_mcbsp_ptr(id);
326 io_base = mcbsp->io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100327
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300328 mcbsp->rx_word_length = (OMAP_MCBSP_READ(io_base, RCR1) >> 5) & 0x7;
329 mcbsp->tx_word_length = (OMAP_MCBSP_READ(io_base, XCR1) >> 5) & 0x7;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100330
331 /* Start the sample generator */
332 w = OMAP_MCBSP_READ(io_base, SPCR2);
333 OMAP_MCBSP_WRITE(io_base, SPCR2, w | (1 << 6));
334
335 /* Enable transmitter and receiver */
336 w = OMAP_MCBSP_READ(io_base, SPCR2);
337 OMAP_MCBSP_WRITE(io_base, SPCR2, w | 1);
338
339 w = OMAP_MCBSP_READ(io_base, SPCR1);
340 OMAP_MCBSP_WRITE(io_base, SPCR1, w | 1);
341
342 udelay(100);
343
344 /* Start frame sync */
345 w = OMAP_MCBSP_READ(io_base, SPCR2);
346 OMAP_MCBSP_WRITE(io_base, SPCR2, w | (1 << 7));
347
348 /* Dump McBSP Regs */
349 omap_mcbsp_dump_reg(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100350}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300351EXPORT_SYMBOL(omap_mcbsp_start);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100352
353void omap_mcbsp_stop(unsigned int id)
354{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300355 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100356 void __iomem *io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100357 u16 w;
358
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300359 if (!omap_mcbsp_check_valid_id(id)) {
360 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100361 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300362 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100363
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300364 mcbsp = id_to_mcbsp_ptr(id);
365 io_base = mcbsp->io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100366
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300367 /* Reset transmitter */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100368 w = OMAP_MCBSP_READ(io_base, SPCR2);
369 OMAP_MCBSP_WRITE(io_base, SPCR2, w & ~(1));
370
371 /* Reset receiver */
372 w = OMAP_MCBSP_READ(io_base, SPCR1);
373 OMAP_MCBSP_WRITE(io_base, SPCR1, w & ~(1));
374
375 /* Reset the sample rate generator */
376 w = OMAP_MCBSP_READ(io_base, SPCR2);
377 OMAP_MCBSP_WRITE(io_base, SPCR2, w & ~(1 << 6));
378}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300379EXPORT_SYMBOL(omap_mcbsp_stop);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100380
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100381/* polled mcbsp i/o operations */
382int omap_mcbsp_pollwrite(unsigned int id, u16 buf)
383{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300384 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100385 void __iomem *base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300386
387 if (!omap_mcbsp_check_valid_id(id)) {
388 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
389 return -ENODEV;
390 }
391
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300392 mcbsp = id_to_mcbsp_ptr(id);
393 base = mcbsp->io_base;
394
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100395 writew(buf, base + OMAP_MCBSP_REG_DXR1);
396 /* if frame sync error - clear the error */
397 if (readw(base + OMAP_MCBSP_REG_SPCR2) & XSYNC_ERR) {
398 /* clear error */
399 writew(readw(base + OMAP_MCBSP_REG_SPCR2) & (~XSYNC_ERR),
400 base + OMAP_MCBSP_REG_SPCR2);
401 /* resend */
402 return -1;
403 } else {
404 /* wait for transmit confirmation */
405 int attemps = 0;
406 while (!(readw(base + OMAP_MCBSP_REG_SPCR2) & XRDY)) {
407 if (attemps++ > 1000) {
408 writew(readw(base + OMAP_MCBSP_REG_SPCR2) &
409 (~XRST),
410 base + OMAP_MCBSP_REG_SPCR2);
411 udelay(10);
412 writew(readw(base + OMAP_MCBSP_REG_SPCR2) |
413 (XRST),
414 base + OMAP_MCBSP_REG_SPCR2);
415 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300416 dev_err(mcbsp->dev, "Could not write to"
417 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100418 return -2;
419 }
420 }
421 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300422
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100423 return 0;
424}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300425EXPORT_SYMBOL(omap_mcbsp_pollwrite);
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100426
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300427int omap_mcbsp_pollread(unsigned int id, u16 *buf)
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100428{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300429 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100430 void __iomem *base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300431
432 if (!omap_mcbsp_check_valid_id(id)) {
433 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
434 return -ENODEV;
435 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300436 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300437
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300438 base = mcbsp->io_base;
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100439 /* if frame sync error - clear the error */
440 if (readw(base + OMAP_MCBSP_REG_SPCR1) & RSYNC_ERR) {
441 /* clear error */
442 writew(readw(base + OMAP_MCBSP_REG_SPCR1) & (~RSYNC_ERR),
443 base + OMAP_MCBSP_REG_SPCR1);
444 /* resend */
445 return -1;
446 } else {
447 /* wait for recieve confirmation */
448 int attemps = 0;
449 while (!(readw(base + OMAP_MCBSP_REG_SPCR1) & RRDY)) {
450 if (attemps++ > 1000) {
451 writew(readw(base + OMAP_MCBSP_REG_SPCR1) &
452 (~RRST),
453 base + OMAP_MCBSP_REG_SPCR1);
454 udelay(10);
455 writew(readw(base + OMAP_MCBSP_REG_SPCR1) |
456 (RRST),
457 base + OMAP_MCBSP_REG_SPCR1);
458 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300459 dev_err(mcbsp->dev, "Could not read from"
460 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100461 return -2;
462 }
463 }
464 }
465 *buf = readw(base + OMAP_MCBSP_REG_DRR1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300466
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100467 return 0;
468}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300469EXPORT_SYMBOL(omap_mcbsp_pollread);
Tony Lindgrenbb13b5fd2005-07-10 19:58:18 +0100470
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100471/*
472 * IRQ based word transmission.
473 */
474void omap_mcbsp_xmit_word(unsigned int id, u32 word)
475{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300476 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100477 void __iomem *io_base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300478 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100479
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300480 if (!omap_mcbsp_check_valid_id(id)) {
481 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100482 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300483 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100484
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300485 mcbsp = id_to_mcbsp_ptr(id);
486 io_base = mcbsp->io_base;
487 word_length = mcbsp->tx_word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100488
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300489 wait_for_completion(&mcbsp->tx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100490
491 if (word_length > OMAP_MCBSP_WORD_16)
492 OMAP_MCBSP_WRITE(io_base, DXR2, word >> 16);
493 OMAP_MCBSP_WRITE(io_base, DXR1, word & 0xffff);
494}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300495EXPORT_SYMBOL(omap_mcbsp_xmit_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100496
497u32 omap_mcbsp_recv_word(unsigned int id)
498{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300499 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100500 void __iomem *io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100501 u16 word_lsb, word_msb = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300502 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100503
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300504 if (!omap_mcbsp_check_valid_id(id)) {
505 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
506 return -ENODEV;
507 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300508 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100509
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300510 word_length = mcbsp->rx_word_length;
511 io_base = mcbsp->io_base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100512
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300513 wait_for_completion(&mcbsp->rx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100514
515 if (word_length > OMAP_MCBSP_WORD_16)
516 word_msb = OMAP_MCBSP_READ(io_base, DRR2);
517 word_lsb = OMAP_MCBSP_READ(io_base, DRR1);
518
519 return (word_lsb | (word_msb << 16));
520}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300521EXPORT_SYMBOL(omap_mcbsp_recv_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100522
Tony Lindgren120db2c2006-04-02 17:46:27 +0100523int omap_mcbsp_spi_master_xmit_word_poll(unsigned int id, u32 word)
524{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300525 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100526 void __iomem *io_base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300527 omap_mcbsp_word_length tx_word_length;
528 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100529 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
530
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300531 if (!omap_mcbsp_check_valid_id(id)) {
532 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
533 return -ENODEV;
534 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300535 mcbsp = id_to_mcbsp_ptr(id);
536 io_base = mcbsp->io_base;
537 tx_word_length = mcbsp->tx_word_length;
538 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300539
Tony Lindgren120db2c2006-04-02 17:46:27 +0100540 if (tx_word_length != rx_word_length)
541 return -EINVAL;
542
543 /* First we wait for the transmitter to be ready */
544 spcr2 = OMAP_MCBSP_READ(io_base, SPCR2);
545 while (!(spcr2 & XRDY)) {
546 spcr2 = OMAP_MCBSP_READ(io_base, SPCR2);
547 if (attempts++ > 1000) {
548 /* We must reset the transmitter */
549 OMAP_MCBSP_WRITE(io_base, SPCR2, spcr2 & (~XRST));
550 udelay(10);
551 OMAP_MCBSP_WRITE(io_base, SPCR2, spcr2 | XRST);
552 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300553 dev_err(mcbsp->dev, "McBSP%d transmitter not "
554 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100555 return -EAGAIN;
556 }
557 }
558
559 /* Now we can push the data */
560 if (tx_word_length > OMAP_MCBSP_WORD_16)
561 OMAP_MCBSP_WRITE(io_base, DXR2, word >> 16);
562 OMAP_MCBSP_WRITE(io_base, DXR1, word & 0xffff);
563
564 /* We wait for the receiver to be ready */
565 spcr1 = OMAP_MCBSP_READ(io_base, SPCR1);
566 while (!(spcr1 & RRDY)) {
567 spcr1 = OMAP_MCBSP_READ(io_base, SPCR1);
568 if (attempts++ > 1000) {
569 /* We must reset the receiver */
570 OMAP_MCBSP_WRITE(io_base, SPCR1, spcr1 & (~RRST));
571 udelay(10);
572 OMAP_MCBSP_WRITE(io_base, SPCR1, spcr1 | RRST);
573 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300574 dev_err(mcbsp->dev, "McBSP%d receiver not "
575 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100576 return -EAGAIN;
577 }
578 }
579
580 /* Receiver is ready, let's read the dummy data */
581 if (rx_word_length > OMAP_MCBSP_WORD_16)
582 word_msb = OMAP_MCBSP_READ(io_base, DRR2);
583 word_lsb = OMAP_MCBSP_READ(io_base, DRR1);
584
585 return 0;
586}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300587EXPORT_SYMBOL(omap_mcbsp_spi_master_xmit_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100588
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300589int omap_mcbsp_spi_master_recv_word_poll(unsigned int id, u32 *word)
Tony Lindgren120db2c2006-04-02 17:46:27 +0100590{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300591 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +0100592 u32 clock_word = 0;
593 void __iomem *io_base;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300594 omap_mcbsp_word_length tx_word_length;
595 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100596 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
597
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300598 if (!omap_mcbsp_check_valid_id(id)) {
599 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
600 return -ENODEV;
601 }
602
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300603 mcbsp = id_to_mcbsp_ptr(id);
604 io_base = mcbsp->io_base;
605
606 tx_word_length = mcbsp->tx_word_length;
607 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300608
Tony Lindgren120db2c2006-04-02 17:46:27 +0100609 if (tx_word_length != rx_word_length)
610 return -EINVAL;
611
612 /* First we wait for the transmitter to be ready */
613 spcr2 = OMAP_MCBSP_READ(io_base, SPCR2);
614 while (!(spcr2 & XRDY)) {
615 spcr2 = OMAP_MCBSP_READ(io_base, SPCR2);
616 if (attempts++ > 1000) {
617 /* We must reset the transmitter */
618 OMAP_MCBSP_WRITE(io_base, SPCR2, spcr2 & (~XRST));
619 udelay(10);
620 OMAP_MCBSP_WRITE(io_base, SPCR2, spcr2 | XRST);
621 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300622 dev_err(mcbsp->dev, "McBSP%d transmitter not "
623 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100624 return -EAGAIN;
625 }
626 }
627
628 /* We first need to enable the bus clock */
629 if (tx_word_length > OMAP_MCBSP_WORD_16)
630 OMAP_MCBSP_WRITE(io_base, DXR2, clock_word >> 16);
631 OMAP_MCBSP_WRITE(io_base, DXR1, clock_word & 0xffff);
632
633 /* We wait for the receiver to be ready */
634 spcr1 = OMAP_MCBSP_READ(io_base, SPCR1);
635 while (!(spcr1 & RRDY)) {
636 spcr1 = OMAP_MCBSP_READ(io_base, SPCR1);
637 if (attempts++ > 1000) {
638 /* We must reset the receiver */
639 OMAP_MCBSP_WRITE(io_base, SPCR1, spcr1 & (~RRST));
640 udelay(10);
641 OMAP_MCBSP_WRITE(io_base, SPCR1, spcr1 | RRST);
642 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300643 dev_err(mcbsp->dev, "McBSP%d receiver not "
644 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100645 return -EAGAIN;
646 }
647 }
648
649 /* Receiver is ready, there is something for us */
650 if (rx_word_length > OMAP_MCBSP_WORD_16)
651 word_msb = OMAP_MCBSP_READ(io_base, DRR2);
652 word_lsb = OMAP_MCBSP_READ(io_base, DRR1);
653
654 word[0] = (word_lsb | (word_msb << 16));
655
656 return 0;
657}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300658EXPORT_SYMBOL(omap_mcbsp_spi_master_recv_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100659
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100660/*
661 * Simple DMA based buffer rx/tx routines.
662 * Nothing fancy, just a single buffer tx/rx through DMA.
663 * The DMA resources are released once the transfer is done.
664 * For anything fancier, you should use your own customized DMA
665 * routines and callbacks.
666 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300667int omap_mcbsp_xmit_buffer(unsigned int id, dma_addr_t buffer,
668 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100669{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300670 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100671 int dma_tx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100672 int src_port = 0;
673 int dest_port = 0;
674 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100675
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300676 if (!omap_mcbsp_check_valid_id(id)) {
677 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
678 return -ENODEV;
679 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300680 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100681
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300682 if (omap_request_dma(mcbsp->dma_tx_sync, "McBSP TX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300683 omap_mcbsp_tx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300684 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300685 &dma_tx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300686 dev_err(mcbsp->dev, " Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300687 "McBSP%d TX. Trying IRQ based TX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300688 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100689 return -EAGAIN;
690 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300691 mcbsp->dma_tx_lch = dma_tx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100692
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300693 dev_err(mcbsp->dev, "McBSP%d TX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300694 dma_tx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100695
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300696 init_completion(&mcbsp->tx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100697
Tony Lindgren120db2c2006-04-02 17:46:27 +0100698 if (cpu_class_is_omap1()) {
699 src_port = OMAP_DMA_PORT_TIPB;
700 dest_port = OMAP_DMA_PORT_EMIFF;
701 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300702 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300703 sync_dev = mcbsp->dma_tx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100704
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300705 omap_set_dma_transfer_params(mcbsp->dma_tx_lch,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100706 OMAP_DMA_DATA_TYPE_S16,
707 length >> 1, 1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000708 OMAP_DMA_SYNC_ELEMENT,
Tony Lindgren120db2c2006-04-02 17:46:27 +0100709 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100710
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300711 omap_set_dma_dest_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +0100712 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100713 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300714 mcbsp->phys_base + OMAP_MCBSP_REG_DXR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000715 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100716
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300717 omap_set_dma_src_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +0100718 dest_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100719 OMAP_DMA_AMODE_POST_INC,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000720 buffer,
721 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100722
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300723 omap_start_dma(mcbsp->dma_tx_lch);
724 wait_for_completion(&mcbsp->tx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300725
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100726 return 0;
727}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300728EXPORT_SYMBOL(omap_mcbsp_xmit_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100729
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300730int omap_mcbsp_recv_buffer(unsigned int id, dma_addr_t buffer,
731 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100732{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300733 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100734 int dma_rx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100735 int src_port = 0;
736 int dest_port = 0;
737 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100738
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300739 if (!omap_mcbsp_check_valid_id(id)) {
740 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
741 return -ENODEV;
742 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300743 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100744
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300745 if (omap_request_dma(mcbsp->dma_rx_sync, "McBSP RX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300746 omap_mcbsp_rx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300747 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300748 &dma_rx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300749 dev_err(mcbsp->dev, "Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300750 "McBSP%d RX. Trying IRQ based RX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300751 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100752 return -EAGAIN;
753 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300754 mcbsp->dma_rx_lch = dma_rx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100755
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300756 dev_err(mcbsp->dev, "McBSP%d RX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300757 dma_rx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100758
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300759 init_completion(&mcbsp->rx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100760
Tony Lindgren120db2c2006-04-02 17:46:27 +0100761 if (cpu_class_is_omap1()) {
762 src_port = OMAP_DMA_PORT_TIPB;
763 dest_port = OMAP_DMA_PORT_EMIFF;
764 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300765 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300766 sync_dev = mcbsp->dma_rx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100767
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300768 omap_set_dma_transfer_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300769 OMAP_DMA_DATA_TYPE_S16,
770 length >> 1, 1,
771 OMAP_DMA_SYNC_ELEMENT,
772 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100773
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300774 omap_set_dma_src_params(mcbsp->dma_rx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +0100775 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100776 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300777 mcbsp->phys_base + OMAP_MCBSP_REG_DRR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000778 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100779
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300780 omap_set_dma_dest_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300781 dest_port,
782 OMAP_DMA_AMODE_POST_INC,
783 buffer,
784 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100785
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300786 omap_start_dma(mcbsp->dma_rx_lch);
787 wait_for_completion(&mcbsp->rx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300788
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100789 return 0;
790}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300791EXPORT_SYMBOL(omap_mcbsp_recv_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100792
793/*
794 * SPI wrapper.
795 * Since SPI setup is much simpler than the generic McBSP one,
796 * this wrapper just need an omap_mcbsp_spi_cfg structure as an input.
797 * Once this is done, you can call omap_mcbsp_start().
798 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300799void omap_mcbsp_set_spi_mode(unsigned int id,
800 const struct omap_mcbsp_spi_cfg *spi_cfg)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100801{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300802 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100803 struct omap_mcbsp_reg_cfg mcbsp_cfg;
804
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300805 if (!omap_mcbsp_check_valid_id(id)) {
806 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100807 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300808 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300809 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100810
811 memset(&mcbsp_cfg, 0, sizeof(struct omap_mcbsp_reg_cfg));
812
813 /* SPI has only one frame */
814 mcbsp_cfg.rcr1 |= (RWDLEN1(spi_cfg->word_length) | RFRLEN1(0));
815 mcbsp_cfg.xcr1 |= (XWDLEN1(spi_cfg->word_length) | XFRLEN1(0));
816
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300817 /* Clock stop mode */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100818 if (spi_cfg->clk_stp_mode == OMAP_MCBSP_CLK_STP_MODE_NO_DELAY)
819 mcbsp_cfg.spcr1 |= (1 << 12);
820 else
821 mcbsp_cfg.spcr1 |= (3 << 11);
822
823 /* Set clock parities */
824 if (spi_cfg->rx_clock_polarity == OMAP_MCBSP_CLK_RISING)
825 mcbsp_cfg.pcr0 |= CLKRP;
826 else
827 mcbsp_cfg.pcr0 &= ~CLKRP;
828
829 if (spi_cfg->tx_clock_polarity == OMAP_MCBSP_CLK_RISING)
830 mcbsp_cfg.pcr0 &= ~CLKXP;
831 else
832 mcbsp_cfg.pcr0 |= CLKXP;
833
834 /* Set SCLKME to 0 and CLKSM to 1 */
835 mcbsp_cfg.pcr0 &= ~SCLKME;
836 mcbsp_cfg.srgr2 |= CLKSM;
837
838 /* Set FSXP */
839 if (spi_cfg->fsx_polarity == OMAP_MCBSP_FS_ACTIVE_HIGH)
840 mcbsp_cfg.pcr0 &= ~FSXP;
841 else
842 mcbsp_cfg.pcr0 |= FSXP;
843
844 if (spi_cfg->spi_mode == OMAP_MCBSP_SPI_MASTER) {
845 mcbsp_cfg.pcr0 |= CLKXM;
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300846 mcbsp_cfg.srgr1 |= CLKGDV(spi_cfg->clk_div - 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100847 mcbsp_cfg.pcr0 |= FSXM;
848 mcbsp_cfg.srgr2 &= ~FSGM;
849 mcbsp_cfg.xcr2 |= XDATDLY(1);
850 mcbsp_cfg.rcr2 |= RDATDLY(1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300851 } else {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100852 mcbsp_cfg.pcr0 &= ~CLKXM;
853 mcbsp_cfg.srgr1 |= CLKGDV(1);
854 mcbsp_cfg.pcr0 &= ~FSXM;
855 mcbsp_cfg.xcr2 &= ~XDATDLY(3);
856 mcbsp_cfg.rcr2 &= ~RDATDLY(3);
857 }
858
859 mcbsp_cfg.xcr2 &= ~XPHASE;
860 mcbsp_cfg.rcr2 &= ~RPHASE;
861
862 omap_mcbsp_config(id, &mcbsp_cfg);
863}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300864EXPORT_SYMBOL(omap_mcbsp_set_spi_mode);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100865
866/*
867 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
868 * 730 has only 2 McBSP, and both of them are MPU peripherals.
869 */
Uwe Kleine-König25cef222008-10-08 10:01:39 +0300870static int __devinit omap_mcbsp_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100871{
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300872 struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300873 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300874 int id = pdev->id - 1;
875 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100876
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300877 if (!pdata) {
878 dev_err(&pdev->dev, "McBSP device initialized without"
879 "platform data\n");
880 ret = -EINVAL;
881 goto exit;
882 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100883
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300884 dev_dbg(&pdev->dev, "Initializing OMAP McBSP (%d).\n", pdev->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100885
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300886 if (id >= omap_mcbsp_count) {
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300887 dev_err(&pdev->dev, "Invalid McBSP device id (%d)\n", id);
888 ret = -EINVAL;
889 goto exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100890 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100891
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300892 mcbsp = kzalloc(sizeof(struct omap_mcbsp), GFP_KERNEL);
893 if (!mcbsp) {
894 ret = -ENOMEM;
895 goto exit;
896 }
897 mcbsp_ptr[id] = mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300898
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300899 spin_lock_init(&mcbsp->lock);
900 mcbsp->id = id + 1;
901 mcbsp->free = 1;
902 mcbsp->dma_tx_lch = -1;
903 mcbsp->dma_rx_lch = -1;
904
905 mcbsp->phys_base = pdata->phys_base;
906 mcbsp->io_base = ioremap(pdata->phys_base, SZ_4K);
907 if (!mcbsp->io_base) {
Russell Kingd592dd12008-09-04 14:25:42 +0100908 ret = -ENOMEM;
909 goto err_ioremap;
910 }
911
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300912 /* Default I/O is IRQ based */
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300913 mcbsp->io_type = OMAP_MCBSP_IRQ_IO;
914 mcbsp->tx_irq = pdata->tx_irq;
915 mcbsp->rx_irq = pdata->rx_irq;
916 mcbsp->dma_rx_sync = pdata->dma_rx_sync;
917 mcbsp->dma_tx_sync = pdata->dma_tx_sync;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300918
919 if (pdata->clk_name)
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300920 mcbsp->clk = clk_get(&pdev->dev, pdata->clk_name);
921 if (IS_ERR(mcbsp->clk)) {
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300922 dev_err(&pdev->dev,
923 "Invalid clock configuration for McBSP%d.\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300924 mcbsp->id);
925 ret = PTR_ERR(mcbsp->clk);
Russell Kingd592dd12008-09-04 14:25:42 +0100926 goto err_clk;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300927 }
928
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300929 mcbsp->pdata = pdata;
930 mcbsp->dev = &pdev->dev;
931 platform_set_drvdata(pdev, mcbsp);
Russell Kingd592dd12008-09-04 14:25:42 +0100932 return 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300933
Russell Kingd592dd12008-09-04 14:25:42 +0100934err_clk:
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300935 iounmap(mcbsp->io_base);
Russell Kingd592dd12008-09-04 14:25:42 +0100936err_ioremap:
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300937 mcbsp->free = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300938exit:
939 return ret;
940}
941
Uwe Kleine-König25cef222008-10-08 10:01:39 +0300942static int __devexit omap_mcbsp_remove(struct platform_device *pdev)
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300943{
944 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
945
946 platform_set_drvdata(pdev, NULL);
947 if (mcbsp) {
948
949 if (mcbsp->pdata && mcbsp->pdata->ops &&
950 mcbsp->pdata->ops->free)
951 mcbsp->pdata->ops->free(mcbsp->id);
952
953 clk_disable(mcbsp->clk);
954 clk_put(mcbsp->clk);
955
Russell Kingd592dd12008-09-04 14:25:42 +0100956 iounmap(mcbsp->io_base);
957
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300958 mcbsp->clk = NULL;
959 mcbsp->free = 0;
960 mcbsp->dev = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100961 }
962
963 return 0;
964}
965
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300966static struct platform_driver omap_mcbsp_driver = {
967 .probe = omap_mcbsp_probe,
Uwe Kleine-König25cef222008-10-08 10:01:39 +0300968 .remove = __devexit_p(omap_mcbsp_remove),
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300969 .driver = {
970 .name = "omap-mcbsp",
971 },
972};
973
974int __init omap_mcbsp_init(void)
975{
976 /* Register the McBSP driver */
977 return platform_driver_register(&omap_mcbsp_driver);
978}
979