Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 1 | /* sound/soc/s3c24xx/s3c-i2c-v2.c |
| 2 | * |
| 3 | * ALSA Soc Audio Layer - I2S core for newer Samsung SoCs. |
| 4 | * |
| 5 | * Copyright (c) 2006 Wolfson Microelectronics PLC. |
| 6 | * Graeme Gregory graeme.gregory@wolfsonmicro.com |
| 7 | * linux@wolfsonmicro.com |
| 8 | * |
| 9 | * Copyright (c) 2008, 2007, 2004-2005 Simtec Electronics |
| 10 | * http://armlinux.simtec.co.uk/ |
| 11 | * Ben Dooks <ben@simtec.co.uk> |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify it |
| 14 | * under the terms of the GNU General Public License as published by the |
| 15 | * Free Software Foundation; either version 2 of the License, or (at your |
| 16 | * option) any later version. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/device.h> |
| 22 | #include <linux/delay.h> |
| 23 | #include <linux/clk.h> |
| 24 | #include <linux/kernel.h> |
| 25 | #include <linux/io.h> |
| 26 | |
| 27 | #include <sound/core.h> |
| 28 | #include <sound/pcm.h> |
| 29 | #include <sound/pcm_params.h> |
| 30 | #include <sound/initval.h> |
| 31 | #include <sound/soc.h> |
| 32 | |
| 33 | #include <plat/regs-s3c2412-iis.h> |
| 34 | |
| 35 | #include <plat/audio.h> |
| 36 | #include <mach/dma.h> |
| 37 | |
| 38 | #include "s3c-i2s-v2.h" |
Mark Brown | 5dc0748 | 2009-08-26 14:17:23 +0100 | [diff] [blame] | 39 | #include "s3c24xx-pcm.h" |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 40 | |
Mark Brown | 8a0f62b | 2009-04-29 20:28:47 +0100 | [diff] [blame] | 41 | #undef S3C_IIS_V2_SUPPORTED |
| 42 | |
| 43 | #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) |
| 44 | #define S3C_IIS_V2_SUPPORTED |
| 45 | #endif |
| 46 | |
| 47 | #ifdef CONFIG_PLAT_S3C64XX |
| 48 | #define S3C_IIS_V2_SUPPORTED |
| 49 | #endif |
| 50 | |
| 51 | #ifndef S3C_IIS_V2_SUPPORTED |
| 52 | #error Unsupported CPU model |
| 53 | #endif |
| 54 | |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 55 | #define S3C2412_I2S_DEBUG_CON 0 |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 56 | |
| 57 | static inline struct s3c_i2sv2_info *to_info(struct snd_soc_dai *cpu_dai) |
| 58 | { |
| 59 | return cpu_dai->private_data; |
| 60 | } |
| 61 | |
| 62 | #define bit_set(v, b) (((v) & (b)) ? 1 : 0) |
| 63 | |
| 64 | #if S3C2412_I2S_DEBUG_CON |
| 65 | static void dbg_showcon(const char *fn, u32 con) |
| 66 | { |
| 67 | printk(KERN_DEBUG "%s: LRI=%d, TXFEMPT=%d, RXFEMPT=%d, TXFFULL=%d, RXFFULL=%d\n", fn, |
| 68 | bit_set(con, S3C2412_IISCON_LRINDEX), |
| 69 | bit_set(con, S3C2412_IISCON_TXFIFO_EMPTY), |
| 70 | bit_set(con, S3C2412_IISCON_RXFIFO_EMPTY), |
| 71 | bit_set(con, S3C2412_IISCON_TXFIFO_FULL), |
| 72 | bit_set(con, S3C2412_IISCON_RXFIFO_FULL)); |
| 73 | |
| 74 | printk(KERN_DEBUG "%s: PAUSE: TXDMA=%d, RXDMA=%d, TXCH=%d, RXCH=%d\n", |
| 75 | fn, |
| 76 | bit_set(con, S3C2412_IISCON_TXDMA_PAUSE), |
| 77 | bit_set(con, S3C2412_IISCON_RXDMA_PAUSE), |
| 78 | bit_set(con, S3C2412_IISCON_TXCH_PAUSE), |
| 79 | bit_set(con, S3C2412_IISCON_RXCH_PAUSE)); |
| 80 | printk(KERN_DEBUG "%s: ACTIVE: TXDMA=%d, RXDMA=%d, IIS=%d\n", fn, |
| 81 | bit_set(con, S3C2412_IISCON_TXDMA_ACTIVE), |
| 82 | bit_set(con, S3C2412_IISCON_RXDMA_ACTIVE), |
| 83 | bit_set(con, S3C2412_IISCON_IIS_ACTIVE)); |
| 84 | } |
| 85 | #else |
| 86 | static inline void dbg_showcon(const char *fn, u32 con) |
| 87 | { |
| 88 | } |
| 89 | #endif |
| 90 | |
| 91 | |
| 92 | /* Turn on or off the transmission path. */ |
Mark Brown | abbc824 | 2009-04-30 13:21:52 +0100 | [diff] [blame] | 93 | static void s3c2412_snd_txctrl(struct s3c_i2sv2_info *i2s, int on) |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 94 | { |
| 95 | void __iomem *regs = i2s->regs; |
| 96 | u32 fic, con, mod; |
| 97 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 98 | pr_debug("%s(%d)\n", __func__, on); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 99 | |
| 100 | fic = readl(regs + S3C2412_IISFIC); |
| 101 | con = readl(regs + S3C2412_IISCON); |
| 102 | mod = readl(regs + S3C2412_IISMOD); |
| 103 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 104 | pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 105 | |
| 106 | if (on) { |
| 107 | con |= S3C2412_IISCON_TXDMA_ACTIVE | S3C2412_IISCON_IIS_ACTIVE; |
| 108 | con &= ~S3C2412_IISCON_TXDMA_PAUSE; |
| 109 | con &= ~S3C2412_IISCON_TXCH_PAUSE; |
| 110 | |
| 111 | switch (mod & S3C2412_IISMOD_MODE_MASK) { |
| 112 | case S3C2412_IISMOD_MODE_TXONLY: |
| 113 | case S3C2412_IISMOD_MODE_TXRX: |
| 114 | /* do nothing, we are in the right mode */ |
| 115 | break; |
| 116 | |
| 117 | case S3C2412_IISMOD_MODE_RXONLY: |
| 118 | mod &= ~S3C2412_IISMOD_MODE_MASK; |
| 119 | mod |= S3C2412_IISMOD_MODE_TXRX; |
| 120 | break; |
| 121 | |
| 122 | default: |
Mark Brown | abbc824 | 2009-04-30 13:21:52 +0100 | [diff] [blame] | 123 | dev_err(i2s->dev, "TXEN: Invalid MODE %x in IISMOD\n", |
| 124 | mod & S3C2412_IISMOD_MODE_MASK); |
| 125 | break; |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | writel(con, regs + S3C2412_IISCON); |
| 129 | writel(mod, regs + S3C2412_IISMOD); |
| 130 | } else { |
| 131 | /* Note, we do not have any indication that the FIFO problems |
| 132 | * tha the S3C2410/2440 had apply here, so we should be able |
| 133 | * to disable the DMA and TX without resetting the FIFOS. |
| 134 | */ |
| 135 | |
| 136 | con |= S3C2412_IISCON_TXDMA_PAUSE; |
| 137 | con |= S3C2412_IISCON_TXCH_PAUSE; |
| 138 | con &= ~S3C2412_IISCON_TXDMA_ACTIVE; |
| 139 | |
| 140 | switch (mod & S3C2412_IISMOD_MODE_MASK) { |
| 141 | case S3C2412_IISMOD_MODE_TXRX: |
| 142 | mod &= ~S3C2412_IISMOD_MODE_MASK; |
| 143 | mod |= S3C2412_IISMOD_MODE_RXONLY; |
| 144 | break; |
| 145 | |
| 146 | case S3C2412_IISMOD_MODE_TXONLY: |
| 147 | mod &= ~S3C2412_IISMOD_MODE_MASK; |
| 148 | con &= ~S3C2412_IISCON_IIS_ACTIVE; |
| 149 | break; |
| 150 | |
| 151 | default: |
Mark Brown | abbc824 | 2009-04-30 13:21:52 +0100 | [diff] [blame] | 152 | dev_err(i2s->dev, "TXDIS: Invalid MODE %x in IISMOD\n", |
| 153 | mod & S3C2412_IISMOD_MODE_MASK); |
| 154 | break; |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | writel(mod, regs + S3C2412_IISMOD); |
| 158 | writel(con, regs + S3C2412_IISCON); |
| 159 | } |
| 160 | |
| 161 | fic = readl(regs + S3C2412_IISFIC); |
| 162 | dbg_showcon(__func__, con); |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 163 | pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 164 | } |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 165 | |
Mark Brown | abbc824 | 2009-04-30 13:21:52 +0100 | [diff] [blame] | 166 | static void s3c2412_snd_rxctrl(struct s3c_i2sv2_info *i2s, int on) |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 167 | { |
| 168 | void __iomem *regs = i2s->regs; |
| 169 | u32 fic, con, mod; |
| 170 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 171 | pr_debug("%s(%d)\n", __func__, on); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 172 | |
| 173 | fic = readl(regs + S3C2412_IISFIC); |
| 174 | con = readl(regs + S3C2412_IISCON); |
| 175 | mod = readl(regs + S3C2412_IISMOD); |
| 176 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 177 | pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 178 | |
| 179 | if (on) { |
| 180 | con |= S3C2412_IISCON_RXDMA_ACTIVE | S3C2412_IISCON_IIS_ACTIVE; |
| 181 | con &= ~S3C2412_IISCON_RXDMA_PAUSE; |
| 182 | con &= ~S3C2412_IISCON_RXCH_PAUSE; |
| 183 | |
| 184 | switch (mod & S3C2412_IISMOD_MODE_MASK) { |
| 185 | case S3C2412_IISMOD_MODE_TXRX: |
| 186 | case S3C2412_IISMOD_MODE_RXONLY: |
| 187 | /* do nothing, we are in the right mode */ |
| 188 | break; |
| 189 | |
| 190 | case S3C2412_IISMOD_MODE_TXONLY: |
| 191 | mod &= ~S3C2412_IISMOD_MODE_MASK; |
| 192 | mod |= S3C2412_IISMOD_MODE_TXRX; |
| 193 | break; |
| 194 | |
| 195 | default: |
Mark Brown | abbc824 | 2009-04-30 13:21:52 +0100 | [diff] [blame] | 196 | dev_err(i2s->dev, "RXEN: Invalid MODE %x in IISMOD\n", |
| 197 | mod & S3C2412_IISMOD_MODE_MASK); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | writel(mod, regs + S3C2412_IISMOD); |
| 201 | writel(con, regs + S3C2412_IISCON); |
| 202 | } else { |
| 203 | /* See txctrl notes on FIFOs. */ |
| 204 | |
| 205 | con &= ~S3C2412_IISCON_RXDMA_ACTIVE; |
| 206 | con |= S3C2412_IISCON_RXDMA_PAUSE; |
| 207 | con |= S3C2412_IISCON_RXCH_PAUSE; |
| 208 | |
| 209 | switch (mod & S3C2412_IISMOD_MODE_MASK) { |
| 210 | case S3C2412_IISMOD_MODE_RXONLY: |
| 211 | con &= ~S3C2412_IISCON_IIS_ACTIVE; |
| 212 | mod &= ~S3C2412_IISMOD_MODE_MASK; |
| 213 | break; |
| 214 | |
| 215 | case S3C2412_IISMOD_MODE_TXRX: |
| 216 | mod &= ~S3C2412_IISMOD_MODE_MASK; |
| 217 | mod |= S3C2412_IISMOD_MODE_TXONLY; |
| 218 | break; |
| 219 | |
| 220 | default: |
Mark Brown | abbc824 | 2009-04-30 13:21:52 +0100 | [diff] [blame] | 221 | dev_err(i2s->dev, "RXDIS: Invalid MODE %x in IISMOD\n", |
| 222 | mod & S3C2412_IISMOD_MODE_MASK); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | writel(con, regs + S3C2412_IISCON); |
| 226 | writel(mod, regs + S3C2412_IISMOD); |
| 227 | } |
| 228 | |
| 229 | fic = readl(regs + S3C2412_IISFIC); |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 230 | pr_debug("%s: IIS: CON=%x MOD=%x FIC=%x\n", __func__, con, mod, fic); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 231 | } |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 232 | |
| 233 | /* |
| 234 | * Wait for the LR signal to allow synchronisation to the L/R clock |
| 235 | * from the codec. May only be needed for slave mode. |
| 236 | */ |
| 237 | static int s3c2412_snd_lrsync(struct s3c_i2sv2_info *i2s) |
| 238 | { |
| 239 | u32 iiscon; |
| 240 | unsigned long timeout = jiffies + msecs_to_jiffies(5); |
| 241 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 242 | pr_debug("Entered %s\n", __func__); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 243 | |
| 244 | while (1) { |
| 245 | iiscon = readl(i2s->regs + S3C2412_IISCON); |
| 246 | if (iiscon & S3C2412_IISCON_LRINDEX) |
| 247 | break; |
| 248 | |
| 249 | if (timeout < jiffies) { |
| 250 | printk(KERN_ERR "%s: timeout\n", __func__); |
| 251 | return -ETIMEDOUT; |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | return 0; |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | * Set S3C2412 I2S DAI format |
| 260 | */ |
| 261 | static int s3c2412_i2s_set_fmt(struct snd_soc_dai *cpu_dai, |
| 262 | unsigned int fmt) |
| 263 | { |
| 264 | struct s3c_i2sv2_info *i2s = to_info(cpu_dai); |
| 265 | u32 iismod; |
| 266 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 267 | pr_debug("Entered %s\n", __func__); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 268 | |
| 269 | iismod = readl(i2s->regs + S3C2412_IISMOD); |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 270 | pr_debug("hw_params r: IISMOD: %x \n", iismod); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 271 | |
| 272 | #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) |
| 273 | #define IISMOD_MASTER_MASK S3C2412_IISMOD_MASTER_MASK |
| 274 | #define IISMOD_SLAVE S3C2412_IISMOD_SLAVE |
| 275 | #define IISMOD_MASTER S3C2412_IISMOD_MASTER_INTERNAL |
| 276 | #endif |
| 277 | |
| 278 | #if defined(CONFIG_PLAT_S3C64XX) |
| 279 | /* From Rev1.1 datasheet, we have two master and two slave modes: |
| 280 | * IMS[11:10]: |
| 281 | * 00 = master mode, fed from PCLK |
| 282 | * 01 = master mode, fed from CLKAUDIO |
| 283 | * 10 = slave mode, using PCLK |
| 284 | * 11 = slave mode, using I2SCLK |
| 285 | */ |
| 286 | #define IISMOD_MASTER_MASK (1 << 11) |
| 287 | #define IISMOD_SLAVE (1 << 11) |
Mark Brown | 553b1dd | 2009-04-29 20:29:25 +0100 | [diff] [blame] | 288 | #define IISMOD_MASTER (0 << 11) |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 289 | #endif |
| 290 | |
| 291 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 292 | case SND_SOC_DAIFMT_CBM_CFM: |
| 293 | i2s->master = 0; |
| 294 | iismod &= ~IISMOD_MASTER_MASK; |
| 295 | iismod |= IISMOD_SLAVE; |
| 296 | break; |
| 297 | case SND_SOC_DAIFMT_CBS_CFS: |
| 298 | i2s->master = 1; |
| 299 | iismod &= ~IISMOD_MASTER_MASK; |
| 300 | iismod |= IISMOD_MASTER; |
| 301 | break; |
| 302 | default: |
Mark Brown | 38e43c8 | 2009-04-30 13:14:38 +0100 | [diff] [blame] | 303 | pr_err("unknwon master/slave format\n"); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 304 | return -EINVAL; |
| 305 | } |
| 306 | |
| 307 | iismod &= ~S3C2412_IISMOD_SDF_MASK; |
| 308 | |
| 309 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 310 | case SND_SOC_DAIFMT_RIGHT_J: |
| 311 | iismod |= S3C2412_IISMOD_SDF_MSB; |
| 312 | break; |
| 313 | case SND_SOC_DAIFMT_LEFT_J: |
| 314 | iismod |= S3C2412_IISMOD_SDF_LSB; |
| 315 | break; |
| 316 | case SND_SOC_DAIFMT_I2S: |
| 317 | iismod |= S3C2412_IISMOD_SDF_IIS; |
| 318 | break; |
| 319 | default: |
Mark Brown | 38e43c8 | 2009-04-30 13:14:38 +0100 | [diff] [blame] | 320 | pr_err("Unknown data format\n"); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 321 | return -EINVAL; |
| 322 | } |
| 323 | |
| 324 | writel(iismod, i2s->regs + S3C2412_IISMOD); |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 325 | pr_debug("hw_params w: IISMOD: %x \n", iismod); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 326 | return 0; |
| 327 | } |
| 328 | |
| 329 | static int s3c2412_i2s_hw_params(struct snd_pcm_substream *substream, |
| 330 | struct snd_pcm_hw_params *params, |
| 331 | struct snd_soc_dai *socdai) |
| 332 | { |
| 333 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 334 | struct snd_soc_dai_link *dai = rtd->dai; |
| 335 | struct s3c_i2sv2_info *i2s = to_info(dai->cpu_dai); |
| 336 | u32 iismod; |
| 337 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 338 | pr_debug("Entered %s\n", __func__); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 339 | |
| 340 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 341 | dai->cpu_dai->dma_data = i2s->dma_playback; |
| 342 | else |
| 343 | dai->cpu_dai->dma_data = i2s->dma_capture; |
| 344 | |
| 345 | /* Working copies of register */ |
| 346 | iismod = readl(i2s->regs + S3C2412_IISMOD); |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 347 | pr_debug("%s: r: IISMOD: %x\n", __func__, iismod); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 348 | |
Mark Brown | 553b1dd | 2009-04-29 20:29:25 +0100 | [diff] [blame] | 349 | #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 350 | switch (params_format(params)) { |
| 351 | case SNDRV_PCM_FORMAT_S8: |
| 352 | iismod |= S3C2412_IISMOD_8BIT; |
| 353 | break; |
| 354 | case SNDRV_PCM_FORMAT_S16_LE: |
| 355 | iismod &= ~S3C2412_IISMOD_8BIT; |
| 356 | break; |
| 357 | } |
Mark Brown | 553b1dd | 2009-04-29 20:29:25 +0100 | [diff] [blame] | 358 | #endif |
| 359 | |
| 360 | #ifdef CONFIG_PLAT_S3C64XX |
Joonyoung Shim | 0914b93 | 2009-08-18 21:56:19 +0900 | [diff] [blame] | 361 | iismod &= ~(S3C64XX_IISMOD_BLC_MASK | S3C2412_IISMOD_BCLK_MASK); |
Mark Brown | 553b1dd | 2009-04-29 20:29:25 +0100 | [diff] [blame] | 362 | /* Sample size */ |
| 363 | switch (params_format(params)) { |
| 364 | case SNDRV_PCM_FORMAT_S8: |
| 365 | /* 8 bit sample, 16fs BCLK */ |
Joonyoung Shim | 0914b93 | 2009-08-18 21:56:19 +0900 | [diff] [blame] | 366 | iismod |= (S3C64XX_IISMOD_BLC_8BIT | S3C2412_IISMOD_BCLK_16FS); |
Mark Brown | 553b1dd | 2009-04-29 20:29:25 +0100 | [diff] [blame] | 367 | break; |
| 368 | case SNDRV_PCM_FORMAT_S16_LE: |
| 369 | /* 16 bit sample, 32fs BCLK */ |
| 370 | break; |
| 371 | case SNDRV_PCM_FORMAT_S24_LE: |
| 372 | /* 24 bit sample, 48fs BCLK */ |
Joonyoung Shim | 0914b93 | 2009-08-18 21:56:19 +0900 | [diff] [blame] | 373 | iismod |= (S3C64XX_IISMOD_BLC_24BIT | S3C2412_IISMOD_BCLK_48FS); |
Mark Brown | 553b1dd | 2009-04-29 20:29:25 +0100 | [diff] [blame] | 374 | break; |
| 375 | } |
| 376 | #endif |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 377 | |
| 378 | writel(iismod, i2s->regs + S3C2412_IISMOD); |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 379 | pr_debug("%s: w: IISMOD: %x\n", __func__, iismod); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | static int s3c2412_i2s_trigger(struct snd_pcm_substream *substream, int cmd, |
| 384 | struct snd_soc_dai *dai) |
| 385 | { |
| 386 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 387 | struct s3c_i2sv2_info *i2s = to_info(rtd->dai->cpu_dai); |
| 388 | int capture = (substream->stream == SNDRV_PCM_STREAM_CAPTURE); |
| 389 | unsigned long irqs; |
| 390 | int ret = 0; |
Shine Liu | faf907c | 2009-08-25 20:05:50 +0800 | [diff] [blame] | 391 | int channel = ((struct s3c24xx_pcm_dma_params *) |
| 392 | rtd->dai->cpu_dai->dma_data)->channel; |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 393 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 394 | pr_debug("Entered %s\n", __func__); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 395 | |
| 396 | switch (cmd) { |
| 397 | case SNDRV_PCM_TRIGGER_START: |
| 398 | /* On start, ensure that the FIFOs are cleared and reset. */ |
| 399 | |
| 400 | writel(capture ? S3C2412_IISFIC_RXFLUSH : S3C2412_IISFIC_TXFLUSH, |
| 401 | i2s->regs + S3C2412_IISFIC); |
| 402 | |
| 403 | /* clear again, just in case */ |
| 404 | writel(0x0, i2s->regs + S3C2412_IISFIC); |
| 405 | |
| 406 | case SNDRV_PCM_TRIGGER_RESUME: |
| 407 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 408 | if (!i2s->master) { |
| 409 | ret = s3c2412_snd_lrsync(i2s); |
| 410 | if (ret) |
| 411 | goto exit_err; |
| 412 | } |
| 413 | |
| 414 | local_irq_save(irqs); |
| 415 | |
| 416 | if (capture) |
| 417 | s3c2412_snd_rxctrl(i2s, 1); |
| 418 | else |
| 419 | s3c2412_snd_txctrl(i2s, 1); |
| 420 | |
| 421 | local_irq_restore(irqs); |
Shine Liu | faf907c | 2009-08-25 20:05:50 +0800 | [diff] [blame] | 422 | |
| 423 | /* |
| 424 | * Load the next buffer to DMA to meet the reqirement |
| 425 | * of the auto reload mechanism of S3C24XX. |
| 426 | * This call won't bother S3C64XX. |
| 427 | */ |
| 428 | s3c2410_dma_ctrl(channel, S3C2410_DMAOP_STARTED); |
| 429 | |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 430 | break; |
| 431 | |
| 432 | case SNDRV_PCM_TRIGGER_STOP: |
| 433 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 434 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 435 | local_irq_save(irqs); |
| 436 | |
| 437 | if (capture) |
| 438 | s3c2412_snd_rxctrl(i2s, 0); |
| 439 | else |
| 440 | s3c2412_snd_txctrl(i2s, 0); |
| 441 | |
| 442 | local_irq_restore(irqs); |
| 443 | break; |
| 444 | default: |
| 445 | ret = -EINVAL; |
| 446 | break; |
| 447 | } |
| 448 | |
| 449 | exit_err: |
| 450 | return ret; |
| 451 | } |
| 452 | |
| 453 | /* |
| 454 | * Set S3C2412 Clock dividers |
| 455 | */ |
| 456 | static int s3c2412_i2s_set_clkdiv(struct snd_soc_dai *cpu_dai, |
| 457 | int div_id, int div) |
| 458 | { |
| 459 | struct s3c_i2sv2_info *i2s = to_info(cpu_dai); |
| 460 | u32 reg; |
| 461 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 462 | pr_debug("%s(%p, %d, %d)\n", __func__, cpu_dai, div_id, div); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 463 | |
| 464 | switch (div_id) { |
| 465 | case S3C_I2SV2_DIV_BCLK: |
| 466 | reg = readl(i2s->regs + S3C2412_IISMOD); |
| 467 | reg &= ~S3C2412_IISMOD_BCLK_MASK; |
| 468 | writel(reg | div, i2s->regs + S3C2412_IISMOD); |
| 469 | |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 470 | pr_debug("%s: MOD=%08x\n", __func__, readl(i2s->regs + S3C2412_IISMOD)); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 471 | break; |
| 472 | |
| 473 | case S3C_I2SV2_DIV_RCLK: |
| 474 | if (div > 3) { |
| 475 | /* convert value to bit field */ |
| 476 | |
| 477 | switch (div) { |
| 478 | case 256: |
| 479 | div = S3C2412_IISMOD_RCLK_256FS; |
| 480 | break; |
| 481 | |
| 482 | case 384: |
| 483 | div = S3C2412_IISMOD_RCLK_384FS; |
| 484 | break; |
| 485 | |
| 486 | case 512: |
| 487 | div = S3C2412_IISMOD_RCLK_512FS; |
| 488 | break; |
| 489 | |
| 490 | case 768: |
| 491 | div = S3C2412_IISMOD_RCLK_768FS; |
| 492 | break; |
| 493 | |
| 494 | default: |
| 495 | return -EINVAL; |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | reg = readl(i2s->regs + S3C2412_IISMOD); |
| 500 | reg &= ~S3C2412_IISMOD_RCLK_MASK; |
| 501 | writel(reg | div, i2s->regs + S3C2412_IISMOD); |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 502 | pr_debug("%s: MOD=%08x\n", __func__, readl(i2s->regs + S3C2412_IISMOD)); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 503 | break; |
| 504 | |
| 505 | case S3C_I2SV2_DIV_PRESCALER: |
| 506 | if (div >= 0) { |
| 507 | writel((div << 8) | S3C2412_IISPSR_PSREN, |
| 508 | i2s->regs + S3C2412_IISPSR); |
| 509 | } else { |
| 510 | writel(0x0, i2s->regs + S3C2412_IISPSR); |
| 511 | } |
Mark Brown | ee7d476 | 2009-03-06 18:04:34 +0000 | [diff] [blame] | 512 | pr_debug("%s: PSR=%08x\n", __func__, readl(i2s->regs + S3C2412_IISPSR)); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 513 | break; |
| 514 | |
| 515 | default: |
| 516 | return -EINVAL; |
| 517 | } |
| 518 | |
| 519 | return 0; |
| 520 | } |
| 521 | |
| 522 | /* default table of all avaialable root fs divisors */ |
| 523 | static unsigned int iis_fs_tab[] = { 256, 512, 384, 768 }; |
| 524 | |
Ben Dooks | 1d2b7ae | 2009-04-16 10:32:23 +0100 | [diff] [blame] | 525 | int s3c_i2sv2_iis_calc_rate(struct s3c_i2sv2_rate_calc *info, |
| 526 | unsigned int *fstab, |
| 527 | unsigned int rate, struct clk *clk) |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 528 | { |
| 529 | unsigned long clkrate = clk_get_rate(clk); |
| 530 | unsigned int div; |
| 531 | unsigned int fsclk; |
| 532 | unsigned int actual; |
| 533 | unsigned int fs; |
| 534 | unsigned int fsdiv; |
| 535 | signed int deviation = 0; |
| 536 | unsigned int best_fs = 0; |
| 537 | unsigned int best_div = 0; |
| 538 | unsigned int best_rate = 0; |
| 539 | unsigned int best_deviation = INT_MAX; |
| 540 | |
Mark Brown | af3ea7b | 2009-04-30 13:13:55 +0100 | [diff] [blame] | 541 | pr_debug("Input clock rate %ldHz\n", clkrate); |
| 542 | |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 543 | if (fstab == NULL) |
| 544 | fstab = iis_fs_tab; |
| 545 | |
| 546 | for (fs = 0; fs < ARRAY_SIZE(iis_fs_tab); fs++) { |
| 547 | fsdiv = iis_fs_tab[fs]; |
| 548 | |
| 549 | fsclk = clkrate / fsdiv; |
| 550 | div = fsclk / rate; |
| 551 | |
| 552 | if ((fsclk % rate) > (rate / 2)) |
| 553 | div++; |
| 554 | |
| 555 | if (div <= 1) |
| 556 | continue; |
| 557 | |
| 558 | actual = clkrate / (fsdiv * div); |
| 559 | deviation = actual - rate; |
| 560 | |
Roel Kluin | 449bd54 | 2009-05-27 17:08:39 -0700 | [diff] [blame] | 561 | printk(KERN_DEBUG "%ufs: div %u => result %u, deviation %d\n", |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 562 | fsdiv, div, actual, deviation); |
| 563 | |
| 564 | deviation = abs(deviation); |
| 565 | |
| 566 | if (deviation < best_deviation) { |
| 567 | best_fs = fsdiv; |
| 568 | best_div = div; |
| 569 | best_rate = actual; |
| 570 | best_deviation = deviation; |
| 571 | } |
| 572 | |
| 573 | if (deviation == 0) |
| 574 | break; |
| 575 | } |
| 576 | |
Roel Kluin | 449bd54 | 2009-05-27 17:08:39 -0700 | [diff] [blame] | 577 | printk(KERN_DEBUG "best: fs=%u, div=%u, rate=%u\n", |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 578 | best_fs, best_div, best_rate); |
| 579 | |
| 580 | info->fs_div = best_fs; |
| 581 | info->clk_div = best_div; |
| 582 | |
| 583 | return 0; |
| 584 | } |
Ben Dooks | 1d2b7ae | 2009-04-16 10:32:23 +0100 | [diff] [blame] | 585 | EXPORT_SYMBOL_GPL(s3c_i2sv2_iis_calc_rate); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 586 | |
| 587 | int s3c_i2sv2_probe(struct platform_device *pdev, |
| 588 | struct snd_soc_dai *dai, |
| 589 | struct s3c_i2sv2_info *i2s, |
| 590 | unsigned long base) |
| 591 | { |
| 592 | struct device *dev = &pdev->dev; |
Mark Brown | 07736d4 | 2009-04-30 13:13:14 +0100 | [diff] [blame] | 593 | unsigned int iismod; |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 594 | |
| 595 | i2s->dev = dev; |
| 596 | |
| 597 | /* record our i2s structure for later use in the callbacks */ |
| 598 | dai->private_data = i2s; |
| 599 | |
Mark Brown | c86bde5 | 2009-04-30 13:09:33 +0100 | [diff] [blame] | 600 | if (!base) { |
| 601 | struct resource *res = platform_get_resource(pdev, |
| 602 | IORESOURCE_MEM, |
| 603 | 0); |
| 604 | if (!res) { |
| 605 | dev_err(dev, "Unable to get register resource\n"); |
| 606 | return -ENXIO; |
| 607 | } |
| 608 | |
| 609 | if (!request_mem_region(res->start, resource_size(res), |
| 610 | "s3c64xx-i2s-v4")) { |
| 611 | dev_err(dev, "Unable to request register region\n"); |
| 612 | return -EBUSY; |
| 613 | } |
| 614 | |
| 615 | base = res->start; |
| 616 | } |
| 617 | |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 618 | i2s->regs = ioremap(base, 0x100); |
| 619 | if (i2s->regs == NULL) { |
| 620 | dev_err(dev, "cannot ioremap registers\n"); |
| 621 | return -ENXIO; |
| 622 | } |
| 623 | |
| 624 | i2s->iis_pclk = clk_get(dev, "iis"); |
| 625 | if (i2s->iis_pclk == NULL) { |
Mark Brown | b52a519 | 2009-03-06 18:13:43 +0000 | [diff] [blame] | 626 | dev_err(dev, "failed to get iis_clock\n"); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 627 | iounmap(i2s->regs); |
| 628 | return -ENOENT; |
| 629 | } |
| 630 | |
| 631 | clk_enable(i2s->iis_pclk); |
| 632 | |
Mark Brown | 07736d4 | 2009-04-30 13:13:14 +0100 | [diff] [blame] | 633 | /* Mark ourselves as in TXRX mode so we can run through our cleanup |
| 634 | * process without warnings. */ |
| 635 | iismod = readl(i2s->regs + S3C2412_IISMOD); |
| 636 | iismod |= S3C2412_IISMOD_MODE_TXRX; |
| 637 | writel(iismod, i2s->regs + S3C2412_IISMOD); |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 638 | s3c2412_snd_txctrl(i2s, 0); |
| 639 | s3c2412_snd_rxctrl(i2s, 0); |
| 640 | |
| 641 | return 0; |
| 642 | } |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 643 | EXPORT_SYMBOL_GPL(s3c_i2sv2_probe); |
| 644 | |
| 645 | #ifdef CONFIG_PM |
| 646 | static int s3c2412_i2s_suspend(struct snd_soc_dai *dai) |
| 647 | { |
| 648 | struct s3c_i2sv2_info *i2s = to_info(dai); |
| 649 | u32 iismod; |
| 650 | |
| 651 | if (dai->active) { |
| 652 | i2s->suspend_iismod = readl(i2s->regs + S3C2412_IISMOD); |
| 653 | i2s->suspend_iiscon = readl(i2s->regs + S3C2412_IISCON); |
| 654 | i2s->suspend_iispsr = readl(i2s->regs + S3C2412_IISPSR); |
| 655 | |
| 656 | /* some basic suspend checks */ |
| 657 | |
| 658 | iismod = readl(i2s->regs + S3C2412_IISMOD); |
| 659 | |
| 660 | if (iismod & S3C2412_IISCON_RXDMA_ACTIVE) |
| 661 | pr_warning("%s: RXDMA active?\n", __func__); |
| 662 | |
| 663 | if (iismod & S3C2412_IISCON_TXDMA_ACTIVE) |
| 664 | pr_warning("%s: TXDMA active?\n", __func__); |
| 665 | |
| 666 | if (iismod & S3C2412_IISCON_IIS_ACTIVE) |
| 667 | pr_warning("%s: IIS active\n", __func__); |
| 668 | } |
| 669 | |
| 670 | return 0; |
| 671 | } |
| 672 | |
| 673 | static int s3c2412_i2s_resume(struct snd_soc_dai *dai) |
| 674 | { |
| 675 | struct s3c_i2sv2_info *i2s = to_info(dai); |
| 676 | |
| 677 | pr_info("dai_active %d, IISMOD %08x, IISCON %08x\n", |
| 678 | dai->active, i2s->suspend_iismod, i2s->suspend_iiscon); |
| 679 | |
| 680 | if (dai->active) { |
| 681 | writel(i2s->suspend_iiscon, i2s->regs + S3C2412_IISCON); |
| 682 | writel(i2s->suspend_iismod, i2s->regs + S3C2412_IISMOD); |
| 683 | writel(i2s->suspend_iispsr, i2s->regs + S3C2412_IISPSR); |
| 684 | |
| 685 | writel(S3C2412_IISFIC_RXFLUSH | S3C2412_IISFIC_TXFLUSH, |
| 686 | i2s->regs + S3C2412_IISFIC); |
| 687 | |
| 688 | ndelay(250); |
| 689 | writel(0x0, i2s->regs + S3C2412_IISFIC); |
| 690 | } |
| 691 | |
| 692 | return 0; |
| 693 | } |
| 694 | #else |
| 695 | #define s3c2412_i2s_suspend NULL |
| 696 | #define s3c2412_i2s_resume NULL |
| 697 | #endif |
| 698 | |
| 699 | int s3c_i2sv2_register_dai(struct snd_soc_dai *dai) |
| 700 | { |
Ben Dooks | 3715c6a | 2009-04-16 10:32:22 +0100 | [diff] [blame] | 701 | struct snd_soc_dai_ops *ops = dai->ops; |
| 702 | |
| 703 | ops->trigger = s3c2412_i2s_trigger; |
| 704 | ops->hw_params = s3c2412_i2s_hw_params; |
| 705 | ops->set_fmt = s3c2412_i2s_set_fmt; |
| 706 | ops->set_clkdiv = s3c2412_i2s_set_clkdiv; |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 707 | |
| 708 | dai->suspend = s3c2412_i2s_suspend; |
| 709 | dai->resume = s3c2412_i2s_resume; |
| 710 | |
| 711 | return snd_soc_register_dai(dai); |
| 712 | } |
Ben Dooks | dc85447 | 2009-03-04 00:49:30 +0000 | [diff] [blame] | 713 | EXPORT_SYMBOL_GPL(s3c_i2sv2_register_dai); |
Mark Brown | a396e32 | 2009-04-23 15:43:45 +0100 | [diff] [blame] | 714 | |
| 715 | MODULE_LICENSE("GPL"); |