Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1 | /* |
| 2 | * wm8993.c -- WM8993 ALSA SoC audio driver |
| 3 | * |
Mark Brown | be587ef | 2010-02-01 18:31:06 +0000 | [diff] [blame^] | 4 | * Copyright 2009, 2010 Wolfson Microelectronics plc |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 5 | * |
| 6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/moduleparam.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/delay.h> |
| 17 | #include <linux/pm.h> |
| 18 | #include <linux/i2c.h> |
| 19 | #include <linux/spi/spi.h> |
| 20 | #include <sound/core.h> |
| 21 | #include <sound/pcm.h> |
| 22 | #include <sound/pcm_params.h> |
| 23 | #include <sound/tlv.h> |
| 24 | #include <sound/soc.h> |
| 25 | #include <sound/soc-dapm.h> |
| 26 | #include <sound/initval.h> |
| 27 | #include <sound/wm8993.h> |
| 28 | |
| 29 | #include "wm8993.h" |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 30 | #include "wm_hubs.h" |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 31 | |
| 32 | static u16 wm8993_reg_defaults[WM8993_REGISTER_COUNT] = { |
| 33 | 0x8993, /* R0 - Software Reset */ |
| 34 | 0x0000, /* R1 - Power Management (1) */ |
| 35 | 0x6000, /* R2 - Power Management (2) */ |
| 36 | 0x0000, /* R3 - Power Management (3) */ |
| 37 | 0x4050, /* R4 - Audio Interface (1) */ |
| 38 | 0x4000, /* R5 - Audio Interface (2) */ |
| 39 | 0x01C8, /* R6 - Clocking 1 */ |
| 40 | 0x0000, /* R7 - Clocking 2 */ |
| 41 | 0x0000, /* R8 - Audio Interface (3) */ |
| 42 | 0x0040, /* R9 - Audio Interface (4) */ |
| 43 | 0x0004, /* R10 - DAC CTRL */ |
| 44 | 0x00C0, /* R11 - Left DAC Digital Volume */ |
| 45 | 0x00C0, /* R12 - Right DAC Digital Volume */ |
| 46 | 0x0000, /* R13 - Digital Side Tone */ |
| 47 | 0x0300, /* R14 - ADC CTRL */ |
| 48 | 0x00C0, /* R15 - Left ADC Digital Volume */ |
| 49 | 0x00C0, /* R16 - Right ADC Digital Volume */ |
| 50 | 0x0000, /* R17 */ |
| 51 | 0x0000, /* R18 - GPIO CTRL 1 */ |
| 52 | 0x0010, /* R19 - GPIO1 */ |
| 53 | 0x0000, /* R20 - IRQ_DEBOUNCE */ |
| 54 | 0x0000, /* R21 */ |
| 55 | 0x8000, /* R22 - GPIOCTRL 2 */ |
| 56 | 0x0800, /* R23 - GPIO_POL */ |
| 57 | 0x008B, /* R24 - Left Line Input 1&2 Volume */ |
| 58 | 0x008B, /* R25 - Left Line Input 3&4 Volume */ |
| 59 | 0x008B, /* R26 - Right Line Input 1&2 Volume */ |
| 60 | 0x008B, /* R27 - Right Line Input 3&4 Volume */ |
| 61 | 0x006D, /* R28 - Left Output Volume */ |
| 62 | 0x006D, /* R29 - Right Output Volume */ |
| 63 | 0x0066, /* R30 - Line Outputs Volume */ |
| 64 | 0x0020, /* R31 - HPOUT2 Volume */ |
| 65 | 0x0079, /* R32 - Left OPGA Volume */ |
| 66 | 0x0079, /* R33 - Right OPGA Volume */ |
| 67 | 0x0003, /* R34 - SPKMIXL Attenuation */ |
| 68 | 0x0003, /* R35 - SPKMIXR Attenuation */ |
| 69 | 0x0011, /* R36 - SPKOUT Mixers */ |
| 70 | 0x0100, /* R37 - SPKOUT Boost */ |
| 71 | 0x0079, /* R38 - Speaker Volume Left */ |
| 72 | 0x0079, /* R39 - Speaker Volume Right */ |
| 73 | 0x0000, /* R40 - Input Mixer2 */ |
| 74 | 0x0000, /* R41 - Input Mixer3 */ |
| 75 | 0x0000, /* R42 - Input Mixer4 */ |
| 76 | 0x0000, /* R43 - Input Mixer5 */ |
| 77 | 0x0000, /* R44 - Input Mixer6 */ |
| 78 | 0x0000, /* R45 - Output Mixer1 */ |
| 79 | 0x0000, /* R46 - Output Mixer2 */ |
| 80 | 0x0000, /* R47 - Output Mixer3 */ |
| 81 | 0x0000, /* R48 - Output Mixer4 */ |
| 82 | 0x0000, /* R49 - Output Mixer5 */ |
| 83 | 0x0000, /* R50 - Output Mixer6 */ |
| 84 | 0x0000, /* R51 - HPOUT2 Mixer */ |
| 85 | 0x0000, /* R52 - Line Mixer1 */ |
| 86 | 0x0000, /* R53 - Line Mixer2 */ |
| 87 | 0x0000, /* R54 - Speaker Mixer */ |
| 88 | 0x0000, /* R55 - Additional Control */ |
| 89 | 0x0000, /* R56 - AntiPOP1 */ |
| 90 | 0x0000, /* R57 - AntiPOP2 */ |
| 91 | 0x0000, /* R58 - MICBIAS */ |
| 92 | 0x0000, /* R59 */ |
| 93 | 0x0000, /* R60 - FLL Control 1 */ |
| 94 | 0x0000, /* R61 - FLL Control 2 */ |
| 95 | 0x0000, /* R62 - FLL Control 3 */ |
| 96 | 0x2EE0, /* R63 - FLL Control 4 */ |
| 97 | 0x0002, /* R64 - FLL Control 5 */ |
| 98 | 0x2287, /* R65 - Clocking 3 */ |
| 99 | 0x025F, /* R66 - Clocking 4 */ |
| 100 | 0x0000, /* R67 - MW Slave Control */ |
| 101 | 0x0000, /* R68 */ |
| 102 | 0x0002, /* R69 - Bus Control 1 */ |
| 103 | 0x0000, /* R70 - Write Sequencer 0 */ |
| 104 | 0x0000, /* R71 - Write Sequencer 1 */ |
| 105 | 0x0000, /* R72 - Write Sequencer 2 */ |
| 106 | 0x0000, /* R73 - Write Sequencer 3 */ |
| 107 | 0x0000, /* R74 - Write Sequencer 4 */ |
| 108 | 0x0000, /* R75 - Write Sequencer 5 */ |
| 109 | 0x1F25, /* R76 - Charge Pump 1 */ |
| 110 | 0x0000, /* R77 */ |
| 111 | 0x0000, /* R78 */ |
| 112 | 0x0000, /* R79 */ |
| 113 | 0x0000, /* R80 */ |
| 114 | 0x0000, /* R81 - Class W 0 */ |
| 115 | 0x0000, /* R82 */ |
| 116 | 0x0000, /* R83 */ |
| 117 | 0x0000, /* R84 - DC Servo 0 */ |
| 118 | 0x054A, /* R85 - DC Servo 1 */ |
| 119 | 0x0000, /* R86 */ |
| 120 | 0x0000, /* R87 - DC Servo 3 */ |
| 121 | 0x0000, /* R88 - DC Servo Readback 0 */ |
| 122 | 0x0000, /* R89 - DC Servo Readback 1 */ |
| 123 | 0x0000, /* R90 - DC Servo Readback 2 */ |
| 124 | 0x0000, /* R91 */ |
| 125 | 0x0000, /* R92 */ |
| 126 | 0x0000, /* R93 */ |
| 127 | 0x0000, /* R94 */ |
| 128 | 0x0000, /* R95 */ |
| 129 | 0x0100, /* R96 - Analogue HP 0 */ |
| 130 | 0x0000, /* R97 */ |
| 131 | 0x0000, /* R98 - EQ1 */ |
| 132 | 0x000C, /* R99 - EQ2 */ |
| 133 | 0x000C, /* R100 - EQ3 */ |
| 134 | 0x000C, /* R101 - EQ4 */ |
| 135 | 0x000C, /* R102 - EQ5 */ |
| 136 | 0x000C, /* R103 - EQ6 */ |
| 137 | 0x0FCA, /* R104 - EQ7 */ |
| 138 | 0x0400, /* R105 - EQ8 */ |
| 139 | 0x00D8, /* R106 - EQ9 */ |
| 140 | 0x1EB5, /* R107 - EQ10 */ |
| 141 | 0xF145, /* R108 - EQ11 */ |
| 142 | 0x0B75, /* R109 - EQ12 */ |
| 143 | 0x01C5, /* R110 - EQ13 */ |
| 144 | 0x1C58, /* R111 - EQ14 */ |
| 145 | 0xF373, /* R112 - EQ15 */ |
| 146 | 0x0A54, /* R113 - EQ16 */ |
| 147 | 0x0558, /* R114 - EQ17 */ |
| 148 | 0x168E, /* R115 - EQ18 */ |
| 149 | 0xF829, /* R116 - EQ19 */ |
| 150 | 0x07AD, /* R117 - EQ20 */ |
| 151 | 0x1103, /* R118 - EQ21 */ |
| 152 | 0x0564, /* R119 - EQ22 */ |
| 153 | 0x0559, /* R120 - EQ23 */ |
| 154 | 0x4000, /* R121 - EQ24 */ |
| 155 | 0x0000, /* R122 - Digital Pulls */ |
| 156 | 0x0F08, /* R123 - DRC Control 1 */ |
| 157 | 0x0000, /* R124 - DRC Control 2 */ |
| 158 | 0x0080, /* R125 - DRC Control 3 */ |
| 159 | 0x0000, /* R126 - DRC Control 4 */ |
| 160 | }; |
| 161 | |
| 162 | static struct { |
| 163 | int ratio; |
| 164 | int clk_sys_rate; |
| 165 | } clk_sys_rates[] = { |
| 166 | { 64, 0 }, |
| 167 | { 128, 1 }, |
| 168 | { 192, 2 }, |
| 169 | { 256, 3 }, |
| 170 | { 384, 4 }, |
| 171 | { 512, 5 }, |
| 172 | { 768, 6 }, |
| 173 | { 1024, 7 }, |
| 174 | { 1408, 8 }, |
| 175 | { 1536, 9 }, |
| 176 | }; |
| 177 | |
| 178 | static struct { |
| 179 | int rate; |
| 180 | int sample_rate; |
| 181 | } sample_rates[] = { |
| 182 | { 8000, 0 }, |
| 183 | { 11025, 1 }, |
| 184 | { 12000, 1 }, |
| 185 | { 16000, 2 }, |
| 186 | { 22050, 3 }, |
| 187 | { 24000, 3 }, |
| 188 | { 32000, 4 }, |
| 189 | { 44100, 5 }, |
| 190 | { 48000, 5 }, |
| 191 | }; |
| 192 | |
| 193 | static struct { |
| 194 | int div; /* *10 due to .5s */ |
| 195 | int bclk_div; |
| 196 | } bclk_divs[] = { |
| 197 | { 10, 0 }, |
| 198 | { 15, 1 }, |
| 199 | { 20, 2 }, |
| 200 | { 30, 3 }, |
| 201 | { 40, 4 }, |
| 202 | { 55, 5 }, |
| 203 | { 60, 6 }, |
| 204 | { 80, 7 }, |
| 205 | { 110, 8 }, |
| 206 | { 120, 9 }, |
| 207 | { 160, 10 }, |
| 208 | { 220, 11 }, |
| 209 | { 240, 12 }, |
| 210 | { 320, 13 }, |
| 211 | { 440, 14 }, |
| 212 | { 480, 15 }, |
| 213 | }; |
| 214 | |
| 215 | struct wm8993_priv { |
Mark Brown | 3ed7074 | 2010-01-20 17:39:45 +0000 | [diff] [blame] | 216 | struct wm_hubs_data hubs_data; |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 217 | u16 reg_cache[WM8993_REGISTER_COUNT]; |
| 218 | struct wm8993_platform_data pdata; |
| 219 | struct snd_soc_codec codec; |
| 220 | int master; |
| 221 | int sysclk_source; |
Mark Brown | d3c9e9a | 2009-08-17 18:52:47 +0100 | [diff] [blame] | 222 | int tdm_slots; |
| 223 | int tdm_width; |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 224 | unsigned int mclk_rate; |
| 225 | unsigned int sysclk_rate; |
| 226 | unsigned int fs; |
| 227 | unsigned int bclk; |
| 228 | int class_w_users; |
| 229 | unsigned int fll_fref; |
| 230 | unsigned int fll_fout; |
Mark Brown | 53242c6 | 2010-01-02 13:15:56 +0000 | [diff] [blame] | 231 | int fll_src; |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 232 | }; |
| 233 | |
| 234 | static unsigned int wm8993_read_hw(struct snd_soc_codec *codec, u8 reg) |
| 235 | { |
| 236 | struct i2c_msg xfer[2]; |
| 237 | u16 data; |
| 238 | int ret; |
| 239 | struct i2c_client *i2c = codec->control_data; |
| 240 | |
| 241 | /* Write register */ |
| 242 | xfer[0].addr = i2c->addr; |
| 243 | xfer[0].flags = 0; |
| 244 | xfer[0].len = 1; |
| 245 | xfer[0].buf = ® |
| 246 | |
| 247 | /* Read data */ |
| 248 | xfer[1].addr = i2c->addr; |
| 249 | xfer[1].flags = I2C_M_RD; |
| 250 | xfer[1].len = 2; |
| 251 | xfer[1].buf = (u8 *)&data; |
| 252 | |
| 253 | ret = i2c_transfer(i2c->adapter, xfer, 2); |
| 254 | if (ret != 2) { |
| 255 | dev_err(codec->dev, "Failed to read 0x%x: %d\n", reg, ret); |
| 256 | return 0; |
| 257 | } |
| 258 | |
| 259 | return (data >> 8) | ((data & 0xff) << 8); |
| 260 | } |
| 261 | |
| 262 | static int wm8993_volatile(unsigned int reg) |
| 263 | { |
| 264 | switch (reg) { |
| 265 | case WM8993_SOFTWARE_RESET: |
| 266 | case WM8993_DC_SERVO_0: |
| 267 | case WM8993_DC_SERVO_READBACK_0: |
| 268 | case WM8993_DC_SERVO_READBACK_1: |
| 269 | case WM8993_DC_SERVO_READBACK_2: |
| 270 | return 1; |
| 271 | default: |
| 272 | return 0; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | static unsigned int wm8993_read(struct snd_soc_codec *codec, |
| 277 | unsigned int reg) |
| 278 | { |
| 279 | u16 *reg_cache = codec->reg_cache; |
| 280 | |
| 281 | BUG_ON(reg > WM8993_MAX_REGISTER); |
| 282 | |
| 283 | if (wm8993_volatile(reg)) |
| 284 | return wm8993_read_hw(codec, reg); |
| 285 | else |
| 286 | return reg_cache[reg]; |
| 287 | } |
| 288 | |
| 289 | static int wm8993_write(struct snd_soc_codec *codec, unsigned int reg, |
| 290 | unsigned int value) |
| 291 | { |
| 292 | u16 *reg_cache = codec->reg_cache; |
| 293 | u8 data[3]; |
| 294 | int ret; |
| 295 | |
| 296 | BUG_ON(reg > WM8993_MAX_REGISTER); |
| 297 | |
| 298 | /* data is |
| 299 | * D15..D9 WM8993 register offset |
| 300 | * D8...D0 register data |
| 301 | */ |
| 302 | data[0] = reg; |
| 303 | data[1] = value >> 8; |
| 304 | data[2] = value & 0x00ff; |
| 305 | |
| 306 | if (!wm8993_volatile(reg)) |
| 307 | reg_cache[reg] = value; |
| 308 | |
| 309 | ret = codec->hw_write(codec->control_data, data, 3); |
| 310 | |
| 311 | if (ret == 3) |
| 312 | return 0; |
| 313 | if (ret < 0) |
| 314 | return ret; |
| 315 | return -EIO; |
| 316 | } |
| 317 | |
| 318 | struct _fll_div { |
| 319 | u16 fll_fratio; |
| 320 | u16 fll_outdiv; |
| 321 | u16 fll_clk_ref_div; |
| 322 | u16 n; |
| 323 | u16 k; |
| 324 | }; |
| 325 | |
| 326 | /* The size in bits of the FLL divide multiplied by 10 |
| 327 | * to allow rounding later */ |
| 328 | #define FIXED_FLL_SIZE ((1 << 16) * 10) |
| 329 | |
| 330 | static struct { |
| 331 | unsigned int min; |
| 332 | unsigned int max; |
| 333 | u16 fll_fratio; |
| 334 | int ratio; |
| 335 | } fll_fratios[] = { |
| 336 | { 0, 64000, 4, 16 }, |
| 337 | { 64000, 128000, 3, 8 }, |
| 338 | { 128000, 256000, 2, 4 }, |
| 339 | { 256000, 1000000, 1, 2 }, |
| 340 | { 1000000, 13500000, 0, 1 }, |
| 341 | }; |
| 342 | |
| 343 | static int fll_factors(struct _fll_div *fll_div, unsigned int Fref, |
| 344 | unsigned int Fout) |
| 345 | { |
| 346 | u64 Kpart; |
| 347 | unsigned int K, Ndiv, Nmod, target; |
| 348 | unsigned int div; |
| 349 | int i; |
| 350 | |
| 351 | /* Fref must be <=13.5MHz */ |
| 352 | div = 1; |
Mark Brown | 0c11f65 | 2009-07-17 22:13:01 +0100 | [diff] [blame] | 353 | fll_div->fll_clk_ref_div = 0; |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 354 | while ((Fref / div) > 13500000) { |
| 355 | div *= 2; |
Mark Brown | 0c11f65 | 2009-07-17 22:13:01 +0100 | [diff] [blame] | 356 | fll_div->fll_clk_ref_div++; |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 357 | |
| 358 | if (div > 8) { |
| 359 | pr_err("Can't scale %dMHz input down to <=13.5MHz\n", |
| 360 | Fref); |
| 361 | return -EINVAL; |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | pr_debug("Fref=%u Fout=%u\n", Fref, Fout); |
| 366 | |
| 367 | /* Apply the division for our remaining calculations */ |
| 368 | Fref /= div; |
| 369 | |
| 370 | /* Fvco should be 90-100MHz; don't check the upper bound */ |
| 371 | div = 0; |
| 372 | target = Fout * 2; |
| 373 | while (target < 90000000) { |
| 374 | div++; |
| 375 | target *= 2; |
| 376 | if (div > 7) { |
| 377 | pr_err("Unable to find FLL_OUTDIV for Fout=%uHz\n", |
| 378 | Fout); |
| 379 | return -EINVAL; |
| 380 | } |
| 381 | } |
| 382 | fll_div->fll_outdiv = div; |
| 383 | |
| 384 | pr_debug("Fvco=%dHz\n", target); |
| 385 | |
| 386 | /* Find an appropraite FLL_FRATIO and factor it out of the target */ |
| 387 | for (i = 0; i < ARRAY_SIZE(fll_fratios); i++) { |
| 388 | if (fll_fratios[i].min <= Fref && Fref <= fll_fratios[i].max) { |
| 389 | fll_div->fll_fratio = fll_fratios[i].fll_fratio; |
| 390 | target /= fll_fratios[i].ratio; |
| 391 | break; |
| 392 | } |
| 393 | } |
| 394 | if (i == ARRAY_SIZE(fll_fratios)) { |
| 395 | pr_err("Unable to find FLL_FRATIO for Fref=%uHz\n", Fref); |
| 396 | return -EINVAL; |
| 397 | } |
| 398 | |
| 399 | /* Now, calculate N.K */ |
| 400 | Ndiv = target / Fref; |
| 401 | |
| 402 | fll_div->n = Ndiv; |
| 403 | Nmod = target % Fref; |
| 404 | pr_debug("Nmod=%d\n", Nmod); |
| 405 | |
| 406 | /* Calculate fractional part - scale up so we can round. */ |
| 407 | Kpart = FIXED_FLL_SIZE * (long long)Nmod; |
| 408 | |
| 409 | do_div(Kpart, Fref); |
| 410 | |
| 411 | K = Kpart & 0xFFFFFFFF; |
| 412 | |
| 413 | if ((K % 10) >= 5) |
| 414 | K += 5; |
| 415 | |
| 416 | /* Move down to proper range now rounding is done */ |
| 417 | fll_div->k = K / 10; |
| 418 | |
| 419 | pr_debug("N=%x K=%x FLL_FRATIO=%x FLL_OUTDIV=%x FLL_CLK_REF_DIV=%x\n", |
| 420 | fll_div->n, fll_div->k, |
| 421 | fll_div->fll_fratio, fll_div->fll_outdiv, |
| 422 | fll_div->fll_clk_ref_div); |
| 423 | |
| 424 | return 0; |
| 425 | } |
| 426 | |
Mark Brown | 8548803 | 2009-09-05 18:52:16 +0100 | [diff] [blame] | 427 | static int wm8993_set_fll(struct snd_soc_dai *dai, int fll_id, int source, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 428 | unsigned int Fref, unsigned int Fout) |
| 429 | { |
| 430 | struct snd_soc_codec *codec = dai->codec; |
| 431 | struct wm8993_priv *wm8993 = codec->private_data; |
| 432 | u16 reg1, reg4, reg5; |
| 433 | struct _fll_div fll_div; |
| 434 | int ret; |
| 435 | |
| 436 | /* Any change? */ |
| 437 | if (Fref == wm8993->fll_fref && Fout == wm8993->fll_fout) |
| 438 | return 0; |
| 439 | |
| 440 | /* Disable the FLL */ |
| 441 | if (Fout == 0) { |
| 442 | dev_dbg(codec->dev, "FLL disabled\n"); |
| 443 | wm8993->fll_fref = 0; |
| 444 | wm8993->fll_fout = 0; |
| 445 | |
| 446 | reg1 = wm8993_read(codec, WM8993_FLL_CONTROL_1); |
| 447 | reg1 &= ~WM8993_FLL_ENA; |
| 448 | wm8993_write(codec, WM8993_FLL_CONTROL_1, reg1); |
| 449 | |
| 450 | return 0; |
| 451 | } |
| 452 | |
| 453 | ret = fll_factors(&fll_div, Fref, Fout); |
| 454 | if (ret != 0) |
| 455 | return ret; |
| 456 | |
| 457 | reg5 = wm8993_read(codec, WM8993_FLL_CONTROL_5); |
| 458 | reg5 &= ~WM8993_FLL_CLK_SRC_MASK; |
| 459 | |
| 460 | switch (fll_id) { |
| 461 | case WM8993_FLL_MCLK: |
| 462 | break; |
| 463 | |
| 464 | case WM8993_FLL_LRCLK: |
| 465 | reg5 |= 1; |
| 466 | break; |
| 467 | |
| 468 | case WM8993_FLL_BCLK: |
| 469 | reg5 |= 2; |
| 470 | break; |
| 471 | |
| 472 | default: |
| 473 | dev_err(codec->dev, "Unknown FLL ID %d\n", fll_id); |
| 474 | return -EINVAL; |
| 475 | } |
| 476 | |
| 477 | /* Any FLL configuration change requires that the FLL be |
| 478 | * disabled first. */ |
| 479 | reg1 = wm8993_read(codec, WM8993_FLL_CONTROL_1); |
| 480 | reg1 &= ~WM8993_FLL_ENA; |
| 481 | wm8993_write(codec, WM8993_FLL_CONTROL_1, reg1); |
| 482 | |
| 483 | /* Apply the configuration */ |
| 484 | if (fll_div.k) |
| 485 | reg1 |= WM8993_FLL_FRAC_MASK; |
| 486 | else |
| 487 | reg1 &= ~WM8993_FLL_FRAC_MASK; |
| 488 | wm8993_write(codec, WM8993_FLL_CONTROL_1, reg1); |
| 489 | |
| 490 | wm8993_write(codec, WM8993_FLL_CONTROL_2, |
| 491 | (fll_div.fll_outdiv << WM8993_FLL_OUTDIV_SHIFT) | |
| 492 | (fll_div.fll_fratio << WM8993_FLL_FRATIO_SHIFT)); |
| 493 | wm8993_write(codec, WM8993_FLL_CONTROL_3, fll_div.k); |
| 494 | |
| 495 | reg4 = wm8993_read(codec, WM8993_FLL_CONTROL_4); |
| 496 | reg4 &= ~WM8993_FLL_N_MASK; |
| 497 | reg4 |= fll_div.n << WM8993_FLL_N_SHIFT; |
| 498 | wm8993_write(codec, WM8993_FLL_CONTROL_4, reg4); |
| 499 | |
| 500 | reg5 &= ~WM8993_FLL_CLK_REF_DIV_MASK; |
| 501 | reg5 |= fll_div.fll_clk_ref_div << WM8993_FLL_CLK_REF_DIV_SHIFT; |
| 502 | wm8993_write(codec, WM8993_FLL_CONTROL_5, reg5); |
| 503 | |
| 504 | /* Enable the FLL */ |
| 505 | wm8993_write(codec, WM8993_FLL_CONTROL_1, reg1 | WM8993_FLL_ENA); |
| 506 | |
| 507 | dev_dbg(codec->dev, "FLL enabled at %dHz->%dHz\n", Fref, Fout); |
| 508 | |
| 509 | wm8993->fll_fref = Fref; |
| 510 | wm8993->fll_fout = Fout; |
Mark Brown | 53242c6 | 2010-01-02 13:15:56 +0000 | [diff] [blame] | 511 | wm8993->fll_src = source; |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 512 | |
| 513 | return 0; |
| 514 | } |
| 515 | |
| 516 | static int configure_clock(struct snd_soc_codec *codec) |
| 517 | { |
| 518 | struct wm8993_priv *wm8993 = codec->private_data; |
| 519 | unsigned int reg; |
| 520 | |
| 521 | /* This should be done on init() for bypass paths */ |
| 522 | switch (wm8993->sysclk_source) { |
| 523 | case WM8993_SYSCLK_MCLK: |
| 524 | dev_dbg(codec->dev, "Using %dHz MCLK\n", wm8993->mclk_rate); |
| 525 | |
| 526 | reg = wm8993_read(codec, WM8993_CLOCKING_2); |
Mark Brown | 0182dcc | 2009-08-17 18:51:44 +0100 | [diff] [blame] | 527 | reg &= ~(WM8993_MCLK_DIV | WM8993_SYSCLK_SRC); |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 528 | if (wm8993->mclk_rate > 13500000) { |
| 529 | reg |= WM8993_MCLK_DIV; |
| 530 | wm8993->sysclk_rate = wm8993->mclk_rate / 2; |
| 531 | } else { |
| 532 | reg &= ~WM8993_MCLK_DIV; |
| 533 | wm8993->sysclk_rate = wm8993->mclk_rate; |
| 534 | } |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 535 | wm8993_write(codec, WM8993_CLOCKING_2, reg); |
| 536 | break; |
| 537 | |
| 538 | case WM8993_SYSCLK_FLL: |
| 539 | dev_dbg(codec->dev, "Using %dHz FLL clock\n", |
| 540 | wm8993->fll_fout); |
| 541 | |
| 542 | reg = wm8993_read(codec, WM8993_CLOCKING_2); |
| 543 | reg |= WM8993_SYSCLK_SRC; |
| 544 | if (wm8993->fll_fout > 13500000) { |
| 545 | reg |= WM8993_MCLK_DIV; |
| 546 | wm8993->sysclk_rate = wm8993->fll_fout / 2; |
| 547 | } else { |
| 548 | reg &= ~WM8993_MCLK_DIV; |
| 549 | wm8993->sysclk_rate = wm8993->fll_fout; |
| 550 | } |
| 551 | wm8993_write(codec, WM8993_CLOCKING_2, reg); |
| 552 | break; |
| 553 | |
| 554 | default: |
| 555 | dev_err(codec->dev, "System clock not configured\n"); |
| 556 | return -EINVAL; |
| 557 | } |
| 558 | |
| 559 | dev_dbg(codec->dev, "CLK_SYS is %dHz\n", wm8993->sysclk_rate); |
| 560 | |
| 561 | return 0; |
| 562 | } |
| 563 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 564 | static const DECLARE_TLV_DB_SCALE(sidetone_tlv, -3600, 300, 0); |
| 565 | static const DECLARE_TLV_DB_SCALE(drc_comp_threash, -4500, 75, 0); |
| 566 | static const DECLARE_TLV_DB_SCALE(drc_comp_amp, -2250, 75, 0); |
| 567 | static const DECLARE_TLV_DB_SCALE(drc_min_tlv, -1800, 600, 0); |
| 568 | static const unsigned int drc_max_tlv[] = { |
| 569 | TLV_DB_RANGE_HEAD(4), |
| 570 | 0, 2, TLV_DB_SCALE_ITEM(1200, 600, 0), |
| 571 | 3, 3, TLV_DB_SCALE_ITEM(3600, 0, 0), |
| 572 | }; |
| 573 | static const DECLARE_TLV_DB_SCALE(drc_qr_tlv, 1200, 600, 0); |
| 574 | static const DECLARE_TLV_DB_SCALE(drc_startup_tlv, -1800, 300, 0); |
| 575 | static const DECLARE_TLV_DB_SCALE(eq_tlv, -1200, 100, 0); |
| 576 | static const DECLARE_TLV_DB_SCALE(digital_tlv, -7200, 75, 1); |
| 577 | static const DECLARE_TLV_DB_SCALE(dac_boost_tlv, 0, 600, 0); |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 578 | |
| 579 | static const char *dac_deemph_text[] = { |
| 580 | "None", |
| 581 | "32kHz", |
| 582 | "44.1kHz", |
| 583 | "48kHz", |
| 584 | }; |
| 585 | |
| 586 | static const struct soc_enum dac_deemph = |
| 587 | SOC_ENUM_SINGLE(WM8993_DAC_CTRL, 4, 4, dac_deemph_text); |
| 588 | |
| 589 | static const char *adc_hpf_text[] = { |
| 590 | "Hi-Fi", |
| 591 | "Voice 1", |
| 592 | "Voice 2", |
| 593 | "Voice 3", |
| 594 | }; |
| 595 | |
| 596 | static const struct soc_enum adc_hpf = |
| 597 | SOC_ENUM_SINGLE(WM8993_ADC_CTRL, 5, 4, adc_hpf_text); |
| 598 | |
| 599 | static const char *drc_path_text[] = { |
| 600 | "ADC", |
| 601 | "DAC" |
| 602 | }; |
| 603 | |
| 604 | static const struct soc_enum drc_path = |
| 605 | SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_1, 14, 2, drc_path_text); |
| 606 | |
| 607 | static const char *drc_r0_text[] = { |
| 608 | "1", |
| 609 | "1/2", |
| 610 | "1/4", |
| 611 | "1/8", |
| 612 | "1/16", |
| 613 | "0", |
| 614 | }; |
| 615 | |
| 616 | static const struct soc_enum drc_r0 = |
| 617 | SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_3, 8, 6, drc_r0_text); |
| 618 | |
| 619 | static const char *drc_r1_text[] = { |
| 620 | "1", |
| 621 | "1/2", |
| 622 | "1/4", |
| 623 | "1/8", |
| 624 | "0", |
| 625 | }; |
| 626 | |
| 627 | static const struct soc_enum drc_r1 = |
| 628 | SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_4, 13, 5, drc_r1_text); |
| 629 | |
| 630 | static const char *drc_attack_text[] = { |
| 631 | "Reserved", |
| 632 | "181us", |
| 633 | "363us", |
| 634 | "726us", |
| 635 | "1.45ms", |
| 636 | "2.9ms", |
| 637 | "5.8ms", |
| 638 | "11.6ms", |
| 639 | "23.2ms", |
| 640 | "46.4ms", |
| 641 | "92.8ms", |
| 642 | "185.6ms", |
| 643 | }; |
| 644 | |
| 645 | static const struct soc_enum drc_attack = |
| 646 | SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_2, 12, 12, drc_attack_text); |
| 647 | |
| 648 | static const char *drc_decay_text[] = { |
| 649 | "186ms", |
| 650 | "372ms", |
| 651 | "743ms", |
| 652 | "1.49s", |
| 653 | "2.97ms", |
| 654 | "5.94ms", |
| 655 | "11.89ms", |
| 656 | "23.78ms", |
| 657 | "47.56ms", |
| 658 | }; |
| 659 | |
| 660 | static const struct soc_enum drc_decay = |
| 661 | SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_2, 8, 9, drc_decay_text); |
| 662 | |
| 663 | static const char *drc_ff_text[] = { |
| 664 | "5 samples", |
| 665 | "9 samples", |
| 666 | }; |
| 667 | |
| 668 | static const struct soc_enum drc_ff = |
| 669 | SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_3, 7, 2, drc_ff_text); |
| 670 | |
| 671 | static const char *drc_qr_rate_text[] = { |
| 672 | "0.725ms", |
| 673 | "1.45ms", |
| 674 | "5.8ms", |
| 675 | }; |
| 676 | |
| 677 | static const struct soc_enum drc_qr_rate = |
| 678 | SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_3, 0, 3, drc_qr_rate_text); |
| 679 | |
| 680 | static const char *drc_smooth_text[] = { |
| 681 | "Low", |
| 682 | "Medium", |
| 683 | "High", |
| 684 | }; |
| 685 | |
| 686 | static const struct soc_enum drc_smooth = |
| 687 | SOC_ENUM_SINGLE(WM8993_DRC_CONTROL_1, 4, 3, drc_smooth_text); |
| 688 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 689 | static const struct snd_kcontrol_new wm8993_snd_controls[] = { |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 690 | SOC_DOUBLE_TLV("Digital Sidetone Volume", WM8993_DIGITAL_SIDE_TONE, |
| 691 | 5, 9, 12, 0, sidetone_tlv), |
| 692 | |
| 693 | SOC_SINGLE("DRC Switch", WM8993_DRC_CONTROL_1, 15, 1, 0), |
| 694 | SOC_ENUM("DRC Path", drc_path), |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 695 | SOC_SINGLE_TLV("DRC Compressor Threshold Volume", WM8993_DRC_CONTROL_2, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 696 | 2, 60, 1, drc_comp_threash), |
| 697 | SOC_SINGLE_TLV("DRC Compressor Amplitude Volume", WM8993_DRC_CONTROL_3, |
| 698 | 11, 30, 1, drc_comp_amp), |
| 699 | SOC_ENUM("DRC R0", drc_r0), |
| 700 | SOC_ENUM("DRC R1", drc_r1), |
| 701 | SOC_SINGLE_TLV("DRC Minimum Volume", WM8993_DRC_CONTROL_1, 2, 3, 1, |
| 702 | drc_min_tlv), |
| 703 | SOC_SINGLE_TLV("DRC Maximum Volume", WM8993_DRC_CONTROL_1, 0, 3, 0, |
| 704 | drc_max_tlv), |
| 705 | SOC_ENUM("DRC Attack Rate", drc_attack), |
| 706 | SOC_ENUM("DRC Decay Rate", drc_decay), |
| 707 | SOC_ENUM("DRC FF Delay", drc_ff), |
| 708 | SOC_SINGLE("DRC Anti-clip Switch", WM8993_DRC_CONTROL_1, 9, 1, 0), |
| 709 | SOC_SINGLE("DRC Quick Release Switch", WM8993_DRC_CONTROL_1, 10, 1, 0), |
| 710 | SOC_SINGLE_TLV("DRC Quick Release Volume", WM8993_DRC_CONTROL_3, 2, 3, 0, |
| 711 | drc_qr_tlv), |
| 712 | SOC_ENUM("DRC Quick Release Rate", drc_qr_rate), |
| 713 | SOC_SINGLE("DRC Smoothing Switch", WM8993_DRC_CONTROL_1, 11, 1, 0), |
| 714 | SOC_SINGLE("DRC Smoothing Hysteresis Switch", WM8993_DRC_CONTROL_1, 8, 1, 0), |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 715 | SOC_ENUM("DRC Smoothing Hysteresis Threshold", drc_smooth), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 716 | SOC_SINGLE_TLV("DRC Startup Volume", WM8993_DRC_CONTROL_4, 8, 18, 0, |
| 717 | drc_startup_tlv), |
| 718 | |
| 719 | SOC_SINGLE("EQ Switch", WM8993_EQ1, 0, 1, 0), |
| 720 | |
| 721 | SOC_DOUBLE_R_TLV("Capture Volume", WM8993_LEFT_ADC_DIGITAL_VOLUME, |
| 722 | WM8993_RIGHT_ADC_DIGITAL_VOLUME, 1, 96, 0, digital_tlv), |
| 723 | SOC_SINGLE("ADC High Pass Filter Switch", WM8993_ADC_CTRL, 8, 1, 0), |
| 724 | SOC_ENUM("ADC High Pass Filter Mode", adc_hpf), |
| 725 | |
| 726 | SOC_DOUBLE_R_TLV("Playback Volume", WM8993_LEFT_DAC_DIGITAL_VOLUME, |
| 727 | WM8993_RIGHT_DAC_DIGITAL_VOLUME, 1, 96, 0, digital_tlv), |
| 728 | SOC_SINGLE_TLV("Playback Boost Volume", WM8993_AUDIO_INTERFACE_2, 10, 3, 0, |
| 729 | dac_boost_tlv), |
| 730 | SOC_ENUM("DAC Deemphasis", dac_deemph), |
| 731 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 732 | SOC_SINGLE_TLV("SPKL DAC Volume", WM8993_SPKMIXL_ATTENUATION, |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 733 | 2, 1, 1, wm_hubs_spkmix_tlv), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 734 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 735 | SOC_SINGLE_TLV("SPKR DAC Volume", WM8993_SPKMIXR_ATTENUATION, |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 736 | 2, 1, 1, wm_hubs_spkmix_tlv), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 737 | }; |
| 738 | |
| 739 | static const struct snd_kcontrol_new wm8993_eq_controls[] = { |
| 740 | SOC_SINGLE_TLV("EQ1 Volume", WM8993_EQ2, 0, 24, 0, eq_tlv), |
| 741 | SOC_SINGLE_TLV("EQ2 Volume", WM8993_EQ3, 0, 24, 0, eq_tlv), |
| 742 | SOC_SINGLE_TLV("EQ3 Volume", WM8993_EQ4, 0, 24, 0, eq_tlv), |
| 743 | SOC_SINGLE_TLV("EQ4 Volume", WM8993_EQ5, 0, 24, 0, eq_tlv), |
| 744 | SOC_SINGLE_TLV("EQ5 Volume", WM8993_EQ6, 0, 24, 0, eq_tlv), |
| 745 | }; |
| 746 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 747 | static int clk_sys_event(struct snd_soc_dapm_widget *w, |
| 748 | struct snd_kcontrol *kcontrol, int event) |
| 749 | { |
| 750 | struct snd_soc_codec *codec = w->codec; |
| 751 | |
| 752 | switch (event) { |
| 753 | case SND_SOC_DAPM_PRE_PMU: |
| 754 | return configure_clock(codec); |
| 755 | |
| 756 | case SND_SOC_DAPM_POST_PMD: |
| 757 | break; |
| 758 | } |
| 759 | |
| 760 | return 0; |
| 761 | } |
| 762 | |
| 763 | /* |
| 764 | * When used with DAC outputs only the WM8993 charge pump supports |
| 765 | * operation in class W mode, providing very low power consumption |
| 766 | * when used with digital sources. Enable and disable this mode |
| 767 | * automatically depending on the mixer configuration. |
| 768 | * |
| 769 | * Currently the only supported paths are the direct DAC->headphone |
| 770 | * paths (which provide minimum power consumption anyway). |
| 771 | */ |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 772 | static int class_w_put(struct snd_kcontrol *kcontrol, |
| 773 | struct snd_ctl_elem_value *ucontrol) |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 774 | { |
| 775 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
| 776 | struct snd_soc_codec *codec = widget->codec; |
| 777 | struct wm8993_priv *wm8993 = codec->private_data; |
| 778 | int ret; |
| 779 | |
| 780 | /* Turn it off if we're using the main output mixer */ |
| 781 | if (ucontrol->value.integer.value[0] == 0) { |
| 782 | if (wm8993->class_w_users == 0) { |
| 783 | dev_dbg(codec->dev, "Disabling Class W\n"); |
| 784 | snd_soc_update_bits(codec, WM8993_CLASS_W_0, |
| 785 | WM8993_CP_DYN_FREQ | |
| 786 | WM8993_CP_DYN_V, |
| 787 | 0); |
| 788 | } |
| 789 | wm8993->class_w_users++; |
| 790 | } |
| 791 | |
| 792 | /* Implement the change */ |
| 793 | ret = snd_soc_dapm_put_enum_double(kcontrol, ucontrol); |
| 794 | |
| 795 | /* Enable it if we're using the direct DAC path */ |
| 796 | if (ucontrol->value.integer.value[0] == 1) { |
| 797 | if (wm8993->class_w_users == 1) { |
| 798 | dev_dbg(codec->dev, "Enabling Class W\n"); |
| 799 | snd_soc_update_bits(codec, WM8993_CLASS_W_0, |
| 800 | WM8993_CP_DYN_FREQ | |
| 801 | WM8993_CP_DYN_V, |
| 802 | WM8993_CP_DYN_FREQ | |
| 803 | WM8993_CP_DYN_V); |
| 804 | } |
| 805 | wm8993->class_w_users--; |
| 806 | } |
| 807 | |
| 808 | dev_dbg(codec->dev, "Indirect DAC use count now %d\n", |
| 809 | wm8993->class_w_users); |
| 810 | |
| 811 | return ret; |
| 812 | } |
| 813 | |
| 814 | #define SOC_DAPM_ENUM_W(xname, xenum) \ |
| 815 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ |
| 816 | .info = snd_soc_info_enum_double, \ |
| 817 | .get = snd_soc_dapm_get_enum_double, \ |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 818 | .put = class_w_put, \ |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 819 | .private_value = (unsigned long)&xenum } |
| 820 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 821 | static const char *hp_mux_text[] = { |
| 822 | "Mixer", |
| 823 | "DAC", |
| 824 | }; |
| 825 | |
| 826 | static const struct soc_enum hpl_enum = |
| 827 | SOC_ENUM_SINGLE(WM8993_OUTPUT_MIXER1, 8, 2, hp_mux_text); |
| 828 | |
| 829 | static const struct snd_kcontrol_new hpl_mux = |
| 830 | SOC_DAPM_ENUM_W("Left Headphone Mux", hpl_enum); |
| 831 | |
| 832 | static const struct soc_enum hpr_enum = |
| 833 | SOC_ENUM_SINGLE(WM8993_OUTPUT_MIXER2, 8, 2, hp_mux_text); |
| 834 | |
| 835 | static const struct snd_kcontrol_new hpr_mux = |
| 836 | SOC_DAPM_ENUM_W("Right Headphone Mux", hpr_enum); |
| 837 | |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 838 | static const struct snd_kcontrol_new left_speaker_mixer[] = { |
| 839 | SOC_DAPM_SINGLE("Input Switch", WM8993_SPEAKER_MIXER, 7, 1, 0), |
| 840 | SOC_DAPM_SINGLE("IN1LP Switch", WM8993_SPEAKER_MIXER, 5, 1, 0), |
| 841 | SOC_DAPM_SINGLE("Output Switch", WM8993_SPEAKER_MIXER, 3, 1, 0), |
| 842 | SOC_DAPM_SINGLE("DAC Switch", WM8993_SPEAKER_MIXER, 6, 1, 0), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 843 | }; |
| 844 | |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 845 | static const struct snd_kcontrol_new right_speaker_mixer[] = { |
| 846 | SOC_DAPM_SINGLE("Input Switch", WM8993_SPEAKER_MIXER, 6, 1, 0), |
| 847 | SOC_DAPM_SINGLE("IN1RP Switch", WM8993_SPEAKER_MIXER, 4, 1, 0), |
| 848 | SOC_DAPM_SINGLE("Output Switch", WM8993_SPEAKER_MIXER, 2, 1, 0), |
| 849 | SOC_DAPM_SINGLE("DAC Switch", WM8993_SPEAKER_MIXER, 0, 1, 0), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 850 | }; |
| 851 | |
Mark Brown | 59ae07a | 2009-08-18 16:01:57 +0100 | [diff] [blame] | 852 | static const char *aif_text[] = { |
| 853 | "Left", "Right" |
| 854 | }; |
| 855 | |
| 856 | static const struct soc_enum aifoutl_enum = |
| 857 | SOC_ENUM_SINGLE(WM8993_AUDIO_INTERFACE_1, 15, 2, aif_text); |
| 858 | |
| 859 | static const struct snd_kcontrol_new aifoutl_mux = |
| 860 | SOC_DAPM_ENUM("AIFOUTL Mux", aifoutl_enum); |
| 861 | |
| 862 | static const struct soc_enum aifoutr_enum = |
| 863 | SOC_ENUM_SINGLE(WM8993_AUDIO_INTERFACE_1, 14, 2, aif_text); |
| 864 | |
| 865 | static const struct snd_kcontrol_new aifoutr_mux = |
| 866 | SOC_DAPM_ENUM("AIFOUTR Mux", aifoutr_enum); |
| 867 | |
| 868 | static const struct soc_enum aifinl_enum = |
| 869 | SOC_ENUM_SINGLE(WM8993_AUDIO_INTERFACE_2, 15, 2, aif_text); |
| 870 | |
| 871 | static const struct snd_kcontrol_new aifinl_mux = |
| 872 | SOC_DAPM_ENUM("AIFINL Mux", aifinl_enum); |
| 873 | |
| 874 | static const struct soc_enum aifinr_enum = |
| 875 | SOC_ENUM_SINGLE(WM8993_AUDIO_INTERFACE_2, 14, 2, aif_text); |
| 876 | |
| 877 | static const struct snd_kcontrol_new aifinr_mux = |
| 878 | SOC_DAPM_ENUM("AIFINR Mux", aifinr_enum); |
| 879 | |
| 880 | static const char *sidetone_text[] = { |
| 881 | "None", "Left", "Right" |
| 882 | }; |
| 883 | |
| 884 | static const struct soc_enum sidetonel_enum = |
| 885 | SOC_ENUM_SINGLE(WM8993_DIGITAL_SIDE_TONE, 2, 3, sidetone_text); |
| 886 | |
| 887 | static const struct snd_kcontrol_new sidetonel_mux = |
| 888 | SOC_DAPM_ENUM("Left Sidetone", sidetonel_enum); |
| 889 | |
| 890 | static const struct soc_enum sidetoner_enum = |
| 891 | SOC_ENUM_SINGLE(WM8993_DIGITAL_SIDE_TONE, 0, 3, sidetone_text); |
| 892 | |
| 893 | static const struct snd_kcontrol_new sidetoner_mux = |
| 894 | SOC_DAPM_ENUM("Right Sidetone", sidetoner_enum); |
| 895 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 896 | static const struct snd_soc_dapm_widget wm8993_dapm_widgets[] = { |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 897 | SND_SOC_DAPM_SUPPLY("CLK_SYS", WM8993_BUS_CONTROL_1, 1, 0, clk_sys_event, |
| 898 | SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD), |
| 899 | SND_SOC_DAPM_SUPPLY("TOCLK", WM8993_CLOCKING_1, 14, 0, NULL, 0), |
| 900 | SND_SOC_DAPM_SUPPLY("CLK_DSP", WM8993_CLOCKING_3, 0, 0, NULL, 0), |
| 901 | |
Mark Brown | 59ae07a | 2009-08-18 16:01:57 +0100 | [diff] [blame] | 902 | SND_SOC_DAPM_ADC("ADCL", NULL, WM8993_POWER_MANAGEMENT_2, 1, 0), |
| 903 | SND_SOC_DAPM_ADC("ADCR", NULL, WM8993_POWER_MANAGEMENT_2, 0, 0), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 904 | |
Mark Brown | 59ae07a | 2009-08-18 16:01:57 +0100 | [diff] [blame] | 905 | SND_SOC_DAPM_MUX("AIFOUTL Mux", SND_SOC_NOPM, 0, 0, &aifoutl_mux), |
| 906 | SND_SOC_DAPM_MUX("AIFOUTR Mux", SND_SOC_NOPM, 0, 0, &aifoutr_mux), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 907 | |
Mark Brown | 59ae07a | 2009-08-18 16:01:57 +0100 | [diff] [blame] | 908 | SND_SOC_DAPM_AIF_OUT("AIFOUTL", "Capture", 0, SND_SOC_NOPM, 0, 0), |
| 909 | SND_SOC_DAPM_AIF_OUT("AIFOUTR", "Capture", 1, SND_SOC_NOPM, 0, 0), |
| 910 | |
| 911 | SND_SOC_DAPM_AIF_IN("AIFINL", "Playback", 0, SND_SOC_NOPM, 0, 0), |
| 912 | SND_SOC_DAPM_AIF_IN("AIFINR", "Playback", 1, SND_SOC_NOPM, 0, 0), |
| 913 | |
| 914 | SND_SOC_DAPM_MUX("DACL Mux", SND_SOC_NOPM, 0, 0, &aifinl_mux), |
| 915 | SND_SOC_DAPM_MUX("DACR Mux", SND_SOC_NOPM, 0, 0, &aifinr_mux), |
| 916 | |
| 917 | SND_SOC_DAPM_MUX("DACL Sidetone", SND_SOC_NOPM, 0, 0, &sidetonel_mux), |
| 918 | SND_SOC_DAPM_MUX("DACR Sidetone", SND_SOC_NOPM, 0, 0, &sidetoner_mux), |
| 919 | |
| 920 | SND_SOC_DAPM_DAC("DACL", NULL, WM8993_POWER_MANAGEMENT_3, 1, 0), |
| 921 | SND_SOC_DAPM_DAC("DACR", NULL, WM8993_POWER_MANAGEMENT_3, 0, 0), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 922 | |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 923 | SND_SOC_DAPM_MUX("Left Headphone Mux", SND_SOC_NOPM, 0, 0, &hpl_mux), |
| 924 | SND_SOC_DAPM_MUX("Right Headphone Mux", SND_SOC_NOPM, 0, 0, &hpr_mux), |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 925 | |
| 926 | SND_SOC_DAPM_MIXER("SPKL", WM8993_POWER_MANAGEMENT_3, 8, 0, |
| 927 | left_speaker_mixer, ARRAY_SIZE(left_speaker_mixer)), |
| 928 | SND_SOC_DAPM_MIXER("SPKR", WM8993_POWER_MANAGEMENT_3, 9, 0, |
| 929 | right_speaker_mixer, ARRAY_SIZE(right_speaker_mixer)), |
| 930 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 931 | }; |
| 932 | |
| 933 | static const struct snd_soc_dapm_route routes[] = { |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 934 | { "ADCL", NULL, "CLK_SYS" }, |
| 935 | { "ADCL", NULL, "CLK_DSP" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 936 | { "ADCR", NULL, "CLK_SYS" }, |
| 937 | { "ADCR", NULL, "CLK_DSP" }, |
| 938 | |
Mark Brown | 59ae07a | 2009-08-18 16:01:57 +0100 | [diff] [blame] | 939 | { "AIFOUTL Mux", "Left", "ADCL" }, |
| 940 | { "AIFOUTL Mux", "Right", "ADCR" }, |
| 941 | { "AIFOUTR Mux", "Left", "ADCL" }, |
| 942 | { "AIFOUTR Mux", "Right", "ADCR" }, |
| 943 | |
| 944 | { "AIFOUTL", NULL, "AIFOUTL Mux" }, |
| 945 | { "AIFOUTR", NULL, "AIFOUTR Mux" }, |
| 946 | |
| 947 | { "DACL Mux", "Left", "AIFINL" }, |
| 948 | { "DACL Mux", "Right", "AIFINR" }, |
| 949 | { "DACR Mux", "Left", "AIFINL" }, |
| 950 | { "DACR Mux", "Right", "AIFINR" }, |
| 951 | |
| 952 | { "DACL Sidetone", "Left", "ADCL" }, |
| 953 | { "DACL Sidetone", "Right", "ADCR" }, |
| 954 | { "DACR Sidetone", "Left", "ADCL" }, |
| 955 | { "DACR Sidetone", "Right", "ADCR" }, |
| 956 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 957 | { "DACL", NULL, "CLK_SYS" }, |
| 958 | { "DACL", NULL, "CLK_DSP" }, |
Mark Brown | 59ae07a | 2009-08-18 16:01:57 +0100 | [diff] [blame] | 959 | { "DACL", NULL, "DACL Mux" }, |
| 960 | { "DACL", NULL, "DACL Sidetone" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 961 | { "DACR", NULL, "CLK_SYS" }, |
| 962 | { "DACR", NULL, "CLK_DSP" }, |
Mark Brown | 59ae07a | 2009-08-18 16:01:57 +0100 | [diff] [blame] | 963 | { "DACR", NULL, "DACR Mux" }, |
| 964 | { "DACR", NULL, "DACR Sidetone" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 965 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 966 | { "Left Output Mixer", "DAC Switch", "DACL" }, |
| 967 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 968 | { "Right Output Mixer", "DAC Switch", "DACR" }, |
| 969 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 970 | { "Left Output PGA", NULL, "CLK_SYS" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 971 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 972 | { "Right Output PGA", NULL, "CLK_SYS" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 973 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 974 | { "SPKL", "DAC Switch", "DACL" }, |
| 975 | { "SPKL", NULL, "CLK_SYS" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 976 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 977 | { "SPKR", "DAC Switch", "DACR" }, |
| 978 | { "SPKR", NULL, "CLK_SYS" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 979 | |
| 980 | { "Left Headphone Mux", "DAC", "DACL" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 981 | { "Right Headphone Mux", "DAC", "DACR" }, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 982 | }; |
| 983 | |
| 984 | static int wm8993_set_bias_level(struct snd_soc_codec *codec, |
| 985 | enum snd_soc_bias_level level) |
| 986 | { |
| 987 | struct wm8993_priv *wm8993 = codec->private_data; |
| 988 | |
| 989 | switch (level) { |
| 990 | case SND_SOC_BIAS_ON: |
| 991 | case SND_SOC_BIAS_PREPARE: |
| 992 | /* VMID=2*40k */ |
| 993 | snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_1, |
| 994 | WM8993_VMID_SEL_MASK, 0x2); |
| 995 | snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_2, |
| 996 | WM8993_TSHUT_ENA, WM8993_TSHUT_ENA); |
| 997 | break; |
| 998 | |
| 999 | case SND_SOC_BIAS_STANDBY: |
| 1000 | if (codec->bias_level == SND_SOC_BIAS_OFF) { |
Mark Brown | 3ed7074 | 2010-01-20 17:39:45 +0000 | [diff] [blame] | 1001 | /* Tune DC servo configuration */ |
| 1002 | snd_soc_write(codec, 0x44, 3); |
| 1003 | snd_soc_write(codec, 0x56, 3); |
| 1004 | snd_soc_write(codec, 0x44, 0); |
| 1005 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1006 | /* Bring up VMID with fast soft start */ |
| 1007 | snd_soc_update_bits(codec, WM8993_ANTIPOP2, |
| 1008 | WM8993_STARTUP_BIAS_ENA | |
| 1009 | WM8993_VMID_BUF_ENA | |
| 1010 | WM8993_VMID_RAMP_MASK | |
| 1011 | WM8993_BIAS_SRC, |
| 1012 | WM8993_STARTUP_BIAS_ENA | |
| 1013 | WM8993_VMID_BUF_ENA | |
| 1014 | WM8993_VMID_RAMP_MASK | |
| 1015 | WM8993_BIAS_SRC); |
| 1016 | |
| 1017 | /* If either line output is single ended we |
| 1018 | * need the VMID buffer */ |
| 1019 | if (!wm8993->pdata.lineout1_diff || |
| 1020 | !wm8993->pdata.lineout2_diff) |
| 1021 | snd_soc_update_bits(codec, WM8993_ANTIPOP1, |
| 1022 | WM8993_LINEOUT_VMID_BUF_ENA, |
| 1023 | WM8993_LINEOUT_VMID_BUF_ENA); |
| 1024 | |
| 1025 | /* VMID=2*40k */ |
| 1026 | snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_1, |
| 1027 | WM8993_VMID_SEL_MASK | |
| 1028 | WM8993_BIAS_ENA, |
| 1029 | WM8993_BIAS_ENA | 0x2); |
| 1030 | msleep(32); |
| 1031 | |
| 1032 | /* Switch to normal bias */ |
| 1033 | snd_soc_update_bits(codec, WM8993_ANTIPOP2, |
| 1034 | WM8993_BIAS_SRC | |
| 1035 | WM8993_STARTUP_BIAS_ENA, 0); |
| 1036 | } |
| 1037 | |
| 1038 | /* VMID=2*240k */ |
| 1039 | snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_1, |
| 1040 | WM8993_VMID_SEL_MASK, 0x4); |
| 1041 | |
| 1042 | snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_2, |
| 1043 | WM8993_TSHUT_ENA, 0); |
| 1044 | break; |
| 1045 | |
| 1046 | case SND_SOC_BIAS_OFF: |
| 1047 | snd_soc_update_bits(codec, WM8993_ANTIPOP1, |
| 1048 | WM8993_LINEOUT_VMID_BUF_ENA, 0); |
| 1049 | |
| 1050 | snd_soc_update_bits(codec, WM8993_POWER_MANAGEMENT_1, |
| 1051 | WM8993_VMID_SEL_MASK | WM8993_BIAS_ENA, |
| 1052 | 0); |
| 1053 | break; |
| 1054 | } |
| 1055 | |
| 1056 | codec->bias_level = level; |
| 1057 | |
| 1058 | return 0; |
| 1059 | } |
| 1060 | |
| 1061 | static int wm8993_set_sysclk(struct snd_soc_dai *codec_dai, |
| 1062 | int clk_id, unsigned int freq, int dir) |
| 1063 | { |
| 1064 | struct snd_soc_codec *codec = codec_dai->codec; |
| 1065 | struct wm8993_priv *wm8993 = codec->private_data; |
| 1066 | |
| 1067 | switch (clk_id) { |
| 1068 | case WM8993_SYSCLK_MCLK: |
| 1069 | wm8993->mclk_rate = freq; |
| 1070 | case WM8993_SYSCLK_FLL: |
| 1071 | wm8993->sysclk_source = clk_id; |
| 1072 | break; |
| 1073 | |
| 1074 | default: |
| 1075 | return -EINVAL; |
| 1076 | } |
| 1077 | |
| 1078 | return 0; |
| 1079 | } |
| 1080 | |
| 1081 | static int wm8993_set_dai_fmt(struct snd_soc_dai *dai, |
| 1082 | unsigned int fmt) |
| 1083 | { |
| 1084 | struct snd_soc_codec *codec = dai->codec; |
| 1085 | struct wm8993_priv *wm8993 = codec->private_data; |
| 1086 | unsigned int aif1 = wm8993_read(codec, WM8993_AUDIO_INTERFACE_1); |
| 1087 | unsigned int aif4 = wm8993_read(codec, WM8993_AUDIO_INTERFACE_4); |
| 1088 | |
| 1089 | aif1 &= ~(WM8993_BCLK_DIR | WM8993_AIF_BCLK_INV | |
| 1090 | WM8993_AIF_LRCLK_INV | WM8993_AIF_FMT_MASK); |
| 1091 | aif4 &= ~WM8993_LRCLK_DIR; |
| 1092 | |
| 1093 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 1094 | case SND_SOC_DAIFMT_CBS_CFS: |
| 1095 | wm8993->master = 0; |
| 1096 | break; |
| 1097 | case SND_SOC_DAIFMT_CBS_CFM: |
| 1098 | aif4 |= WM8993_LRCLK_DIR; |
| 1099 | wm8993->master = 1; |
| 1100 | break; |
| 1101 | case SND_SOC_DAIFMT_CBM_CFS: |
| 1102 | aif1 |= WM8993_BCLK_DIR; |
| 1103 | wm8993->master = 1; |
| 1104 | break; |
| 1105 | case SND_SOC_DAIFMT_CBM_CFM: |
| 1106 | aif1 |= WM8993_BCLK_DIR; |
| 1107 | aif4 |= WM8993_LRCLK_DIR; |
| 1108 | wm8993->master = 1; |
| 1109 | break; |
| 1110 | default: |
| 1111 | return -EINVAL; |
| 1112 | } |
| 1113 | |
| 1114 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 1115 | case SND_SOC_DAIFMT_DSP_B: |
| 1116 | aif1 |= WM8993_AIF_LRCLK_INV; |
| 1117 | case SND_SOC_DAIFMT_DSP_A: |
| 1118 | aif1 |= 0x18; |
| 1119 | break; |
| 1120 | case SND_SOC_DAIFMT_I2S: |
| 1121 | aif1 |= 0x10; |
| 1122 | break; |
| 1123 | case SND_SOC_DAIFMT_RIGHT_J: |
| 1124 | break; |
| 1125 | case SND_SOC_DAIFMT_LEFT_J: |
| 1126 | aif1 |= 0x8; |
| 1127 | break; |
| 1128 | default: |
| 1129 | return -EINVAL; |
| 1130 | } |
| 1131 | |
| 1132 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 1133 | case SND_SOC_DAIFMT_DSP_A: |
| 1134 | case SND_SOC_DAIFMT_DSP_B: |
| 1135 | /* frame inversion not valid for DSP modes */ |
| 1136 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 1137 | case SND_SOC_DAIFMT_NB_NF: |
| 1138 | break; |
| 1139 | case SND_SOC_DAIFMT_IB_NF: |
| 1140 | aif1 |= WM8993_AIF_BCLK_INV; |
| 1141 | break; |
| 1142 | default: |
| 1143 | return -EINVAL; |
| 1144 | } |
| 1145 | break; |
| 1146 | |
| 1147 | case SND_SOC_DAIFMT_I2S: |
| 1148 | case SND_SOC_DAIFMT_RIGHT_J: |
| 1149 | case SND_SOC_DAIFMT_LEFT_J: |
| 1150 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 1151 | case SND_SOC_DAIFMT_NB_NF: |
| 1152 | break; |
| 1153 | case SND_SOC_DAIFMT_IB_IF: |
| 1154 | aif1 |= WM8993_AIF_BCLK_INV | WM8993_AIF_LRCLK_INV; |
| 1155 | break; |
| 1156 | case SND_SOC_DAIFMT_IB_NF: |
| 1157 | aif1 |= WM8993_AIF_BCLK_INV; |
| 1158 | break; |
| 1159 | case SND_SOC_DAIFMT_NB_IF: |
| 1160 | aif1 |= WM8993_AIF_LRCLK_INV; |
| 1161 | break; |
| 1162 | default: |
| 1163 | return -EINVAL; |
| 1164 | } |
| 1165 | break; |
| 1166 | default: |
| 1167 | return -EINVAL; |
| 1168 | } |
| 1169 | |
| 1170 | wm8993_write(codec, WM8993_AUDIO_INTERFACE_1, aif1); |
| 1171 | wm8993_write(codec, WM8993_AUDIO_INTERFACE_4, aif4); |
| 1172 | |
| 1173 | return 0; |
| 1174 | } |
| 1175 | |
| 1176 | static int wm8993_hw_params(struct snd_pcm_substream *substream, |
| 1177 | struct snd_pcm_hw_params *params, |
| 1178 | struct snd_soc_dai *dai) |
| 1179 | { |
| 1180 | struct snd_soc_codec *codec = dai->codec; |
| 1181 | struct wm8993_priv *wm8993 = codec->private_data; |
| 1182 | int ret, i, best, best_val, cur_val; |
| 1183 | unsigned int clocking1, clocking3, aif1, aif4; |
| 1184 | |
| 1185 | clocking1 = wm8993_read(codec, WM8993_CLOCKING_1); |
| 1186 | clocking1 &= ~WM8993_BCLK_DIV_MASK; |
| 1187 | |
| 1188 | clocking3 = wm8993_read(codec, WM8993_CLOCKING_3); |
| 1189 | clocking3 &= ~(WM8993_CLK_SYS_RATE_MASK | WM8993_SAMPLE_RATE_MASK); |
| 1190 | |
| 1191 | aif1 = wm8993_read(codec, WM8993_AUDIO_INTERFACE_1); |
| 1192 | aif1 &= ~WM8993_AIF_WL_MASK; |
| 1193 | |
| 1194 | aif4 = wm8993_read(codec, WM8993_AUDIO_INTERFACE_4); |
| 1195 | aif4 &= ~WM8993_LRCLK_RATE_MASK; |
| 1196 | |
| 1197 | /* What BCLK do we need? */ |
| 1198 | wm8993->fs = params_rate(params); |
| 1199 | wm8993->bclk = 2 * wm8993->fs; |
Mark Brown | d3c9e9a | 2009-08-17 18:52:47 +0100 | [diff] [blame] | 1200 | if (wm8993->tdm_slots) { |
| 1201 | dev_dbg(codec->dev, "Configuring for %d %d bit TDM slots\n", |
| 1202 | wm8993->tdm_slots, wm8993->tdm_width); |
| 1203 | wm8993->bclk *= wm8993->tdm_width * wm8993->tdm_slots; |
| 1204 | } else { |
| 1205 | switch (params_format(params)) { |
| 1206 | case SNDRV_PCM_FORMAT_S16_LE: |
| 1207 | wm8993->bclk *= 16; |
| 1208 | break; |
| 1209 | case SNDRV_PCM_FORMAT_S20_3LE: |
| 1210 | wm8993->bclk *= 20; |
| 1211 | aif1 |= 0x8; |
| 1212 | break; |
| 1213 | case SNDRV_PCM_FORMAT_S24_LE: |
| 1214 | wm8993->bclk *= 24; |
| 1215 | aif1 |= 0x10; |
| 1216 | break; |
| 1217 | case SNDRV_PCM_FORMAT_S32_LE: |
| 1218 | wm8993->bclk *= 32; |
| 1219 | aif1 |= 0x18; |
| 1220 | break; |
| 1221 | default: |
| 1222 | return -EINVAL; |
| 1223 | } |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1224 | } |
| 1225 | |
| 1226 | dev_dbg(codec->dev, "Target BCLK is %dHz\n", wm8993->bclk); |
| 1227 | |
| 1228 | ret = configure_clock(codec); |
| 1229 | if (ret != 0) |
| 1230 | return ret; |
| 1231 | |
| 1232 | /* Select nearest CLK_SYS_RATE */ |
| 1233 | best = 0; |
| 1234 | best_val = abs((wm8993->sysclk_rate / clk_sys_rates[0].ratio) |
| 1235 | - wm8993->fs); |
| 1236 | for (i = 1; i < ARRAY_SIZE(clk_sys_rates); i++) { |
| 1237 | cur_val = abs((wm8993->sysclk_rate / |
| 1238 | clk_sys_rates[i].ratio) - wm8993->fs);; |
| 1239 | if (cur_val < best_val) { |
| 1240 | best = i; |
| 1241 | best_val = cur_val; |
| 1242 | } |
| 1243 | } |
| 1244 | dev_dbg(codec->dev, "Selected CLK_SYS_RATIO of %d\n", |
| 1245 | clk_sys_rates[best].ratio); |
| 1246 | clocking3 |= (clk_sys_rates[best].clk_sys_rate |
| 1247 | << WM8993_CLK_SYS_RATE_SHIFT); |
| 1248 | |
| 1249 | /* SAMPLE_RATE */ |
| 1250 | best = 0; |
| 1251 | best_val = abs(wm8993->fs - sample_rates[0].rate); |
| 1252 | for (i = 1; i < ARRAY_SIZE(sample_rates); i++) { |
| 1253 | /* Closest match */ |
| 1254 | cur_val = abs(wm8993->fs - sample_rates[i].rate); |
| 1255 | if (cur_val < best_val) { |
| 1256 | best = i; |
| 1257 | best_val = cur_val; |
| 1258 | } |
| 1259 | } |
| 1260 | dev_dbg(codec->dev, "Selected SAMPLE_RATE of %dHz\n", |
| 1261 | sample_rates[best].rate); |
Mark Brown | e465d54 | 2009-07-15 10:01:30 +0100 | [diff] [blame] | 1262 | clocking3 |= (sample_rates[best].sample_rate |
| 1263 | << WM8993_SAMPLE_RATE_SHIFT); |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1264 | |
| 1265 | /* BCLK_DIV */ |
| 1266 | best = 0; |
| 1267 | best_val = INT_MAX; |
| 1268 | for (i = 0; i < ARRAY_SIZE(bclk_divs); i++) { |
| 1269 | cur_val = ((wm8993->sysclk_rate * 10) / bclk_divs[i].div) |
| 1270 | - wm8993->bclk; |
| 1271 | if (cur_val < 0) /* Table is sorted */ |
| 1272 | break; |
| 1273 | if (cur_val < best_val) { |
| 1274 | best = i; |
| 1275 | best_val = cur_val; |
| 1276 | } |
| 1277 | } |
| 1278 | wm8993->bclk = (wm8993->sysclk_rate * 10) / bclk_divs[best].div; |
| 1279 | dev_dbg(codec->dev, "Selected BCLK_DIV of %d for %dHz BCLK\n", |
| 1280 | bclk_divs[best].div, wm8993->bclk); |
| 1281 | clocking1 |= bclk_divs[best].bclk_div << WM8993_BCLK_DIV_SHIFT; |
| 1282 | |
| 1283 | /* LRCLK is a simple fraction of BCLK */ |
| 1284 | dev_dbg(codec->dev, "LRCLK_RATE is %d\n", wm8993->bclk / wm8993->fs); |
| 1285 | aif4 |= wm8993->bclk / wm8993->fs; |
| 1286 | |
| 1287 | wm8993_write(codec, WM8993_CLOCKING_1, clocking1); |
| 1288 | wm8993_write(codec, WM8993_CLOCKING_3, clocking3); |
| 1289 | wm8993_write(codec, WM8993_AUDIO_INTERFACE_1, aif1); |
| 1290 | wm8993_write(codec, WM8993_AUDIO_INTERFACE_4, aif4); |
| 1291 | |
| 1292 | /* ReTune Mobile? */ |
| 1293 | if (wm8993->pdata.num_retune_configs) { |
| 1294 | u16 eq1 = wm8993_read(codec, WM8993_EQ1); |
| 1295 | struct wm8993_retune_mobile_setting *s; |
| 1296 | |
| 1297 | best = 0; |
| 1298 | best_val = abs(wm8993->pdata.retune_configs[0].rate |
| 1299 | - wm8993->fs); |
| 1300 | for (i = 0; i < wm8993->pdata.num_retune_configs; i++) { |
| 1301 | cur_val = abs(wm8993->pdata.retune_configs[i].rate |
| 1302 | - wm8993->fs); |
| 1303 | if (cur_val < best_val) { |
| 1304 | best_val = cur_val; |
| 1305 | best = i; |
| 1306 | } |
| 1307 | } |
| 1308 | s = &wm8993->pdata.retune_configs[best]; |
| 1309 | |
| 1310 | dev_dbg(codec->dev, "ReTune Mobile %s tuned for %dHz\n", |
| 1311 | s->name, s->rate); |
| 1312 | |
| 1313 | /* Disable EQ while we reconfigure */ |
| 1314 | snd_soc_update_bits(codec, WM8993_EQ1, WM8993_EQ_ENA, 0); |
| 1315 | |
| 1316 | for (i = 1; i < ARRAY_SIZE(s->config); i++) |
| 1317 | wm8993_write(codec, WM8993_EQ1 + i, s->config[i]); |
| 1318 | |
| 1319 | snd_soc_update_bits(codec, WM8993_EQ1, WM8993_EQ_ENA, eq1); |
| 1320 | } |
| 1321 | |
| 1322 | return 0; |
| 1323 | } |
| 1324 | |
| 1325 | static int wm8993_digital_mute(struct snd_soc_dai *codec_dai, int mute) |
| 1326 | { |
| 1327 | struct snd_soc_codec *codec = codec_dai->codec; |
| 1328 | unsigned int reg; |
| 1329 | |
| 1330 | reg = wm8993_read(codec, WM8993_DAC_CTRL); |
| 1331 | |
| 1332 | if (mute) |
| 1333 | reg |= WM8993_DAC_MUTE; |
| 1334 | else |
| 1335 | reg &= ~WM8993_DAC_MUTE; |
| 1336 | |
| 1337 | wm8993_write(codec, WM8993_DAC_CTRL, reg); |
| 1338 | |
| 1339 | return 0; |
| 1340 | } |
| 1341 | |
Mark Brown | d3c9e9a | 2009-08-17 18:52:47 +0100 | [diff] [blame] | 1342 | static int wm8993_set_tdm_slot(struct snd_soc_dai *dai, unsigned int tx_mask, |
| 1343 | unsigned int rx_mask, int slots, int slot_width) |
| 1344 | { |
| 1345 | struct snd_soc_codec *codec = dai->codec; |
| 1346 | struct wm8993_priv *wm8993 = codec->private_data; |
| 1347 | int aif1 = 0; |
| 1348 | int aif2 = 0; |
| 1349 | |
| 1350 | /* Don't need to validate anything if we're turning off TDM */ |
| 1351 | if (slots == 0) { |
| 1352 | wm8993->tdm_slots = 0; |
| 1353 | goto out; |
| 1354 | } |
| 1355 | |
| 1356 | /* Note that we allow configurations we can't handle ourselves - |
| 1357 | * for example, we can generate clocks for slots 2 and up even if |
| 1358 | * we can't use those slots ourselves. |
| 1359 | */ |
| 1360 | aif1 |= WM8993_AIFADC_TDM; |
| 1361 | aif2 |= WM8993_AIFDAC_TDM; |
| 1362 | |
| 1363 | switch (rx_mask) { |
| 1364 | case 3: |
| 1365 | break; |
| 1366 | case 0xc: |
| 1367 | aif1 |= WM8993_AIFADC_TDM_CHAN; |
| 1368 | break; |
| 1369 | default: |
| 1370 | return -EINVAL; |
| 1371 | } |
| 1372 | |
| 1373 | |
| 1374 | switch (tx_mask) { |
| 1375 | case 3: |
| 1376 | break; |
| 1377 | case 0xc: |
| 1378 | aif2 |= WM8993_AIFDAC_TDM_CHAN; |
| 1379 | break; |
| 1380 | default: |
| 1381 | return -EINVAL; |
| 1382 | } |
| 1383 | |
| 1384 | out: |
| 1385 | wm8993->tdm_width = slot_width; |
| 1386 | wm8993->tdm_slots = slots / 2; |
| 1387 | |
| 1388 | snd_soc_update_bits(codec, WM8993_AUDIO_INTERFACE_1, |
| 1389 | WM8993_AIFADC_TDM | WM8993_AIFADC_TDM_CHAN, aif1); |
| 1390 | snd_soc_update_bits(codec, WM8993_AUDIO_INTERFACE_2, |
| 1391 | WM8993_AIFDAC_TDM | WM8993_AIFDAC_TDM_CHAN, aif2); |
| 1392 | |
| 1393 | return 0; |
| 1394 | } |
| 1395 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1396 | static struct snd_soc_dai_ops wm8993_ops = { |
| 1397 | .set_sysclk = wm8993_set_sysclk, |
| 1398 | .set_fmt = wm8993_set_dai_fmt, |
| 1399 | .hw_params = wm8993_hw_params, |
| 1400 | .digital_mute = wm8993_digital_mute, |
| 1401 | .set_pll = wm8993_set_fll, |
Mark Brown | d3c9e9a | 2009-08-17 18:52:47 +0100 | [diff] [blame] | 1402 | .set_tdm_slot = wm8993_set_tdm_slot, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1403 | }; |
| 1404 | |
| 1405 | #define WM8993_RATES SNDRV_PCM_RATE_8000_48000 |
| 1406 | |
| 1407 | #define WM8993_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\ |
| 1408 | SNDRV_PCM_FMTBIT_S20_3LE |\ |
| 1409 | SNDRV_PCM_FMTBIT_S24_LE |\ |
| 1410 | SNDRV_PCM_FMTBIT_S32_LE) |
| 1411 | |
| 1412 | struct snd_soc_dai wm8993_dai = { |
| 1413 | .name = "WM8993", |
| 1414 | .playback = { |
| 1415 | .stream_name = "Playback", |
| 1416 | .channels_min = 1, |
| 1417 | .channels_max = 2, |
| 1418 | .rates = WM8993_RATES, |
| 1419 | .formats = WM8993_FORMATS, |
| 1420 | }, |
| 1421 | .capture = { |
| 1422 | .stream_name = "Capture", |
| 1423 | .channels_min = 1, |
| 1424 | .channels_max = 2, |
| 1425 | .rates = WM8993_RATES, |
| 1426 | .formats = WM8993_FORMATS, |
| 1427 | }, |
| 1428 | .ops = &wm8993_ops, |
| 1429 | .symmetric_rates = 1, |
| 1430 | }; |
| 1431 | EXPORT_SYMBOL_GPL(wm8993_dai); |
| 1432 | |
| 1433 | static struct snd_soc_codec *wm8993_codec; |
| 1434 | |
| 1435 | static int wm8993_probe(struct platform_device *pdev) |
| 1436 | { |
| 1437 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
| 1438 | struct snd_soc_codec *codec; |
| 1439 | struct wm8993_priv *wm8993; |
| 1440 | int ret = 0; |
| 1441 | |
| 1442 | if (!wm8993_codec) { |
| 1443 | dev_err(&pdev->dev, "I2C device not yet probed\n"); |
| 1444 | goto err; |
| 1445 | } |
| 1446 | |
| 1447 | socdev->card->codec = wm8993_codec; |
| 1448 | codec = wm8993_codec; |
| 1449 | wm8993 = codec->private_data; |
| 1450 | |
| 1451 | ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1); |
| 1452 | if (ret < 0) { |
| 1453 | dev_err(codec->dev, "failed to create pcms\n"); |
| 1454 | goto err; |
| 1455 | } |
| 1456 | |
| 1457 | snd_soc_add_controls(codec, wm8993_snd_controls, |
| 1458 | ARRAY_SIZE(wm8993_snd_controls)); |
| 1459 | if (wm8993->pdata.num_retune_configs != 0) { |
| 1460 | dev_dbg(codec->dev, "Using ReTune Mobile\n"); |
| 1461 | } else { |
| 1462 | dev_dbg(codec->dev, "No ReTune Mobile, using normal EQ\n"); |
| 1463 | snd_soc_add_controls(codec, wm8993_eq_controls, |
| 1464 | ARRAY_SIZE(wm8993_eq_controls)); |
| 1465 | } |
| 1466 | |
| 1467 | snd_soc_dapm_new_controls(codec, wm8993_dapm_widgets, |
| 1468 | ARRAY_SIZE(wm8993_dapm_widgets)); |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 1469 | wm_hubs_add_analogue_controls(codec); |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1470 | |
| 1471 | snd_soc_dapm_add_routes(codec, routes, ARRAY_SIZE(routes)); |
Mark Brown | a2342ae | 2009-07-29 21:21:49 +0100 | [diff] [blame] | 1472 | wm_hubs_add_analogue_routes(codec, wm8993->pdata.lineout1_diff, |
| 1473 | wm8993->pdata.lineout2_diff); |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1474 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1475 | return ret; |
| 1476 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1477 | err: |
| 1478 | return ret; |
| 1479 | } |
| 1480 | |
| 1481 | static int wm8993_remove(struct platform_device *pdev) |
| 1482 | { |
| 1483 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
| 1484 | |
| 1485 | snd_soc_free_pcms(socdev); |
| 1486 | snd_soc_dapm_free(socdev); |
| 1487 | |
| 1488 | return 0; |
| 1489 | } |
| 1490 | |
Mark Brown | 53242c6 | 2010-01-02 13:15:56 +0000 | [diff] [blame] | 1491 | #ifdef CONFIG_PM |
| 1492 | static int wm8993_suspend(struct platform_device *pdev, pm_message_t state) |
| 1493 | { |
| 1494 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
| 1495 | struct snd_soc_codec *codec = socdev->card->codec; |
| 1496 | struct wm8993_priv *wm8993 = codec->private_data; |
| 1497 | int fll_fout = wm8993->fll_fout; |
| 1498 | int fll_fref = wm8993->fll_fref; |
| 1499 | int ret; |
| 1500 | |
| 1501 | /* Stop the FLL in an orderly fashion */ |
| 1502 | ret = wm8993_set_fll(codec->dai, 0, 0, 0, 0); |
| 1503 | if (ret != 0) { |
| 1504 | dev_err(&pdev->dev, "Failed to stop FLL\n"); |
| 1505 | return ret; |
| 1506 | } |
| 1507 | |
| 1508 | wm8993->fll_fout = fll_fout; |
| 1509 | wm8993->fll_fref = fll_fref; |
| 1510 | |
| 1511 | wm8993_set_bias_level(codec, SND_SOC_BIAS_OFF); |
| 1512 | |
| 1513 | return 0; |
| 1514 | } |
| 1515 | |
| 1516 | static int wm8993_resume(struct platform_device *pdev) |
| 1517 | { |
| 1518 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
| 1519 | struct snd_soc_codec *codec = socdev->card->codec; |
| 1520 | struct wm8993_priv *wm8993 = codec->private_data; |
| 1521 | u16 *cache = wm8993->reg_cache; |
| 1522 | int i, ret; |
| 1523 | |
| 1524 | /* Restore the register settings */ |
| 1525 | for (i = 1; i < WM8993_MAX_REGISTER; i++) { |
| 1526 | if (cache[i] == wm8993_reg_defaults[i]) |
| 1527 | continue; |
| 1528 | snd_soc_write(codec, i, cache[i]); |
| 1529 | } |
| 1530 | |
| 1531 | wm8993_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |
| 1532 | |
| 1533 | /* Restart the FLL? */ |
| 1534 | if (wm8993->fll_fout) { |
| 1535 | int fll_fout = wm8993->fll_fout; |
| 1536 | int fll_fref = wm8993->fll_fref; |
| 1537 | |
| 1538 | wm8993->fll_fref = 0; |
| 1539 | wm8993->fll_fout = 0; |
| 1540 | |
| 1541 | ret = wm8993_set_fll(codec->dai, 0, wm8993->fll_src, |
| 1542 | fll_fref, fll_fout); |
| 1543 | if (ret != 0) |
| 1544 | dev_err(codec->dev, "Failed to restart FLL\n"); |
| 1545 | } |
| 1546 | |
| 1547 | return 0; |
| 1548 | } |
| 1549 | #else |
| 1550 | #define wm8993_suspend NULL |
| 1551 | #define wm8993_resume NULL |
| 1552 | #endif |
| 1553 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1554 | struct snd_soc_codec_device soc_codec_dev_wm8993 = { |
| 1555 | .probe = wm8993_probe, |
| 1556 | .remove = wm8993_remove, |
Mark Brown | 53242c6 | 2010-01-02 13:15:56 +0000 | [diff] [blame] | 1557 | .suspend = wm8993_suspend, |
| 1558 | .resume = wm8993_resume, |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1559 | }; |
| 1560 | EXPORT_SYMBOL_GPL(soc_codec_dev_wm8993); |
| 1561 | |
| 1562 | static int wm8993_i2c_probe(struct i2c_client *i2c, |
| 1563 | const struct i2c_device_id *id) |
| 1564 | { |
| 1565 | struct wm8993_priv *wm8993; |
| 1566 | struct snd_soc_codec *codec; |
| 1567 | unsigned int val; |
| 1568 | int ret; |
| 1569 | |
| 1570 | if (wm8993_codec) { |
| 1571 | dev_err(&i2c->dev, "A WM8993 is already registered\n"); |
| 1572 | return -EINVAL; |
| 1573 | } |
| 1574 | |
| 1575 | wm8993 = kzalloc(sizeof(struct wm8993_priv), GFP_KERNEL); |
| 1576 | if (wm8993 == NULL) |
| 1577 | return -ENOMEM; |
| 1578 | |
| 1579 | codec = &wm8993->codec; |
| 1580 | if (i2c->dev.platform_data) |
| 1581 | memcpy(&wm8993->pdata, i2c->dev.platform_data, |
| 1582 | sizeof(wm8993->pdata)); |
| 1583 | |
| 1584 | mutex_init(&codec->mutex); |
| 1585 | INIT_LIST_HEAD(&codec->dapm_widgets); |
| 1586 | INIT_LIST_HEAD(&codec->dapm_paths); |
| 1587 | |
| 1588 | codec->name = "WM8993"; |
| 1589 | codec->read = wm8993_read; |
| 1590 | codec->write = wm8993_write; |
| 1591 | codec->hw_write = (hw_write_t)i2c_master_send; |
| 1592 | codec->reg_cache = wm8993->reg_cache; |
| 1593 | codec->reg_cache_size = ARRAY_SIZE(wm8993->reg_cache); |
| 1594 | codec->bias_level = SND_SOC_BIAS_OFF; |
| 1595 | codec->set_bias_level = wm8993_set_bias_level; |
| 1596 | codec->dai = &wm8993_dai; |
| 1597 | codec->num_dai = 1; |
| 1598 | codec->private_data = wm8993; |
| 1599 | |
Mark Brown | 3ed7074 | 2010-01-20 17:39:45 +0000 | [diff] [blame] | 1600 | wm8993->hubs_data.hp_startup_mode = 1; |
Mark Brown | be587ef | 2010-02-01 18:31:06 +0000 | [diff] [blame^] | 1601 | wm8993->hubs_data.dcs_codes = -2; |
Mark Brown | 3ed7074 | 2010-01-20 17:39:45 +0000 | [diff] [blame] | 1602 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1603 | memcpy(wm8993->reg_cache, wm8993_reg_defaults, |
| 1604 | sizeof(wm8993->reg_cache)); |
| 1605 | |
| 1606 | i2c_set_clientdata(i2c, wm8993); |
| 1607 | codec->control_data = i2c; |
| 1608 | wm8993_codec = codec; |
| 1609 | |
| 1610 | codec->dev = &i2c->dev; |
| 1611 | |
| 1612 | val = wm8993_read_hw(codec, WM8993_SOFTWARE_RESET); |
| 1613 | if (val != wm8993_reg_defaults[WM8993_SOFTWARE_RESET]) { |
| 1614 | dev_err(codec->dev, "Invalid ID register value %x\n", val); |
| 1615 | ret = -EINVAL; |
| 1616 | goto err; |
| 1617 | } |
| 1618 | |
| 1619 | ret = wm8993_write(codec, WM8993_SOFTWARE_RESET, 0xffff); |
| 1620 | if (ret != 0) |
| 1621 | goto err; |
| 1622 | |
| 1623 | /* By default we're using the output mixers */ |
| 1624 | wm8993->class_w_users = 2; |
| 1625 | |
| 1626 | /* Latch volume update bits and default ZC on */ |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1627 | snd_soc_update_bits(codec, WM8993_RIGHT_DAC_DIGITAL_VOLUME, |
| 1628 | WM8993_DAC_VU, WM8993_DAC_VU); |
| 1629 | snd_soc_update_bits(codec, WM8993_RIGHT_ADC_DIGITAL_VOLUME, |
| 1630 | WM8993_ADC_VU, WM8993_ADC_VU); |
| 1631 | |
| 1632 | /* Manualy manage the HPOUT sequencing for independent stereo |
| 1633 | * control. */ |
| 1634 | snd_soc_update_bits(codec, WM8993_ANALOGUE_HP_0, |
| 1635 | WM8993_HPOUT1_AUTO_PU, 0); |
| 1636 | |
| 1637 | /* Use automatic clock configuration */ |
| 1638 | snd_soc_update_bits(codec, WM8993_CLOCKING_4, WM8993_SR_MODE, 0); |
| 1639 | |
Mark Brown | aa983d9 | 2009-09-30 14:16:11 +0100 | [diff] [blame] | 1640 | wm_hubs_handle_analogue_pdata(codec, wm8993->pdata.lineout1_diff, |
| 1641 | wm8993->pdata.lineout2_diff, |
| 1642 | wm8993->pdata.lineout1fb, |
| 1643 | wm8993->pdata.lineout2fb, |
| 1644 | wm8993->pdata.jd_scthr, |
| 1645 | wm8993->pdata.jd_thr, |
| 1646 | wm8993->pdata.micbias1_lvl, |
| 1647 | wm8993->pdata.micbias2_lvl); |
| 1648 | |
Mark Brown | 942c435 | 2009-06-05 16:32:59 +0100 | [diff] [blame] | 1649 | ret = wm8993_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |
| 1650 | if (ret != 0) |
| 1651 | goto err; |
| 1652 | |
| 1653 | wm8993_dai.dev = codec->dev; |
| 1654 | |
| 1655 | ret = snd_soc_register_dai(&wm8993_dai); |
| 1656 | if (ret != 0) |
| 1657 | goto err_bias; |
| 1658 | |
| 1659 | ret = snd_soc_register_codec(codec); |
| 1660 | |
| 1661 | return 0; |
| 1662 | |
| 1663 | err_bias: |
| 1664 | wm8993_set_bias_level(codec, SND_SOC_BIAS_OFF); |
| 1665 | err: |
| 1666 | wm8993_codec = NULL; |
| 1667 | kfree(wm8993); |
| 1668 | return ret; |
| 1669 | } |
| 1670 | |
| 1671 | static int wm8993_i2c_remove(struct i2c_client *client) |
| 1672 | { |
| 1673 | struct wm8993_priv *wm8993 = i2c_get_clientdata(client); |
| 1674 | |
| 1675 | snd_soc_unregister_codec(&wm8993->codec); |
| 1676 | snd_soc_unregister_dai(&wm8993_dai); |
| 1677 | |
| 1678 | wm8993_set_bias_level(&wm8993->codec, SND_SOC_BIAS_OFF); |
| 1679 | kfree(wm8993); |
| 1680 | |
| 1681 | return 0; |
| 1682 | } |
| 1683 | |
| 1684 | static const struct i2c_device_id wm8993_i2c_id[] = { |
| 1685 | { "wm8993", 0 }, |
| 1686 | { } |
| 1687 | }; |
| 1688 | MODULE_DEVICE_TABLE(i2c, wm8993_i2c_id); |
| 1689 | |
| 1690 | static struct i2c_driver wm8993_i2c_driver = { |
| 1691 | .driver = { |
| 1692 | .name = "WM8993", |
| 1693 | .owner = THIS_MODULE, |
| 1694 | }, |
| 1695 | .probe = wm8993_i2c_probe, |
| 1696 | .remove = wm8993_i2c_remove, |
| 1697 | .id_table = wm8993_i2c_id, |
| 1698 | }; |
| 1699 | |
| 1700 | |
| 1701 | static int __init wm8993_modinit(void) |
| 1702 | { |
| 1703 | int ret; |
| 1704 | |
| 1705 | ret = i2c_add_driver(&wm8993_i2c_driver); |
| 1706 | if (ret != 0) |
| 1707 | pr_err("WM8993: Unable to register I2C driver: %d\n", ret); |
| 1708 | |
| 1709 | return ret; |
| 1710 | } |
| 1711 | module_init(wm8993_modinit); |
| 1712 | |
| 1713 | static void __exit wm8993_exit(void) |
| 1714 | { |
| 1715 | i2c_del_driver(&wm8993_i2c_driver); |
| 1716 | } |
| 1717 | module_exit(wm8993_exit); |
| 1718 | |
| 1719 | |
| 1720 | MODULE_DESCRIPTION("ASoC WM8993 driver"); |
| 1721 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); |
| 1722 | MODULE_LICENSE("GPL"); |