blob: fe4734e0c18cf5c0a94b87e8644e8692debf2b78 [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001/*
Peter Ujfalusi71e822e2012-01-26 12:47:22 +02002 * sound/soc/omap/mcbsp.c
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01003 *
4 * Copyright (C) 2004 Nokia Corporation
5 * Author: Samuel Ortiz <samuel.ortiz@nokia.com>
6 *
Peter Ujfalusi71e822e2012-01-26 12:47:22 +02007 * Contact: Jarkko Nikula <jarkko.nikula@bitmer.com>
8 * Peter Ujfalusi <peter.ujfalusi@ti.com>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * Multichannel mode not supported.
15 */
16
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/device.h>
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +030020#include <linux/platform_device.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010021#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010027
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/mcbsp.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010029
Peter Ujfalusi219f4312012-02-03 13:11:47 +020030#include "mcbsp.h"
31
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070032static void omap_mcbsp_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030033{
Jarkko Nikulacdc715142011-09-26 10:45:39 +030034 void __iomem *addr = mcbsp->io_base + reg * mcbsp->pdata->reg_step;
35
36 if (mcbsp->pdata->reg_size == 2) {
37 ((u16 *)mcbsp->reg_cache)[reg] = (u16)val;
38 __raw_writew((u16)val, addr);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080039 } else {
Jarkko Nikulacdc715142011-09-26 10:45:39 +030040 ((u32 *)mcbsp->reg_cache)[reg] = val;
41 __raw_writel(val, addr);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080042 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +030043}
44
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070045static int omap_mcbsp_read(struct omap_mcbsp *mcbsp, u16 reg, bool from_cache)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030046{
Jarkko Nikulacdc715142011-09-26 10:45:39 +030047 void __iomem *addr = mcbsp->io_base + reg * mcbsp->pdata->reg_step;
48
49 if (mcbsp->pdata->reg_size == 2) {
50 return !from_cache ? __raw_readw(addr) :
51 ((u16 *)mcbsp->reg_cache)[reg];
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080052 } else {
Jarkko Nikulacdc715142011-09-26 10:45:39 +030053 return !from_cache ? __raw_readl(addr) :
54 ((u32 *)mcbsp->reg_cache)[reg];
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080055 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +030056}
57
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070058static void omap_mcbsp_st_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
Eero Nurkkalad912fa92010-02-22 12:21:11 +000059{
60 __raw_writel(val, mcbsp->st_data->io_base_st + reg);
61}
62
Manjunath Kondaiah Gb0a330d2010-10-08 10:00:19 -070063static int omap_mcbsp_st_read(struct omap_mcbsp *mcbsp, u16 reg)
Eero Nurkkalad912fa92010-02-22 12:21:11 +000064{
65 return __raw_readl(mcbsp->st_data->io_base_st + reg);
66}
Eero Nurkkalad912fa92010-02-22 12:21:11 +000067
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080068#define MCBSP_READ(mcbsp, reg) \
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080069 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 0)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080070#define MCBSP_WRITE(mcbsp, reg, val) \
71 omap_mcbsp_write(mcbsp, OMAP_MCBSP_REG_##reg, val)
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080072#define MCBSP_READ_CACHE(mcbsp, reg) \
73 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 1)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030074
Eero Nurkkalad912fa92010-02-22 12:21:11 +000075#define MCBSP_ST_READ(mcbsp, reg) \
76 omap_mcbsp_st_read(mcbsp, OMAP_ST_REG_##reg)
77#define MCBSP_ST_WRITE(mcbsp, reg, val) \
78 omap_mcbsp_st_write(mcbsp, OMAP_ST_REG_##reg, val)
79
Peter Ujfalusi45656b42012-02-14 18:20:58 +020080static void omap_mcbsp_dump_reg(struct omap_mcbsp *mcbsp)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010081{
Chandra Shekharb4b58f52008-10-08 10:01:39 +030082 dev_dbg(mcbsp->dev, "**** McBSP%d regs ****\n", mcbsp->id);
83 dev_dbg(mcbsp->dev, "DRR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080084 MCBSP_READ(mcbsp, DRR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030085 dev_dbg(mcbsp->dev, "DRR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080086 MCBSP_READ(mcbsp, DRR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030087 dev_dbg(mcbsp->dev, "DXR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080088 MCBSP_READ(mcbsp, DXR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030089 dev_dbg(mcbsp->dev, "DXR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080090 MCBSP_READ(mcbsp, DXR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030091 dev_dbg(mcbsp->dev, "SPCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080092 MCBSP_READ(mcbsp, SPCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030093 dev_dbg(mcbsp->dev, "SPCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080094 MCBSP_READ(mcbsp, SPCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030095 dev_dbg(mcbsp->dev, "RCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080096 MCBSP_READ(mcbsp, RCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030097 dev_dbg(mcbsp->dev, "RCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080098 MCBSP_READ(mcbsp, RCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030099 dev_dbg(mcbsp->dev, "XCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800100 MCBSP_READ(mcbsp, XCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300101 dev_dbg(mcbsp->dev, "XCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800102 MCBSP_READ(mcbsp, XCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300103 dev_dbg(mcbsp->dev, "SRGR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800104 MCBSP_READ(mcbsp, SRGR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300105 dev_dbg(mcbsp->dev, "SRGR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800106 MCBSP_READ(mcbsp, SRGR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300107 dev_dbg(mcbsp->dev, "PCR0: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800108 MCBSP_READ(mcbsp, PCR0));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300109 dev_dbg(mcbsp->dev, "***********************\n");
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100110}
111
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700112static irqreturn_t omap_mcbsp_tx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100113{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400114 struct omap_mcbsp *mcbsp_tx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700115 u16 irqst_spcr2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100116
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800117 irqst_spcr2 = MCBSP_READ(mcbsp_tx, SPCR2);
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700118 dev_dbg(mcbsp_tx->dev, "TX IRQ callback : 0x%x\n", irqst_spcr2);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100119
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700120 if (irqst_spcr2 & XSYNC_ERR) {
121 dev_err(mcbsp_tx->dev, "TX Frame Sync Error! : 0x%x\n",
122 irqst_spcr2);
123 /* Writing zero to XSYNC_ERR clears the IRQ */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000124 MCBSP_WRITE(mcbsp_tx, SPCR2, MCBSP_READ_CACHE(mcbsp_tx, SPCR2));
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700125 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300126
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100127 return IRQ_HANDLED;
128}
129
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700130static irqreturn_t omap_mcbsp_rx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100131{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400132 struct omap_mcbsp *mcbsp_rx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700133 u16 irqst_spcr1;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100134
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800135 irqst_spcr1 = MCBSP_READ(mcbsp_rx, SPCR1);
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700136 dev_dbg(mcbsp_rx->dev, "RX IRQ callback : 0x%x\n", irqst_spcr1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100137
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700138 if (irqst_spcr1 & RSYNC_ERR) {
139 dev_err(mcbsp_rx->dev, "RX Frame Sync Error! : 0x%x\n",
140 irqst_spcr1);
141 /* Writing zero to RSYNC_ERR clears the IRQ */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000142 MCBSP_WRITE(mcbsp_rx, SPCR1, MCBSP_READ_CACHE(mcbsp_rx, SPCR1));
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700143 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300144
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100145 return IRQ_HANDLED;
146}
147
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100148/*
149 * omap_mcbsp_config simply write a config to the
150 * appropriate McBSP.
151 * You either call this function or set the McBSP registers
152 * by yourself before calling omap_mcbsp_start().
153 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200154void omap_mcbsp_config(struct omap_mcbsp *mcbsp,
155 const struct omap_mcbsp_reg_cfg *config)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100156{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300157 dev_dbg(mcbsp->dev, "Configuring McBSP%d phys_base: 0x%08lx\n",
158 mcbsp->id, mcbsp->phys_base);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100159
160 /* We write the given config */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800161 MCBSP_WRITE(mcbsp, SPCR2, config->spcr2);
162 MCBSP_WRITE(mcbsp, SPCR1, config->spcr1);
163 MCBSP_WRITE(mcbsp, RCR2, config->rcr2);
164 MCBSP_WRITE(mcbsp, RCR1, config->rcr1);
165 MCBSP_WRITE(mcbsp, XCR2, config->xcr2);
166 MCBSP_WRITE(mcbsp, XCR1, config->xcr1);
167 MCBSP_WRITE(mcbsp, SRGR2, config->srgr2);
168 MCBSP_WRITE(mcbsp, SRGR1, config->srgr1);
169 MCBSP_WRITE(mcbsp, MCR2, config->mcr2);
170 MCBSP_WRITE(mcbsp, MCR1, config->mcr1);
171 MCBSP_WRITE(mcbsp, PCR0, config->pcr0);
Jarkko Nikula88408232011-09-26 10:45:41 +0300172 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800173 MCBSP_WRITE(mcbsp, XCCR, config->xccr);
174 MCBSP_WRITE(mcbsp, RCCR, config->rccr);
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200175 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100176}
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100177
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530178/**
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530179 * omap_mcbsp_dma_reg_params - returns the address of mcbsp data register
180 * @id - mcbsp id
181 * @stream - indicates the direction of data flow (rx or tx)
182 *
183 * Returns the address of mcbsp data transmit register or data receive register
184 * to be used by DMA for transferring/receiving data based on the value of
185 * @stream for the requested mcbsp given by @id
186 */
Peter Ujfalusib8fb4902012-02-14 15:41:29 +0200187static int omap_mcbsp_dma_reg_params(struct omap_mcbsp *mcbsp,
188 unsigned int stream)
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530189{
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530190 int data_reg;
191
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300192 if (mcbsp->pdata->reg_size == 2) {
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530193 if (stream)
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300194 data_reg = OMAP_MCBSP_REG_DRR1;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530195 else
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300196 data_reg = OMAP_MCBSP_REG_DXR1;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530197 } else {
198 if (stream)
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300199 data_reg = OMAP_MCBSP_REG_DRR;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530200 else
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300201 data_reg = OMAP_MCBSP_REG_DXR;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530202 }
203
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300204 return mcbsp->phys_dma_base + data_reg * mcbsp->pdata->reg_step;
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530205}
Kishon Vijay Abraham I9504ba62011-02-24 15:16:55 +0530206
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000207static void omap_st_on(struct omap_mcbsp *mcbsp)
208{
209 unsigned int w;
210
Jarkko Nikula1743d142011-09-26 10:45:44 +0300211 if (mcbsp->pdata->enable_st_clock)
212 mcbsp->pdata->enable_st_clock(mcbsp->id, 1);
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000213
214 /* Enable McBSP Sidetone */
215 w = MCBSP_READ(mcbsp, SSELCR);
216 MCBSP_WRITE(mcbsp, SSELCR, w | SIDETONEEN);
217
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000218 /* Enable Sidetone from Sidetone Core */
219 w = MCBSP_ST_READ(mcbsp, SSELCR);
220 MCBSP_ST_WRITE(mcbsp, SSELCR, w | ST_SIDETONEEN);
221}
222
223static void omap_st_off(struct omap_mcbsp *mcbsp)
224{
225 unsigned int w;
226
227 w = MCBSP_ST_READ(mcbsp, SSELCR);
228 MCBSP_ST_WRITE(mcbsp, SSELCR, w & ~(ST_SIDETONEEN));
229
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000230 w = MCBSP_READ(mcbsp, SSELCR);
231 MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN));
232
Jarkko Nikula1743d142011-09-26 10:45:44 +0300233 if (mcbsp->pdata->enable_st_clock)
234 mcbsp->pdata->enable_st_clock(mcbsp->id, 0);
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000235}
236
237static void omap_st_fir_write(struct omap_mcbsp *mcbsp, s16 *fir)
238{
239 u16 val, i;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000240
241 val = MCBSP_ST_READ(mcbsp, SSELCR);
242
243 if (val & ST_COEFFWREN)
244 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
245
246 MCBSP_ST_WRITE(mcbsp, SSELCR, val | ST_COEFFWREN);
247
248 for (i = 0; i < 128; i++)
249 MCBSP_ST_WRITE(mcbsp, SFIRCR, fir[i]);
250
251 i = 0;
252
253 val = MCBSP_ST_READ(mcbsp, SSELCR);
254 while (!(val & ST_COEFFWRDONE) && (++i < 1000))
255 val = MCBSP_ST_READ(mcbsp, SSELCR);
256
257 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
258
259 if (i == 1000)
260 dev_err(mcbsp->dev, "McBSP FIR load error!\n");
261}
262
263static void omap_st_chgain(struct omap_mcbsp *mcbsp)
264{
265 u16 w;
266 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000267
268 w = MCBSP_ST_READ(mcbsp, SSELCR);
269
270 MCBSP_ST_WRITE(mcbsp, SGAINCR, ST_CH0GAIN(st_data->ch0gain) | \
271 ST_CH1GAIN(st_data->ch1gain));
272}
273
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200274int omap_st_set_chgain(struct omap_mcbsp *mcbsp, int channel, s16 chgain)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000275{
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000276 struct omap_mcbsp_st_data *st_data;
277 int ret = 0;
278
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000279 st_data = mcbsp->st_data;
280
281 if (!st_data)
282 return -ENOENT;
283
284 spin_lock_irq(&mcbsp->lock);
285 if (channel == 0)
286 st_data->ch0gain = chgain;
287 else if (channel == 1)
288 st_data->ch1gain = chgain;
289 else
290 ret = -EINVAL;
291
292 if (st_data->enabled)
293 omap_st_chgain(mcbsp);
294 spin_unlock_irq(&mcbsp->lock);
295
296 return ret;
297}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000298
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200299int omap_st_get_chgain(struct omap_mcbsp *mcbsp, int channel, s16 *chgain)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000300{
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000301 struct omap_mcbsp_st_data *st_data;
302 int ret = 0;
303
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000304 st_data = mcbsp->st_data;
305
306 if (!st_data)
307 return -ENOENT;
308
309 spin_lock_irq(&mcbsp->lock);
310 if (channel == 0)
311 *chgain = st_data->ch0gain;
312 else if (channel == 1)
313 *chgain = st_data->ch1gain;
314 else
315 ret = -EINVAL;
316 spin_unlock_irq(&mcbsp->lock);
317
318 return ret;
319}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000320
321static int omap_st_start(struct omap_mcbsp *mcbsp)
322{
323 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
324
325 if (st_data && st_data->enabled && !st_data->running) {
326 omap_st_fir_write(mcbsp, st_data->taps);
327 omap_st_chgain(mcbsp);
328
329 if (!mcbsp->free) {
330 omap_st_on(mcbsp);
331 st_data->running = 1;
332 }
333 }
334
335 return 0;
336}
337
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200338int omap_st_enable(struct omap_mcbsp *mcbsp)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000339{
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000340 struct omap_mcbsp_st_data *st_data;
341
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000342 st_data = mcbsp->st_data;
343
344 if (!st_data)
345 return -ENODEV;
346
347 spin_lock_irq(&mcbsp->lock);
348 st_data->enabled = 1;
349 omap_st_start(mcbsp);
350 spin_unlock_irq(&mcbsp->lock);
351
352 return 0;
353}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000354
355static int omap_st_stop(struct omap_mcbsp *mcbsp)
356{
357 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
358
359 if (st_data && st_data->running) {
360 if (!mcbsp->free) {
361 omap_st_off(mcbsp);
362 st_data->running = 0;
363 }
364 }
365
366 return 0;
367}
368
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200369int omap_st_disable(struct omap_mcbsp *mcbsp)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000370{
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000371 struct omap_mcbsp_st_data *st_data;
372 int ret = 0;
373
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000374 st_data = mcbsp->st_data;
375
376 if (!st_data)
377 return -ENODEV;
378
379 spin_lock_irq(&mcbsp->lock);
380 omap_st_stop(mcbsp);
381 st_data->enabled = 0;
382 spin_unlock_irq(&mcbsp->lock);
383
384 return ret;
385}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000386
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200387int omap_st_is_enabled(struct omap_mcbsp *mcbsp)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000388{
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000389 struct omap_mcbsp_st_data *st_data;
390
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000391 st_data = mcbsp->st_data;
392
393 if (!st_data)
394 return -ENODEV;
395
396
397 return st_data->enabled;
398}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000399
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300400/*
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300401 * omap_mcbsp_set_rx_threshold configures the transmit threshold in words.
402 * The threshold parameter is 1 based, and it is converted (threshold - 1)
403 * for the THRSH2 register.
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300404 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200405void omap_mcbsp_set_tx_threshold(struct omap_mcbsp *mcbsp, u16 threshold)
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300406{
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300407 if (mcbsp->pdata->buffer_size == 0)
408 return;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300409
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300410 if (threshold && threshold <= mcbsp->max_tx_thres)
411 MCBSP_WRITE(mcbsp, THRSH2, threshold - 1);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300412}
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300413
414/*
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300415 * omap_mcbsp_set_rx_threshold configures the receive threshold in words.
416 * The threshold parameter is 1 based, and it is converted (threshold - 1)
417 * for the THRSH1 register.
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300418 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200419void omap_mcbsp_set_rx_threshold(struct omap_mcbsp *mcbsp, u16 threshold)
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300420{
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300421 if (mcbsp->pdata->buffer_size == 0)
422 return;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300423
Peter Ujfalusi451fd822010-06-03 07:39:33 +0300424 if (threshold && threshold <= mcbsp->max_rx_thres)
425 MCBSP_WRITE(mcbsp, THRSH1, threshold - 1);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300426}
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +0300427
428/*
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200429 * omap_mcbsp_get_tx_delay returns the number of used slots in the McBSP FIFO
430 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200431u16 omap_mcbsp_get_tx_delay(struct omap_mcbsp *mcbsp)
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200432{
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200433 u16 buffstat;
434
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300435 if (mcbsp->pdata->buffer_size == 0)
436 return 0;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200437
438 /* Returns the number of free locations in the buffer */
439 buffstat = MCBSP_READ(mcbsp, XBUFFSTAT);
440
441 /* Number of slots are different in McBSP ports */
Peter Ujfalusif10b8ad2010-06-03 07:39:34 +0300442 return mcbsp->pdata->buffer_size - buffstat;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200443}
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200444
445/*
446 * omap_mcbsp_get_rx_delay returns the number of free slots in the McBSP FIFO
447 * to reach the threshold value (when the DMA will be triggered to read it)
448 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200449u16 omap_mcbsp_get_rx_delay(struct omap_mcbsp *mcbsp)
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200450{
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200451 u16 buffstat, threshold;
452
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300453 if (mcbsp->pdata->buffer_size == 0)
454 return 0;
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200455
456 /* Returns the number of used locations in the buffer */
457 buffstat = MCBSP_READ(mcbsp, RBUFFSTAT);
458 /* RX threshold */
459 threshold = MCBSP_READ(mcbsp, THRSH1);
460
461 /* Return the number of location till we reach the threshold limit */
462 if (threshold <= buffstat)
463 return 0;
464 else
465 return threshold - buffstat;
466}
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200467
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200468int omap_mcbsp_request(struct omap_mcbsp *mcbsp)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100469{
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800470 void *reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100471 int err;
472
Jarkko Nikulaac6747ca2011-09-26 10:45:43 +0300473 reg_cache = kzalloc(mcbsp->reg_cache_size, GFP_KERNEL);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800474 if (!reg_cache) {
475 return -ENOMEM;
476 }
477
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300478 spin_lock(&mcbsp->lock);
479 if (!mcbsp->free) {
480 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
481 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800482 err = -EBUSY;
483 goto err_kfree;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100484 }
485
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800486 mcbsp->free = false;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800487 mcbsp->reg_cache = reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300488 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100489
Russell Kingb820ce42009-01-23 10:26:46 +0000490 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200491 mcbsp->pdata->ops->request(mcbsp->id - 1);
Russell Kingb820ce42009-01-23 10:26:46 +0000492
Jarkko Nikula1a645882011-09-26 10:45:40 +0300493 /* Enable wakeup behavior */
494 if (mcbsp->pdata->has_wakeup)
495 MCBSP_WRITE(mcbsp, WAKEUPEN, XRDYEN | RRDYEN);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300496
Jarkko Nikula5a070552008-10-08 10:01:41 +0300497 /*
498 * Make sure that transmitter, receiver and sample-rate generator are
499 * not running before activating IRQs.
500 */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800501 MCBSP_WRITE(mcbsp, SPCR1, 0);
502 MCBSP_WRITE(mcbsp, SPCR2, 0);
Jarkko Nikula5a070552008-10-08 10:01:41 +0300503
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000504 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
505 0, "McBSP", (void *)mcbsp);
506 if (err != 0) {
507 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
508 "for McBSP%d\n", mcbsp->tx_irq,
509 mcbsp->id);
510 goto err_clk_disable;
511 }
Tony Lindgren120db2c2006-04-02 17:46:27 +0100512
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000513 if (mcbsp->rx_irq) {
514 err = request_irq(mcbsp->rx_irq,
515 omap_mcbsp_rx_irq_handler,
516 0, "McBSP", (void *)mcbsp);
517 if (err != 0) {
518 dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
519 "for McBSP%d\n", mcbsp->rx_irq,
520 mcbsp->id);
521 goto err_free_irq;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100522 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100523 }
524
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100525 return 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800526err_free_irq:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800527 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800528err_clk_disable:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800529 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200530 mcbsp->pdata->ops->free(mcbsp->id - 1);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800531
Jarkko Nikula1a645882011-09-26 10:45:40 +0300532 /* Disable wakeup behavior */
533 if (mcbsp->pdata->has_wakeup)
534 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800535
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800536 spin_lock(&mcbsp->lock);
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800537 mcbsp->free = true;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800538 mcbsp->reg_cache = NULL;
539err_kfree:
540 spin_unlock(&mcbsp->lock);
541 kfree(reg_cache);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800542
543 return err;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100544}
545
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200546void omap_mcbsp_free(struct omap_mcbsp *mcbsp)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100547{
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800548 void *reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300549
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300550 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200551 mcbsp->pdata->ops->free(mcbsp->id - 1);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300552
Jarkko Nikula1a645882011-09-26 10:45:40 +0300553 /* Disable wakeup behavior */
554 if (mcbsp->pdata->has_wakeup)
555 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300556
Jarkko Nikulabafe2722011-06-14 11:23:52 +0000557 if (mcbsp->rx_irq)
558 free_irq(mcbsp->rx_irq, (void *)mcbsp);
559 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100560
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800561 reg_cache = mcbsp->reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100562
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800563 spin_lock(&mcbsp->lock);
564 if (mcbsp->free)
565 dev_err(mcbsp->dev, "McBSP%d was not reserved\n", mcbsp->id);
566 else
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800567 mcbsp->free = true;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800568 mcbsp->reg_cache = NULL;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300569 spin_unlock(&mcbsp->lock);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800570
571 if (reg_cache)
572 kfree(reg_cache);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100573}
574
575/*
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300576 * Here we start the McBSP, by enabling transmitter, receiver or both.
577 * If no transmitter or receiver is active prior calling, then sample-rate
578 * generator and frame sync are started.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100579 */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200580void omap_mcbsp_start(struct omap_mcbsp *mcbsp, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100581{
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000582 int enable_srg = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100583 u16 w;
584
Jarkko Nikulaf821eec2011-09-26 10:45:45 +0300585 if (mcbsp->st_data)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000586 omap_st_start(mcbsp);
587
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000588 /* Only enable SRG, if McBSP is master */
589 w = MCBSP_READ_CACHE(mcbsp, PCR0);
590 if (w & (FSXM | FSRM | CLKXM | CLKRM))
591 enable_srg = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
592 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300593
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000594 if (enable_srg) {
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300595 /* Start the sample generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800596 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800597 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300598 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100599
600 /* Enable transmitter and receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300601 tx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800602 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800603 MCBSP_WRITE(mcbsp, SPCR2, w | tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100604
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300605 rx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800606 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800607 MCBSP_WRITE(mcbsp, SPCR1, w | rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100608
Eduardo Valentin44a63112009-08-20 16:18:09 +0300609 /*
610 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
611 * REVISIT: 100us may give enough time for two CLKSRG, however
612 * due to some unknown PM related, clock gating etc. reason it
613 * is now at 500us.
614 */
615 udelay(500);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100616
Peter Ujfalusice3f0542010-08-31 08:11:44 +0000617 if (enable_srg) {
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300618 /* Start frame sync */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800619 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800620 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 7));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300621 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100622
Jarkko Nikula88408232011-09-26 10:45:41 +0300623 if (mcbsp->pdata->has_ccr) {
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300624 /* Release the transmitter and receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800625 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300626 w &= ~(tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800627 MCBSP_WRITE(mcbsp, XCCR, w);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800628 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300629 w &= ~(rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800630 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300631 }
632
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100633 /* Dump McBSP Regs */
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200634 omap_mcbsp_dump_reg(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100635}
636
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200637void omap_mcbsp_stop(struct omap_mcbsp *mcbsp, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100638{
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300639 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100640 u16 w;
641
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300642 /* Reset transmitter */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300643 tx &= 1;
Jarkko Nikula88408232011-09-26 10:45:41 +0300644 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800645 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300646 w |= (tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800647 MCBSP_WRITE(mcbsp, XCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300648 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800649 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800650 MCBSP_WRITE(mcbsp, SPCR2, w & ~tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100651
652 /* Reset receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300653 rx &= 1;
Jarkko Nikula88408232011-09-26 10:45:41 +0300654 if (mcbsp->pdata->has_ccr) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800655 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulaa93d4ed2009-10-14 09:56:35 -0700656 w |= (rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800657 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300658 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800659 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800660 MCBSP_WRITE(mcbsp, SPCR1, w & ~rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100661
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800662 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
663 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300664
665 if (idle) {
666 /* Reset the sample rate generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800667 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800668 MCBSP_WRITE(mcbsp, SPCR2, w & ~(1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300669 }
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000670
Jarkko Nikulaf821eec2011-09-26 10:45:45 +0300671 if (mcbsp->st_data)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000672 omap_st_stop(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100673}
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100674
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200675int omap2_mcbsp_set_clks_src(struct omap_mcbsp *mcbsp, u8 fck_src_id)
Paul Walmsley69d042d2011-07-01 08:52:25 +0000676{
Jarkko Nikula09d28d22011-09-26 10:45:48 +0300677 const char *src;
Paul Walmsley69d042d2011-07-01 08:52:25 +0000678
Jarkko Nikula09d28d22011-09-26 10:45:48 +0300679 if (fck_src_id == MCBSP_CLKS_PAD_SRC)
680 src = "clks_ext";
681 else if (fck_src_id == MCBSP_CLKS_PRCM_SRC)
682 src = "clks_fclk";
683 else
684 return -EINVAL;
685
686 if (mcbsp->pdata->set_clk_src)
687 return mcbsp->pdata->set_clk_src(mcbsp->dev, mcbsp->fclk, src);
688 else
689 return -EINVAL;
690}
Jarkko Nikula09d28d22011-09-26 10:45:48 +0300691
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200692void omap2_mcbsp1_mux_clkr_src(struct omap_mcbsp *mcbsp, u8 mux)
Paul Walmsley69d042d2011-07-01 08:52:25 +0000693{
Jarkko Nikula7bc0c4b2011-09-26 10:45:49 +0300694 const char *src;
695
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200696 if (mcbsp->id != 1)
697 return;
698
Jarkko Nikula7bc0c4b2011-09-26 10:45:49 +0300699 if (mux == CLKR_SRC_CLKR)
700 src = "clkr";
701 else if (mux == CLKR_SRC_CLKX)
702 src = "clkx";
703 else
704 return;
705
Jarkko Nikula7bc0c4b2011-09-26 10:45:49 +0300706 if (mcbsp->pdata->mux_signal)
707 mcbsp->pdata->mux_signal(mcbsp->dev, "clkr", src);
Paul Walmsley69d042d2011-07-01 08:52:25 +0000708}
709
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200710void omap2_mcbsp1_mux_fsr_src(struct omap_mcbsp *mcbsp, u8 mux)
Paul Walmsley69d042d2011-07-01 08:52:25 +0000711{
Jarkko Nikula7bc0c4b2011-09-26 10:45:49 +0300712 const char *src;
713
Peter Ujfalusi45656b42012-02-14 18:20:58 +0200714 if (mcbsp->id != 1)
715 return;
716
Jarkko Nikula7bc0c4b2011-09-26 10:45:49 +0300717 if (mux == FSR_SRC_FSR)
718 src = "fsr";
719 else if (mux == FSR_SRC_FSX)
720 src = "fsx";
721 else
722 return;
723
Jarkko Nikula7bc0c4b2011-09-26 10:45:49 +0300724 if (mcbsp->pdata->mux_signal)
725 mcbsp->pdata->mux_signal(mcbsp->dev, "fsr", src);
Paul Walmsley69d042d2011-07-01 08:52:25 +0000726}
Paul Walmsley69d042d2011-07-01 08:52:25 +0000727
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +0300728#define max_thres(m) (mcbsp->pdata->buffer_size)
729#define valid_threshold(m, val) ((val) <= max_thres(m))
730#define THRESHOLD_PROP_BUILDER(prop) \
731static ssize_t prop##_show(struct device *dev, \
732 struct device_attribute *attr, char *buf) \
733{ \
734 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
735 \
736 return sprintf(buf, "%u\n", mcbsp->prop); \
737} \
738 \
739static ssize_t prop##_store(struct device *dev, \
740 struct device_attribute *attr, \
741 const char *buf, size_t size) \
742{ \
743 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
744 unsigned long val; \
745 int status; \
746 \
747 status = strict_strtoul(buf, 0, &val); \
748 if (status) \
749 return status; \
750 \
751 if (!valid_threshold(mcbsp, val)) \
752 return -EDOM; \
753 \
754 mcbsp->prop = val; \
755 return size; \
756} \
757 \
758static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
759
760THRESHOLD_PROP_BUILDER(max_tx_thres);
761THRESHOLD_PROP_BUILDER(max_rx_thres);
762
Jarkko Nikula9b300502009-08-24 17:45:50 +0300763static const char *dma_op_modes[] = {
764 "element", "threshold", "frame",
765};
766
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300767static ssize_t dma_op_mode_show(struct device *dev,
768 struct device_attribute *attr, char *buf)
769{
770 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +0300771 int dma_op_mode, i = 0;
772 ssize_t len = 0;
773 const char * const *s;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300774
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300775 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300776
Jarkko Nikula9b300502009-08-24 17:45:50 +0300777 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++) {
778 if (dma_op_mode == i)
779 len += sprintf(buf + len, "[%s] ", *s);
780 else
781 len += sprintf(buf + len, "%s ", *s);
782 }
783 len += sprintf(buf + len, "\n");
784
785 return len;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300786}
787
788static ssize_t dma_op_mode_store(struct device *dev,
789 struct device_attribute *attr,
790 const char *buf, size_t size)
791{
792 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +0300793 const char * const *s;
794 int i = 0;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300795
Jarkko Nikula9b300502009-08-24 17:45:50 +0300796 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++)
797 if (sysfs_streq(buf, *s))
798 break;
799
800 if (i == ARRAY_SIZE(dma_op_modes))
801 return -EINVAL;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300802
803 spin_lock_irq(&mcbsp->lock);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300804 if (!mcbsp->free) {
805 size = -EBUSY;
806 goto unlock;
807 }
Jarkko Nikula9b300502009-08-24 17:45:50 +0300808 mcbsp->dma_op_mode = i;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300809
810unlock:
811 spin_unlock_irq(&mcbsp->lock);
812
813 return size;
814}
815
816static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
817
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300818static const struct attribute *additional_attrs[] = {
819 &dev_attr_max_tx_thres.attr,
820 &dev_attr_max_rx_thres.attr,
821 &dev_attr_dma_op_mode.attr,
822 NULL,
823};
824
825static const struct attribute_group additional_attr_group = {
826 .attrs = (struct attribute **)additional_attrs,
827};
828
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000829static ssize_t st_taps_show(struct device *dev,
830 struct device_attribute *attr, char *buf)
831{
832 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
833 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
834 ssize_t status = 0;
835 int i;
836
837 spin_lock_irq(&mcbsp->lock);
838 for (i = 0; i < st_data->nr_taps; i++)
839 status += sprintf(&buf[status], (i ? ", %d" : "%d"),
840 st_data->taps[i]);
841 if (i)
842 status += sprintf(&buf[status], "\n");
843 spin_unlock_irq(&mcbsp->lock);
844
845 return status;
846}
847
848static ssize_t st_taps_store(struct device *dev,
849 struct device_attribute *attr,
850 const char *buf, size_t size)
851{
852 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
853 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
854 int val, tmp, status, i = 0;
855
856 spin_lock_irq(&mcbsp->lock);
857 memset(st_data->taps, 0, sizeof(st_data->taps));
858 st_data->nr_taps = 0;
859
860 do {
861 status = sscanf(buf, "%d%n", &val, &tmp);
862 if (status < 0 || status == 0) {
863 size = -EINVAL;
864 goto out;
865 }
866 if (val < -32768 || val > 32767) {
867 size = -EINVAL;
868 goto out;
869 }
870 st_data->taps[i++] = val;
871 buf += tmp;
872 if (*buf != ',')
873 break;
874 buf++;
875 } while (1);
876
877 st_data->nr_taps = i;
878
879out:
880 spin_unlock_irq(&mcbsp->lock);
881
882 return size;
883}
884
885static DEVICE_ATTR(st_taps, 0644, st_taps_show, st_taps_store);
886
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000887static const struct attribute *sidetone_attrs[] = {
888 &dev_attr_st_taps.attr,
889 NULL,
890};
891
892static const struct attribute_group sidetone_attr_group = {
893 .attrs = (struct attribute **)sidetone_attrs,
894};
895
Jarkko Nikulaf821eec2011-09-26 10:45:45 +0300896static int __devinit omap_st_add(struct omap_mcbsp *mcbsp,
897 struct resource *res)
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000898{
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000899 struct omap_mcbsp_st_data *st_data;
900 int err;
901
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200902 st_data = devm_kzalloc(mcbsp->dev, sizeof(*mcbsp->st_data), GFP_KERNEL);
903 if (!st_data)
904 return -ENOMEM;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000905
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200906 st_data->io_base_st = devm_ioremap(mcbsp->dev, res->start,
907 resource_size(res));
908 if (!st_data->io_base_st)
909 return -ENOMEM;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000910
911 err = sysfs_create_group(&mcbsp->dev->kobj, &sidetone_attr_group);
912 if (err)
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200913 return err;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000914
915 mcbsp->st_data = st_data;
916 return 0;
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000917}
918
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100919/*
920 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
921 * 730 has only 2 McBSP, and both of them are MPU peripherals.
922 */
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200923int __devinit omap_mcbsp_init(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100924{
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200925 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800926 struct resource *res;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300927 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100928
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300929 spin_lock_init(&mcbsp->lock);
Shubhrajyoti D6722a722010-12-07 16:25:41 -0800930 mcbsp->free = true;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300931
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800932 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mpu");
933 if (!res) {
934 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
935 if (!res) {
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200936 dev_err(mcbsp->dev, "invalid memory resource\n");
937 return -ENOMEM;
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800938 }
939 }
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200940 if (!devm_request_mem_region(&pdev->dev, res->start, resource_size(res),
941 dev_name(&pdev->dev))) {
942 dev_err(mcbsp->dev, "memory region already claimed\n");
943 return -ENODEV;
944 }
945
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800946 mcbsp->phys_base = res->start;
Jarkko Nikulaac6747ca2011-09-26 10:45:43 +0300947 mcbsp->reg_cache_size = resource_size(res);
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200948 mcbsp->io_base = devm_ioremap(&pdev->dev, res->start,
949 resource_size(res));
950 if (!mcbsp->io_base)
951 return -ENOMEM;
Russell Kingd592dd12008-09-04 14:25:42 +0100952
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800953 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dma");
954 if (!res)
955 mcbsp->phys_dma_base = mcbsp->phys_base;
956 else
957 mcbsp->phys_dma_base = res->start;
958
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800959 mcbsp->tx_irq = platform_get_irq_byname(pdev, "tx");
960 mcbsp->rx_irq = platform_get_irq_byname(pdev, "rx");
961
Kishon Vijay Abraham Icb7e9de2011-02-24 15:16:50 +0530962 /* From OMAP4 there will be a single irq line */
963 if (mcbsp->tx_irq == -ENXIO)
964 mcbsp->tx_irq = platform_get_irq(pdev, 0);
965
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800966 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
967 if (!res) {
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200968 dev_err(&pdev->dev, "invalid rx DMA channel\n");
969 return -ENODEV;
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800970 }
Peter Ujfalusib8fb4902012-02-14 15:41:29 +0200971 /* RX DMA request number, and port address configuration */
972 mcbsp->dma_data[1].name = "Audio Capture";
973 mcbsp->dma_data[1].dma_req = res->start;
974 mcbsp->dma_data[1].port_addr = omap_mcbsp_dma_reg_params(mcbsp, 1);
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800975
976 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
977 if (!res) {
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200978 dev_err(&pdev->dev, "invalid tx DMA channel\n");
979 return -ENODEV;
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800980 }
Peter Ujfalusib8fb4902012-02-14 15:41:29 +0200981 /* TX DMA request number, and port address configuration */
982 mcbsp->dma_data[0].name = "Audio Playback";
983 mcbsp->dma_data[0].dma_req = res->start;
984 mcbsp->dma_data[0].port_addr = omap_mcbsp_dma_reg_params(mcbsp, 0);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300985
Russell Kingb820ce42009-01-23 10:26:46 +0000986 mcbsp->fclk = clk_get(&pdev->dev, "fck");
987 if (IS_ERR(mcbsp->fclk)) {
988 ret = PTR_ERR(mcbsp->fclk);
Peter Ujfalusi2ee65952012-02-14 14:52:42 +0200989 dev_err(mcbsp->dev, "unable to get fck: %d\n", ret);
990 return ret;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300991 }
992
Jarkko Nikula7bba67a2011-09-26 10:45:42 +0300993 mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
994 if (mcbsp->pdata->buffer_size) {
995 /*
996 * Initially configure the maximum thresholds to a safe value.
997 * The McBSP FIFO usage with these values should not go under
998 * 16 locations.
999 * If the whole FIFO without safety buffer is used, than there
1000 * is a possibility that the DMA will be not able to push the
1001 * new data on time, causing channel shifts in runtime.
1002 */
1003 mcbsp->max_tx_thres = max_thres(mcbsp) - 0x10;
1004 mcbsp->max_rx_thres = max_thres(mcbsp) - 0x10;
1005
1006 ret = sysfs_create_group(&mcbsp->dev->kobj,
1007 &additional_attr_group);
1008 if (ret) {
1009 dev_err(mcbsp->dev,
1010 "Unable to create additional controls\n");
1011 goto err_thres;
1012 }
1013 } else {
1014 mcbsp->max_tx_thres = -EINVAL;
1015 mcbsp->max_rx_thres = -EINVAL;
1016 }
1017
Jarkko Nikulaf821eec2011-09-26 10:45:45 +03001018 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "sidetone");
1019 if (res) {
1020 ret = omap_st_add(mcbsp, res);
1021 if (ret) {
1022 dev_err(mcbsp->dev,
1023 "Unable to create sidetone controls\n");
1024 goto err_st;
1025 }
1026 }
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001027
Russell Kingd592dd12008-09-04 14:25:42 +01001028 return 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001029
Jarkko Nikulaf821eec2011-09-26 10:45:45 +03001030err_st:
1031 if (mcbsp->pdata->buffer_size)
Peter Ujfalusi2ee65952012-02-14 14:52:42 +02001032 sysfs_remove_group(&mcbsp->dev->kobj, &additional_attr_group);
Jarkko Nikula7bba67a2011-09-26 10:45:42 +03001033err_thres:
1034 clk_put(mcbsp->fclk);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001035 return ret;
1036}
1037
Peter Ujfalusi2ee65952012-02-14 14:52:42 +02001038void __devexit omap_mcbsp_sysfs_remove(struct omap_mcbsp *mcbsp)
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001039{
Peter Ujfalusi2ee65952012-02-14 14:52:42 +02001040 if (mcbsp->pdata->buffer_size)
1041 sysfs_remove_group(&mcbsp->dev->kobj, &additional_attr_group);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001042
Peter Ujfalusi2ee65952012-02-14 14:52:42 +02001043 if (mcbsp->st_data)
1044 sysfs_remove_group(&mcbsp->dev->kobj, &sidetone_attr_group);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001045}