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