Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1 | /* |
| 2 | * wm8900.c -- WM8900 ALSA Soc Audio driver |
| 3 | * |
| 4 | * Copyright 2007, 2008 Wolfson Microelectronics PLC. |
| 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 | * TODO: |
| 13 | * - Tristating. |
| 14 | * - TDM. |
| 15 | * - Jack detect. |
| 16 | * - FLL source configuration, currently only MCLK is supported. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/moduleparam.h> |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 21 | #include <linux/kernel.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/delay.h> |
| 24 | #include <linux/pm.h> |
| 25 | #include <linux/i2c.h> |
| 26 | #include <linux/platform_device.h> |
| 27 | #include <sound/core.h> |
| 28 | #include <sound/pcm.h> |
| 29 | #include <sound/pcm_params.h> |
| 30 | #include <sound/soc.h> |
| 31 | #include <sound/soc-dapm.h> |
| 32 | #include <sound/initval.h> |
| 33 | #include <sound/tlv.h> |
| 34 | |
| 35 | #include "wm8900.h" |
| 36 | |
| 37 | /* WM8900 register space */ |
| 38 | #define WM8900_REG_RESET 0x0 |
| 39 | #define WM8900_REG_ID 0x0 |
| 40 | #define WM8900_REG_POWER1 0x1 |
| 41 | #define WM8900_REG_POWER2 0x2 |
| 42 | #define WM8900_REG_POWER3 0x3 |
| 43 | #define WM8900_REG_AUDIO1 0x4 |
| 44 | #define WM8900_REG_AUDIO2 0x5 |
| 45 | #define WM8900_REG_CLOCKING1 0x6 |
| 46 | #define WM8900_REG_CLOCKING2 0x7 |
| 47 | #define WM8900_REG_AUDIO3 0x8 |
| 48 | #define WM8900_REG_AUDIO4 0x9 |
| 49 | #define WM8900_REG_DACCTRL 0xa |
| 50 | #define WM8900_REG_LDAC_DV 0xb |
| 51 | #define WM8900_REG_RDAC_DV 0xc |
| 52 | #define WM8900_REG_SIDETONE 0xd |
| 53 | #define WM8900_REG_ADCCTRL 0xe |
| 54 | #define WM8900_REG_LADC_DV 0xf |
| 55 | #define WM8900_REG_RADC_DV 0x10 |
| 56 | #define WM8900_REG_GPIO 0x12 |
| 57 | #define WM8900_REG_INCTL 0x15 |
| 58 | #define WM8900_REG_LINVOL 0x16 |
| 59 | #define WM8900_REG_RINVOL 0x17 |
| 60 | #define WM8900_REG_INBOOSTMIX1 0x18 |
| 61 | #define WM8900_REG_INBOOSTMIX2 0x19 |
| 62 | #define WM8900_REG_ADCPATH 0x1a |
| 63 | #define WM8900_REG_AUXBOOST 0x1b |
| 64 | #define WM8900_REG_ADDCTL 0x1e |
| 65 | #define WM8900_REG_FLLCTL1 0x24 |
| 66 | #define WM8900_REG_FLLCTL2 0x25 |
| 67 | #define WM8900_REG_FLLCTL3 0x26 |
| 68 | #define WM8900_REG_FLLCTL4 0x27 |
| 69 | #define WM8900_REG_FLLCTL5 0x28 |
| 70 | #define WM8900_REG_FLLCTL6 0x29 |
| 71 | #define WM8900_REG_LOUTMIXCTL1 0x2c |
| 72 | #define WM8900_REG_ROUTMIXCTL1 0x2d |
| 73 | #define WM8900_REG_BYPASS1 0x2e |
| 74 | #define WM8900_REG_BYPASS2 0x2f |
| 75 | #define WM8900_REG_AUXOUT_CTL 0x30 |
| 76 | #define WM8900_REG_LOUT1CTL 0x33 |
| 77 | #define WM8900_REG_ROUT1CTL 0x34 |
| 78 | #define WM8900_REG_LOUT2CTL 0x35 |
| 79 | #define WM8900_REG_ROUT2CTL 0x36 |
| 80 | #define WM8900_REG_HPCTL1 0x3a |
| 81 | #define WM8900_REG_OUTBIASCTL 0x73 |
| 82 | |
| 83 | #define WM8900_MAXREG 0x80 |
| 84 | |
| 85 | #define WM8900_REG_ADDCTL_OUT1_DIS 0x80 |
| 86 | #define WM8900_REG_ADDCTL_OUT2_DIS 0x40 |
| 87 | #define WM8900_REG_ADDCTL_VMID_DIS 0x20 |
| 88 | #define WM8900_REG_ADDCTL_BIAS_SRC 0x10 |
| 89 | #define WM8900_REG_ADDCTL_VMID_SOFTST 0x04 |
| 90 | #define WM8900_REG_ADDCTL_TEMP_SD 0x02 |
| 91 | |
| 92 | #define WM8900_REG_GPIO_TEMP_ENA 0x2 |
| 93 | |
| 94 | #define WM8900_REG_POWER1_STARTUP_BIAS_ENA 0x0100 |
| 95 | #define WM8900_REG_POWER1_BIAS_ENA 0x0008 |
| 96 | #define WM8900_REG_POWER1_VMID_BUF_ENA 0x0004 |
| 97 | #define WM8900_REG_POWER1_FLL_ENA 0x0040 |
| 98 | |
| 99 | #define WM8900_REG_POWER2_SYSCLK_ENA 0x8000 |
| 100 | #define WM8900_REG_POWER2_ADCL_ENA 0x0002 |
| 101 | #define WM8900_REG_POWER2_ADCR_ENA 0x0001 |
| 102 | |
| 103 | #define WM8900_REG_POWER3_DACL_ENA 0x0002 |
| 104 | #define WM8900_REG_POWER3_DACR_ENA 0x0001 |
| 105 | |
| 106 | #define WM8900_REG_AUDIO1_AIF_FMT_MASK 0x0018 |
| 107 | #define WM8900_REG_AUDIO1_LRCLK_INV 0x0080 |
| 108 | #define WM8900_REG_AUDIO1_BCLK_INV 0x0100 |
| 109 | |
| 110 | #define WM8900_REG_CLOCKING1_BCLK_DIR 0x1 |
| 111 | #define WM8900_REG_CLOCKING1_MCLK_SRC 0x100 |
| 112 | #define WM8900_REG_CLOCKING1_BCLK_MASK (~0x01e) |
| 113 | #define WM8900_REG_CLOCKING1_OPCLK_MASK (~0x7000) |
| 114 | |
| 115 | #define WM8900_REG_CLOCKING2_ADC_CLKDIV 0xe0 |
| 116 | #define WM8900_REG_CLOCKING2_DAC_CLKDIV 0x1c |
| 117 | |
| 118 | #define WM8900_REG_DACCTRL_MUTE 0x004 |
| 119 | #define WM8900_REG_DACCTRL_AIF_LRCLKRATE 0x400 |
| 120 | |
| 121 | #define WM8900_REG_AUDIO3_ADCLRC_DIR 0x0800 |
| 122 | |
| 123 | #define WM8900_REG_AUDIO4_DACLRC_DIR 0x0800 |
| 124 | |
| 125 | #define WM8900_REG_FLLCTL1_OSC_ENA 0x100 |
| 126 | |
| 127 | #define WM8900_REG_FLLCTL6_FLL_SLOW_LOCK_REF 0x100 |
| 128 | |
| 129 | #define WM8900_REG_HPCTL1_HP_IPSTAGE_ENA 0x80 |
| 130 | #define WM8900_REG_HPCTL1_HP_OPSTAGE_ENA 0x40 |
| 131 | #define WM8900_REG_HPCTL1_HP_CLAMP_IP 0x20 |
| 132 | #define WM8900_REG_HPCTL1_HP_CLAMP_OP 0x10 |
| 133 | #define WM8900_REG_HPCTL1_HP_SHORT 0x08 |
| 134 | #define WM8900_REG_HPCTL1_HP_SHORT2 0x04 |
| 135 | |
| 136 | #define WM8900_LRC_MASK 0xfc00 |
| 137 | |
| 138 | struct snd_soc_codec_device soc_codec_dev_wm8900; |
| 139 | |
| 140 | struct wm8900_priv { |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 141 | struct snd_soc_codec codec; |
| 142 | |
| 143 | u16 reg_cache[WM8900_MAXREG]; |
| 144 | |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 145 | u32 fll_in; /* FLL input frequency */ |
| 146 | u32 fll_out; /* FLL output frequency */ |
| 147 | }; |
| 148 | |
| 149 | /* |
| 150 | * wm8900 register cache. We can't read the entire register space and we |
| 151 | * have slow control buses so we cache the registers. |
| 152 | */ |
| 153 | static const u16 wm8900_reg_defaults[WM8900_MAXREG] = { |
| 154 | 0x8900, 0x0000, |
| 155 | 0xc000, 0x0000, |
| 156 | 0x4050, 0x4000, |
| 157 | 0x0008, 0x0000, |
| 158 | 0x0040, 0x0040, |
| 159 | 0x1004, 0x00c0, |
| 160 | 0x00c0, 0x0000, |
| 161 | 0x0100, 0x00c0, |
| 162 | 0x00c0, 0x0000, |
| 163 | 0xb001, 0x0000, |
| 164 | 0x0000, 0x0044, |
| 165 | 0x004c, 0x004c, |
| 166 | 0x0044, 0x0044, |
| 167 | 0x0000, 0x0044, |
| 168 | 0x0000, 0x0000, |
| 169 | 0x0002, 0x0000, |
| 170 | 0x0000, 0x0000, |
| 171 | 0x0000, 0x0000, |
| 172 | 0x0008, 0x0000, |
| 173 | 0x0000, 0x0008, |
| 174 | 0x0097, 0x0100, |
| 175 | 0x0000, 0x0000, |
| 176 | 0x0050, 0x0050, |
| 177 | 0x0055, 0x0055, |
| 178 | 0x0055, 0x0000, |
| 179 | 0x0000, 0x0079, |
| 180 | 0x0079, 0x0079, |
| 181 | 0x0079, 0x0000, |
| 182 | /* Remaining registers all zero */ |
| 183 | }; |
| 184 | |
| 185 | /* |
| 186 | * read wm8900 register cache |
| 187 | */ |
| 188 | static inline unsigned int wm8900_read_reg_cache(struct snd_soc_codec *codec, |
| 189 | unsigned int reg) |
| 190 | { |
| 191 | u16 *cache = codec->reg_cache; |
| 192 | |
| 193 | BUG_ON(reg >= WM8900_MAXREG); |
| 194 | |
| 195 | if (reg == WM8900_REG_ID) |
| 196 | return 0; |
| 197 | |
| 198 | return cache[reg]; |
| 199 | } |
| 200 | |
| 201 | /* |
| 202 | * write wm8900 register cache |
| 203 | */ |
| 204 | static inline void wm8900_write_reg_cache(struct snd_soc_codec *codec, |
| 205 | u16 reg, unsigned int value) |
| 206 | { |
| 207 | u16 *cache = codec->reg_cache; |
| 208 | |
| 209 | BUG_ON(reg >= WM8900_MAXREG); |
| 210 | |
| 211 | cache[reg] = value; |
| 212 | } |
| 213 | |
| 214 | /* |
| 215 | * write to the WM8900 register space |
| 216 | */ |
| 217 | static int wm8900_write(struct snd_soc_codec *codec, unsigned int reg, |
| 218 | unsigned int value) |
| 219 | { |
| 220 | u8 data[3]; |
| 221 | |
| 222 | if (value == wm8900_read_reg_cache(codec, reg)) |
| 223 | return 0; |
| 224 | |
| 225 | /* data is |
| 226 | * D15..D9 WM8900 register offset |
| 227 | * D8...D0 register data |
| 228 | */ |
| 229 | data[0] = reg; |
| 230 | data[1] = value >> 8; |
| 231 | data[2] = value & 0x00ff; |
| 232 | |
| 233 | wm8900_write_reg_cache(codec, reg, value); |
| 234 | if (codec->hw_write(codec->control_data, data, 3) == 3) |
| 235 | return 0; |
| 236 | else |
| 237 | return -EIO; |
| 238 | } |
| 239 | |
| 240 | /* |
| 241 | * Read from the wm8900. |
| 242 | */ |
| 243 | static unsigned int wm8900_chip_read(struct snd_soc_codec *codec, u8 reg) |
| 244 | { |
| 245 | struct i2c_msg xfer[2]; |
| 246 | u16 data; |
| 247 | int ret; |
| 248 | struct i2c_client *client = codec->control_data; |
| 249 | |
| 250 | BUG_ON(reg != WM8900_REG_ID && reg != WM8900_REG_POWER1); |
| 251 | |
| 252 | /* Write register */ |
| 253 | xfer[0].addr = client->addr; |
| 254 | xfer[0].flags = 0; |
| 255 | xfer[0].len = 1; |
| 256 | xfer[0].buf = ® |
| 257 | |
| 258 | /* Read data */ |
| 259 | xfer[1].addr = client->addr; |
| 260 | xfer[1].flags = I2C_M_RD; |
| 261 | xfer[1].len = 2; |
| 262 | xfer[1].buf = (u8 *)&data; |
| 263 | |
| 264 | ret = i2c_transfer(client->adapter, xfer, 2); |
| 265 | if (ret != 2) { |
| 266 | printk(KERN_CRIT "i2c_transfer returned %d\n", ret); |
| 267 | return 0; |
| 268 | } |
| 269 | |
| 270 | return (data >> 8) | ((data & 0xff) << 8); |
| 271 | } |
| 272 | |
| 273 | /* |
| 274 | * Read from the WM8900 register space. Most registers can't be read |
| 275 | * and are therefore supplied from cache. |
| 276 | */ |
| 277 | static unsigned int wm8900_read(struct snd_soc_codec *codec, unsigned int reg) |
| 278 | { |
| 279 | switch (reg) { |
| 280 | case WM8900_REG_ID: |
| 281 | return wm8900_chip_read(codec, reg); |
| 282 | default: |
| 283 | return wm8900_read_reg_cache(codec, reg); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | static void wm8900_reset(struct snd_soc_codec *codec) |
| 288 | { |
| 289 | wm8900_write(codec, WM8900_REG_RESET, 0); |
| 290 | |
| 291 | memcpy(codec->reg_cache, wm8900_reg_defaults, |
| 292 | sizeof(codec->reg_cache)); |
| 293 | } |
| 294 | |
| 295 | static int wm8900_hp_event(struct snd_soc_dapm_widget *w, |
| 296 | struct snd_kcontrol *kcontrol, int event) |
| 297 | { |
| 298 | struct snd_soc_codec *codec = w->codec; |
| 299 | u16 hpctl1 = wm8900_read(codec, WM8900_REG_HPCTL1); |
| 300 | |
| 301 | switch (event) { |
| 302 | case SND_SOC_DAPM_PRE_PMU: |
| 303 | /* Clamp headphone outputs */ |
| 304 | hpctl1 = WM8900_REG_HPCTL1_HP_CLAMP_IP | |
| 305 | WM8900_REG_HPCTL1_HP_CLAMP_OP; |
| 306 | wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1); |
| 307 | break; |
| 308 | |
| 309 | case SND_SOC_DAPM_POST_PMU: |
| 310 | /* Enable the input stage */ |
| 311 | hpctl1 &= ~WM8900_REG_HPCTL1_HP_CLAMP_IP; |
| 312 | hpctl1 |= WM8900_REG_HPCTL1_HP_SHORT | |
| 313 | WM8900_REG_HPCTL1_HP_SHORT2 | |
| 314 | WM8900_REG_HPCTL1_HP_IPSTAGE_ENA; |
| 315 | wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1); |
| 316 | |
| 317 | msleep(400); |
| 318 | |
| 319 | /* Enable the output stage */ |
| 320 | hpctl1 &= ~WM8900_REG_HPCTL1_HP_CLAMP_OP; |
| 321 | hpctl1 |= WM8900_REG_HPCTL1_HP_OPSTAGE_ENA; |
| 322 | wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1); |
| 323 | |
| 324 | /* Remove the shorts */ |
| 325 | hpctl1 &= ~WM8900_REG_HPCTL1_HP_SHORT2; |
| 326 | wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1); |
| 327 | hpctl1 &= ~WM8900_REG_HPCTL1_HP_SHORT; |
| 328 | wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1); |
| 329 | break; |
| 330 | |
| 331 | case SND_SOC_DAPM_PRE_PMD: |
| 332 | /* Short the output */ |
| 333 | hpctl1 |= WM8900_REG_HPCTL1_HP_SHORT; |
| 334 | wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1); |
| 335 | |
| 336 | /* Disable the output stage */ |
| 337 | hpctl1 &= ~WM8900_REG_HPCTL1_HP_OPSTAGE_ENA; |
| 338 | wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1); |
| 339 | |
| 340 | /* Clamp the outputs and power down input */ |
| 341 | hpctl1 |= WM8900_REG_HPCTL1_HP_CLAMP_IP | |
| 342 | WM8900_REG_HPCTL1_HP_CLAMP_OP; |
| 343 | hpctl1 &= ~WM8900_REG_HPCTL1_HP_IPSTAGE_ENA; |
| 344 | wm8900_write(codec, WM8900_REG_HPCTL1, hpctl1); |
| 345 | break; |
| 346 | |
| 347 | case SND_SOC_DAPM_POST_PMD: |
| 348 | /* Disable everything */ |
| 349 | wm8900_write(codec, WM8900_REG_HPCTL1, 0); |
| 350 | break; |
| 351 | |
| 352 | default: |
| 353 | BUG(); |
| 354 | } |
| 355 | |
| 356 | return 0; |
| 357 | } |
| 358 | |
| 359 | static const DECLARE_TLV_DB_SCALE(out_pga_tlv, -5700, 100, 0); |
| 360 | |
| 361 | static const DECLARE_TLV_DB_SCALE(out_mix_tlv, -1500, 300, 0); |
| 362 | |
| 363 | static const DECLARE_TLV_DB_SCALE(in_boost_tlv, -1200, 600, 0); |
| 364 | |
| 365 | static const DECLARE_TLV_DB_SCALE(in_pga_tlv, -1200, 100, 0); |
| 366 | |
| 367 | static const DECLARE_TLV_DB_SCALE(dac_boost_tlv, 0, 600, 0); |
| 368 | |
| 369 | static const DECLARE_TLV_DB_SCALE(dac_tlv, -7200, 75, 1); |
| 370 | |
| 371 | static const DECLARE_TLV_DB_SCALE(adc_svol_tlv, -3600, 300, 0); |
| 372 | |
| 373 | static const DECLARE_TLV_DB_SCALE(adc_tlv, -7200, 75, 1); |
| 374 | |
| 375 | static const char *mic_bias_level_txt[] = { "0.9*AVDD", "0.65*AVDD" }; |
| 376 | |
| 377 | static const struct soc_enum mic_bias_level = |
| 378 | SOC_ENUM_SINGLE(WM8900_REG_INCTL, 8, 2, mic_bias_level_txt); |
| 379 | |
| 380 | static const char *dac_mute_rate_txt[] = { "Fast", "Slow" }; |
| 381 | |
| 382 | static const struct soc_enum dac_mute_rate = |
| 383 | SOC_ENUM_SINGLE(WM8900_REG_DACCTRL, 7, 2, dac_mute_rate_txt); |
| 384 | |
| 385 | static const char *dac_deemphasis_txt[] = { |
| 386 | "Disabled", "32kHz", "44.1kHz", "48kHz" |
| 387 | }; |
| 388 | |
| 389 | static const struct soc_enum dac_deemphasis = |
| 390 | SOC_ENUM_SINGLE(WM8900_REG_DACCTRL, 4, 4, dac_deemphasis_txt); |
| 391 | |
| 392 | static const char *adc_hpf_cut_txt[] = { |
| 393 | "Hi-fi mode", "Voice mode 1", "Voice mode 2", "Voice mode 3" |
| 394 | }; |
| 395 | |
| 396 | static const struct soc_enum adc_hpf_cut = |
| 397 | SOC_ENUM_SINGLE(WM8900_REG_ADCCTRL, 5, 4, adc_hpf_cut_txt); |
| 398 | |
| 399 | static const char *lr_txt[] = { |
| 400 | "Left", "Right" |
| 401 | }; |
| 402 | |
| 403 | static const struct soc_enum aifl_src = |
| 404 | SOC_ENUM_SINGLE(WM8900_REG_AUDIO1, 15, 2, lr_txt); |
| 405 | |
| 406 | static const struct soc_enum aifr_src = |
| 407 | SOC_ENUM_SINGLE(WM8900_REG_AUDIO1, 14, 2, lr_txt); |
| 408 | |
| 409 | static const struct soc_enum dacl_src = |
| 410 | SOC_ENUM_SINGLE(WM8900_REG_AUDIO2, 15, 2, lr_txt); |
| 411 | |
| 412 | static const struct soc_enum dacr_src = |
| 413 | SOC_ENUM_SINGLE(WM8900_REG_AUDIO2, 14, 2, lr_txt); |
| 414 | |
| 415 | static const char *sidetone_txt[] = { |
| 416 | "Disabled", "Left ADC", "Right ADC" |
| 417 | }; |
| 418 | |
| 419 | static const struct soc_enum dacl_sidetone = |
| 420 | SOC_ENUM_SINGLE(WM8900_REG_SIDETONE, 2, 3, sidetone_txt); |
| 421 | |
| 422 | static const struct soc_enum dacr_sidetone = |
| 423 | SOC_ENUM_SINGLE(WM8900_REG_SIDETONE, 0, 3, sidetone_txt); |
| 424 | |
| 425 | static const struct snd_kcontrol_new wm8900_snd_controls[] = { |
| 426 | SOC_ENUM("Mic Bias Level", mic_bias_level), |
| 427 | |
| 428 | SOC_SINGLE_TLV("Left Input PGA Volume", WM8900_REG_LINVOL, 0, 31, 0, |
| 429 | in_pga_tlv), |
| 430 | SOC_SINGLE("Left Input PGA Switch", WM8900_REG_LINVOL, 6, 1, 1), |
| 431 | SOC_SINGLE("Left Input PGA ZC Switch", WM8900_REG_LINVOL, 7, 1, 0), |
| 432 | |
| 433 | SOC_SINGLE_TLV("Right Input PGA Volume", WM8900_REG_RINVOL, 0, 31, 0, |
| 434 | in_pga_tlv), |
| 435 | SOC_SINGLE("Right Input PGA Switch", WM8900_REG_RINVOL, 6, 1, 1), |
| 436 | SOC_SINGLE("Right Input PGA ZC Switch", WM8900_REG_RINVOL, 7, 1, 0), |
| 437 | |
| 438 | SOC_SINGLE("DAC Soft Mute Switch", WM8900_REG_DACCTRL, 6, 1, 1), |
| 439 | SOC_ENUM("DAC Mute Rate", dac_mute_rate), |
| 440 | SOC_SINGLE("DAC Mono Switch", WM8900_REG_DACCTRL, 9, 1, 0), |
| 441 | SOC_ENUM("DAC Deemphasis", dac_deemphasis), |
| 442 | SOC_SINGLE("DAC Sloping Stopband Filter Switch", WM8900_REG_DACCTRL, 8, 1, 0), |
| 443 | SOC_SINGLE("DAC Sigma-Delta Modulator Clock Switch", WM8900_REG_DACCTRL, |
| 444 | 12, 1, 0), |
| 445 | |
| 446 | SOC_SINGLE("ADC HPF Switch", WM8900_REG_ADCCTRL, 8, 1, 0), |
| 447 | SOC_ENUM("ADC HPF Cut-Off", adc_hpf_cut), |
| 448 | SOC_DOUBLE("ADC Invert Switch", WM8900_REG_ADCCTRL, 1, 0, 1, 0), |
| 449 | SOC_SINGLE_TLV("Left ADC Sidetone Volume", WM8900_REG_SIDETONE, 9, 12, 0, |
| 450 | adc_svol_tlv), |
| 451 | SOC_SINGLE_TLV("Right ADC Sidetone Volume", WM8900_REG_SIDETONE, 5, 12, 0, |
| 452 | adc_svol_tlv), |
| 453 | SOC_ENUM("Left Digital Audio Source", aifl_src), |
| 454 | SOC_ENUM("Right Digital Audio Source", aifr_src), |
| 455 | |
| 456 | SOC_SINGLE_TLV("DAC Input Boost Volume", WM8900_REG_AUDIO2, 10, 4, 0, |
| 457 | dac_boost_tlv), |
| 458 | SOC_ENUM("Left DAC Source", dacl_src), |
| 459 | SOC_ENUM("Right DAC Source", dacr_src), |
| 460 | SOC_ENUM("Left DAC Sidetone", dacl_sidetone), |
| 461 | SOC_ENUM("Right DAC Sidetone", dacr_sidetone), |
| 462 | SOC_DOUBLE("DAC Invert Switch", WM8900_REG_DACCTRL, 1, 0, 1, 0), |
| 463 | |
| 464 | SOC_DOUBLE_R_TLV("Digital Playback Volume", |
| 465 | WM8900_REG_LDAC_DV, WM8900_REG_RDAC_DV, |
| 466 | 1, 96, 0, dac_tlv), |
| 467 | SOC_DOUBLE_R_TLV("Digital Capture Volume", |
| 468 | WM8900_REG_LADC_DV, WM8900_REG_RADC_DV, 1, 119, 0, adc_tlv), |
| 469 | |
| 470 | SOC_SINGLE_TLV("LINPUT3 Bypass Volume", WM8900_REG_LOUTMIXCTL1, 4, 7, 0, |
| 471 | out_mix_tlv), |
| 472 | SOC_SINGLE_TLV("RINPUT3 Bypass Volume", WM8900_REG_ROUTMIXCTL1, 4, 7, 0, |
| 473 | out_mix_tlv), |
| 474 | SOC_SINGLE_TLV("Left AUX Bypass Volume", WM8900_REG_AUXOUT_CTL, 4, 7, 0, |
| 475 | out_mix_tlv), |
| 476 | SOC_SINGLE_TLV("Right AUX Bypass Volume", WM8900_REG_AUXOUT_CTL, 0, 7, 0, |
| 477 | out_mix_tlv), |
| 478 | |
| 479 | SOC_SINGLE_TLV("LeftIn to RightOut Mixer Volume", WM8900_REG_BYPASS1, 0, 7, 0, |
| 480 | out_mix_tlv), |
| 481 | SOC_SINGLE_TLV("LeftIn to LeftOut Mixer Volume", WM8900_REG_BYPASS1, 4, 7, 0, |
| 482 | out_mix_tlv), |
| 483 | SOC_SINGLE_TLV("RightIn to LeftOut Mixer Volume", WM8900_REG_BYPASS2, 0, 7, 0, |
| 484 | out_mix_tlv), |
| 485 | SOC_SINGLE_TLV("RightIn to RightOut Mixer Volume", WM8900_REG_BYPASS2, 4, 7, 0, |
| 486 | out_mix_tlv), |
| 487 | |
| 488 | SOC_SINGLE_TLV("IN2L Boost Volume", WM8900_REG_INBOOSTMIX1, 0, 3, 0, |
| 489 | in_boost_tlv), |
| 490 | SOC_SINGLE_TLV("IN3L Boost Volume", WM8900_REG_INBOOSTMIX1, 4, 3, 0, |
| 491 | in_boost_tlv), |
| 492 | SOC_SINGLE_TLV("IN2R Boost Volume", WM8900_REG_INBOOSTMIX2, 0, 3, 0, |
| 493 | in_boost_tlv), |
| 494 | SOC_SINGLE_TLV("IN3R Boost Volume", WM8900_REG_INBOOSTMIX2, 4, 3, 0, |
| 495 | in_boost_tlv), |
| 496 | SOC_SINGLE_TLV("Left AUX Boost Volume", WM8900_REG_AUXBOOST, 4, 3, 0, |
| 497 | in_boost_tlv), |
| 498 | SOC_SINGLE_TLV("Right AUX Boost Volume", WM8900_REG_AUXBOOST, 0, 3, 0, |
| 499 | in_boost_tlv), |
| 500 | |
| 501 | SOC_DOUBLE_R_TLV("LINEOUT1 Volume", WM8900_REG_LOUT1CTL, WM8900_REG_ROUT1CTL, |
| 502 | 0, 63, 0, out_pga_tlv), |
| 503 | SOC_DOUBLE_R("LINEOUT1 Switch", WM8900_REG_LOUT1CTL, WM8900_REG_ROUT1CTL, |
| 504 | 6, 1, 1), |
| 505 | SOC_DOUBLE_R("LINEOUT1 ZC Switch", WM8900_REG_LOUT1CTL, WM8900_REG_ROUT1CTL, |
| 506 | 7, 1, 0), |
| 507 | |
| 508 | SOC_DOUBLE_R_TLV("LINEOUT2 Volume", |
| 509 | WM8900_REG_LOUT2CTL, WM8900_REG_ROUT2CTL, |
| 510 | 0, 63, 0, out_pga_tlv), |
| 511 | SOC_DOUBLE_R("LINEOUT2 Switch", |
| 512 | WM8900_REG_LOUT2CTL, WM8900_REG_ROUT2CTL, 6, 1, 1), |
| 513 | SOC_DOUBLE_R("LINEOUT2 ZC Switch", |
| 514 | WM8900_REG_LOUT2CTL, WM8900_REG_ROUT2CTL, 7, 1, 0), |
| 515 | SOC_SINGLE("LINEOUT2 LP -12dB", WM8900_REG_LOUTMIXCTL1, |
| 516 | 0, 1, 1), |
| 517 | |
| 518 | }; |
| 519 | |
| 520 | /* add non dapm controls */ |
| 521 | static int wm8900_add_controls(struct snd_soc_codec *codec) |
| 522 | { |
| 523 | int err, i; |
| 524 | |
| 525 | for (i = 0; i < ARRAY_SIZE(wm8900_snd_controls); i++) { |
| 526 | err = snd_ctl_add(codec->card, |
| 527 | snd_soc_cnew(&wm8900_snd_controls[i], |
| 528 | codec, NULL)); |
| 529 | if (err < 0) |
| 530 | return err; |
| 531 | } |
| 532 | |
| 533 | return 0; |
| 534 | } |
| 535 | |
| 536 | static const struct snd_kcontrol_new wm8900_dapm_loutput2_control = |
| 537 | SOC_DAPM_SINGLE("LINEOUT2L Switch", WM8900_REG_POWER3, 6, 1, 0); |
| 538 | |
| 539 | static const struct snd_kcontrol_new wm8900_dapm_routput2_control = |
| 540 | SOC_DAPM_SINGLE("LINEOUT2R Switch", WM8900_REG_POWER3, 5, 1, 0); |
| 541 | |
| 542 | static const struct snd_kcontrol_new wm8900_loutmix_controls[] = { |
| 543 | SOC_DAPM_SINGLE("LINPUT3 Bypass Switch", WM8900_REG_LOUTMIXCTL1, 7, 1, 0), |
| 544 | SOC_DAPM_SINGLE("AUX Bypass Switch", WM8900_REG_AUXOUT_CTL, 7, 1, 0), |
| 545 | SOC_DAPM_SINGLE("Left Input Mixer Switch", WM8900_REG_BYPASS1, 7, 1, 0), |
| 546 | SOC_DAPM_SINGLE("Right Input Mixer Switch", WM8900_REG_BYPASS2, 3, 1, 0), |
| 547 | SOC_DAPM_SINGLE("DACL Switch", WM8900_REG_LOUTMIXCTL1, 8, 1, 0), |
| 548 | }; |
| 549 | |
| 550 | static const struct snd_kcontrol_new wm8900_routmix_controls[] = { |
| 551 | SOC_DAPM_SINGLE("RINPUT3 Bypass Switch", WM8900_REG_ROUTMIXCTL1, 7, 1, 0), |
| 552 | SOC_DAPM_SINGLE("AUX Bypass Switch", WM8900_REG_AUXOUT_CTL, 3, 1, 0), |
| 553 | SOC_DAPM_SINGLE("Left Input Mixer Switch", WM8900_REG_BYPASS1, 3, 1, 0), |
| 554 | SOC_DAPM_SINGLE("Right Input Mixer Switch", WM8900_REG_BYPASS2, 7, 1, 0), |
| 555 | SOC_DAPM_SINGLE("DACR Switch", WM8900_REG_ROUTMIXCTL1, 8, 1, 0), |
| 556 | }; |
| 557 | |
| 558 | static const struct snd_kcontrol_new wm8900_linmix_controls[] = { |
| 559 | SOC_DAPM_SINGLE("LINPUT2 Switch", WM8900_REG_INBOOSTMIX1, 2, 1, 1), |
| 560 | SOC_DAPM_SINGLE("LINPUT3 Switch", WM8900_REG_INBOOSTMIX1, 6, 1, 1), |
| 561 | SOC_DAPM_SINGLE("AUX Switch", WM8900_REG_AUXBOOST, 6, 1, 1), |
| 562 | SOC_DAPM_SINGLE("Input PGA Switch", WM8900_REG_ADCPATH, 6, 1, 0), |
| 563 | }; |
| 564 | |
| 565 | static const struct snd_kcontrol_new wm8900_rinmix_controls[] = { |
| 566 | SOC_DAPM_SINGLE("RINPUT2 Switch", WM8900_REG_INBOOSTMIX2, 2, 1, 1), |
| 567 | SOC_DAPM_SINGLE("RINPUT3 Switch", WM8900_REG_INBOOSTMIX2, 6, 1, 1), |
| 568 | SOC_DAPM_SINGLE("AUX Switch", WM8900_REG_AUXBOOST, 2, 1, 1), |
| 569 | SOC_DAPM_SINGLE("Input PGA Switch", WM8900_REG_ADCPATH, 2, 1, 0), |
| 570 | }; |
| 571 | |
| 572 | static const struct snd_kcontrol_new wm8900_linpga_controls[] = { |
| 573 | SOC_DAPM_SINGLE("LINPUT1 Switch", WM8900_REG_INCTL, 6, 1, 0), |
| 574 | SOC_DAPM_SINGLE("LINPUT2 Switch", WM8900_REG_INCTL, 5, 1, 0), |
| 575 | SOC_DAPM_SINGLE("LINPUT3 Switch", WM8900_REG_INCTL, 4, 1, 0), |
| 576 | }; |
| 577 | |
| 578 | static const struct snd_kcontrol_new wm8900_rinpga_controls[] = { |
| 579 | SOC_DAPM_SINGLE("RINPUT1 Switch", WM8900_REG_INCTL, 2, 1, 0), |
| 580 | SOC_DAPM_SINGLE("RINPUT2 Switch", WM8900_REG_INCTL, 1, 1, 0), |
| 581 | SOC_DAPM_SINGLE("RINPUT3 Switch", WM8900_REG_INCTL, 0, 1, 0), |
| 582 | }; |
| 583 | |
| 584 | static const char *wm9700_lp_mux[] = { "Disabled", "Enabled" }; |
| 585 | |
| 586 | static const struct soc_enum wm8900_lineout2_lp_mux = |
| 587 | SOC_ENUM_SINGLE(WM8900_REG_LOUTMIXCTL1, 1, 2, wm9700_lp_mux); |
| 588 | |
| 589 | static const struct snd_kcontrol_new wm8900_lineout2_lp = |
| 590 | SOC_DAPM_ENUM("Route", wm8900_lineout2_lp_mux); |
| 591 | |
| 592 | static const struct snd_soc_dapm_widget wm8900_dapm_widgets[] = { |
| 593 | |
| 594 | /* Externally visible pins */ |
| 595 | SND_SOC_DAPM_OUTPUT("LINEOUT1L"), |
| 596 | SND_SOC_DAPM_OUTPUT("LINEOUT1R"), |
| 597 | SND_SOC_DAPM_OUTPUT("LINEOUT2L"), |
| 598 | SND_SOC_DAPM_OUTPUT("LINEOUT2R"), |
| 599 | SND_SOC_DAPM_OUTPUT("HP_L"), |
| 600 | SND_SOC_DAPM_OUTPUT("HP_R"), |
| 601 | |
| 602 | SND_SOC_DAPM_INPUT("RINPUT1"), |
| 603 | SND_SOC_DAPM_INPUT("LINPUT1"), |
| 604 | SND_SOC_DAPM_INPUT("RINPUT2"), |
| 605 | SND_SOC_DAPM_INPUT("LINPUT2"), |
| 606 | SND_SOC_DAPM_INPUT("RINPUT3"), |
| 607 | SND_SOC_DAPM_INPUT("LINPUT3"), |
| 608 | SND_SOC_DAPM_INPUT("AUX"), |
| 609 | |
| 610 | SND_SOC_DAPM_VMID("VMID"), |
| 611 | |
| 612 | /* Input */ |
| 613 | SND_SOC_DAPM_MIXER("Left Input PGA", WM8900_REG_POWER2, 3, 0, |
| 614 | wm8900_linpga_controls, |
| 615 | ARRAY_SIZE(wm8900_linpga_controls)), |
| 616 | SND_SOC_DAPM_MIXER("Right Input PGA", WM8900_REG_POWER2, 2, 0, |
| 617 | wm8900_rinpga_controls, |
| 618 | ARRAY_SIZE(wm8900_rinpga_controls)), |
| 619 | |
| 620 | SND_SOC_DAPM_MIXER("Left Input Mixer", WM8900_REG_POWER2, 5, 0, |
| 621 | wm8900_linmix_controls, |
| 622 | ARRAY_SIZE(wm8900_linmix_controls)), |
| 623 | SND_SOC_DAPM_MIXER("Right Input Mixer", WM8900_REG_POWER2, 4, 0, |
| 624 | wm8900_rinmix_controls, |
| 625 | ARRAY_SIZE(wm8900_rinmix_controls)), |
| 626 | |
| 627 | SND_SOC_DAPM_MICBIAS("Mic Bias", WM8900_REG_POWER1, 4, 0), |
| 628 | |
| 629 | SND_SOC_DAPM_ADC("ADCL", "Left HiFi Capture", WM8900_REG_POWER2, 1, 0), |
| 630 | SND_SOC_DAPM_ADC("ADCR", "Right HiFi Capture", WM8900_REG_POWER2, 0, 0), |
| 631 | |
| 632 | /* Output */ |
| 633 | SND_SOC_DAPM_DAC("DACL", "Left HiFi Playback", WM8900_REG_POWER3, 1, 0), |
| 634 | SND_SOC_DAPM_DAC("DACR", "Right HiFi Playback", WM8900_REG_POWER3, 0, 0), |
| 635 | |
| 636 | SND_SOC_DAPM_PGA_E("Headphone Amplifier", WM8900_REG_POWER3, 7, 0, NULL, 0, |
| 637 | wm8900_hp_event, |
| 638 | SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU | |
| 639 | SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD), |
| 640 | |
| 641 | SND_SOC_DAPM_PGA("LINEOUT1L PGA", WM8900_REG_POWER2, 8, 0, NULL, 0), |
| 642 | SND_SOC_DAPM_PGA("LINEOUT1R PGA", WM8900_REG_POWER2, 7, 0, NULL, 0), |
| 643 | |
| 644 | SND_SOC_DAPM_MUX("LINEOUT2 LP", SND_SOC_NOPM, 0, 0, &wm8900_lineout2_lp), |
| 645 | SND_SOC_DAPM_PGA("LINEOUT2L PGA", WM8900_REG_POWER3, 6, 0, NULL, 0), |
| 646 | SND_SOC_DAPM_PGA("LINEOUT2R PGA", WM8900_REG_POWER3, 5, 0, NULL, 0), |
| 647 | |
| 648 | SND_SOC_DAPM_MIXER("Left Output Mixer", WM8900_REG_POWER3, 3, 0, |
| 649 | wm8900_loutmix_controls, |
| 650 | ARRAY_SIZE(wm8900_loutmix_controls)), |
| 651 | SND_SOC_DAPM_MIXER("Right Output Mixer", WM8900_REG_POWER3, 2, 0, |
| 652 | wm8900_routmix_controls, |
| 653 | ARRAY_SIZE(wm8900_routmix_controls)), |
| 654 | }; |
| 655 | |
| 656 | /* Target, Path, Source */ |
| 657 | static const struct snd_soc_dapm_route audio_map[] = { |
| 658 | /* Inputs */ |
| 659 | {"Left Input PGA", "LINPUT1 Switch", "LINPUT1"}, |
| 660 | {"Left Input PGA", "LINPUT2 Switch", "LINPUT2"}, |
| 661 | {"Left Input PGA", "LINPUT3 Switch", "LINPUT3"}, |
| 662 | |
| 663 | {"Right Input PGA", "RINPUT1 Switch", "RINPUT1"}, |
| 664 | {"Right Input PGA", "RINPUT2 Switch", "RINPUT2"}, |
| 665 | {"Right Input PGA", "RINPUT3 Switch", "RINPUT3"}, |
| 666 | |
| 667 | {"Left Input Mixer", "LINPUT2 Switch", "LINPUT2"}, |
| 668 | {"Left Input Mixer", "LINPUT3 Switch", "LINPUT3"}, |
| 669 | {"Left Input Mixer", "AUX Switch", "AUX"}, |
| 670 | {"Left Input Mixer", "Input PGA Switch", "Left Input PGA"}, |
| 671 | |
| 672 | {"Right Input Mixer", "RINPUT2 Switch", "RINPUT2"}, |
| 673 | {"Right Input Mixer", "RINPUT3 Switch", "RINPUT3"}, |
| 674 | {"Right Input Mixer", "AUX Switch", "AUX"}, |
| 675 | {"Right Input Mixer", "Input PGA Switch", "Right Input PGA"}, |
| 676 | |
| 677 | {"ADCL", NULL, "Left Input Mixer"}, |
| 678 | {"ADCR", NULL, "Right Input Mixer"}, |
| 679 | |
| 680 | /* Outputs */ |
| 681 | {"LINEOUT1L", NULL, "LINEOUT1L PGA"}, |
| 682 | {"LINEOUT1L PGA", NULL, "Left Output Mixer"}, |
| 683 | {"LINEOUT1R", NULL, "LINEOUT1R PGA"}, |
| 684 | {"LINEOUT1R PGA", NULL, "Right Output Mixer"}, |
| 685 | |
| 686 | {"LINEOUT2L PGA", NULL, "Left Output Mixer"}, |
| 687 | {"LINEOUT2 LP", "Disabled", "LINEOUT2L PGA"}, |
| 688 | {"LINEOUT2 LP", "Enabled", "Left Output Mixer"}, |
| 689 | {"LINEOUT2L", NULL, "LINEOUT2 LP"}, |
| 690 | |
| 691 | {"LINEOUT2R PGA", NULL, "Right Output Mixer"}, |
| 692 | {"LINEOUT2 LP", "Disabled", "LINEOUT2R PGA"}, |
| 693 | {"LINEOUT2 LP", "Enabled", "Right Output Mixer"}, |
| 694 | {"LINEOUT2R", NULL, "LINEOUT2 LP"}, |
| 695 | |
| 696 | {"Left Output Mixer", "LINPUT3 Bypass Switch", "LINPUT3"}, |
| 697 | {"Left Output Mixer", "AUX Bypass Switch", "AUX"}, |
| 698 | {"Left Output Mixer", "Left Input Mixer Switch", "Left Input Mixer"}, |
| 699 | {"Left Output Mixer", "Right Input Mixer Switch", "Right Input Mixer"}, |
| 700 | {"Left Output Mixer", "DACL Switch", "DACL"}, |
| 701 | |
| 702 | {"Right Output Mixer", "RINPUT3 Bypass Switch", "RINPUT3"}, |
| 703 | {"Right Output Mixer", "AUX Bypass Switch", "AUX"}, |
| 704 | {"Right Output Mixer", "Left Input Mixer Switch", "Left Input Mixer"}, |
| 705 | {"Right Output Mixer", "Right Input Mixer Switch", "Right Input Mixer"}, |
| 706 | {"Right Output Mixer", "DACR Switch", "DACR"}, |
| 707 | |
| 708 | /* Note that the headphone output stage needs to be connected |
| 709 | * externally to LINEOUT2 via DC blocking capacitors. Other |
| 710 | * configurations are not supported. |
| 711 | * |
| 712 | * Note also that left and right headphone paths are treated as a |
| 713 | * mono path. |
| 714 | */ |
| 715 | {"Headphone Amplifier", NULL, "LINEOUT2 LP"}, |
| 716 | {"Headphone Amplifier", NULL, "LINEOUT2 LP"}, |
| 717 | {"HP_L", NULL, "Headphone Amplifier"}, |
| 718 | {"HP_R", NULL, "Headphone Amplifier"}, |
| 719 | }; |
| 720 | |
| 721 | static int wm8900_add_widgets(struct snd_soc_codec *codec) |
| 722 | { |
| 723 | snd_soc_dapm_new_controls(codec, wm8900_dapm_widgets, |
| 724 | ARRAY_SIZE(wm8900_dapm_widgets)); |
| 725 | |
| 726 | snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map)); |
| 727 | |
| 728 | snd_soc_dapm_new_widgets(codec); |
| 729 | |
| 730 | return 0; |
| 731 | } |
| 732 | |
| 733 | static int wm8900_hw_params(struct snd_pcm_substream *substream, |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 734 | struct snd_pcm_hw_params *params, |
| 735 | struct snd_soc_dai *dai) |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 736 | { |
| 737 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 738 | struct snd_soc_device *socdev = rtd->socdev; |
| 739 | struct snd_soc_codec *codec = socdev->codec; |
| 740 | u16 reg; |
| 741 | |
| 742 | reg = wm8900_read(codec, WM8900_REG_AUDIO1) & ~0x60; |
| 743 | |
| 744 | switch (params_format(params)) { |
| 745 | case SNDRV_PCM_FORMAT_S16_LE: |
| 746 | break; |
| 747 | case SNDRV_PCM_FORMAT_S20_3LE: |
| 748 | reg |= 0x20; |
| 749 | break; |
| 750 | case SNDRV_PCM_FORMAT_S24_LE: |
| 751 | reg |= 0x40; |
| 752 | break; |
| 753 | case SNDRV_PCM_FORMAT_S32_LE: |
| 754 | reg |= 0x60; |
| 755 | break; |
| 756 | default: |
| 757 | return -EINVAL; |
| 758 | } |
| 759 | |
| 760 | wm8900_write(codec, WM8900_REG_AUDIO1, reg); |
| 761 | |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | /* FLL divisors */ |
| 766 | struct _fll_div { |
| 767 | u16 fll_ratio; |
| 768 | u16 fllclk_div; |
| 769 | u16 fll_slow_lock_ref; |
| 770 | u16 n; |
| 771 | u16 k; |
| 772 | }; |
| 773 | |
| 774 | /* The size in bits of the FLL divide multiplied by 10 |
| 775 | * to allow rounding later */ |
| 776 | #define FIXED_FLL_SIZE ((1 << 16) * 10) |
| 777 | |
| 778 | static int fll_factors(struct _fll_div *fll_div, unsigned int Fref, |
| 779 | unsigned int Fout) |
| 780 | { |
| 781 | u64 Kpart; |
| 782 | unsigned int K, Ndiv, Nmod, target; |
| 783 | unsigned int div; |
| 784 | |
| 785 | BUG_ON(!Fout); |
| 786 | |
| 787 | /* The FLL must run at 90-100MHz which is then scaled down to |
| 788 | * the output value by FLLCLK_DIV. */ |
| 789 | target = Fout; |
| 790 | div = 1; |
| 791 | while (target < 90000000) { |
| 792 | div *= 2; |
| 793 | target *= 2; |
| 794 | } |
| 795 | |
| 796 | if (target > 100000000) |
| 797 | printk(KERN_WARNING "wm8900: FLL rate %d out of range, Fref=%d" |
| 798 | " Fout=%d\n", target, Fref, Fout); |
| 799 | if (div > 32) { |
| 800 | printk(KERN_ERR "wm8900: Invalid FLL division rate %u, " |
| 801 | "Fref=%d, Fout=%d, target=%d\n", |
| 802 | div, Fref, Fout, target); |
| 803 | return -EINVAL; |
| 804 | } |
| 805 | |
| 806 | fll_div->fllclk_div = div >> 2; |
| 807 | |
| 808 | if (Fref < 48000) |
| 809 | fll_div->fll_slow_lock_ref = 1; |
| 810 | else |
| 811 | fll_div->fll_slow_lock_ref = 0; |
| 812 | |
| 813 | Ndiv = target / Fref; |
| 814 | |
| 815 | if (Fref < 1000000) |
| 816 | fll_div->fll_ratio = 8; |
| 817 | else |
| 818 | fll_div->fll_ratio = 1; |
| 819 | |
| 820 | fll_div->n = Ndiv / fll_div->fll_ratio; |
| 821 | Nmod = (target / fll_div->fll_ratio) % Fref; |
| 822 | |
| 823 | /* Calculate fractional part - scale up so we can round. */ |
| 824 | Kpart = FIXED_FLL_SIZE * (long long)Nmod; |
| 825 | |
| 826 | do_div(Kpart, Fref); |
| 827 | |
| 828 | K = Kpart & 0xFFFFFFFF; |
| 829 | |
| 830 | if ((K % 10) >= 5) |
| 831 | K += 5; |
| 832 | |
| 833 | /* Move down to proper range now rounding is done */ |
| 834 | fll_div->k = K / 10; |
| 835 | |
| 836 | BUG_ON(target != Fout * (fll_div->fllclk_div << 2)); |
| 837 | BUG_ON(!K && target != Fref * fll_div->fll_ratio * fll_div->n); |
| 838 | |
| 839 | return 0; |
| 840 | } |
| 841 | |
| 842 | static int wm8900_set_fll(struct snd_soc_codec *codec, |
| 843 | int fll_id, unsigned int freq_in, unsigned int freq_out) |
| 844 | { |
| 845 | struct wm8900_priv *wm8900 = codec->private_data; |
| 846 | struct _fll_div fll_div; |
| 847 | unsigned int reg; |
| 848 | |
| 849 | if (wm8900->fll_in == freq_in && wm8900->fll_out == freq_out) |
| 850 | return 0; |
| 851 | |
| 852 | /* The digital side should be disabled during any change. */ |
| 853 | reg = wm8900_read(codec, WM8900_REG_POWER1); |
| 854 | wm8900_write(codec, WM8900_REG_POWER1, |
| 855 | reg & (~WM8900_REG_POWER1_FLL_ENA)); |
| 856 | |
| 857 | /* Disable the FLL? */ |
| 858 | if (!freq_in || !freq_out) { |
| 859 | reg = wm8900_read(codec, WM8900_REG_CLOCKING1); |
| 860 | wm8900_write(codec, WM8900_REG_CLOCKING1, |
| 861 | reg & (~WM8900_REG_CLOCKING1_MCLK_SRC)); |
| 862 | |
| 863 | reg = wm8900_read(codec, WM8900_REG_FLLCTL1); |
| 864 | wm8900_write(codec, WM8900_REG_FLLCTL1, |
| 865 | reg & (~WM8900_REG_FLLCTL1_OSC_ENA)); |
| 866 | |
| 867 | wm8900->fll_in = freq_in; |
| 868 | wm8900->fll_out = freq_out; |
| 869 | |
| 870 | return 0; |
| 871 | } |
| 872 | |
| 873 | if (fll_factors(&fll_div, freq_in, freq_out) != 0) |
| 874 | goto reenable; |
| 875 | |
| 876 | wm8900->fll_in = freq_in; |
| 877 | wm8900->fll_out = freq_out; |
| 878 | |
| 879 | /* The osclilator *MUST* be enabled before we enable the |
| 880 | * digital circuit. */ |
| 881 | wm8900_write(codec, WM8900_REG_FLLCTL1, |
| 882 | fll_div.fll_ratio | WM8900_REG_FLLCTL1_OSC_ENA); |
| 883 | |
| 884 | wm8900_write(codec, WM8900_REG_FLLCTL4, fll_div.n >> 5); |
| 885 | wm8900_write(codec, WM8900_REG_FLLCTL5, |
| 886 | (fll_div.fllclk_div << 6) | (fll_div.n & 0x1f)); |
| 887 | |
| 888 | if (fll_div.k) { |
| 889 | wm8900_write(codec, WM8900_REG_FLLCTL2, |
| 890 | (fll_div.k >> 8) | 0x100); |
| 891 | wm8900_write(codec, WM8900_REG_FLLCTL3, fll_div.k & 0xff); |
| 892 | } else |
| 893 | wm8900_write(codec, WM8900_REG_FLLCTL2, 0); |
| 894 | |
| 895 | if (fll_div.fll_slow_lock_ref) |
| 896 | wm8900_write(codec, WM8900_REG_FLLCTL6, |
| 897 | WM8900_REG_FLLCTL6_FLL_SLOW_LOCK_REF); |
| 898 | else |
| 899 | wm8900_write(codec, WM8900_REG_FLLCTL6, 0); |
| 900 | |
| 901 | reg = wm8900_read(codec, WM8900_REG_POWER1); |
| 902 | wm8900_write(codec, WM8900_REG_POWER1, |
| 903 | reg | WM8900_REG_POWER1_FLL_ENA); |
| 904 | |
| 905 | reenable: |
| 906 | reg = wm8900_read(codec, WM8900_REG_CLOCKING1); |
| 907 | wm8900_write(codec, WM8900_REG_CLOCKING1, |
| 908 | reg | WM8900_REG_CLOCKING1_MCLK_SRC); |
| 909 | |
| 910 | return 0; |
| 911 | } |
| 912 | |
| 913 | static int wm8900_set_dai_pll(struct snd_soc_dai *codec_dai, |
| 914 | int pll_id, unsigned int freq_in, unsigned int freq_out) |
| 915 | { |
| 916 | return wm8900_set_fll(codec_dai->codec, pll_id, freq_in, freq_out); |
| 917 | } |
| 918 | |
| 919 | static int wm8900_set_dai_clkdiv(struct snd_soc_dai *codec_dai, |
| 920 | int div_id, int div) |
| 921 | { |
| 922 | struct snd_soc_codec *codec = codec_dai->codec; |
| 923 | unsigned int reg; |
| 924 | |
| 925 | switch (div_id) { |
| 926 | case WM8900_BCLK_DIV: |
| 927 | reg = wm8900_read(codec, WM8900_REG_CLOCKING1); |
| 928 | wm8900_write(codec, WM8900_REG_CLOCKING1, |
| 929 | div | (reg & WM8900_REG_CLOCKING1_BCLK_MASK)); |
| 930 | break; |
| 931 | case WM8900_OPCLK_DIV: |
| 932 | reg = wm8900_read(codec, WM8900_REG_CLOCKING1); |
| 933 | wm8900_write(codec, WM8900_REG_CLOCKING1, |
| 934 | div | (reg & WM8900_REG_CLOCKING1_OPCLK_MASK)); |
| 935 | break; |
| 936 | case WM8900_DAC_LRCLK: |
| 937 | reg = wm8900_read(codec, WM8900_REG_AUDIO4); |
| 938 | wm8900_write(codec, WM8900_REG_AUDIO4, |
| 939 | div | (reg & WM8900_LRC_MASK)); |
| 940 | break; |
| 941 | case WM8900_ADC_LRCLK: |
| 942 | reg = wm8900_read(codec, WM8900_REG_AUDIO3); |
| 943 | wm8900_write(codec, WM8900_REG_AUDIO3, |
| 944 | div | (reg & WM8900_LRC_MASK)); |
| 945 | break; |
| 946 | case WM8900_DAC_CLKDIV: |
| 947 | reg = wm8900_read(codec, WM8900_REG_CLOCKING2); |
| 948 | wm8900_write(codec, WM8900_REG_CLOCKING2, |
| 949 | div | (reg & WM8900_REG_CLOCKING2_DAC_CLKDIV)); |
| 950 | break; |
| 951 | case WM8900_ADC_CLKDIV: |
| 952 | reg = wm8900_read(codec, WM8900_REG_CLOCKING2); |
| 953 | wm8900_write(codec, WM8900_REG_CLOCKING2, |
| 954 | div | (reg & WM8900_REG_CLOCKING2_ADC_CLKDIV)); |
| 955 | break; |
| 956 | case WM8900_LRCLK_MODE: |
| 957 | reg = wm8900_read(codec, WM8900_REG_DACCTRL); |
| 958 | wm8900_write(codec, WM8900_REG_DACCTRL, |
| 959 | div | (reg & WM8900_REG_DACCTRL_AIF_LRCLKRATE)); |
| 960 | break; |
| 961 | default: |
| 962 | return -EINVAL; |
| 963 | } |
| 964 | |
| 965 | return 0; |
| 966 | } |
| 967 | |
| 968 | |
| 969 | static int wm8900_set_dai_fmt(struct snd_soc_dai *codec_dai, |
| 970 | unsigned int fmt) |
| 971 | { |
| 972 | struct snd_soc_codec *codec = codec_dai->codec; |
| 973 | unsigned int clocking1, aif1, aif3, aif4; |
| 974 | |
| 975 | clocking1 = wm8900_read(codec, WM8900_REG_CLOCKING1); |
| 976 | aif1 = wm8900_read(codec, WM8900_REG_AUDIO1); |
| 977 | aif3 = wm8900_read(codec, WM8900_REG_AUDIO3); |
| 978 | aif4 = wm8900_read(codec, WM8900_REG_AUDIO4); |
| 979 | |
| 980 | /* set master/slave audio interface */ |
| 981 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 982 | case SND_SOC_DAIFMT_CBS_CFS: |
| 983 | clocking1 &= ~WM8900_REG_CLOCKING1_BCLK_DIR; |
| 984 | aif3 &= ~WM8900_REG_AUDIO3_ADCLRC_DIR; |
| 985 | aif4 &= ~WM8900_REG_AUDIO4_DACLRC_DIR; |
| 986 | break; |
| 987 | case SND_SOC_DAIFMT_CBS_CFM: |
| 988 | clocking1 &= ~WM8900_REG_CLOCKING1_BCLK_DIR; |
| 989 | aif3 |= WM8900_REG_AUDIO3_ADCLRC_DIR; |
| 990 | aif4 |= WM8900_REG_AUDIO4_DACLRC_DIR; |
| 991 | break; |
| 992 | case SND_SOC_DAIFMT_CBM_CFM: |
| 993 | clocking1 |= WM8900_REG_CLOCKING1_BCLK_DIR; |
| 994 | aif3 |= WM8900_REG_AUDIO3_ADCLRC_DIR; |
| 995 | aif4 |= WM8900_REG_AUDIO4_DACLRC_DIR; |
| 996 | break; |
| 997 | case SND_SOC_DAIFMT_CBM_CFS: |
| 998 | clocking1 |= WM8900_REG_CLOCKING1_BCLK_DIR; |
| 999 | aif3 &= ~WM8900_REG_AUDIO3_ADCLRC_DIR; |
| 1000 | aif4 &= ~WM8900_REG_AUDIO4_DACLRC_DIR; |
| 1001 | break; |
| 1002 | default: |
| 1003 | return -EINVAL; |
| 1004 | } |
| 1005 | |
| 1006 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 1007 | case SND_SOC_DAIFMT_DSP_A: |
| 1008 | aif1 |= WM8900_REG_AUDIO1_AIF_FMT_MASK; |
| 1009 | aif1 &= ~WM8900_REG_AUDIO1_LRCLK_INV; |
| 1010 | break; |
| 1011 | case SND_SOC_DAIFMT_DSP_B: |
| 1012 | aif1 |= WM8900_REG_AUDIO1_AIF_FMT_MASK; |
| 1013 | aif1 |= WM8900_REG_AUDIO1_LRCLK_INV; |
| 1014 | break; |
| 1015 | case SND_SOC_DAIFMT_I2S: |
| 1016 | aif1 &= ~WM8900_REG_AUDIO1_AIF_FMT_MASK; |
| 1017 | aif1 |= 0x10; |
| 1018 | break; |
| 1019 | case SND_SOC_DAIFMT_RIGHT_J: |
| 1020 | aif1 &= ~WM8900_REG_AUDIO1_AIF_FMT_MASK; |
| 1021 | break; |
| 1022 | case SND_SOC_DAIFMT_LEFT_J: |
| 1023 | aif1 &= ~WM8900_REG_AUDIO1_AIF_FMT_MASK; |
| 1024 | aif1 |= 0x8; |
| 1025 | break; |
| 1026 | default: |
| 1027 | return -EINVAL; |
| 1028 | } |
| 1029 | |
| 1030 | /* Clock inversion */ |
| 1031 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 1032 | case SND_SOC_DAIFMT_DSP_A: |
| 1033 | case SND_SOC_DAIFMT_DSP_B: |
| 1034 | /* frame inversion not valid for DSP modes */ |
| 1035 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 1036 | case SND_SOC_DAIFMT_NB_NF: |
| 1037 | aif1 &= ~WM8900_REG_AUDIO1_BCLK_INV; |
| 1038 | break; |
| 1039 | case SND_SOC_DAIFMT_IB_NF: |
| 1040 | aif1 |= WM8900_REG_AUDIO1_BCLK_INV; |
| 1041 | break; |
| 1042 | default: |
| 1043 | return -EINVAL; |
| 1044 | } |
| 1045 | break; |
| 1046 | case SND_SOC_DAIFMT_I2S: |
| 1047 | case SND_SOC_DAIFMT_RIGHT_J: |
| 1048 | case SND_SOC_DAIFMT_LEFT_J: |
| 1049 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 1050 | case SND_SOC_DAIFMT_NB_NF: |
| 1051 | aif1 &= ~WM8900_REG_AUDIO1_BCLK_INV; |
| 1052 | aif1 &= ~WM8900_REG_AUDIO1_LRCLK_INV; |
| 1053 | break; |
| 1054 | case SND_SOC_DAIFMT_IB_IF: |
| 1055 | aif1 |= WM8900_REG_AUDIO1_BCLK_INV; |
| 1056 | aif1 |= WM8900_REG_AUDIO1_LRCLK_INV; |
| 1057 | break; |
| 1058 | case SND_SOC_DAIFMT_IB_NF: |
| 1059 | aif1 |= WM8900_REG_AUDIO1_BCLK_INV; |
| 1060 | aif1 &= ~WM8900_REG_AUDIO1_LRCLK_INV; |
| 1061 | break; |
| 1062 | case SND_SOC_DAIFMT_NB_IF: |
| 1063 | aif1 &= ~WM8900_REG_AUDIO1_BCLK_INV; |
| 1064 | aif1 |= WM8900_REG_AUDIO1_LRCLK_INV; |
| 1065 | break; |
| 1066 | default: |
| 1067 | return -EINVAL; |
| 1068 | } |
| 1069 | break; |
| 1070 | default: |
| 1071 | return -EINVAL; |
| 1072 | } |
| 1073 | |
| 1074 | wm8900_write(codec, WM8900_REG_CLOCKING1, clocking1); |
| 1075 | wm8900_write(codec, WM8900_REG_AUDIO1, aif1); |
| 1076 | wm8900_write(codec, WM8900_REG_AUDIO3, aif3); |
| 1077 | wm8900_write(codec, WM8900_REG_AUDIO4, aif4); |
| 1078 | |
| 1079 | return 0; |
| 1080 | } |
| 1081 | |
| 1082 | static int wm8900_digital_mute(struct snd_soc_dai *codec_dai, int mute) |
| 1083 | { |
| 1084 | struct snd_soc_codec *codec = codec_dai->codec; |
| 1085 | u16 reg; |
| 1086 | |
| 1087 | reg = wm8900_read(codec, WM8900_REG_DACCTRL); |
| 1088 | |
| 1089 | if (mute) |
| 1090 | reg |= WM8900_REG_DACCTRL_MUTE; |
| 1091 | else |
| 1092 | reg &= ~WM8900_REG_DACCTRL_MUTE; |
| 1093 | |
| 1094 | wm8900_write(codec, WM8900_REG_DACCTRL, reg); |
| 1095 | |
| 1096 | return 0; |
| 1097 | } |
| 1098 | |
| 1099 | #define WM8900_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\ |
| 1100 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\ |
| 1101 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000) |
| 1102 | |
| 1103 | #define WM8900_PCM_FORMATS \ |
| 1104 | (SNDRV_PCM_FORMAT_S16_LE | SNDRV_PCM_FORMAT_S20_3LE | \ |
| 1105 | SNDRV_PCM_FORMAT_S24_LE) |
| 1106 | |
| 1107 | struct snd_soc_dai wm8900_dai = { |
| 1108 | .name = "WM8900 HiFi", |
| 1109 | .playback = { |
| 1110 | .stream_name = "HiFi Playback", |
| 1111 | .channels_min = 1, |
| 1112 | .channels_max = 2, |
| 1113 | .rates = WM8900_RATES, |
| 1114 | .formats = WM8900_PCM_FORMATS, |
| 1115 | }, |
| 1116 | .capture = { |
| 1117 | .stream_name = "HiFi Capture", |
| 1118 | .channels_min = 1, |
| 1119 | .channels_max = 2, |
| 1120 | .rates = WM8900_RATES, |
| 1121 | .formats = WM8900_PCM_FORMATS, |
| 1122 | }, |
| 1123 | .ops = { |
| 1124 | .hw_params = wm8900_hw_params, |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1125 | .set_clkdiv = wm8900_set_dai_clkdiv, |
| 1126 | .set_pll = wm8900_set_dai_pll, |
| 1127 | .set_fmt = wm8900_set_dai_fmt, |
| 1128 | .digital_mute = wm8900_digital_mute, |
| 1129 | }, |
| 1130 | }; |
| 1131 | EXPORT_SYMBOL_GPL(wm8900_dai); |
| 1132 | |
| 1133 | static int wm8900_set_bias_level(struct snd_soc_codec *codec, |
| 1134 | enum snd_soc_bias_level level) |
| 1135 | { |
| 1136 | u16 reg; |
| 1137 | |
| 1138 | switch (level) { |
| 1139 | case SND_SOC_BIAS_ON: |
| 1140 | /* Enable thermal shutdown */ |
| 1141 | reg = wm8900_read(codec, WM8900_REG_GPIO); |
| 1142 | wm8900_write(codec, WM8900_REG_GPIO, |
| 1143 | reg | WM8900_REG_GPIO_TEMP_ENA); |
| 1144 | reg = wm8900_read(codec, WM8900_REG_ADDCTL); |
| 1145 | wm8900_write(codec, WM8900_REG_ADDCTL, |
| 1146 | reg | WM8900_REG_ADDCTL_TEMP_SD); |
| 1147 | break; |
| 1148 | |
| 1149 | case SND_SOC_BIAS_PREPARE: |
| 1150 | break; |
| 1151 | |
| 1152 | case SND_SOC_BIAS_STANDBY: |
| 1153 | /* Charge capacitors if initial power up */ |
| 1154 | if (codec->bias_level == SND_SOC_BIAS_OFF) { |
| 1155 | /* STARTUP_BIAS_ENA on */ |
| 1156 | wm8900_write(codec, WM8900_REG_POWER1, |
| 1157 | WM8900_REG_POWER1_STARTUP_BIAS_ENA); |
| 1158 | |
| 1159 | /* Startup bias mode */ |
| 1160 | wm8900_write(codec, WM8900_REG_ADDCTL, |
| 1161 | WM8900_REG_ADDCTL_BIAS_SRC | |
| 1162 | WM8900_REG_ADDCTL_VMID_SOFTST); |
| 1163 | |
| 1164 | /* VMID 2x50k */ |
| 1165 | wm8900_write(codec, WM8900_REG_POWER1, |
| 1166 | WM8900_REG_POWER1_STARTUP_BIAS_ENA | 0x1); |
| 1167 | |
| 1168 | /* Allow capacitors to charge */ |
| 1169 | schedule_timeout_interruptible(msecs_to_jiffies(400)); |
| 1170 | |
| 1171 | /* Enable bias */ |
| 1172 | wm8900_write(codec, WM8900_REG_POWER1, |
| 1173 | WM8900_REG_POWER1_STARTUP_BIAS_ENA | |
| 1174 | WM8900_REG_POWER1_BIAS_ENA | 0x1); |
| 1175 | |
| 1176 | wm8900_write(codec, WM8900_REG_ADDCTL, 0); |
| 1177 | |
| 1178 | wm8900_write(codec, WM8900_REG_POWER1, |
| 1179 | WM8900_REG_POWER1_BIAS_ENA | 0x1); |
| 1180 | } |
| 1181 | |
| 1182 | reg = wm8900_read(codec, WM8900_REG_POWER1); |
| 1183 | wm8900_write(codec, WM8900_REG_POWER1, |
| 1184 | (reg & WM8900_REG_POWER1_FLL_ENA) | |
| 1185 | WM8900_REG_POWER1_BIAS_ENA | 0x1); |
| 1186 | wm8900_write(codec, WM8900_REG_POWER2, |
| 1187 | WM8900_REG_POWER2_SYSCLK_ENA); |
| 1188 | wm8900_write(codec, WM8900_REG_POWER3, 0); |
| 1189 | break; |
| 1190 | |
| 1191 | case SND_SOC_BIAS_OFF: |
| 1192 | /* Startup bias enable */ |
| 1193 | reg = wm8900_read(codec, WM8900_REG_POWER1); |
| 1194 | wm8900_write(codec, WM8900_REG_POWER1, |
| 1195 | reg & WM8900_REG_POWER1_STARTUP_BIAS_ENA); |
| 1196 | wm8900_write(codec, WM8900_REG_ADDCTL, |
| 1197 | WM8900_REG_ADDCTL_BIAS_SRC | |
| 1198 | WM8900_REG_ADDCTL_VMID_SOFTST); |
| 1199 | |
| 1200 | /* Discharge caps */ |
| 1201 | wm8900_write(codec, WM8900_REG_POWER1, |
| 1202 | WM8900_REG_POWER1_STARTUP_BIAS_ENA); |
| 1203 | schedule_timeout_interruptible(msecs_to_jiffies(500)); |
| 1204 | |
| 1205 | /* Remove clamp */ |
| 1206 | wm8900_write(codec, WM8900_REG_HPCTL1, 0); |
| 1207 | |
| 1208 | /* Power down */ |
| 1209 | wm8900_write(codec, WM8900_REG_ADDCTL, 0); |
| 1210 | wm8900_write(codec, WM8900_REG_POWER1, 0); |
| 1211 | wm8900_write(codec, WM8900_REG_POWER2, 0); |
| 1212 | wm8900_write(codec, WM8900_REG_POWER3, 0); |
| 1213 | |
| 1214 | /* Need to let things settle before stopping the clock |
| 1215 | * to ensure that restart works, see "Stopping the |
| 1216 | * master clock" in the datasheet. */ |
| 1217 | schedule_timeout_interruptible(msecs_to_jiffies(1)); |
| 1218 | wm8900_write(codec, WM8900_REG_POWER2, |
| 1219 | WM8900_REG_POWER2_SYSCLK_ENA); |
| 1220 | break; |
| 1221 | } |
| 1222 | codec->bias_level = level; |
| 1223 | return 0; |
| 1224 | } |
| 1225 | |
| 1226 | static int wm8900_suspend(struct platform_device *pdev, pm_message_t state) |
| 1227 | { |
| 1228 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
| 1229 | struct snd_soc_codec *codec = socdev->codec; |
| 1230 | struct wm8900_priv *wm8900 = codec->private_data; |
| 1231 | int fll_out = wm8900->fll_out; |
| 1232 | int fll_in = wm8900->fll_in; |
| 1233 | int ret; |
| 1234 | |
| 1235 | /* Stop the FLL in an orderly fashion */ |
| 1236 | ret = wm8900_set_fll(codec, 0, 0, 0); |
| 1237 | if (ret != 0) { |
| 1238 | dev_err(&pdev->dev, "Failed to stop FLL\n"); |
| 1239 | return ret; |
| 1240 | } |
| 1241 | |
| 1242 | wm8900->fll_out = fll_out; |
| 1243 | wm8900->fll_in = fll_in; |
| 1244 | |
| 1245 | wm8900_set_bias_level(codec, SND_SOC_BIAS_OFF); |
| 1246 | |
| 1247 | return 0; |
| 1248 | } |
| 1249 | |
| 1250 | static int wm8900_resume(struct platform_device *pdev) |
| 1251 | { |
| 1252 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
| 1253 | struct snd_soc_codec *codec = socdev->codec; |
| 1254 | struct wm8900_priv *wm8900 = codec->private_data; |
| 1255 | u16 *cache; |
| 1256 | int i, ret; |
| 1257 | |
| 1258 | cache = kmemdup(codec->reg_cache, sizeof(wm8900_reg_defaults), |
| 1259 | GFP_KERNEL); |
| 1260 | |
| 1261 | wm8900_reset(codec); |
| 1262 | wm8900_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |
| 1263 | |
| 1264 | /* Restart the FLL? */ |
| 1265 | if (wm8900->fll_out) { |
| 1266 | int fll_out = wm8900->fll_out; |
| 1267 | int fll_in = wm8900->fll_in; |
| 1268 | |
| 1269 | wm8900->fll_in = 0; |
| 1270 | wm8900->fll_out = 0; |
| 1271 | |
| 1272 | ret = wm8900_set_fll(codec, 0, fll_in, fll_out); |
| 1273 | if (ret != 0) { |
| 1274 | dev_err(&pdev->dev, "Failed to restart FLL\n"); |
| 1275 | return ret; |
| 1276 | } |
| 1277 | } |
| 1278 | |
| 1279 | if (cache) { |
| 1280 | for (i = 0; i < WM8900_MAXREG; i++) |
| 1281 | wm8900_write(codec, i, cache[i]); |
| 1282 | kfree(cache); |
| 1283 | } else |
| 1284 | dev_err(&pdev->dev, "Unable to allocate register cache\n"); |
| 1285 | |
| 1286 | return 0; |
| 1287 | } |
| 1288 | |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1289 | static struct snd_soc_codec *wm8900_codec; |
| 1290 | |
| 1291 | static int wm8900_i2c_probe(struct i2c_client *i2c, |
| 1292 | const struct i2c_device_id *id) |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1293 | { |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1294 | struct wm8900_priv *wm8900; |
| 1295 | struct snd_soc_codec *codec; |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1296 | unsigned int reg; |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1297 | int ret; |
| 1298 | |
| 1299 | wm8900 = kzalloc(sizeof(struct wm8900_priv), GFP_KERNEL); |
| 1300 | if (wm8900 == NULL) |
| 1301 | return -ENOMEM; |
| 1302 | |
| 1303 | codec = &wm8900->codec; |
| 1304 | codec->private_data = wm8900; |
| 1305 | codec->reg_cache = &wm8900->reg_cache[0]; |
| 1306 | codec->reg_cache_size = WM8900_MAXREG; |
| 1307 | |
| 1308 | mutex_init(&codec->mutex); |
| 1309 | INIT_LIST_HEAD(&codec->dapm_widgets); |
| 1310 | INIT_LIST_HEAD(&codec->dapm_paths); |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1311 | |
| 1312 | codec->name = "WM8900"; |
| 1313 | codec->owner = THIS_MODULE; |
| 1314 | codec->read = wm8900_read; |
| 1315 | codec->write = wm8900_write; |
| 1316 | codec->dai = &wm8900_dai; |
| 1317 | codec->num_dai = 1; |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1318 | codec->hw_write = (hw_write_t)i2c_master_send; |
| 1319 | codec->control_data = i2c; |
| 1320 | codec->set_bias_level = wm8900_set_bias_level; |
| 1321 | codec->dev = &i2c->dev; |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1322 | |
| 1323 | reg = wm8900_read(codec, WM8900_REG_ID); |
| 1324 | if (reg != 0x8900) { |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1325 | dev_err(&i2c->dev, "Device is not a WM8900 - ID %x\n", reg); |
| 1326 | ret = -ENODEV; |
| 1327 | goto err; |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1328 | } |
| 1329 | |
| 1330 | /* Read back from the chip */ |
| 1331 | reg = wm8900_chip_read(codec, WM8900_REG_POWER1); |
| 1332 | reg = (reg >> 12) & 0xf; |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1333 | dev_info(&i2c->dev, "WM8900 revision %d\n", reg); |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1334 | |
| 1335 | wm8900_reset(codec); |
| 1336 | |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1337 | /* Turn the chip on */ |
| 1338 | wm8900_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |
| 1339 | |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1340 | /* Latch the volume update bits */ |
| 1341 | wm8900_write(codec, WM8900_REG_LINVOL, |
| 1342 | wm8900_read(codec, WM8900_REG_LINVOL) | 0x100); |
| 1343 | wm8900_write(codec, WM8900_REG_RINVOL, |
| 1344 | wm8900_read(codec, WM8900_REG_RINVOL) | 0x100); |
| 1345 | wm8900_write(codec, WM8900_REG_LOUT1CTL, |
| 1346 | wm8900_read(codec, WM8900_REG_LOUT1CTL) | 0x100); |
| 1347 | wm8900_write(codec, WM8900_REG_ROUT1CTL, |
| 1348 | wm8900_read(codec, WM8900_REG_ROUT1CTL) | 0x100); |
| 1349 | wm8900_write(codec, WM8900_REG_LOUT2CTL, |
| 1350 | wm8900_read(codec, WM8900_REG_LOUT2CTL) | 0x100); |
| 1351 | wm8900_write(codec, WM8900_REG_ROUT2CTL, |
| 1352 | wm8900_read(codec, WM8900_REG_ROUT2CTL) | 0x100); |
| 1353 | wm8900_write(codec, WM8900_REG_LDAC_DV, |
| 1354 | wm8900_read(codec, WM8900_REG_LDAC_DV) | 0x100); |
| 1355 | wm8900_write(codec, WM8900_REG_RDAC_DV, |
| 1356 | wm8900_read(codec, WM8900_REG_RDAC_DV) | 0x100); |
| 1357 | wm8900_write(codec, WM8900_REG_LADC_DV, |
| 1358 | wm8900_read(codec, WM8900_REG_LADC_DV) | 0x100); |
| 1359 | wm8900_write(codec, WM8900_REG_RADC_DV, |
| 1360 | wm8900_read(codec, WM8900_REG_RADC_DV) | 0x100); |
| 1361 | |
| 1362 | /* Set the DAC and mixer output bias */ |
| 1363 | wm8900_write(codec, WM8900_REG_OUTBIASCTL, 0x81); |
| 1364 | |
Mark Brown | f075233 | 2008-12-09 12:51:56 +0000 | [diff] [blame] | 1365 | wm8900_dai.dev = &i2c->dev; |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1366 | |
| 1367 | wm8900_codec = codec; |
| 1368 | |
| 1369 | ret = snd_soc_register_codec(codec); |
| 1370 | if (ret != 0) { |
| 1371 | dev_err(&i2c->dev, "Failed to register codec: %d\n", ret); |
| 1372 | goto err; |
| 1373 | } |
| 1374 | |
| 1375 | ret = snd_soc_register_dai(&wm8900_dai); |
| 1376 | if (ret != 0) { |
| 1377 | dev_err(&i2c->dev, "Failed to register DAI: %d\n", ret); |
| 1378 | goto err_codec; |
| 1379 | } |
| 1380 | |
| 1381 | return ret; |
| 1382 | |
| 1383 | err_codec: |
| 1384 | snd_soc_unregister_codec(codec); |
| 1385 | err: |
| 1386 | kfree(wm8900); |
| 1387 | wm8900_codec = NULL; |
| 1388 | return ret; |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1389 | } |
| 1390 | |
Jean Delvare | 8ae6a55 | 2008-10-15 19:58:12 +0200 | [diff] [blame] | 1391 | static int wm8900_i2c_remove(struct i2c_client *client) |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1392 | { |
Mark Brown | f075233 | 2008-12-09 12:51:56 +0000 | [diff] [blame] | 1393 | snd_soc_unregister_dai(&wm8900_dai); |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1394 | snd_soc_unregister_codec(wm8900_codec); |
| 1395 | |
| 1396 | wm8900_set_bias_level(wm8900_codec, SND_SOC_BIAS_OFF); |
| 1397 | |
Mark Brown | f075233 | 2008-12-09 12:51:56 +0000 | [diff] [blame] | 1398 | wm8900_dai.dev = NULL; |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1399 | kfree(wm8900_codec->private_data); |
| 1400 | wm8900_codec = NULL; |
| 1401 | |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1402 | return 0; |
| 1403 | } |
| 1404 | |
Jean Delvare | 8ae6a55 | 2008-10-15 19:58:12 +0200 | [diff] [blame] | 1405 | static const struct i2c_device_id wm8900_i2c_id[] = { |
| 1406 | { "wm8900", 0 }, |
| 1407 | { } |
| 1408 | }; |
| 1409 | MODULE_DEVICE_TABLE(i2c, wm8900_i2c_id); |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1410 | |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1411 | static struct i2c_driver wm8900_i2c_driver = { |
| 1412 | .driver = { |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1413 | .name = "WM8900", |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1414 | .owner = THIS_MODULE, |
| 1415 | }, |
Jean Delvare | 8ae6a55 | 2008-10-15 19:58:12 +0200 | [diff] [blame] | 1416 | .probe = wm8900_i2c_probe, |
| 1417 | .remove = wm8900_i2c_remove, |
| 1418 | .id_table = wm8900_i2c_id, |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1419 | }; |
| 1420 | |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1421 | static int wm8900_probe(struct platform_device *pdev) |
| 1422 | { |
| 1423 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1424 | struct snd_soc_codec *codec; |
| 1425 | int ret = 0; |
| 1426 | |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1427 | if (!wm8900_codec) { |
Mark Brown | f075233 | 2008-12-09 12:51:56 +0000 | [diff] [blame] | 1428 | dev_err(&pdev->dev, "I2C client not yet instantiated\n"); |
| 1429 | return -ENODEV; |
| 1430 | } |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1431 | |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1432 | codec = wm8900_codec; |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1433 | socdev->codec = codec; |
| 1434 | |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1435 | /* Register pcms */ |
| 1436 | ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1); |
| 1437 | if (ret < 0) { |
| 1438 | dev_err(&pdev->dev, "Failed to register new PCMs\n"); |
| 1439 | goto pcm_err; |
| 1440 | } |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1441 | |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1442 | wm8900_add_controls(codec); |
| 1443 | wm8900_add_widgets(codec); |
Mark Brown | f075233 | 2008-12-09 12:51:56 +0000 | [diff] [blame] | 1444 | |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1445 | ret = snd_soc_init_card(socdev); |
| 1446 | if (ret < 0) { |
| 1447 | dev_err(&pdev->dev, "Failed to register card\n"); |
| 1448 | goto card_err; |
| 1449 | } |
Mark Brown | f075233 | 2008-12-09 12:51:56 +0000 | [diff] [blame] | 1450 | |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1451 | return ret; |
Mark Brown | 78e19a3 | 2008-12-10 15:38:36 +0000 | [diff] [blame] | 1452 | |
| 1453 | card_err: |
| 1454 | snd_soc_free_pcms(socdev); |
| 1455 | snd_soc_dapm_free(socdev); |
| 1456 | pcm_err: |
| 1457 | return ret; |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1458 | } |
| 1459 | |
| 1460 | /* power down chip */ |
| 1461 | static int wm8900_remove(struct platform_device *pdev) |
| 1462 | { |
| 1463 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1464 | |
| 1465 | snd_soc_free_pcms(socdev); |
| 1466 | snd_soc_dapm_free(socdev); |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1467 | |
| 1468 | return 0; |
| 1469 | } |
| 1470 | |
| 1471 | struct snd_soc_codec_device soc_codec_dev_wm8900 = { |
| 1472 | .probe = wm8900_probe, |
| 1473 | .remove = wm8900_remove, |
| 1474 | .suspend = wm8900_suspend, |
| 1475 | .resume = wm8900_resume, |
| 1476 | }; |
| 1477 | EXPORT_SYMBOL_GPL(soc_codec_dev_wm8900); |
| 1478 | |
Takashi Iwai | c9b3a40 | 2008-12-10 07:47:22 +0100 | [diff] [blame] | 1479 | static int __init wm8900_modinit(void) |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 1480 | { |
Mark Brown | f075233 | 2008-12-09 12:51:56 +0000 | [diff] [blame] | 1481 | return i2c_add_driver(&wm8900_i2c_driver); |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 1482 | } |
| 1483 | module_init(wm8900_modinit); |
| 1484 | |
| 1485 | static void __exit wm8900_exit(void) |
| 1486 | { |
Mark Brown | f075233 | 2008-12-09 12:51:56 +0000 | [diff] [blame] | 1487 | i2c_del_driver(&wm8900_i2c_driver); |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 1488 | } |
| 1489 | module_exit(wm8900_exit); |
| 1490 | |
Mark Brown | 0e0e16a | 2008-08-04 12:06:45 +0100 | [diff] [blame] | 1491 | MODULE_DESCRIPTION("ASoC WM8900 driver"); |
| 1492 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfonmicro.com>"); |
| 1493 | MODULE_LICENSE("GPL"); |