blob: 3ad536ea6c37516be4579df3366dd30d074792c1 [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/interrupt.h>
20#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000021#include <linux/clk.h>
Tony Lindgren04fbf6a2007-02-12 10:50:53 -080022#include <linux/delay.h>
Eduardo Valentinfb78d802008-07-03 12:24:39 +030023#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010025
Tony Lindgrence491cf2009-10-20 09:40:47 -070026#include <plat/mcbsp.h>
Kishon Vijay Abraham Ie95496d2011-02-24 15:16:54 +053027#include <linux/pm_runtime.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010028
Paul Walmsley59fb6592010-12-21 15:30:55 -070029/* XXX These "sideways" includes are a sign that something is wrong */
30#include "../mach-omap2/cm2xxx_3xxx.h"
Eero Nurkkalad912fa92010-02-22 12:21:11 +000031#include "../mach-omap2/cm-regbits-34xx.h"
32
Chandra Shekharb4b58f52008-10-08 10:01:39 +030033struct omap_mcbsp **mcbsp_ptr;
Jarkko Nikulaac6747c2011-09-26 10:45:43 +030034int omap_mcbsp_count;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +030035
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070036static void omap_mcbsp_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030037{
Jarkko Nikulacdc715142011-09-26 10:45:39 +030038 void __iomem *addr = mcbsp->io_base + reg * mcbsp->pdata->reg_step;
39
40 if (mcbsp->pdata->reg_size == 2) {
41 ((u16 *)mcbsp->reg_cache)[reg] = (u16)val;
42 __raw_writew((u16)val, addr);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080043 } else {
Jarkko Nikulacdc715142011-09-26 10:45:39 +030044 ((u32 *)mcbsp->reg_cache)[reg] = val;
45 __raw_writel(val, addr);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080046 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +030047}
48
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070049static int omap_mcbsp_read(struct omap_mcbsp *mcbsp, u16 reg, bool from_cache)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030050{
Jarkko Nikulacdc715142011-09-26 10:45:39 +030051 void __iomem *addr = mcbsp->io_base + reg * mcbsp->pdata->reg_step;
52
53 if (mcbsp->pdata->reg_size == 2) {
54 return !from_cache ? __raw_readw(addr) :
55 ((u16 *)mcbsp->reg_cache)[reg];
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080056 } else {
Jarkko Nikulacdc715142011-09-26 10:45:39 +030057 return !from_cache ? __raw_readl(addr) :
58 ((u32 *)mcbsp->reg_cache)[reg];
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080059 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +030060}
61
Eero Nurkkalad912fa92010-02-22 12:21:11 +000062#ifdef CONFIG_ARCH_OMAP3
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070063static void omap_mcbsp_st_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
Eero Nurkkalad912fa92010-02-22 12:21:11 +000064{
65 __raw_writel(val, mcbsp->st_data->io_base_st + reg);
66}
67
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070068static int omap_mcbsp_st_read(struct omap_mcbsp *mcbsp, u16 reg)
Eero Nurkkalad912fa92010-02-22 12:21:11 +000069{
70 return __raw_readl(mcbsp->st_data->io_base_st + reg);
71}
72#endif
73
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080074#define MCBSP_READ(mcbsp, reg) \
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080075 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 0)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080076#define MCBSP_WRITE(mcbsp, reg, val) \
77 omap_mcbsp_write(mcbsp, OMAP_MCBSP_REG_##reg, val)
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080078#define MCBSP_READ_CACHE(mcbsp, reg) \
79 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 1)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030080
Eero Nurkkalad912fa92010-02-22 12:21:11 +000081#define MCBSP_ST_READ(mcbsp, reg) \
82 omap_mcbsp_st_read(mcbsp, OMAP_ST_REG_##reg)
83#define MCBSP_ST_WRITE(mcbsp, reg, val) \
84 omap_mcbsp_st_write(mcbsp, OMAP_ST_REG_##reg, val)
85
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010086static void omap_mcbsp_dump_reg(u8 id)
87{
Chandra Shekharb4b58f52008-10-08 10:01:39 +030088 struct omap_mcbsp *mcbsp = id_to_mcbsp_ptr(id);
89
90 dev_dbg(mcbsp->dev, "**** McBSP%d regs ****\n", mcbsp->id);
91 dev_dbg(mcbsp->dev, "DRR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080092 MCBSP_READ(mcbsp, DRR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030093 dev_dbg(mcbsp->dev, "DRR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080094 MCBSP_READ(mcbsp, DRR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030095 dev_dbg(mcbsp->dev, "DXR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080096 MCBSP_READ(mcbsp, DXR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030097 dev_dbg(mcbsp->dev, "DXR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080098 MCBSP_READ(mcbsp, DXR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030099 dev_dbg(mcbsp->dev, "SPCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800100 MCBSP_READ(mcbsp, SPCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300101 dev_dbg(mcbsp->dev, "SPCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800102 MCBSP_READ(mcbsp, SPCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300103 dev_dbg(mcbsp->dev, "RCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800104 MCBSP_READ(mcbsp, RCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300105 dev_dbg(mcbsp->dev, "RCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800106 MCBSP_READ(mcbsp, RCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300107 dev_dbg(mcbsp->dev, "XCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800108 MCBSP_READ(mcbsp, XCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300109 dev_dbg(mcbsp->dev, "XCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800110 MCBSP_READ(mcbsp, XCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300111 dev_dbg(mcbsp->dev, "SRGR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800112 MCBSP_READ(mcbsp, SRGR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300113 dev_dbg(mcbsp->dev, "SRGR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800114 MCBSP_READ(mcbsp, SRGR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300115 dev_dbg(mcbsp->dev, "PCR0: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800116 MCBSP_READ(mcbsp, PCR0));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300117 dev_dbg(mcbsp->dev, "***********************\n");
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100118}
119
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700120static irqreturn_t omap_mcbsp_tx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100121{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400122 struct omap_mcbsp *mcbsp_tx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700123 u16 irqst_spcr2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100124
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800125 irqst_spcr2 = MCBSP_READ(mcbsp_tx, SPCR2);
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700126 dev_dbg(mcbsp_tx->dev, "TX IRQ callback : 0x%x\n", irqst_spcr2);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100127
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700128 if (irqst_spcr2 & XSYNC_ERR) {
129 dev_err(mcbsp_tx->dev, "TX Frame Sync Error! : 0x%x\n",
130 irqst_spcr2);
131 /* Writing zero to XSYNC_ERR clears the IRQ */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000132 MCBSP_WRITE(mcbsp_tx, SPCR2, MCBSP_READ_CACHE(mcbsp_tx, SPCR2));
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700133 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300134
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100135 return IRQ_HANDLED;
136}
137
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700138static irqreturn_t omap_mcbsp_rx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100139{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400140 struct omap_mcbsp *mcbsp_rx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700141 u16 irqst_spcr1;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100142
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800143 irqst_spcr1 = MCBSP_READ(mcbsp_rx, SPCR1);
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700144 dev_dbg(mcbsp_rx->dev, "RX IRQ callback : 0x%x\n", irqst_spcr1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100145
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700146 if (irqst_spcr1 & RSYNC_ERR) {
147 dev_err(mcbsp_rx->dev, "RX Frame Sync Error! : 0x%x\n",
148 irqst_spcr1);
149 /* Writing zero to RSYNC_ERR clears the IRQ */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000150 MCBSP_WRITE(mcbsp_rx, SPCR1, MCBSP_READ_CACHE(mcbsp_rx, SPCR1));
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700151 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300152
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100153 return IRQ_HANDLED;
154}
155
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100156/*
157 * omap_mcbsp_config simply write a config to the
158 * appropriate McBSP.
159 * You either call this function or set the McBSP registers
160 * by yourself before calling omap_mcbsp_start().
161 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300162void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg *config)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100163{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300164 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100165
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300166 if (!omap_mcbsp_check_valid_id(id)) {
167 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
168 return;
169 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300170 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300171
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300172 dev_dbg(mcbsp->dev, "Configuring McBSP%d phys_base: 0x%08lx\n",
173 mcbsp->id, mcbsp->phys_base);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100174
175 /* We write the given config */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800176 MCBSP_WRITE(mcbsp, SPCR2, config->spcr2);
177 MCBSP_WRITE(mcbsp, SPCR1, config->spcr1);
178 MCBSP_WRITE(mcbsp, RCR2, config->rcr2);
179 MCBSP_WRITE(mcbsp, RCR1, config->rcr1);
180 MCBSP_WRITE(mcbsp, XCR2, config->xcr2);
181 MCBSP_WRITE(mcbsp, XCR1, config->xcr1);
182 MCBSP_WRITE(mcbsp, SRGR2, config->srgr2);
183 MCBSP_WRITE(mcbsp, SRGR1, config->srgr1);
184 MCBSP_WRITE(mcbsp, MCR2, config->mcr2);
185 MCBSP_WRITE(mcbsp, MCR1, config->mcr1);
186 MCBSP_WRITE(mcbsp, PCR0, config->pcr0);
Jarkko Nikula88408232011-09-26 10:45:41 +0300187 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800188 MCBSP_WRITE(mcbsp, XCCR, config->xccr);
189 MCBSP_WRITE(mcbsp, RCCR, config->rccr);
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200190 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100191}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300192EXPORT_SYMBOL(omap_mcbsp_config);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100193
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530194/**
195 * omap_mcbsp_dma_params - returns the dma channel number
196 * @id - mcbsp id
197 * @stream - indicates the direction of data flow (rx or tx)
198 *
199 * Returns the dma channel number for the rx channel or tx channel
200 * based on the value of @stream for the requested mcbsp given by @id
201 */
202int omap_mcbsp_dma_ch_params(unsigned int id, unsigned int stream)
203{
204 struct omap_mcbsp *mcbsp;
205
206 if (!omap_mcbsp_check_valid_id(id)) {
207 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
208 return -ENODEV;
209 }
210 mcbsp = id_to_mcbsp_ptr(id);
211
212 if (stream)
213 return mcbsp->dma_rx_sync;
214 else
215 return mcbsp->dma_tx_sync;
216}
217EXPORT_SYMBOL(omap_mcbsp_dma_ch_params);
218
219/**
220 * omap_mcbsp_dma_reg_params - returns the address of mcbsp data register
221 * @id - mcbsp id
222 * @stream - indicates the direction of data flow (rx or tx)
223 *
224 * Returns the address of mcbsp data transmit register or data receive register
225 * to be used by DMA for transferring/receiving data based on the value of
226 * @stream for the requested mcbsp given by @id
227 */
228int omap_mcbsp_dma_reg_params(unsigned int id, unsigned int stream)
229{
230 struct omap_mcbsp *mcbsp;
231 int data_reg;
232
233 if (!omap_mcbsp_check_valid_id(id)) {
234 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
235 return -ENODEV;
236 }
237 mcbsp = id_to_mcbsp_ptr(id);
238
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300239 if (mcbsp->pdata->reg_size == 2) {
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530240 if (stream)
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300241 data_reg = OMAP_MCBSP_REG_DRR1;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530242 else
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300243 data_reg = OMAP_MCBSP_REG_DXR1;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530244 } else {
245 if (stream)
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300246 data_reg = OMAP_MCBSP_REG_DRR;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530247 else
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300248 data_reg = OMAP_MCBSP_REG_DXR;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530249 }
250
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300251 return mcbsp->phys_dma_base + data_reg * mcbsp->pdata->reg_step;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530252}
253EXPORT_SYMBOL(omap_mcbsp_dma_reg_params);
254
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800255#ifdef CONFIG_ARCH_OMAP3
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000256static void omap_st_on(struct omap_mcbsp *mcbsp)
257{
258 unsigned int w;
259
260 /*
261 * Sidetone uses McBSP ICLK - which must not idle when sidetones
262 * are enabled or sidetones start sounding ugly.
263 */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700264 w = omap2_cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE);
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000265 w &= ~(1 << (mcbsp->id - 2));
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700266 omap2_cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE);
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000267
268 /* Enable McBSP Sidetone */
269 w = MCBSP_READ(mcbsp, SSELCR);
270 MCBSP_WRITE(mcbsp, SSELCR, w | SIDETONEEN);
271
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000272 /* Enable Sidetone from Sidetone Core */
273 w = MCBSP_ST_READ(mcbsp, SSELCR);
274 MCBSP_ST_WRITE(mcbsp, SSELCR, w | ST_SIDETONEEN);
275}
276
277static void omap_st_off(struct omap_mcbsp *mcbsp)
278{
279 unsigned int w;
280
281 w = MCBSP_ST_READ(mcbsp, SSELCR);
282 MCBSP_ST_WRITE(mcbsp, SSELCR, w & ~(ST_SIDETONEEN));
283
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000284 w = MCBSP_READ(mcbsp, SSELCR);
285 MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN));
286
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700287 w = omap2_cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE);
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000288 w |= 1 << (mcbsp->id - 2);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700289 omap2_cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE);
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000290}
291
292static void omap_st_fir_write(struct omap_mcbsp *mcbsp, s16 *fir)
293{
294 u16 val, i;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000295
296 val = MCBSP_ST_READ(mcbsp, SSELCR);
297
298 if (val & ST_COEFFWREN)
299 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
300
301 MCBSP_ST_WRITE(mcbsp, SSELCR, val | ST_COEFFWREN);
302
303 for (i = 0; i < 128; i++)
304 MCBSP_ST_WRITE(mcbsp, SFIRCR, fir[i]);
305
306 i = 0;
307
308 val = MCBSP_ST_READ(mcbsp, SSELCR);
309 while (!(val & ST_COEFFWRDONE) && (++i < 1000))
310 val = MCBSP_ST_READ(mcbsp, SSELCR);
311
312 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
313
314 if (i == 1000)
315 dev_err(mcbsp->dev, "McBSP FIR load error!\n");
316}
317
318static void omap_st_chgain(struct omap_mcbsp *mcbsp)
319{
320 u16 w;
321 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000322
323 w = MCBSP_ST_READ(mcbsp, SSELCR);
324
325 MCBSP_ST_WRITE(mcbsp, SGAINCR, ST_CH0GAIN(st_data->ch0gain) | \
326 ST_CH1GAIN(st_data->ch1gain));
327}
328
329int omap_st_set_chgain(unsigned int id, int channel, s16 chgain)
330{
331 struct omap_mcbsp *mcbsp;
332 struct omap_mcbsp_st_data *st_data;
333 int ret = 0;
334
335 if (!omap_mcbsp_check_valid_id(id)) {
336 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
337 return -ENODEV;
338 }
339
340 mcbsp = id_to_mcbsp_ptr(id);
341 st_data = mcbsp->st_data;
342
343 if (!st_data)
344 return -ENOENT;
345
346 spin_lock_irq(&mcbsp->lock);
347 if (channel == 0)
348 st_data->ch0gain = chgain;
349 else if (channel == 1)
350 st_data->ch1gain = chgain;
351 else
352 ret = -EINVAL;
353
354 if (st_data->enabled)
355 omap_st_chgain(mcbsp);
356 spin_unlock_irq(&mcbsp->lock);
357
358 return ret;
359}
360EXPORT_SYMBOL(omap_st_set_chgain);
361
362int omap_st_get_chgain(unsigned int id, int channel, s16 *chgain)
363{
364 struct omap_mcbsp *mcbsp;
365 struct omap_mcbsp_st_data *st_data;
366 int ret = 0;
367
368 if (!omap_mcbsp_check_valid_id(id)) {
369 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
370 return -ENODEV;
371 }
372
373 mcbsp = id_to_mcbsp_ptr(id);
374 st_data = mcbsp->st_data;
375
376 if (!st_data)
377 return -ENOENT;
378
379 spin_lock_irq(&mcbsp->lock);
380 if (channel == 0)
381 *chgain = st_data->ch0gain;
382 else if (channel == 1)
383 *chgain = st_data->ch1gain;
384 else
385 ret = -EINVAL;
386 spin_unlock_irq(&mcbsp->lock);
387
388 return ret;
389}
390EXPORT_SYMBOL(omap_st_get_chgain);
391
392static int omap_st_start(struct omap_mcbsp *mcbsp)
393{
394 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
395
396 if (st_data && st_data->enabled && !st_data->running) {
397 omap_st_fir_write(mcbsp, st_data->taps);
398 omap_st_chgain(mcbsp);
399
400 if (!mcbsp->free) {
401 omap_st_on(mcbsp);
402 st_data->running = 1;
403 }
404 }
405
406 return 0;
407}
408
409int omap_st_enable(unsigned int id)
410{
411 struct omap_mcbsp *mcbsp;
412 struct omap_mcbsp_st_data *st_data;
413
414 if (!omap_mcbsp_check_valid_id(id)) {
415 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
416 return -ENODEV;
417 }
418
419 mcbsp = id_to_mcbsp_ptr(id);
420 st_data = mcbsp->st_data;
421
422 if (!st_data)
423 return -ENODEV;
424
425 spin_lock_irq(&mcbsp->lock);
426 st_data->enabled = 1;
427 omap_st_start(mcbsp);
428 spin_unlock_irq(&mcbsp->lock);
429
430 return 0;
431}
432EXPORT_SYMBOL(omap_st_enable);
433
434static int omap_st_stop(struct omap_mcbsp *mcbsp)
435{
436 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
437
438 if (st_data && st_data->running) {
439 if (!mcbsp->free) {
440 omap_st_off(mcbsp);
441 st_data->running = 0;
442 }
443 }
444
445 return 0;
446}
447
448int omap_st_disable(unsigned int id)
449{
450 struct omap_mcbsp *mcbsp;
451 struct omap_mcbsp_st_data *st_data;
452 int ret = 0;
453
454 if (!omap_mcbsp_check_valid_id(id)) {
455 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
456 return -ENODEV;
457 }
458
459 mcbsp = id_to_mcbsp_ptr(id);
460 st_data = mcbsp->st_data;
461
462 if (!st_data)
463 return -ENODEV;
464
465 spin_lock_irq(&mcbsp->lock);
466 omap_st_stop(mcbsp);
467 st_data->enabled = 0;
468 spin_unlock_irq(&mcbsp->lock);
469
470 return ret;
471}
472EXPORT_SYMBOL(omap_st_disable);
473
474int omap_st_is_enabled(unsigned int id)
475{
476 struct omap_mcbsp *mcbsp;
477 struct omap_mcbsp_st_data *st_data;
478
479 if (!omap_mcbsp_check_valid_id(id)) {
480 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
481 return -ENODEV;
482 }
483
484 mcbsp = id_to_mcbsp_ptr(id);
485 st_data = mcbsp->st_data;
486
487 if (!st_data)
488 return -ENODEV;
489
490
491 return st_data->enabled;
492}
493EXPORT_SYMBOL(omap_st_is_enabled);
494
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300495#else
496static inline void omap_st_start(struct omap_mcbsp *mcbsp) {}
497static inline void omap_st_stop(struct omap_mcbsp *mcbsp) {}
498#endif
499
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300500/*
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300501 * omap_mcbsp_set_rx_threshold configures the transmit threshold in words.
502 * The threshold parameter is 1 based, and it is converted (threshold - 1)
503 * for the THRSH2 register.
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300504 */
505void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold)
506{
507 struct omap_mcbsp *mcbsp;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300508
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300509 if (!omap_mcbsp_check_valid_id(id)) {
510 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
511 return;
512 }
513 mcbsp = id_to_mcbsp_ptr(id);
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300514 if (mcbsp->pdata->buffer_size == 0)
515 return;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300516
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300517 if (threshold && threshold <= mcbsp->max_tx_thres)
518 MCBSP_WRITE(mcbsp, THRSH2, threshold - 1);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300519}
520EXPORT_SYMBOL(omap_mcbsp_set_tx_threshold);
521
522/*
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300523 * omap_mcbsp_set_rx_threshold configures the receive threshold in words.
524 * The threshold parameter is 1 based, and it is converted (threshold - 1)
525 * for the THRSH1 register.
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300526 */
527void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold)
528{
529 struct omap_mcbsp *mcbsp;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300530
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300531 if (!omap_mcbsp_check_valid_id(id)) {
532 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
533 return;
534 }
535 mcbsp = id_to_mcbsp_ptr(id);
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300536 if (mcbsp->pdata->buffer_size == 0)
537 return;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300538
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300539 if (threshold && threshold <= mcbsp->max_rx_thres)
540 MCBSP_WRITE(mcbsp, THRSH1, threshold - 1);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300541}
542EXPORT_SYMBOL(omap_mcbsp_set_rx_threshold);
Eduardo Valentina1a56f52009-08-20 16:18:11 +0300543
544/*
545 * omap_mcbsp_get_max_tx_thres just return the current configured
546 * maximum threshold for transmission
547 */
548u16 omap_mcbsp_get_max_tx_threshold(unsigned int id)
549{
550 struct omap_mcbsp *mcbsp;
551
552 if (!omap_mcbsp_check_valid_id(id)) {
553 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
554 return -ENODEV;
555 }
556 mcbsp = id_to_mcbsp_ptr(id);
557
558 return mcbsp->max_tx_thres;
559}
560EXPORT_SYMBOL(omap_mcbsp_get_max_tx_threshold);
561
562/*
563 * omap_mcbsp_get_max_rx_thres just return the current configured
564 * maximum threshold for reception
565 */
566u16 omap_mcbsp_get_max_rx_threshold(unsigned int id)
567{
568 struct omap_mcbsp *mcbsp;
569
570 if (!omap_mcbsp_check_valid_id(id)) {
571 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
572 return -ENODEV;
573 }
574 mcbsp = id_to_mcbsp_ptr(id);
575
576 return mcbsp->max_rx_thres;
577}
578EXPORT_SYMBOL(omap_mcbsp_get_max_rx_threshold);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300579
Peter Ujfalusi0acce822010-06-03 07:39:32 +0300580u16 omap_mcbsp_get_fifo_size(unsigned int id)
581{
582 struct omap_mcbsp *mcbsp;
583
584 if (!omap_mcbsp_check_valid_id(id)) {
585 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
586 return -ENODEV;
587 }
588 mcbsp = id_to_mcbsp_ptr(id);
589
590 return mcbsp->pdata->buffer_size;
591}
592EXPORT_SYMBOL(omap_mcbsp_get_fifo_size);
593
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200594/*
595 * omap_mcbsp_get_tx_delay returns the number of used slots in the McBSP FIFO
596 */
597u16 omap_mcbsp_get_tx_delay(unsigned int id)
598{
599 struct omap_mcbsp *mcbsp;
600 u16 buffstat;
601
602 if (!omap_mcbsp_check_valid_id(id)) {
603 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
604 return -ENODEV;
605 }
606 mcbsp = id_to_mcbsp_ptr(id);
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300607 if (mcbsp->pdata->buffer_size == 0)
608 return 0;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200609
610 /* Returns the number of free locations in the buffer */
611 buffstat = MCBSP_READ(mcbsp, XBUFFSTAT);
612
613 /* Number of slots are different in McBSP ports */
Peter Ujfalusif10b8ad2010-06-03 07:39:34 +0300614 return mcbsp->pdata->buffer_size - buffstat;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200615}
616EXPORT_SYMBOL(omap_mcbsp_get_tx_delay);
617
618/*
619 * omap_mcbsp_get_rx_delay returns the number of free slots in the McBSP FIFO
620 * to reach the threshold value (when the DMA will be triggered to read it)
621 */
622u16 omap_mcbsp_get_rx_delay(unsigned int id)
623{
624 struct omap_mcbsp *mcbsp;
625 u16 buffstat, threshold;
626
627 if (!omap_mcbsp_check_valid_id(id)) {
628 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
629 return -ENODEV;
630 }
631 mcbsp = id_to_mcbsp_ptr(id);
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300632 if (mcbsp->pdata->buffer_size == 0)
633 return 0;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200634
635 /* Returns the number of used locations in the buffer */
636 buffstat = MCBSP_READ(mcbsp, RBUFFSTAT);
637 /* RX threshold */
638 threshold = MCBSP_READ(mcbsp, THRSH1);
639
640 /* Return the number of location till we reach the threshold limit */
641 if (threshold <= buffstat)
642 return 0;
643 else
644 return threshold - buffstat;
645}
646EXPORT_SYMBOL(omap_mcbsp_get_rx_delay);
647
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300648/*
649 * omap_mcbsp_get_dma_op_mode just return the current configured
650 * operating mode for the mcbsp channel
651 */
652int omap_mcbsp_get_dma_op_mode(unsigned int id)
653{
654 struct omap_mcbsp *mcbsp;
655 int dma_op_mode;
656
657 if (!omap_mcbsp_check_valid_id(id)) {
658 printk(KERN_ERR "%s: Invalid id (%u)\n", __func__, id + 1);
659 return -ENODEV;
660 }
661 mcbsp = id_to_mcbsp_ptr(id);
662
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300663 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300664
665 return dma_op_mode;
666}
667EXPORT_SYMBOL(omap_mcbsp_get_dma_op_mode);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300668
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100669int omap_mcbsp_request(unsigned int id)
670{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300671 struct omap_mcbsp *mcbsp;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800672 void *reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100673 int err;
674
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300675 if (!omap_mcbsp_check_valid_id(id)) {
676 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
677 return -ENODEV;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100678 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300679 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300680
Jarkko Nikulaac6747c2011-09-26 10:45:43 +0300681 reg_cache = kzalloc(mcbsp->reg_cache_size, GFP_KERNEL);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800682 if (!reg_cache) {
683 return -ENOMEM;
684 }
685
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300686 spin_lock(&mcbsp->lock);
687 if (!mcbsp->free) {
688 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
689 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800690 err = -EBUSY;
691 goto err_kfree;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100692 }
693
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800694 mcbsp->free = false;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800695 mcbsp->reg_cache = reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300696 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100697
Russell Kingb820ce42009-01-23 10:26:46 +0000698 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
699 mcbsp->pdata->ops->request(id);
700
Kishon Vijay Abraham Ie95496d2011-02-24 15:16:54 +0530701 pm_runtime_get_sync(mcbsp->dev);
Russell Kingb820ce42009-01-23 10:26:46 +0000702
Jarkko Nikula1a645882011-09-26 10:45:40 +0300703 /* Enable wakeup behavior */
704 if (mcbsp->pdata->has_wakeup)
705 MCBSP_WRITE(mcbsp, WAKEUPEN, XRDYEN | RRDYEN);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300706
Jarkko Nikula5a070552008-10-08 10:01:41 +0300707 /*
708 * Make sure that transmitter, receiver and sample-rate generator are
709 * not running before activating IRQs.
710 */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800711 MCBSP_WRITE(mcbsp, SPCR1, 0);
712 MCBSP_WRITE(mcbsp, SPCR2, 0);
Jarkko Nikula5a070552008-10-08 10:01:41 +0300713
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000714 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
715 0, "McBSP", (void *)mcbsp);
716 if (err != 0) {
717 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
718 "for McBSP%d\n", mcbsp->tx_irq,
719 mcbsp->id);
720 goto err_clk_disable;
721 }
Tony Lindgren120db2c2006-04-02 17:46:27 +0100722
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000723 if (mcbsp->rx_irq) {
724 err = request_irq(mcbsp->rx_irq,
725 omap_mcbsp_rx_irq_handler,
726 0, "McBSP", (void *)mcbsp);
727 if (err != 0) {
728 dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
729 "for McBSP%d\n", mcbsp->rx_irq,
730 mcbsp->id);
731 goto err_free_irq;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100732 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100733 }
734
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100735 return 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800736err_free_irq:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800737 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800738err_clk_disable:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800739 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800740 mcbsp->pdata->ops->free(id);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800741
Jarkko Nikula1a645882011-09-26 10:45:40 +0300742 /* Disable wakeup behavior */
743 if (mcbsp->pdata->has_wakeup)
744 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800745
Kishon Vijay Abraham Ie95496d2011-02-24 15:16:54 +0530746 pm_runtime_put_sync(mcbsp->dev);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800747
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800748 spin_lock(&mcbsp->lock);
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800749 mcbsp->free = true;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800750 mcbsp->reg_cache = NULL;
751err_kfree:
752 spin_unlock(&mcbsp->lock);
753 kfree(reg_cache);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800754
755 return err;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100756}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300757EXPORT_SYMBOL(omap_mcbsp_request);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100758
759void omap_mcbsp_free(unsigned int id)
760{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300761 struct omap_mcbsp *mcbsp;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800762 void *reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300763
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300764 if (!omap_mcbsp_check_valid_id(id)) {
765 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100766 return;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100767 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300768 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100769
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300770 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
771 mcbsp->pdata->ops->free(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300772
Jarkko Nikula1a645882011-09-26 10:45:40 +0300773 /* Disable wakeup behavior */
774 if (mcbsp->pdata->has_wakeup)
775 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300776
Kishon Vijay Abraham Ie95496d2011-02-24 15:16:54 +0530777 pm_runtime_put_sync(mcbsp->dev);
Russell Kingb820ce42009-01-23 10:26:46 +0000778
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000779 if (mcbsp->rx_irq)
780 free_irq(mcbsp->rx_irq, (void *)mcbsp);
781 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100782
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800783 reg_cache = mcbsp->reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100784
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800785 spin_lock(&mcbsp->lock);
786 if (mcbsp->free)
787 dev_err(mcbsp->dev, "McBSP%d was not reserved\n", mcbsp->id);
788 else
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800789 mcbsp->free = true;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800790 mcbsp->reg_cache = NULL;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300791 spin_unlock(&mcbsp->lock);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800792
793 if (reg_cache)
794 kfree(reg_cache);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100795}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300796EXPORT_SYMBOL(omap_mcbsp_free);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100797
798/*
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300799 * Here we start the McBSP, by enabling transmitter, receiver or both.
800 * If no transmitter or receiver is active prior calling, then sample-rate
801 * generator and frame sync are started.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100802 */
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300803void omap_mcbsp_start(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100804{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300805 struct omap_mcbsp *mcbsp;
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000806 int enable_srg = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100807 u16 w;
808
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300809 if (!omap_mcbsp_check_valid_id(id)) {
810 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100811 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300812 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300813 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100814
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000815 if (cpu_is_omap34xx())
816 omap_st_start(mcbsp);
817
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000818 /* Only enable SRG, if McBSP is master */
819 w = MCBSP_READ_CACHE(mcbsp, PCR0);
820 if (w & (FSXM | FSRM | CLKXM | CLKRM))
821 enable_srg = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
822 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300823
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000824 if (enable_srg) {
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300825 /* Start the sample generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800826 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800827 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300828 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100829
830 /* Enable transmitter and receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300831 tx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800832 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800833 MCBSP_WRITE(mcbsp, SPCR2, w | tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100834
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300835 rx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800836 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800837 MCBSP_WRITE(mcbsp, SPCR1, w | rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100838
Eduardo Valentin44a63112009-08-20 16:18:09 +0300839 /*
840 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
841 * REVISIT: 100us may give enough time for two CLKSRG, however
842 * due to some unknown PM related, clock gating etc. reason it
843 * is now at 500us.
844 */
845 udelay(500);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100846
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000847 if (enable_srg) {
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300848 /* Start frame sync */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800849 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800850 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 7));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300851 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100852
Jarkko Nikula88408232011-09-26 10:45:41 +0300853 if (mcbsp->pdata->has_ccr) {
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300854 /* Release the transmitter and receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800855 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300856 w &= ~(tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800857 MCBSP_WRITE(mcbsp, XCCR, w);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800858 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300859 w &= ~(rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800860 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300861 }
862
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100863 /* Dump McBSP Regs */
864 omap_mcbsp_dump_reg(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100865}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300866EXPORT_SYMBOL(omap_mcbsp_start);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100867
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300868void omap_mcbsp_stop(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100869{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300870 struct omap_mcbsp *mcbsp;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300871 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100872 u16 w;
873
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300874 if (!omap_mcbsp_check_valid_id(id)) {
875 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100876 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300877 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100878
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300879 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100880
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300881 /* Reset transmitter */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300882 tx &= 1;
Jarkko Nikula88408232011-09-26 10:45:41 +0300883 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800884 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300885 w |= (tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800886 MCBSP_WRITE(mcbsp, XCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300887 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800888 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800889 MCBSP_WRITE(mcbsp, SPCR2, w & ~tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100890
891 /* Reset receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300892 rx &= 1;
Jarkko Nikula88408232011-09-26 10:45:41 +0300893 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800894 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulaa93d4ed2009-10-14 09:56:35 -0700895 w |= (rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800896 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300897 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800898 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800899 MCBSP_WRITE(mcbsp, SPCR1, w & ~rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100900
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800901 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
902 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300903
904 if (idle) {
905 /* Reset the sample rate generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800906 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800907 MCBSP_WRITE(mcbsp, SPCR2, w & ~(1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300908 }
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000909
910 if (cpu_is_omap34xx())
911 omap_st_stop(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100912}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300913EXPORT_SYMBOL(omap_mcbsp_stop);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100914
Paul Walmsley69d042d2011-07-01 08:52:25 +0000915/*
916 * The following functions are only required on an OMAP1-only build.
917 * mach-omap2/mcbsp.c contains the real functions
918 */
919#ifndef CONFIG_ARCH_OMAP2PLUS
920int omap2_mcbsp_set_clks_src(u8 id, u8 fck_src_id)
921{
922 WARN(1, "%s: should never be called on an OMAP1-only kernel\n",
923 __func__);
924 return -EINVAL;
925}
926
927void omap2_mcbsp1_mux_clkr_src(u8 mux)
928{
929 WARN(1, "%s: should never be called on an OMAP1-only kernel\n",
930 __func__);
931 return;
932}
933
934void omap2_mcbsp1_mux_fsr_src(u8 mux)
935{
936 WARN(1, "%s: should never be called on an OMAP1-only kernel\n",
937 __func__);
938 return;
939}
940#endif
941
Eduardo Valentina1a56f52009-08-20 16:18:11 +0300942#define max_thres(m) (mcbsp->pdata->buffer_size)
943#define valid_threshold(m, val) ((val) <= max_thres(m))
944#define THRESHOLD_PROP_BUILDER(prop) \
945static ssize_t prop##_show(struct device *dev, \
946 struct device_attribute *attr, char *buf) \
947{ \
948 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
949 \
950 return sprintf(buf, "%u\n", mcbsp->prop); \
951} \
952 \
953static ssize_t prop##_store(struct device *dev, \
954 struct device_attribute *attr, \
955 const char *buf, size_t size) \
956{ \
957 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
958 unsigned long val; \
959 int status; \
960 \
961 status = strict_strtoul(buf, 0, &val); \
962 if (status) \
963 return status; \
964 \
965 if (!valid_threshold(mcbsp, val)) \
966 return -EDOM; \
967 \
968 mcbsp->prop = val; \
969 return size; \
970} \
971 \
972static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
973
974THRESHOLD_PROP_BUILDER(max_tx_thres);
975THRESHOLD_PROP_BUILDER(max_rx_thres);
976
Jarkko Nikula9b300502009-08-24 17:45:50 +0300977static const char *dma_op_modes[] = {
978 "element", "threshold", "frame",
979};
980
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300981static ssize_t dma_op_mode_show(struct device *dev,
982 struct device_attribute *attr, char *buf)
983{
984 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +0300985 int dma_op_mode, i = 0;
986 ssize_t len = 0;
987 const char * const *s;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300988
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300989 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300990
Jarkko Nikula9b300502009-08-24 17:45:50 +0300991 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++) {
992 if (dma_op_mode == i)
993 len += sprintf(buf + len, "[%s] ", *s);
994 else
995 len += sprintf(buf + len, "%s ", *s);
996 }
997 len += sprintf(buf + len, "\n");
998
999 return len;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001000}
1001
1002static ssize_t dma_op_mode_store(struct device *dev,
1003 struct device_attribute *attr,
1004 const char *buf, size_t size)
1005{
1006 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +03001007 const char * const *s;
1008 int i = 0;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001009
Jarkko Nikula9b300502009-08-24 17:45:50 +03001010 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++)
1011 if (sysfs_streq(buf, *s))
1012 break;
1013
1014 if (i == ARRAY_SIZE(dma_op_modes))
1015 return -EINVAL;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001016
1017 spin_lock_irq(&mcbsp->lock);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001018 if (!mcbsp->free) {
1019 size = -EBUSY;
1020 goto unlock;
1021 }
Jarkko Nikula9b300502009-08-24 17:45:50 +03001022 mcbsp->dma_op_mode = i;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001023
1024unlock:
1025 spin_unlock_irq(&mcbsp->lock);
1026
1027 return size;
1028}
1029
1030static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
1031
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001032static const struct attribute *additional_attrs[] = {
1033 &dev_attr_max_tx_thres.attr,
1034 &dev_attr_max_rx_thres.attr,
1035 &dev_attr_dma_op_mode.attr,
1036 NULL,
1037};
1038
1039static const struct attribute_group additional_attr_group = {
1040 .attrs = (struct attribute **)additional_attrs,
1041};
1042
1043#ifdef CONFIG_ARCH_OMAP3
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001044static ssize_t st_taps_show(struct device *dev,
1045 struct device_attribute *attr, char *buf)
1046{
1047 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1048 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1049 ssize_t status = 0;
1050 int i;
1051
1052 spin_lock_irq(&mcbsp->lock);
1053 for (i = 0; i < st_data->nr_taps; i++)
1054 status += sprintf(&buf[status], (i ? ", %d" : "%d"),
1055 st_data->taps[i]);
1056 if (i)
1057 status += sprintf(&buf[status], "\n");
1058 spin_unlock_irq(&mcbsp->lock);
1059
1060 return status;
1061}
1062
1063static ssize_t st_taps_store(struct device *dev,
1064 struct device_attribute *attr,
1065 const char *buf, size_t size)
1066{
1067 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1068 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1069 int val, tmp, status, i = 0;
1070
1071 spin_lock_irq(&mcbsp->lock);
1072 memset(st_data->taps, 0, sizeof(st_data->taps));
1073 st_data->nr_taps = 0;
1074
1075 do {
1076 status = sscanf(buf, "%d%n", &val, &tmp);
1077 if (status < 0 || status == 0) {
1078 size = -EINVAL;
1079 goto out;
1080 }
1081 if (val < -32768 || val > 32767) {
1082 size = -EINVAL;
1083 goto out;
1084 }
1085 st_data->taps[i++] = val;
1086 buf += tmp;
1087 if (*buf != ',')
1088 break;
1089 buf++;
1090 } while (1);
1091
1092 st_data->nr_taps = i;
1093
1094out:
1095 spin_unlock_irq(&mcbsp->lock);
1096
1097 return size;
1098}
1099
1100static DEVICE_ATTR(st_taps, 0644, st_taps_show, st_taps_store);
1101
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001102static const struct attribute *sidetone_attrs[] = {
1103 &dev_attr_st_taps.attr,
1104 NULL,
1105};
1106
1107static const struct attribute_group sidetone_attr_group = {
1108 .attrs = (struct attribute **)sidetone_attrs,
1109};
1110
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -07001111static int __devinit omap_st_add(struct omap_mcbsp *mcbsp)
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001112{
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001113 struct platform_device *pdev;
1114 struct resource *res;
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001115 struct omap_mcbsp_st_data *st_data;
1116 int err;
1117
1118 st_data = kzalloc(sizeof(*mcbsp->st_data), GFP_KERNEL);
1119 if (!st_data) {
1120 err = -ENOMEM;
1121 goto err1;
1122 }
1123
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001124 pdev = container_of(mcbsp->dev, struct platform_device, dev);
1125
1126 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "sidetone");
1127 st_data->io_base_st = ioremap(res->start, resource_size(res));
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001128 if (!st_data->io_base_st) {
1129 err = -ENOMEM;
1130 goto err2;
1131 }
1132
1133 err = sysfs_create_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1134 if (err)
1135 goto err3;
1136
1137 mcbsp->st_data = st_data;
1138 return 0;
1139
1140err3:
1141 iounmap(st_data->io_base_st);
1142err2:
1143 kfree(st_data);
1144err1:
1145 return err;
1146
1147}
1148
1149static void __devexit omap_st_remove(struct omap_mcbsp *mcbsp)
1150{
1151 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1152
1153 if (st_data) {
1154 sysfs_remove_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1155 iounmap(st_data->io_base_st);
1156 kfree(st_data);
1157 }
1158}
1159
Eduardo Valentina1a56f52009-08-20 16:18:11 +03001160static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
1161{
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001162 if (cpu_is_omap34xx())
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001163 if (mcbsp->id == 2 || mcbsp->id == 3)
1164 if (omap_st_add(mcbsp))
1165 dev_warn(mcbsp->dev,
1166 "Unable to create sidetone controls\n");
Eduardo Valentina1a56f52009-08-20 16:18:11 +03001167}
1168
1169static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp)
1170{
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001171 if (cpu_is_omap34xx())
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001172 if (mcbsp->id == 2 || mcbsp->id == 3)
1173 omap_st_remove(mcbsp);
Eduardo Valentina1a56f52009-08-20 16:18:11 +03001174}
1175#else
1176static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {}
1177static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp) {}
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001178#endif /* CONFIG_ARCH_OMAP3 */
Eduardo Valentina1a56f52009-08-20 16:18:11 +03001179
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001180/*
1181 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
1182 * 730 has only 2 McBSP, and both of them are MPU peripherals.
1183 */
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001184static int __devinit omap_mcbsp_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001185{
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001186 struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001187 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001188 int id = pdev->id - 1;
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001189 struct resource *res;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001190 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001191
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001192 if (!pdata) {
1193 dev_err(&pdev->dev, "McBSP device initialized without"
1194 "platform data\n");
1195 ret = -EINVAL;
1196 goto exit;
1197 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001198
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001199 dev_dbg(&pdev->dev, "Initializing OMAP McBSP (%d).\n", pdev->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001200
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001201 if (id >= omap_mcbsp_count) {
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001202 dev_err(&pdev->dev, "Invalid McBSP device id (%d)\n", id);
1203 ret = -EINVAL;
1204 goto exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001205 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001206
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001207 mcbsp = kzalloc(sizeof(struct omap_mcbsp), GFP_KERNEL);
1208 if (!mcbsp) {
1209 ret = -ENOMEM;
1210 goto exit;
1211 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001212
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001213 spin_lock_init(&mcbsp->lock);
1214 mcbsp->id = id + 1;
Shubhrajyoti D6722a722010-12-07 16:25:41 -08001215 mcbsp->free = true;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001216
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001217 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mpu");
1218 if (!res) {
1219 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1220 if (!res) {
1221 dev_err(&pdev->dev, "%s:mcbsp%d has invalid memory"
1222 "resource\n", __func__, pdev->id);
1223 ret = -ENOMEM;
1224 goto exit;
1225 }
1226 }
1227 mcbsp->phys_base = res->start;
Jarkko Nikulaac6747c2011-09-26 10:45:43 +03001228 mcbsp->reg_cache_size = resource_size(res);
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001229 mcbsp->io_base = ioremap(res->start, resource_size(res));
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001230 if (!mcbsp->io_base) {
Russell Kingd592dd12008-09-04 14:25:42 +01001231 ret = -ENOMEM;
1232 goto err_ioremap;
1233 }
1234
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001235 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dma");
1236 if (!res)
1237 mcbsp->phys_dma_base = mcbsp->phys_base;
1238 else
1239 mcbsp->phys_dma_base = res->start;
1240
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001241 mcbsp->tx_irq = platform_get_irq_byname(pdev, "tx");
1242 mcbsp->rx_irq = platform_get_irq_byname(pdev, "rx");
1243
Kishon Vijay Abraham Icb7e9de2011-02-24 15:16:50 +05301244 /* From OMAP4 there will be a single irq line */
1245 if (mcbsp->tx_irq == -ENXIO)
1246 mcbsp->tx_irq = platform_get_irq(pdev, 0);
1247
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001248 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1249 if (!res) {
1250 dev_err(&pdev->dev, "%s:mcbsp%d has invalid rx DMA channel\n",
1251 __func__, pdev->id);
1252 ret = -ENODEV;
1253 goto err_res;
1254 }
1255 mcbsp->dma_rx_sync = res->start;
1256
1257 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1258 if (!res) {
1259 dev_err(&pdev->dev, "%s:mcbsp%d has invalid tx DMA channel\n",
1260 __func__, pdev->id);
1261 ret = -ENODEV;
1262 goto err_res;
1263 }
1264 mcbsp->dma_tx_sync = res->start;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001265
Russell Kingb820ce42009-01-23 10:26:46 +00001266 mcbsp->fclk = clk_get(&pdev->dev, "fck");
1267 if (IS_ERR(mcbsp->fclk)) {
1268 ret = PTR_ERR(mcbsp->fclk);
1269 dev_err(&pdev->dev, "unable to get fck: %d\n", ret);
Kishon Vijay Abraham Ie95496d2011-02-24 15:16:54 +05301270 goto err_res;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001271 }
1272
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001273 mcbsp->pdata = pdata;
1274 mcbsp->dev = &pdev->dev;
Russell Kingb820ce42009-01-23 10:26:46 +00001275 mcbsp_ptr[id] = mcbsp;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001276 platform_set_drvdata(pdev, mcbsp);
Kishon Vijay Abraham Ie95496d2011-02-24 15:16:54 +05301277 pm_runtime_enable(mcbsp->dev);
Eduardo Valentina1a56f52009-08-20 16:18:11 +03001278
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001279 mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
1280 if (mcbsp->pdata->buffer_size) {
1281 /*
1282 * Initially configure the maximum thresholds to a safe value.
1283 * The McBSP FIFO usage with these values should not go under
1284 * 16 locations.
1285 * If the whole FIFO without safety buffer is used, than there
1286 * is a possibility that the DMA will be not able to push the
1287 * new data on time, causing channel shifts in runtime.
1288 */
1289 mcbsp->max_tx_thres = max_thres(mcbsp) - 0x10;
1290 mcbsp->max_rx_thres = max_thres(mcbsp) - 0x10;
1291
1292 ret = sysfs_create_group(&mcbsp->dev->kobj,
1293 &additional_attr_group);
1294 if (ret) {
1295 dev_err(mcbsp->dev,
1296 "Unable to create additional controls\n");
1297 goto err_thres;
1298 }
1299 } else {
1300 mcbsp->max_tx_thres = -EINVAL;
1301 mcbsp->max_rx_thres = -EINVAL;
1302 }
1303
Eduardo Valentina1a56f52009-08-20 16:18:11 +03001304 /* Initialize mcbsp properties for OMAP34XX if needed / applicable */
1305 omap34xx_device_init(mcbsp);
1306
Russell Kingd592dd12008-09-04 14:25:42 +01001307 return 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001308
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001309err_thres:
1310 clk_put(mcbsp->fclk);
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -08001311err_res:
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001312 iounmap(mcbsp->io_base);
Russell Kingd592dd12008-09-04 14:25:42 +01001313err_ioremap:
Russell Kingb820ce42009-01-23 10:26:46 +00001314 kfree(mcbsp);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001315exit:
1316 return ret;
1317}
1318
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001319static int __devexit omap_mcbsp_remove(struct platform_device *pdev)
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001320{
1321 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
1322
1323 platform_set_drvdata(pdev, NULL);
1324 if (mcbsp) {
1325
1326 if (mcbsp->pdata && mcbsp->pdata->ops &&
1327 mcbsp->pdata->ops->free)
1328 mcbsp->pdata->ops->free(mcbsp->id);
1329
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001330 if (mcbsp->pdata->buffer_size)
1331 sysfs_remove_group(&mcbsp->dev->kobj,
1332 &additional_attr_group);
1333
Eduardo Valentina1a56f52009-08-20 16:18:11 +03001334 omap34xx_device_exit(mcbsp);
1335
Russell Kingb820ce42009-01-23 10:26:46 +00001336 clk_put(mcbsp->fclk);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001337
Russell Kingd592dd12008-09-04 14:25:42 +01001338 iounmap(mcbsp->io_base);
Jarkko Nikula5f3b7282010-12-07 16:25:40 -08001339 kfree(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001340 }
1341
1342 return 0;
1343}
1344
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001345static struct platform_driver omap_mcbsp_driver = {
1346 .probe = omap_mcbsp_probe,
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001347 .remove = __devexit_p(omap_mcbsp_remove),
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001348 .driver = {
1349 .name = "omap-mcbsp",
1350 },
1351};
1352
1353int __init omap_mcbsp_init(void)
1354{
1355 /* Register the McBSP driver */
1356 return platform_driver_register(&omap_mcbsp_driver);
1357}