Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 1 | /* |
| 2 | * omap-mcpdm.c -- OMAP ALSA SoC DAI driver using McPDM port |
| 3 | * |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 4 | * Copyright (C) 2009 - 2011 Texas Instruments |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 5 | * |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 6 | * Author: Misael Lopez Cruz <misael.lopez@ti.com> |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 7 | * Contact: Jorge Eduardo Candelaria <x0107209@ti.com> |
| 8 | * Margarita Olaya <magi.olaya@ti.com> |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 9 | * Peter Ujfalusi <peter.ujfalusi@ti.com> |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License |
| 13 | * version 2 as published by the Free Software Foundation. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, but |
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
| 23 | * 02110-1301 USA |
| 24 | * |
| 25 | */ |
| 26 | |
| 27 | #include <linux/init.h> |
| 28 | #include <linux/module.h> |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 29 | #include <linux/platform_device.h> |
| 30 | #include <linux/interrupt.h> |
| 31 | #include <linux/err.h> |
| 32 | #include <linux/io.h> |
| 33 | #include <linux/irq.h> |
| 34 | #include <linux/slab.h> |
| 35 | #include <linux/pm_runtime.h> |
Peter Ujfalusi | 7cb8a1b | 2011-11-15 11:32:14 +0200 | [diff] [blame] | 36 | #include <linux/of_device.h> |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 37 | |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 38 | #include <sound/core.h> |
| 39 | #include <sound/pcm.h> |
| 40 | #include <sound/pcm_params.h> |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 41 | #include <sound/soc.h> |
| 42 | |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 43 | #include <plat/dma.h> |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 44 | #include <plat/omap_hwmod.h> |
| 45 | #include "omap-mcpdm.h" |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 46 | #include "omap-pcm.h" |
| 47 | |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame^] | 48 | #define OMAP44XX_MCPDM_L3_BASE 0x49032000 |
| 49 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 50 | struct omap_mcpdm { |
| 51 | struct device *dev; |
| 52 | unsigned long phys_base; |
| 53 | void __iomem *io_base; |
| 54 | int irq; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 55 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 56 | struct mutex mutex; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 57 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 58 | /* channel data */ |
| 59 | u32 dn_channels; |
| 60 | u32 up_channels; |
| 61 | |
| 62 | /* McPDM FIFO thresholds */ |
| 63 | u32 dn_threshold; |
| 64 | u32 up_threshold; |
Peter Ujfalusi | 89b0d55 | 2011-09-26 16:05:58 +0300 | [diff] [blame] | 65 | |
| 66 | /* McPDM dn offsets for rx1, and 2 channels */ |
| 67 | u32 dn_rx_offset; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | /* |
| 71 | * Stream DMA parameters |
| 72 | */ |
| 73 | static struct omap_pcm_dma_data omap_mcpdm_dai_dma_params[] = { |
| 74 | { |
| 75 | .name = "Audio playback", |
| 76 | .dma_req = OMAP44XX_DMA_MCPDM_DL, |
| 77 | .data_type = OMAP_DMA_DATA_TYPE_S32, |
| 78 | .sync_mode = OMAP_DMA_SYNC_PACKET, |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 79 | .port_addr = OMAP44XX_MCPDM_L3_BASE + MCPDM_REG_DN_DATA, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 80 | }, |
| 81 | { |
| 82 | .name = "Audio capture", |
| 83 | .dma_req = OMAP44XX_DMA_MCPDM_UP, |
| 84 | .data_type = OMAP_DMA_DATA_TYPE_S32, |
| 85 | .sync_mode = OMAP_DMA_SYNC_PACKET, |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 86 | .port_addr = OMAP44XX_MCPDM_L3_BASE + MCPDM_REG_UP_DATA, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 87 | }, |
| 88 | }; |
| 89 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 90 | static inline void omap_mcpdm_write(struct omap_mcpdm *mcpdm, u16 reg, u32 val) |
| 91 | { |
| 92 | __raw_writel(val, mcpdm->io_base + reg); |
| 93 | } |
| 94 | |
| 95 | static inline int omap_mcpdm_read(struct omap_mcpdm *mcpdm, u16 reg) |
| 96 | { |
| 97 | return __raw_readl(mcpdm->io_base + reg); |
| 98 | } |
| 99 | |
| 100 | #ifdef DEBUG |
| 101 | static void omap_mcpdm_reg_dump(struct omap_mcpdm *mcpdm) |
| 102 | { |
| 103 | dev_dbg(mcpdm->dev, "***********************\n"); |
| 104 | dev_dbg(mcpdm->dev, "IRQSTATUS_RAW: 0x%04x\n", |
| 105 | omap_mcpdm_read(mcpdm, MCPDM_REG_IRQSTATUS_RAW)); |
| 106 | dev_dbg(mcpdm->dev, "IRQSTATUS: 0x%04x\n", |
| 107 | omap_mcpdm_read(mcpdm, MCPDM_REG_IRQSTATUS)); |
| 108 | dev_dbg(mcpdm->dev, "IRQENABLE_SET: 0x%04x\n", |
| 109 | omap_mcpdm_read(mcpdm, MCPDM_REG_IRQENABLE_SET)); |
| 110 | dev_dbg(mcpdm->dev, "IRQENABLE_CLR: 0x%04x\n", |
| 111 | omap_mcpdm_read(mcpdm, MCPDM_REG_IRQENABLE_CLR)); |
| 112 | dev_dbg(mcpdm->dev, "IRQWAKE_EN: 0x%04x\n", |
| 113 | omap_mcpdm_read(mcpdm, MCPDM_REG_IRQWAKE_EN)); |
| 114 | dev_dbg(mcpdm->dev, "DMAENABLE_SET: 0x%04x\n", |
| 115 | omap_mcpdm_read(mcpdm, MCPDM_REG_DMAENABLE_SET)); |
| 116 | dev_dbg(mcpdm->dev, "DMAENABLE_CLR: 0x%04x\n", |
| 117 | omap_mcpdm_read(mcpdm, MCPDM_REG_DMAENABLE_CLR)); |
| 118 | dev_dbg(mcpdm->dev, "DMAWAKEEN: 0x%04x\n", |
| 119 | omap_mcpdm_read(mcpdm, MCPDM_REG_DMAWAKEEN)); |
| 120 | dev_dbg(mcpdm->dev, "CTRL: 0x%04x\n", |
| 121 | omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL)); |
| 122 | dev_dbg(mcpdm->dev, "DN_DATA: 0x%04x\n", |
| 123 | omap_mcpdm_read(mcpdm, MCPDM_REG_DN_DATA)); |
| 124 | dev_dbg(mcpdm->dev, "UP_DATA: 0x%04x\n", |
| 125 | omap_mcpdm_read(mcpdm, MCPDM_REG_UP_DATA)); |
| 126 | dev_dbg(mcpdm->dev, "FIFO_CTRL_DN: 0x%04x\n", |
| 127 | omap_mcpdm_read(mcpdm, MCPDM_REG_FIFO_CTRL_DN)); |
| 128 | dev_dbg(mcpdm->dev, "FIFO_CTRL_UP: 0x%04x\n", |
| 129 | omap_mcpdm_read(mcpdm, MCPDM_REG_FIFO_CTRL_UP)); |
| 130 | dev_dbg(mcpdm->dev, "***********************\n"); |
| 131 | } |
| 132 | #else |
| 133 | static void omap_mcpdm_reg_dump(struct omap_mcpdm *mcpdm) {} |
| 134 | #endif |
| 135 | |
| 136 | /* |
| 137 | * Enables the transfer through the PDM interface to/from the Phoenix |
| 138 | * codec by enabling the corresponding UP or DN channels. |
| 139 | */ |
| 140 | static void omap_mcpdm_start(struct omap_mcpdm *mcpdm) |
| 141 | { |
| 142 | u32 ctrl = omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL); |
| 143 | |
| 144 | ctrl |= (MCPDM_SW_DN_RST | MCPDM_SW_UP_RST); |
| 145 | omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl); |
| 146 | |
| 147 | ctrl |= mcpdm->dn_channels | mcpdm->up_channels; |
| 148 | omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl); |
| 149 | |
| 150 | ctrl &= ~(MCPDM_SW_DN_RST | MCPDM_SW_UP_RST); |
| 151 | omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl); |
| 152 | } |
| 153 | |
| 154 | /* |
| 155 | * Disables the transfer through the PDM interface to/from the Phoenix |
| 156 | * codec by disabling the corresponding UP or DN channels. |
| 157 | */ |
| 158 | static void omap_mcpdm_stop(struct omap_mcpdm *mcpdm) |
| 159 | { |
| 160 | u32 ctrl = omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL); |
| 161 | |
| 162 | ctrl |= (MCPDM_SW_DN_RST | MCPDM_SW_UP_RST); |
| 163 | omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl); |
| 164 | |
| 165 | ctrl &= ~(mcpdm->dn_channels | mcpdm->up_channels); |
| 166 | omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl); |
| 167 | |
| 168 | ctrl &= ~(MCPDM_SW_DN_RST | MCPDM_SW_UP_RST); |
| 169 | omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, ctrl); |
| 170 | |
| 171 | } |
| 172 | |
| 173 | /* |
| 174 | * Is the physical McPDM interface active. |
| 175 | */ |
| 176 | static inline int omap_mcpdm_active(struct omap_mcpdm *mcpdm) |
| 177 | { |
| 178 | return omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL) & |
| 179 | (MCPDM_PDM_DN_MASK | MCPDM_PDM_UP_MASK); |
| 180 | } |
| 181 | |
| 182 | /* |
| 183 | * Configures McPDM uplink, and downlink for audio. |
| 184 | * This function should be called before omap_mcpdm_start. |
| 185 | */ |
| 186 | static void omap_mcpdm_open_streams(struct omap_mcpdm *mcpdm) |
| 187 | { |
| 188 | omap_mcpdm_write(mcpdm, MCPDM_REG_IRQENABLE_SET, |
| 189 | MCPDM_DN_IRQ_EMPTY | MCPDM_DN_IRQ_FULL | |
| 190 | MCPDM_UP_IRQ_EMPTY | MCPDM_UP_IRQ_FULL); |
| 191 | |
Peter Ujfalusi | 89b0d55 | 2011-09-26 16:05:58 +0300 | [diff] [blame] | 192 | /* Enable DN RX1/2 offset cancellation feature, if configured */ |
| 193 | if (mcpdm->dn_rx_offset) { |
| 194 | u32 dn_offset = mcpdm->dn_rx_offset; |
| 195 | |
| 196 | omap_mcpdm_write(mcpdm, MCPDM_REG_DN_OFFSET, dn_offset); |
| 197 | dn_offset |= (MCPDM_DN_OFST_RX1_EN | MCPDM_DN_OFST_RX2_EN); |
| 198 | omap_mcpdm_write(mcpdm, MCPDM_REG_DN_OFFSET, dn_offset); |
| 199 | } |
| 200 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 201 | omap_mcpdm_write(mcpdm, MCPDM_REG_FIFO_CTRL_DN, mcpdm->dn_threshold); |
| 202 | omap_mcpdm_write(mcpdm, MCPDM_REG_FIFO_CTRL_UP, mcpdm->up_threshold); |
| 203 | |
| 204 | omap_mcpdm_write(mcpdm, MCPDM_REG_DMAENABLE_SET, |
| 205 | MCPDM_DMA_DN_ENABLE | MCPDM_DMA_UP_ENABLE); |
| 206 | } |
| 207 | |
| 208 | /* |
| 209 | * Cleans McPDM uplink, and downlink configuration. |
| 210 | * This function should be called when the stream is closed. |
| 211 | */ |
| 212 | static void omap_mcpdm_close_streams(struct omap_mcpdm *mcpdm) |
| 213 | { |
| 214 | /* Disable irq request generation for downlink */ |
| 215 | omap_mcpdm_write(mcpdm, MCPDM_REG_IRQENABLE_CLR, |
| 216 | MCPDM_DN_IRQ_EMPTY | MCPDM_DN_IRQ_FULL); |
| 217 | |
| 218 | /* Disable DMA request generation for downlink */ |
| 219 | omap_mcpdm_write(mcpdm, MCPDM_REG_DMAENABLE_CLR, MCPDM_DMA_DN_ENABLE); |
| 220 | |
| 221 | /* Disable irq request generation for uplink */ |
| 222 | omap_mcpdm_write(mcpdm, MCPDM_REG_IRQENABLE_CLR, |
| 223 | MCPDM_UP_IRQ_EMPTY | MCPDM_UP_IRQ_FULL); |
| 224 | |
| 225 | /* Disable DMA request generation for uplink */ |
| 226 | omap_mcpdm_write(mcpdm, MCPDM_REG_DMAENABLE_CLR, MCPDM_DMA_UP_ENABLE); |
Peter Ujfalusi | 89b0d55 | 2011-09-26 16:05:58 +0300 | [diff] [blame] | 227 | |
| 228 | /* Disable RX1/2 offset cancellation */ |
| 229 | if (mcpdm->dn_rx_offset) |
| 230 | omap_mcpdm_write(mcpdm, MCPDM_REG_DN_OFFSET, 0); |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | static irqreturn_t omap_mcpdm_irq_handler(int irq, void *dev_id) |
| 234 | { |
| 235 | struct omap_mcpdm *mcpdm = dev_id; |
| 236 | int irq_status; |
| 237 | |
| 238 | irq_status = omap_mcpdm_read(mcpdm, MCPDM_REG_IRQSTATUS); |
| 239 | |
| 240 | /* Acknowledge irq event */ |
| 241 | omap_mcpdm_write(mcpdm, MCPDM_REG_IRQSTATUS, irq_status); |
| 242 | |
| 243 | if (irq_status & MCPDM_DN_IRQ_FULL) |
| 244 | dev_dbg(mcpdm->dev, "DN (playback) FIFO Full\n"); |
| 245 | |
| 246 | if (irq_status & MCPDM_DN_IRQ_EMPTY) |
| 247 | dev_dbg(mcpdm->dev, "DN (playback) FIFO Empty\n"); |
| 248 | |
| 249 | if (irq_status & MCPDM_DN_IRQ) |
| 250 | dev_dbg(mcpdm->dev, "DN (playback) write request\n"); |
| 251 | |
| 252 | if (irq_status & MCPDM_UP_IRQ_FULL) |
| 253 | dev_dbg(mcpdm->dev, "UP (capture) FIFO Full\n"); |
| 254 | |
| 255 | if (irq_status & MCPDM_UP_IRQ_EMPTY) |
| 256 | dev_dbg(mcpdm->dev, "UP (capture) FIFO Empty\n"); |
| 257 | |
| 258 | if (irq_status & MCPDM_UP_IRQ) |
| 259 | dev_dbg(mcpdm->dev, "UP (capture) write request\n"); |
| 260 | |
| 261 | return IRQ_HANDLED; |
| 262 | } |
| 263 | |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 264 | static int omap_mcpdm_dai_startup(struct snd_pcm_substream *substream, |
| 265 | struct snd_soc_dai *dai) |
| 266 | { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 267 | struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 268 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 269 | mutex_lock(&mcpdm->mutex); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 270 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 271 | if (!dai->active) { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 272 | /* Enable watch dog for ES above ES 1.0 to avoid saturation */ |
| 273 | if (omap_rev() != OMAP4430_REV_ES1_0) { |
| 274 | u32 ctrl = omap_mcpdm_read(mcpdm, MCPDM_REG_CTRL); |
| 275 | |
| 276 | omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, |
| 277 | ctrl | MCPDM_WD_EN); |
| 278 | } |
| 279 | omap_mcpdm_open_streams(mcpdm); |
| 280 | } |
| 281 | |
| 282 | mutex_unlock(&mcpdm->mutex); |
| 283 | |
| 284 | return 0; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | static void omap_mcpdm_dai_shutdown(struct snd_pcm_substream *substream, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 288 | struct snd_soc_dai *dai) |
| 289 | { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 290 | struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 291 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 292 | mutex_lock(&mcpdm->mutex); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 293 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 294 | if (!dai->active) { |
| 295 | if (omap_mcpdm_active(mcpdm)) { |
| 296 | omap_mcpdm_stop(mcpdm); |
| 297 | omap_mcpdm_close_streams(mcpdm); |
| 298 | } |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 299 | } |
| 300 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 301 | mutex_unlock(&mcpdm->mutex); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | static int omap_mcpdm_dai_hw_params(struct snd_pcm_substream *substream, |
| 305 | struct snd_pcm_hw_params *params, |
| 306 | struct snd_soc_dai *dai) |
| 307 | { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 308 | struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 309 | int stream = substream->stream; |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 310 | struct omap_pcm_dma_data *dma_data; |
| 311 | int channels; |
| 312 | int link_mask = 0; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 313 | |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 314 | channels = params_channels(params); |
| 315 | switch (channels) { |
Peter Ujfalusi | 3b5b516 | 2011-09-23 09:49:43 +0300 | [diff] [blame] | 316 | case 5: |
| 317 | if (stream == SNDRV_PCM_STREAM_CAPTURE) |
| 318 | /* up to 3 channels for capture */ |
| 319 | return -EINVAL; |
| 320 | link_mask |= 1 << 4; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 321 | case 4: |
| 322 | if (stream == SNDRV_PCM_STREAM_CAPTURE) |
Peter Ujfalusi | 3b5b516 | 2011-09-23 09:49:43 +0300 | [diff] [blame] | 323 | /* up to 3 channels for capture */ |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 324 | return -EINVAL; |
| 325 | link_mask |= 1 << 3; |
| 326 | case 3: |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 327 | link_mask |= 1 << 2; |
| 328 | case 2: |
| 329 | link_mask |= 1 << 1; |
| 330 | case 1: |
| 331 | link_mask |= 1 << 0; |
| 332 | break; |
| 333 | default: |
| 334 | /* unsupported number of channels */ |
| 335 | return -EINVAL; |
| 336 | } |
| 337 | |
Peter Ujfalusi | b199adf | 2011-08-02 13:35:30 +0300 | [diff] [blame] | 338 | dma_data = &omap_mcpdm_dai_dma_params[stream]; |
Peter Ujfalusi | b199adf | 2011-08-02 13:35:30 +0300 | [diff] [blame] | 339 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 340 | /* Configure McPDM channels, and DMA packet size */ |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 341 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 342 | mcpdm->dn_channels = link_mask << 3; |
| 343 | dma_data->packet_size = |
| 344 | (MCPDM_DN_THRES_MAX - mcpdm->dn_threshold) * channels; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 345 | } else { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 346 | mcpdm->up_channels = link_mask << 0; |
| 347 | dma_data->packet_size = mcpdm->up_threshold * channels; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 348 | } |
| 349 | |
Peter Ujfalusi | b199adf | 2011-08-02 13:35:30 +0300 | [diff] [blame] | 350 | snd_soc_dai_set_dma_data(dai, substream, dma_data); |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 351 | |
| 352 | return 0; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 353 | } |
| 354 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 355 | static int omap_mcpdm_prepare(struct snd_pcm_substream *substream, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 356 | struct snd_soc_dai *dai) |
| 357 | { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 358 | struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 359 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 360 | if (!omap_mcpdm_active(mcpdm)) { |
| 361 | omap_mcpdm_start(mcpdm); |
| 362 | omap_mcpdm_reg_dump(mcpdm); |
| 363 | } |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 364 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 365 | return 0; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 366 | } |
| 367 | |
Lars-Peter Clausen | 85e7652 | 2011-11-23 11:40:40 +0100 | [diff] [blame] | 368 | static const struct snd_soc_dai_ops omap_mcpdm_dai_ops = { |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 369 | .startup = omap_mcpdm_dai_startup, |
| 370 | .shutdown = omap_mcpdm_dai_shutdown, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 371 | .hw_params = omap_mcpdm_dai_hw_params, |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 372 | .prepare = omap_mcpdm_prepare, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 373 | }; |
| 374 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 375 | static int omap_mcpdm_probe(struct snd_soc_dai *dai) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 376 | { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 377 | struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai); |
| 378 | int ret; |
| 379 | |
| 380 | pm_runtime_enable(mcpdm->dev); |
| 381 | |
| 382 | /* Disable lines while request is ongoing */ |
| 383 | pm_runtime_get_sync(mcpdm->dev); |
| 384 | omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, 0x00); |
| 385 | |
| 386 | ret = request_irq(mcpdm->irq, omap_mcpdm_irq_handler, |
| 387 | 0, "McPDM", (void *)mcpdm); |
| 388 | |
| 389 | pm_runtime_put_sync(mcpdm->dev); |
| 390 | |
| 391 | if (ret) { |
| 392 | dev_err(mcpdm->dev, "Request for IRQ failed\n"); |
| 393 | pm_runtime_disable(mcpdm->dev); |
| 394 | } |
| 395 | |
| 396 | /* Configure McPDM threshold values */ |
| 397 | mcpdm->dn_threshold = 2; |
| 398 | mcpdm->up_threshold = MCPDM_UP_THRES_MAX - 3; |
| 399 | return ret; |
| 400 | } |
| 401 | |
| 402 | static int omap_mcpdm_remove(struct snd_soc_dai *dai) |
| 403 | { |
| 404 | struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai); |
| 405 | |
| 406 | free_irq(mcpdm->irq, (void *)mcpdm); |
| 407 | pm_runtime_disable(mcpdm->dev); |
| 408 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 409 | return 0; |
| 410 | } |
| 411 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 412 | #define OMAP_MCPDM_RATES (SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000) |
| 413 | #define OMAP_MCPDM_FORMATS SNDRV_PCM_FMTBIT_S32_LE |
| 414 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 415 | static struct snd_soc_dai_driver omap_mcpdm_dai = { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 416 | .probe = omap_mcpdm_probe, |
| 417 | .remove = omap_mcpdm_remove, |
| 418 | .probe_order = SND_SOC_COMP_ORDER_LATE, |
| 419 | .remove_order = SND_SOC_COMP_ORDER_EARLY, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 420 | .playback = { |
| 421 | .channels_min = 1, |
Peter Ujfalusi | 3b5b516 | 2011-09-23 09:49:43 +0300 | [diff] [blame] | 422 | .channels_max = 5, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 423 | .rates = OMAP_MCPDM_RATES, |
| 424 | .formats = OMAP_MCPDM_FORMATS, |
Peter Ujfalusi | b4badd4 | 2012-01-18 12:18:24 +0100 | [diff] [blame] | 425 | .sig_bits = 24, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 426 | }, |
| 427 | .capture = { |
| 428 | .channels_min = 1, |
Peter Ujfalusi | 3b5b516 | 2011-09-23 09:49:43 +0300 | [diff] [blame] | 429 | .channels_max = 3, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 430 | .rates = OMAP_MCPDM_RATES, |
| 431 | .formats = OMAP_MCPDM_FORMATS, |
Peter Ujfalusi | b4badd4 | 2012-01-18 12:18:24 +0100 | [diff] [blame] | 432 | .sig_bits = 24, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 433 | }, |
| 434 | .ops = &omap_mcpdm_dai_ops, |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 435 | }; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 436 | |
Peter Ujfalusi | 89b0d55 | 2011-09-26 16:05:58 +0300 | [diff] [blame] | 437 | void omap_mcpdm_configure_dn_offsets(struct snd_soc_pcm_runtime *rtd, |
| 438 | u8 rx1, u8 rx2) |
| 439 | { |
| 440 | struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(rtd->cpu_dai); |
| 441 | |
| 442 | mcpdm->dn_rx_offset = MCPDM_DNOFST_RX1(rx1) | MCPDM_DNOFST_RX2(rx2); |
| 443 | } |
| 444 | EXPORT_SYMBOL_GPL(omap_mcpdm_configure_dn_offsets); |
| 445 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 446 | static __devinit int asoc_mcpdm_probe(struct platform_device *pdev) |
| 447 | { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 448 | struct omap_mcpdm *mcpdm; |
| 449 | struct resource *res; |
| 450 | int ret = 0; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 451 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 452 | mcpdm = kzalloc(sizeof(struct omap_mcpdm), GFP_KERNEL); |
| 453 | if (!mcpdm) |
| 454 | return -ENOMEM; |
| 455 | |
| 456 | platform_set_drvdata(pdev, mcpdm); |
| 457 | |
| 458 | mutex_init(&mcpdm->mutex); |
| 459 | |
| 460 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 461 | if (res == NULL) { |
| 462 | dev_err(&pdev->dev, "no resource\n"); |
| 463 | goto err_res; |
| 464 | } |
| 465 | |
| 466 | if (!request_mem_region(res->start, resource_size(res), "McPDM")) { |
| 467 | ret = -EBUSY; |
| 468 | goto err_res; |
| 469 | } |
| 470 | |
| 471 | mcpdm->io_base = ioremap(res->start, resource_size(res)); |
| 472 | if (!mcpdm->io_base) { |
| 473 | ret = -ENOMEM; |
| 474 | goto err_iomap; |
| 475 | } |
| 476 | |
| 477 | mcpdm->irq = platform_get_irq(pdev, 0); |
| 478 | if (mcpdm->irq < 0) { |
| 479 | ret = mcpdm->irq; |
| 480 | goto err_irq; |
| 481 | } |
| 482 | |
| 483 | mcpdm->dev = &pdev->dev; |
| 484 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 485 | ret = snd_soc_register_dai(&pdev->dev, &omap_mcpdm_dai); |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 486 | if (!ret) |
| 487 | return 0; |
| 488 | |
| 489 | err_irq: |
| 490 | iounmap(mcpdm->io_base); |
| 491 | err_iomap: |
| 492 | release_mem_region(res->start, resource_size(res)); |
| 493 | err_res: |
| 494 | kfree(mcpdm); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 495 | return ret; |
| 496 | } |
| 497 | |
| 498 | static int __devexit asoc_mcpdm_remove(struct platform_device *pdev) |
| 499 | { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 500 | struct omap_mcpdm *mcpdm = platform_get_drvdata(pdev); |
| 501 | struct resource *res; |
| 502 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 503 | snd_soc_unregister_dai(&pdev->dev); |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 504 | |
| 505 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 506 | iounmap(mcpdm->io_base); |
| 507 | release_mem_region(res->start, resource_size(res)); |
| 508 | |
| 509 | kfree(mcpdm); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 510 | return 0; |
| 511 | } |
| 512 | |
Peter Ujfalusi | 7cb8a1b | 2011-11-15 11:32:14 +0200 | [diff] [blame] | 513 | static const struct of_device_id omap_mcpdm_of_match[] = { |
| 514 | { .compatible = "ti,omap4-mcpdm", }, |
| 515 | { } |
| 516 | }; |
| 517 | MODULE_DEVICE_TABLE(of, omap_mcpdm_of_match); |
| 518 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 519 | static struct platform_driver asoc_mcpdm_driver = { |
| 520 | .driver = { |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 521 | .name = "omap-mcpdm", |
| 522 | .owner = THIS_MODULE, |
Peter Ujfalusi | 7cb8a1b | 2011-11-15 11:32:14 +0200 | [diff] [blame] | 523 | .of_match_table = omap_mcpdm_of_match, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 524 | }, |
| 525 | |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 526 | .probe = asoc_mcpdm_probe, |
| 527 | .remove = __devexit_p(asoc_mcpdm_remove), |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 528 | }; |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 529 | |
Axel Lin | beda5bf5 | 2011-11-25 10:12:16 +0800 | [diff] [blame] | 530 | module_platform_driver(asoc_mcpdm_driver); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 531 | |
Peter Ujfalusi | d66a547 | 2012-07-06 12:19:10 +0200 | [diff] [blame] | 532 | MODULE_ALIAS("platform:omap-mcpdm"); |
Misael Lopez Cruz | f5f9d7b | 2011-07-05 19:50:45 +0300 | [diff] [blame] | 533 | MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>"); |
Misael Lopez Cruz | db72c2f | 2010-02-22 15:09:22 -0600 | [diff] [blame] | 534 | MODULE_DESCRIPTION("OMAP PDM SoC Interface"); |
| 535 | MODULE_LICENSE("GPL"); |