Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 1 | /* |
| 2 | * wm8580.c -- WM8580 ALSA Soc Audio driver |
| 3 | * |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 4 | * Copyright 2008, 2009 Wolfson Microelectronics PLC. |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2 of the License, or (at your |
| 9 | * option) any later version. |
| 10 | * |
| 11 | * Notes: |
| 12 | * The WM8580 is a multichannel codec with S/PDIF support, featuring six |
| 13 | * DAC channels and two ADC channels. |
| 14 | * |
| 15 | * Currently only the primary audio interface is supported - S/PDIF and |
| 16 | * the secondary audio interfaces are not. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/moduleparam.h> |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +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> |
Mark Brown | a583cd5 | 2009-06-17 17:30:14 +0100 | [diff] [blame] | 27 | #include <linux/regulator/consumer.h> |
| 28 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 29 | #include <sound/core.h> |
| 30 | #include <sound/pcm.h> |
| 31 | #include <sound/pcm_params.h> |
| 32 | #include <sound/soc.h> |
| 33 | #include <sound/soc-dapm.h> |
| 34 | #include <sound/tlv.h> |
| 35 | #include <sound/initval.h> |
| 36 | #include <asm/div64.h> |
| 37 | |
| 38 | #include "wm8580.h" |
| 39 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 40 | /* WM8580 register space */ |
| 41 | #define WM8580_PLLA1 0x00 |
| 42 | #define WM8580_PLLA2 0x01 |
| 43 | #define WM8580_PLLA3 0x02 |
| 44 | #define WM8580_PLLA4 0x03 |
| 45 | #define WM8580_PLLB1 0x04 |
| 46 | #define WM8580_PLLB2 0x05 |
| 47 | #define WM8580_PLLB3 0x06 |
| 48 | #define WM8580_PLLB4 0x07 |
| 49 | #define WM8580_CLKSEL 0x08 |
| 50 | #define WM8580_PAIF1 0x09 |
| 51 | #define WM8580_PAIF2 0x0A |
| 52 | #define WM8580_SAIF1 0x0B |
| 53 | #define WM8580_PAIF3 0x0C |
| 54 | #define WM8580_PAIF4 0x0D |
| 55 | #define WM8580_SAIF2 0x0E |
| 56 | #define WM8580_DAC_CONTROL1 0x0F |
| 57 | #define WM8580_DAC_CONTROL2 0x10 |
| 58 | #define WM8580_DAC_CONTROL3 0x11 |
| 59 | #define WM8580_DAC_CONTROL4 0x12 |
| 60 | #define WM8580_DAC_CONTROL5 0x13 |
| 61 | #define WM8580_DIGITAL_ATTENUATION_DACL1 0x14 |
| 62 | #define WM8580_DIGITAL_ATTENUATION_DACR1 0x15 |
| 63 | #define WM8580_DIGITAL_ATTENUATION_DACL2 0x16 |
| 64 | #define WM8580_DIGITAL_ATTENUATION_DACR2 0x17 |
| 65 | #define WM8580_DIGITAL_ATTENUATION_DACL3 0x18 |
| 66 | #define WM8580_DIGITAL_ATTENUATION_DACR3 0x19 |
| 67 | #define WM8580_MASTER_DIGITAL_ATTENUATION 0x1C |
| 68 | #define WM8580_ADC_CONTROL1 0x1D |
| 69 | #define WM8580_SPDTXCHAN0 0x1E |
| 70 | #define WM8580_SPDTXCHAN1 0x1F |
| 71 | #define WM8580_SPDTXCHAN2 0x20 |
| 72 | #define WM8580_SPDTXCHAN3 0x21 |
| 73 | #define WM8580_SPDTXCHAN4 0x22 |
| 74 | #define WM8580_SPDTXCHAN5 0x23 |
| 75 | #define WM8580_SPDMODE 0x24 |
| 76 | #define WM8580_INTMASK 0x25 |
| 77 | #define WM8580_GPO1 0x26 |
| 78 | #define WM8580_GPO2 0x27 |
| 79 | #define WM8580_GPO3 0x28 |
| 80 | #define WM8580_GPO4 0x29 |
| 81 | #define WM8580_GPO5 0x2A |
| 82 | #define WM8580_INTSTAT 0x2B |
| 83 | #define WM8580_SPDRXCHAN1 0x2C |
| 84 | #define WM8580_SPDRXCHAN2 0x2D |
| 85 | #define WM8580_SPDRXCHAN3 0x2E |
| 86 | #define WM8580_SPDRXCHAN4 0x2F |
| 87 | #define WM8580_SPDRXCHAN5 0x30 |
| 88 | #define WM8580_SPDSTAT 0x31 |
| 89 | #define WM8580_PWRDN1 0x32 |
| 90 | #define WM8580_PWRDN2 0x33 |
| 91 | #define WM8580_READBACK 0x34 |
| 92 | #define WM8580_RESET 0x35 |
| 93 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 94 | #define WM8580_MAX_REGISTER 0x35 |
| 95 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 96 | /* PLLB4 (register 7h) */ |
| 97 | #define WM8580_PLLB4_MCLKOUTSRC_MASK 0x60 |
| 98 | #define WM8580_PLLB4_MCLKOUTSRC_PLLA 0x20 |
| 99 | #define WM8580_PLLB4_MCLKOUTSRC_PLLB 0x40 |
| 100 | #define WM8580_PLLB4_MCLKOUTSRC_OSC 0x60 |
| 101 | |
| 102 | #define WM8580_PLLB4_CLKOUTSRC_MASK 0x180 |
| 103 | #define WM8580_PLLB4_CLKOUTSRC_PLLACLK 0x080 |
| 104 | #define WM8580_PLLB4_CLKOUTSRC_PLLBCLK 0x100 |
| 105 | #define WM8580_PLLB4_CLKOUTSRC_OSCCLK 0x180 |
| 106 | |
| 107 | /* CLKSEL (register 8h) */ |
| 108 | #define WM8580_CLKSEL_DAC_CLKSEL_MASK 0x03 |
| 109 | #define WM8580_CLKSEL_DAC_CLKSEL_PLLA 0x01 |
| 110 | #define WM8580_CLKSEL_DAC_CLKSEL_PLLB 0x02 |
| 111 | |
| 112 | /* AIF control 1 (registers 9h-bh) */ |
| 113 | #define WM8580_AIF_RATE_MASK 0x7 |
| 114 | #define WM8580_AIF_RATE_128 0x0 |
| 115 | #define WM8580_AIF_RATE_192 0x1 |
| 116 | #define WM8580_AIF_RATE_256 0x2 |
| 117 | #define WM8580_AIF_RATE_384 0x3 |
| 118 | #define WM8580_AIF_RATE_512 0x4 |
| 119 | #define WM8580_AIF_RATE_768 0x5 |
| 120 | #define WM8580_AIF_RATE_1152 0x6 |
| 121 | |
| 122 | #define WM8580_AIF_BCLKSEL_MASK 0x18 |
| 123 | #define WM8580_AIF_BCLKSEL_64 0x00 |
| 124 | #define WM8580_AIF_BCLKSEL_128 0x08 |
| 125 | #define WM8580_AIF_BCLKSEL_256 0x10 |
| 126 | #define WM8580_AIF_BCLKSEL_SYSCLK 0x18 |
| 127 | |
| 128 | #define WM8580_AIF_MS 0x20 |
| 129 | |
| 130 | #define WM8580_AIF_CLKSRC_MASK 0xc0 |
| 131 | #define WM8580_AIF_CLKSRC_PLLA 0x40 |
| 132 | #define WM8580_AIF_CLKSRC_PLLB 0x40 |
| 133 | #define WM8580_AIF_CLKSRC_MCLK 0xc0 |
| 134 | |
| 135 | /* AIF control 2 (registers ch-eh) */ |
| 136 | #define WM8580_AIF_FMT_MASK 0x03 |
| 137 | #define WM8580_AIF_FMT_RIGHTJ 0x00 |
| 138 | #define WM8580_AIF_FMT_LEFTJ 0x01 |
| 139 | #define WM8580_AIF_FMT_I2S 0x02 |
| 140 | #define WM8580_AIF_FMT_DSP 0x03 |
| 141 | |
| 142 | #define WM8580_AIF_LENGTH_MASK 0x0c |
| 143 | #define WM8580_AIF_LENGTH_16 0x00 |
| 144 | #define WM8580_AIF_LENGTH_20 0x04 |
| 145 | #define WM8580_AIF_LENGTH_24 0x08 |
| 146 | #define WM8580_AIF_LENGTH_32 0x0c |
| 147 | |
| 148 | #define WM8580_AIF_LRP 0x10 |
| 149 | #define WM8580_AIF_BCP 0x20 |
| 150 | |
| 151 | /* Powerdown Register 1 (register 32h) */ |
| 152 | #define WM8580_PWRDN1_PWDN 0x001 |
| 153 | #define WM8580_PWRDN1_ALLDACPD 0x040 |
| 154 | |
| 155 | /* Powerdown Register 2 (register 33h) */ |
| 156 | #define WM8580_PWRDN2_OSSCPD 0x001 |
| 157 | #define WM8580_PWRDN2_PLLAPD 0x002 |
| 158 | #define WM8580_PWRDN2_PLLBPD 0x004 |
| 159 | #define WM8580_PWRDN2_SPDIFPD 0x008 |
| 160 | #define WM8580_PWRDN2_SPDIFTXD 0x010 |
| 161 | #define WM8580_PWRDN2_SPDIFRXD 0x020 |
| 162 | |
| 163 | #define WM8580_DAC_CONTROL5_MUTEALL 0x10 |
| 164 | |
| 165 | /* |
| 166 | * wm8580 register cache |
| 167 | * We can't read the WM8580 register space when we |
| 168 | * are using 2 wire for device control, so we cache them instead. |
| 169 | */ |
| 170 | static const u16 wm8580_reg[] = { |
| 171 | 0x0121, 0x017e, 0x007d, 0x0014, /*R3*/ |
| 172 | 0x0121, 0x017e, 0x007d, 0x0194, /*R7*/ |
| 173 | 0x001c, 0x0002, 0x0002, 0x00c2, /*R11*/ |
| 174 | 0x0182, 0x0082, 0x000a, 0x0024, /*R15*/ |
| 175 | 0x0009, 0x0000, 0x00ff, 0x0000, /*R19*/ |
| 176 | 0x00ff, 0x00ff, 0x00ff, 0x00ff, /*R23*/ |
| 177 | 0x00ff, 0x00ff, 0x00ff, 0x00ff, /*R27*/ |
| 178 | 0x01f0, 0x0040, 0x0000, 0x0000, /*R31(0x1F)*/ |
| 179 | 0x0000, 0x0000, 0x0031, 0x000b, /*R35*/ |
| 180 | 0x0039, 0x0000, 0x0010, 0x0032, /*R39*/ |
| 181 | 0x0054, 0x0076, 0x0098, 0x0000, /*R43(0x2B)*/ |
| 182 | 0x0000, 0x0000, 0x0000, 0x0000, /*R47*/ |
| 183 | 0x0000, 0x0000, 0x005e, 0x003e, /*R51(0x33)*/ |
| 184 | 0x0000, 0x0000 /*R53*/ |
| 185 | }; |
| 186 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 187 | struct pll_state { |
| 188 | unsigned int in; |
| 189 | unsigned int out; |
| 190 | }; |
| 191 | |
Mark Brown | a583cd5 | 2009-06-17 17:30:14 +0100 | [diff] [blame] | 192 | #define WM8580_NUM_SUPPLIES 3 |
| 193 | static const char *wm8580_supply_names[WM8580_NUM_SUPPLIES] = { |
| 194 | "AVDD", |
| 195 | "DVDD", |
| 196 | "PVDD", |
| 197 | }; |
| 198 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 199 | /* codec private data */ |
| 200 | struct wm8580_priv { |
| 201 | struct snd_soc_codec codec; |
Mark Brown | a583cd5 | 2009-06-17 17:30:14 +0100 | [diff] [blame] | 202 | struct regulator_bulk_data supplies[WM8580_NUM_SUPPLIES]; |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 203 | u16 reg_cache[WM8580_MAX_REGISTER + 1]; |
| 204 | struct pll_state a; |
| 205 | struct pll_state b; |
| 206 | }; |
| 207 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 208 | static const DECLARE_TLV_DB_SCALE(dac_tlv, -12750, 50, 1); |
| 209 | |
| 210 | static int wm8580_out_vu(struct snd_kcontrol *kcontrol, |
| 211 | struct snd_ctl_elem_value *ucontrol) |
| 212 | { |
Mark Brown | ccb077f | 2009-04-21 12:57:00 +0100 | [diff] [blame] | 213 | struct soc_mixer_control *mc = |
| 214 | (struct soc_mixer_control *)kcontrol->private_value; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 215 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 216 | u16 *reg_cache = codec->reg_cache; |
Mark Brown | ccb077f | 2009-04-21 12:57:00 +0100 | [diff] [blame] | 217 | unsigned int reg = mc->reg; |
| 218 | unsigned int reg2 = mc->rreg; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 219 | int ret; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 220 | |
| 221 | /* Clear the register cache so we write without VU set */ |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 222 | reg_cache[reg] = 0; |
| 223 | reg_cache[reg2] = 0; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 224 | |
| 225 | ret = snd_soc_put_volsw_2r(kcontrol, ucontrol); |
| 226 | if (ret < 0) |
| 227 | return ret; |
| 228 | |
| 229 | /* Now write again with the volume update bit set */ |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 230 | snd_soc_update_bits(codec, reg, 0x100, 0x100); |
| 231 | snd_soc_update_bits(codec, reg2, 0x100, 0x100); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 232 | |
| 233 | return 0; |
| 234 | } |
| 235 | |
Mark Brown | ccb077f | 2009-04-21 12:57:00 +0100 | [diff] [blame] | 236 | #define SOC_WM8580_OUT_DOUBLE_R_TLV(xname, reg_left, reg_right, xshift, xmax, \ |
| 237 | xinvert, tlv_array) \ |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 238 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ |
| 239 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ |
| 240 | SNDRV_CTL_ELEM_ACCESS_READWRITE, \ |
| 241 | .tlv.p = (tlv_array), \ |
| 242 | .info = snd_soc_info_volsw_2r, \ |
| 243 | .get = snd_soc_get_volsw_2r, .put = wm8580_out_vu, \ |
Mark Brown | ccb077f | 2009-04-21 12:57:00 +0100 | [diff] [blame] | 244 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
| 245 | {.reg = reg_left, .rreg = reg_right, .shift = xshift, \ |
| 246 | .max = xmax, .invert = xinvert} } |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 247 | |
| 248 | static const struct snd_kcontrol_new wm8580_snd_controls[] = { |
| 249 | SOC_WM8580_OUT_DOUBLE_R_TLV("DAC1 Playback Volume", |
| 250 | WM8580_DIGITAL_ATTENUATION_DACL1, |
| 251 | WM8580_DIGITAL_ATTENUATION_DACR1, |
| 252 | 0, 0xff, 0, dac_tlv), |
| 253 | SOC_WM8580_OUT_DOUBLE_R_TLV("DAC2 Playback Volume", |
| 254 | WM8580_DIGITAL_ATTENUATION_DACL2, |
| 255 | WM8580_DIGITAL_ATTENUATION_DACR2, |
| 256 | 0, 0xff, 0, dac_tlv), |
| 257 | SOC_WM8580_OUT_DOUBLE_R_TLV("DAC3 Playback Volume", |
| 258 | WM8580_DIGITAL_ATTENUATION_DACL3, |
| 259 | WM8580_DIGITAL_ATTENUATION_DACR3, |
| 260 | 0, 0xff, 0, dac_tlv), |
| 261 | |
| 262 | SOC_SINGLE("DAC1 Deemphasis Switch", WM8580_DAC_CONTROL3, 0, 1, 0), |
| 263 | SOC_SINGLE("DAC2 Deemphasis Switch", WM8580_DAC_CONTROL3, 1, 1, 0), |
| 264 | SOC_SINGLE("DAC3 Deemphasis Switch", WM8580_DAC_CONTROL3, 2, 1, 0), |
| 265 | |
| 266 | SOC_DOUBLE("DAC1 Invert Switch", WM8580_DAC_CONTROL4, 0, 1, 1, 0), |
| 267 | SOC_DOUBLE("DAC2 Invert Switch", WM8580_DAC_CONTROL4, 2, 3, 1, 0), |
| 268 | SOC_DOUBLE("DAC3 Invert Switch", WM8580_DAC_CONTROL4, 4, 5, 1, 0), |
| 269 | |
| 270 | SOC_SINGLE("DAC ZC Switch", WM8580_DAC_CONTROL5, 5, 1, 0), |
| 271 | SOC_SINGLE("DAC1 Switch", WM8580_DAC_CONTROL5, 0, 1, 0), |
| 272 | SOC_SINGLE("DAC2 Switch", WM8580_DAC_CONTROL5, 1, 1, 0), |
| 273 | SOC_SINGLE("DAC3 Switch", WM8580_DAC_CONTROL5, 2, 1, 0), |
| 274 | |
| 275 | SOC_DOUBLE("ADC Mute Switch", WM8580_ADC_CONTROL1, 0, 1, 1, 0), |
| 276 | SOC_SINGLE("ADC High-Pass Filter Switch", WM8580_ADC_CONTROL1, 4, 1, 0), |
| 277 | }; |
| 278 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 279 | static const struct snd_soc_dapm_widget wm8580_dapm_widgets[] = { |
| 280 | SND_SOC_DAPM_DAC("DAC1", "Playback", WM8580_PWRDN1, 2, 1), |
| 281 | SND_SOC_DAPM_DAC("DAC2", "Playback", WM8580_PWRDN1, 3, 1), |
| 282 | SND_SOC_DAPM_DAC("DAC3", "Playback", WM8580_PWRDN1, 4, 1), |
| 283 | |
| 284 | SND_SOC_DAPM_OUTPUT("VOUT1L"), |
| 285 | SND_SOC_DAPM_OUTPUT("VOUT1R"), |
| 286 | SND_SOC_DAPM_OUTPUT("VOUT2L"), |
| 287 | SND_SOC_DAPM_OUTPUT("VOUT2R"), |
| 288 | SND_SOC_DAPM_OUTPUT("VOUT3L"), |
| 289 | SND_SOC_DAPM_OUTPUT("VOUT3R"), |
| 290 | |
| 291 | SND_SOC_DAPM_ADC("ADC", "Capture", WM8580_PWRDN1, 1, 1), |
| 292 | |
| 293 | SND_SOC_DAPM_INPUT("AINL"), |
| 294 | SND_SOC_DAPM_INPUT("AINR"), |
| 295 | }; |
| 296 | |
| 297 | static const struct snd_soc_dapm_route audio_map[] = { |
| 298 | { "VOUT1L", NULL, "DAC1" }, |
| 299 | { "VOUT1R", NULL, "DAC1" }, |
| 300 | |
| 301 | { "VOUT2L", NULL, "DAC2" }, |
| 302 | { "VOUT2R", NULL, "DAC2" }, |
| 303 | |
| 304 | { "VOUT3L", NULL, "DAC3" }, |
| 305 | { "VOUT3R", NULL, "DAC3" }, |
| 306 | |
| 307 | { "ADC", NULL, "AINL" }, |
| 308 | { "ADC", NULL, "AINR" }, |
| 309 | }; |
| 310 | |
| 311 | static int wm8580_add_widgets(struct snd_soc_codec *codec) |
| 312 | { |
| 313 | snd_soc_dapm_new_controls(codec, wm8580_dapm_widgets, |
| 314 | ARRAY_SIZE(wm8580_dapm_widgets)); |
| 315 | |
| 316 | snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map)); |
| 317 | |
| 318 | snd_soc_dapm_new_widgets(codec); |
| 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | /* PLL divisors */ |
| 323 | struct _pll_div { |
| 324 | u32 prescale:1; |
| 325 | u32 postscale:1; |
| 326 | u32 freqmode:2; |
| 327 | u32 n:4; |
| 328 | u32 k:24; |
| 329 | }; |
| 330 | |
| 331 | /* The size in bits of the pll divide */ |
| 332 | #define FIXED_PLL_SIZE (1 << 22) |
| 333 | |
| 334 | /* PLL rate to output rate divisions */ |
| 335 | static struct { |
| 336 | unsigned int div; |
| 337 | unsigned int freqmode; |
| 338 | unsigned int postscale; |
| 339 | } post_table[] = { |
| 340 | { 2, 0, 0 }, |
| 341 | { 4, 0, 1 }, |
| 342 | { 4, 1, 0 }, |
| 343 | { 8, 1, 1 }, |
| 344 | { 8, 2, 0 }, |
| 345 | { 16, 2, 1 }, |
| 346 | { 12, 3, 0 }, |
| 347 | { 24, 3, 1 } |
| 348 | }; |
| 349 | |
| 350 | static int pll_factors(struct _pll_div *pll_div, unsigned int target, |
| 351 | unsigned int source) |
| 352 | { |
| 353 | u64 Kpart; |
| 354 | unsigned int K, Ndiv, Nmod; |
| 355 | int i; |
| 356 | |
Roel Kluin | 449bd54 | 2009-05-27 17:08:39 -0700 | [diff] [blame] | 357 | pr_debug("wm8580: PLL %uHz->%uHz\n", source, target); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 358 | |
| 359 | /* Scale the output frequency up; the PLL should run in the |
| 360 | * region of 90-100MHz. |
| 361 | */ |
| 362 | for (i = 0; i < ARRAY_SIZE(post_table); i++) { |
| 363 | if (target * post_table[i].div >= 90000000 && |
| 364 | target * post_table[i].div <= 100000000) { |
| 365 | pll_div->freqmode = post_table[i].freqmode; |
| 366 | pll_div->postscale = post_table[i].postscale; |
| 367 | target *= post_table[i].div; |
| 368 | break; |
| 369 | } |
| 370 | } |
| 371 | |
| 372 | if (i == ARRAY_SIZE(post_table)) { |
| 373 | printk(KERN_ERR "wm8580: Unable to scale output frequency " |
| 374 | "%u\n", target); |
| 375 | return -EINVAL; |
| 376 | } |
| 377 | |
| 378 | Ndiv = target / source; |
| 379 | |
| 380 | if (Ndiv < 5) { |
| 381 | source /= 2; |
| 382 | pll_div->prescale = 1; |
| 383 | Ndiv = target / source; |
| 384 | } else |
| 385 | pll_div->prescale = 0; |
| 386 | |
| 387 | if ((Ndiv < 5) || (Ndiv > 13)) { |
| 388 | printk(KERN_ERR |
Roel Kluin | 449bd54 | 2009-05-27 17:08:39 -0700 | [diff] [blame] | 389 | "WM8580 N=%u outside supported range\n", Ndiv); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 390 | return -EINVAL; |
| 391 | } |
| 392 | |
| 393 | pll_div->n = Ndiv; |
| 394 | Nmod = target % source; |
| 395 | Kpart = FIXED_PLL_SIZE * (long long)Nmod; |
| 396 | |
| 397 | do_div(Kpart, source); |
| 398 | |
| 399 | K = Kpart & 0xFFFFFFFF; |
| 400 | |
| 401 | pll_div->k = K; |
| 402 | |
| 403 | pr_debug("PLL %x.%x prescale %d freqmode %d postscale %d\n", |
| 404 | pll_div->n, pll_div->k, pll_div->prescale, pll_div->freqmode, |
| 405 | pll_div->postscale); |
| 406 | |
| 407 | return 0; |
| 408 | } |
| 409 | |
| 410 | static int wm8580_set_dai_pll(struct snd_soc_dai *codec_dai, |
| 411 | int pll_id, unsigned int freq_in, unsigned int freq_out) |
| 412 | { |
| 413 | int offset; |
| 414 | struct snd_soc_codec *codec = codec_dai->codec; |
| 415 | struct wm8580_priv *wm8580 = codec->private_data; |
| 416 | struct pll_state *state; |
| 417 | struct _pll_div pll_div; |
| 418 | unsigned int reg; |
| 419 | unsigned int pwr_mask; |
| 420 | int ret; |
| 421 | |
| 422 | /* GCC isn't able to work out the ifs below for initialising/using |
| 423 | * pll_div so suppress warnings. |
| 424 | */ |
| 425 | memset(&pll_div, 0, sizeof(pll_div)); |
| 426 | |
| 427 | switch (pll_id) { |
| 428 | case WM8580_PLLA: |
| 429 | state = &wm8580->a; |
| 430 | offset = 0; |
| 431 | pwr_mask = WM8580_PWRDN2_PLLAPD; |
| 432 | break; |
| 433 | case WM8580_PLLB: |
| 434 | state = &wm8580->b; |
| 435 | offset = 4; |
| 436 | pwr_mask = WM8580_PWRDN2_PLLBPD; |
| 437 | break; |
| 438 | default: |
| 439 | return -ENODEV; |
| 440 | } |
| 441 | |
| 442 | if (freq_in && freq_out) { |
| 443 | ret = pll_factors(&pll_div, freq_out, freq_in); |
| 444 | if (ret != 0) |
| 445 | return ret; |
| 446 | } |
| 447 | |
| 448 | state->in = freq_in; |
| 449 | state->out = freq_out; |
| 450 | |
| 451 | /* Always disable the PLL - it is not safe to leave it running |
| 452 | * while reprogramming it. |
| 453 | */ |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 454 | reg = snd_soc_read(codec, WM8580_PWRDN2); |
| 455 | snd_soc_write(codec, WM8580_PWRDN2, reg | pwr_mask); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 456 | |
| 457 | if (!freq_in || !freq_out) |
| 458 | return 0; |
| 459 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 460 | snd_soc_write(codec, WM8580_PLLA1 + offset, pll_div.k & 0x1ff); |
| 461 | snd_soc_write(codec, WM8580_PLLA2 + offset, (pll_div.k >> 9) & 0xff); |
| 462 | snd_soc_write(codec, WM8580_PLLA3 + offset, |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 463 | (pll_div.k >> 18 & 0xf) | (pll_div.n << 4)); |
| 464 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 465 | reg = snd_soc_read(codec, WM8580_PLLA4 + offset); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 466 | reg &= ~0x3f; |
| 467 | reg |= pll_div.prescale | pll_div.postscale << 1 | |
Mark Brown | ce88168 | 2009-04-21 12:35:15 +0100 | [diff] [blame] | 468 | pll_div.freqmode << 3; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 469 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 470 | snd_soc_write(codec, WM8580_PLLA4 + offset, reg); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 471 | |
| 472 | /* All done, turn it on */ |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 473 | reg = snd_soc_read(codec, WM8580_PWRDN2); |
| 474 | snd_soc_write(codec, WM8580_PWRDN2, reg & ~pwr_mask); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 475 | |
| 476 | return 0; |
| 477 | } |
| 478 | |
| 479 | /* |
| 480 | * Set PCM DAI bit size and sample rate. |
| 481 | */ |
| 482 | static int wm8580_paif_hw_params(struct snd_pcm_substream *substream, |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 483 | struct snd_pcm_hw_params *params, |
| 484 | struct snd_soc_dai *dai) |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 485 | { |
| 486 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 487 | struct snd_soc_device *socdev = rtd->socdev; |
Mark Brown | 6627a65 | 2009-01-23 22:55:23 +0000 | [diff] [blame] | 488 | struct snd_soc_codec *codec = socdev->card->codec; |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 489 | u16 paifb = snd_soc_read(codec, WM8580_PAIF3 + dai->id); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 490 | |
| 491 | paifb &= ~WM8580_AIF_LENGTH_MASK; |
| 492 | /* bit size */ |
| 493 | switch (params_format(params)) { |
| 494 | case SNDRV_PCM_FORMAT_S16_LE: |
| 495 | break; |
| 496 | case SNDRV_PCM_FORMAT_S20_3LE: |
| 497 | paifb |= WM8580_AIF_LENGTH_20; |
| 498 | break; |
| 499 | case SNDRV_PCM_FORMAT_S24_LE: |
| 500 | paifb |= WM8580_AIF_LENGTH_24; |
| 501 | break; |
| 502 | case SNDRV_PCM_FORMAT_S32_LE: |
| 503 | paifb |= WM8580_AIF_LENGTH_24; |
| 504 | break; |
| 505 | default: |
| 506 | return -EINVAL; |
| 507 | } |
| 508 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 509 | snd_soc_write(codec, WM8580_PAIF3 + dai->id, paifb); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 510 | return 0; |
| 511 | } |
| 512 | |
| 513 | static int wm8580_set_paif_dai_fmt(struct snd_soc_dai *codec_dai, |
| 514 | unsigned int fmt) |
| 515 | { |
| 516 | struct snd_soc_codec *codec = codec_dai->codec; |
| 517 | unsigned int aifa; |
| 518 | unsigned int aifb; |
| 519 | int can_invert_lrclk; |
| 520 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 521 | aifa = snd_soc_read(codec, WM8580_PAIF1 + codec_dai->id); |
| 522 | aifb = snd_soc_read(codec, WM8580_PAIF3 + codec_dai->id); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 523 | |
| 524 | aifb &= ~(WM8580_AIF_FMT_MASK | WM8580_AIF_LRP | WM8580_AIF_BCP); |
| 525 | |
| 526 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 527 | case SND_SOC_DAIFMT_CBS_CFS: |
| 528 | aifa &= ~WM8580_AIF_MS; |
| 529 | break; |
| 530 | case SND_SOC_DAIFMT_CBM_CFM: |
| 531 | aifa |= WM8580_AIF_MS; |
| 532 | break; |
| 533 | default: |
| 534 | return -EINVAL; |
| 535 | } |
| 536 | |
| 537 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 538 | case SND_SOC_DAIFMT_I2S: |
| 539 | can_invert_lrclk = 1; |
| 540 | aifb |= WM8580_AIF_FMT_I2S; |
| 541 | break; |
| 542 | case SND_SOC_DAIFMT_RIGHT_J: |
| 543 | can_invert_lrclk = 1; |
| 544 | aifb |= WM8580_AIF_FMT_RIGHTJ; |
| 545 | break; |
| 546 | case SND_SOC_DAIFMT_LEFT_J: |
| 547 | can_invert_lrclk = 1; |
| 548 | aifb |= WM8580_AIF_FMT_LEFTJ; |
| 549 | break; |
| 550 | case SND_SOC_DAIFMT_DSP_A: |
| 551 | can_invert_lrclk = 0; |
| 552 | aifb |= WM8580_AIF_FMT_DSP; |
| 553 | break; |
| 554 | case SND_SOC_DAIFMT_DSP_B: |
| 555 | can_invert_lrclk = 0; |
| 556 | aifb |= WM8580_AIF_FMT_DSP; |
| 557 | aifb |= WM8580_AIF_LRP; |
| 558 | break; |
| 559 | default: |
| 560 | return -EINVAL; |
| 561 | } |
| 562 | |
| 563 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 564 | case SND_SOC_DAIFMT_NB_NF: |
| 565 | break; |
| 566 | |
| 567 | case SND_SOC_DAIFMT_IB_IF: |
| 568 | if (!can_invert_lrclk) |
| 569 | return -EINVAL; |
| 570 | aifb |= WM8580_AIF_BCP; |
| 571 | aifb |= WM8580_AIF_LRP; |
| 572 | break; |
| 573 | |
| 574 | case SND_SOC_DAIFMT_IB_NF: |
| 575 | aifb |= WM8580_AIF_BCP; |
| 576 | break; |
| 577 | |
| 578 | case SND_SOC_DAIFMT_NB_IF: |
| 579 | if (!can_invert_lrclk) |
| 580 | return -EINVAL; |
| 581 | aifb |= WM8580_AIF_LRP; |
| 582 | break; |
| 583 | |
| 584 | default: |
| 585 | return -EINVAL; |
| 586 | } |
| 587 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 588 | snd_soc_write(codec, WM8580_PAIF1 + codec_dai->id, aifa); |
| 589 | snd_soc_write(codec, WM8580_PAIF3 + codec_dai->id, aifb); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 590 | |
| 591 | return 0; |
| 592 | } |
| 593 | |
| 594 | static int wm8580_set_dai_clkdiv(struct snd_soc_dai *codec_dai, |
| 595 | int div_id, int div) |
| 596 | { |
| 597 | struct snd_soc_codec *codec = codec_dai->codec; |
| 598 | unsigned int reg; |
| 599 | |
| 600 | switch (div_id) { |
| 601 | case WM8580_MCLK: |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 602 | reg = snd_soc_read(codec, WM8580_PLLB4); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 603 | reg &= ~WM8580_PLLB4_MCLKOUTSRC_MASK; |
| 604 | |
| 605 | switch (div) { |
| 606 | case WM8580_CLKSRC_MCLK: |
| 607 | /* Input */ |
| 608 | break; |
| 609 | |
| 610 | case WM8580_CLKSRC_PLLA: |
| 611 | reg |= WM8580_PLLB4_MCLKOUTSRC_PLLA; |
| 612 | break; |
| 613 | case WM8580_CLKSRC_PLLB: |
| 614 | reg |= WM8580_PLLB4_MCLKOUTSRC_PLLB; |
| 615 | break; |
| 616 | |
| 617 | case WM8580_CLKSRC_OSC: |
| 618 | reg |= WM8580_PLLB4_MCLKOUTSRC_OSC; |
| 619 | break; |
| 620 | |
| 621 | default: |
| 622 | return -EINVAL; |
| 623 | } |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 624 | snd_soc_write(codec, WM8580_PLLB4, reg); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 625 | break; |
| 626 | |
| 627 | case WM8580_DAC_CLKSEL: |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 628 | reg = snd_soc_read(codec, WM8580_CLKSEL); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 629 | reg &= ~WM8580_CLKSEL_DAC_CLKSEL_MASK; |
| 630 | |
| 631 | switch (div) { |
| 632 | case WM8580_CLKSRC_MCLK: |
| 633 | break; |
| 634 | |
| 635 | case WM8580_CLKSRC_PLLA: |
| 636 | reg |= WM8580_CLKSEL_DAC_CLKSEL_PLLA; |
| 637 | break; |
| 638 | |
| 639 | case WM8580_CLKSRC_PLLB: |
| 640 | reg |= WM8580_CLKSEL_DAC_CLKSEL_PLLB; |
| 641 | break; |
| 642 | |
| 643 | default: |
| 644 | return -EINVAL; |
| 645 | } |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 646 | snd_soc_write(codec, WM8580_CLKSEL, reg); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 647 | break; |
| 648 | |
| 649 | case WM8580_CLKOUTSRC: |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 650 | reg = snd_soc_read(codec, WM8580_PLLB4); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 651 | reg &= ~WM8580_PLLB4_CLKOUTSRC_MASK; |
| 652 | |
| 653 | switch (div) { |
| 654 | case WM8580_CLKSRC_NONE: |
| 655 | break; |
| 656 | |
| 657 | case WM8580_CLKSRC_PLLA: |
| 658 | reg |= WM8580_PLLB4_CLKOUTSRC_PLLACLK; |
| 659 | break; |
| 660 | |
| 661 | case WM8580_CLKSRC_PLLB: |
| 662 | reg |= WM8580_PLLB4_CLKOUTSRC_PLLBCLK; |
| 663 | break; |
| 664 | |
| 665 | case WM8580_CLKSRC_OSC: |
| 666 | reg |= WM8580_PLLB4_CLKOUTSRC_OSCCLK; |
| 667 | break; |
| 668 | |
| 669 | default: |
| 670 | return -EINVAL; |
| 671 | } |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 672 | snd_soc_write(codec, WM8580_PLLB4, reg); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 673 | break; |
| 674 | |
| 675 | default: |
| 676 | return -EINVAL; |
| 677 | } |
| 678 | |
| 679 | return 0; |
| 680 | } |
| 681 | |
| 682 | static int wm8580_digital_mute(struct snd_soc_dai *codec_dai, int mute) |
| 683 | { |
| 684 | struct snd_soc_codec *codec = codec_dai->codec; |
| 685 | unsigned int reg; |
| 686 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 687 | reg = snd_soc_read(codec, WM8580_DAC_CONTROL5); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 688 | |
| 689 | if (mute) |
| 690 | reg |= WM8580_DAC_CONTROL5_MUTEALL; |
| 691 | else |
| 692 | reg &= ~WM8580_DAC_CONTROL5_MUTEALL; |
| 693 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 694 | snd_soc_write(codec, WM8580_DAC_CONTROL5, reg); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 695 | |
| 696 | return 0; |
| 697 | } |
| 698 | |
| 699 | static int wm8580_set_bias_level(struct snd_soc_codec *codec, |
| 700 | enum snd_soc_bias_level level) |
| 701 | { |
| 702 | u16 reg; |
| 703 | switch (level) { |
| 704 | case SND_SOC_BIAS_ON: |
| 705 | case SND_SOC_BIAS_PREPARE: |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 706 | break; |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 707 | |
| 708 | case SND_SOC_BIAS_STANDBY: |
| 709 | if (codec->bias_level == SND_SOC_BIAS_OFF) { |
| 710 | /* Power up and get individual control of the DACs */ |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 711 | reg = snd_soc_read(codec, WM8580_PWRDN1); |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 712 | reg &= ~(WM8580_PWRDN1_PWDN | WM8580_PWRDN1_ALLDACPD); |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 713 | snd_soc_write(codec, WM8580_PWRDN1, reg); |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 714 | |
| 715 | /* Make VMID high impedence */ |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 716 | reg = snd_soc_read(codec, WM8580_ADC_CONTROL1); |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 717 | reg &= ~0x100; |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 718 | snd_soc_write(codec, WM8580_ADC_CONTROL1, reg); |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 719 | } |
| 720 | break; |
| 721 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 722 | case SND_SOC_BIAS_OFF: |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 723 | reg = snd_soc_read(codec, WM8580_PWRDN1); |
| 724 | snd_soc_write(codec, WM8580_PWRDN1, reg | WM8580_PWRDN1_PWDN); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 725 | break; |
| 726 | } |
| 727 | codec->bias_level = level; |
| 728 | return 0; |
| 729 | } |
| 730 | |
| 731 | #define WM8580_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\ |
| 732 | SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE) |
| 733 | |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 734 | static struct snd_soc_dai_ops wm8580_dai_ops_playback = { |
| 735 | .hw_params = wm8580_paif_hw_params, |
| 736 | .set_fmt = wm8580_set_paif_dai_fmt, |
| 737 | .set_clkdiv = wm8580_set_dai_clkdiv, |
| 738 | .set_pll = wm8580_set_dai_pll, |
| 739 | .digital_mute = wm8580_digital_mute, |
| 740 | }; |
| 741 | |
| 742 | static struct snd_soc_dai_ops wm8580_dai_ops_capture = { |
| 743 | .hw_params = wm8580_paif_hw_params, |
| 744 | .set_fmt = wm8580_set_paif_dai_fmt, |
| 745 | .set_clkdiv = wm8580_set_dai_clkdiv, |
| 746 | .set_pll = wm8580_set_dai_pll, |
| 747 | }; |
| 748 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 749 | struct snd_soc_dai wm8580_dai[] = { |
| 750 | { |
| 751 | .name = "WM8580 PAIFRX", |
| 752 | .id = 0, |
| 753 | .playback = { |
| 754 | .stream_name = "Playback", |
| 755 | .channels_min = 1, |
| 756 | .channels_max = 6, |
| 757 | .rates = SNDRV_PCM_RATE_8000_192000, |
| 758 | .formats = WM8580_FORMATS, |
| 759 | }, |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 760 | .ops = &wm8580_dai_ops_playback, |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 761 | }, |
| 762 | { |
| 763 | .name = "WM8580 PAIFTX", |
| 764 | .id = 1, |
| 765 | .capture = { |
| 766 | .stream_name = "Capture", |
| 767 | .channels_min = 2, |
| 768 | .channels_max = 2, |
| 769 | .rates = SNDRV_PCM_RATE_8000_192000, |
| 770 | .formats = WM8580_FORMATS, |
| 771 | }, |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 772 | .ops = &wm8580_dai_ops_capture, |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 773 | }, |
| 774 | }; |
| 775 | EXPORT_SYMBOL_GPL(wm8580_dai); |
| 776 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 777 | static struct snd_soc_codec *wm8580_codec; |
| 778 | |
| 779 | static int wm8580_probe(struct platform_device *pdev) |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 780 | { |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 781 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
| 782 | struct snd_soc_codec *codec; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 783 | int ret = 0; |
| 784 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 785 | if (wm8580_codec == NULL) { |
| 786 | dev_err(&pdev->dev, "Codec device not registered\n"); |
| 787 | return -ENODEV; |
| 788 | } |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 789 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 790 | socdev->card->codec = wm8580_codec; |
| 791 | codec = wm8580_codec; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 792 | |
| 793 | /* register pcms */ |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 794 | ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 795 | if (ret < 0) { |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 796 | dev_err(codec->dev, "failed to create pcms: %d\n", ret); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 797 | goto pcm_err; |
| 798 | } |
| 799 | |
Ian Molton | 3e8e195 | 2009-01-09 00:23:21 +0000 | [diff] [blame] | 800 | snd_soc_add_controls(codec, wm8580_snd_controls, |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 801 | ARRAY_SIZE(wm8580_snd_controls)); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 802 | wm8580_add_widgets(codec); |
Mark Brown | 968a602 | 2008-11-28 11:49:07 +0000 | [diff] [blame] | 803 | ret = snd_soc_init_card(socdev); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 804 | if (ret < 0) { |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 805 | dev_err(codec->dev, "failed to register card: %d\n", ret); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 806 | goto card_err; |
| 807 | } |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 808 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 809 | return ret; |
| 810 | |
| 811 | card_err: |
| 812 | snd_soc_free_pcms(socdev); |
| 813 | snd_soc_dapm_free(socdev); |
| 814 | pcm_err: |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 815 | return ret; |
| 816 | } |
| 817 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 818 | /* power down chip */ |
| 819 | static int wm8580_remove(struct platform_device *pdev) |
| 820 | { |
| 821 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
| 822 | |
| 823 | snd_soc_free_pcms(socdev); |
| 824 | snd_soc_dapm_free(socdev); |
| 825 | |
| 826 | return 0; |
| 827 | } |
| 828 | |
| 829 | struct snd_soc_codec_device soc_codec_dev_wm8580 = { |
| 830 | .probe = wm8580_probe, |
| 831 | .remove = wm8580_remove, |
| 832 | }; |
| 833 | EXPORT_SYMBOL_GPL(soc_codec_dev_wm8580); |
| 834 | |
| 835 | static int wm8580_register(struct wm8580_priv *wm8580) |
| 836 | { |
| 837 | int ret, i; |
| 838 | struct snd_soc_codec *codec = &wm8580->codec; |
| 839 | |
| 840 | if (wm8580_codec) { |
| 841 | dev_err(codec->dev, "Another WM8580 is registered\n"); |
| 842 | ret = -EINVAL; |
| 843 | goto err; |
| 844 | } |
| 845 | |
| 846 | mutex_init(&codec->mutex); |
| 847 | INIT_LIST_HEAD(&codec->dapm_widgets); |
| 848 | INIT_LIST_HEAD(&codec->dapm_paths); |
| 849 | |
| 850 | codec->private_data = wm8580; |
| 851 | codec->name = "WM8580"; |
| 852 | codec->owner = THIS_MODULE; |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 853 | codec->bias_level = SND_SOC_BIAS_OFF; |
| 854 | codec->set_bias_level = wm8580_set_bias_level; |
| 855 | codec->dai = wm8580_dai; |
| 856 | codec->num_dai = ARRAY_SIZE(wm8580_dai); |
| 857 | codec->reg_cache_size = ARRAY_SIZE(wm8580->reg_cache); |
| 858 | codec->reg_cache = &wm8580->reg_cache; |
| 859 | |
| 860 | memcpy(codec->reg_cache, wm8580_reg, sizeof(wm8580_reg)); |
| 861 | |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 862 | ret = snd_soc_codec_set_cache_io(codec, 7, 9); |
| 863 | if (ret < 0) { |
| 864 | dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret); |
| 865 | goto err; |
| 866 | } |
| 867 | |
Mark Brown | a583cd5 | 2009-06-17 17:30:14 +0100 | [diff] [blame] | 868 | for (i = 0; i < ARRAY_SIZE(wm8580->supplies); i++) |
| 869 | wm8580->supplies[i].supply = wm8580_supply_names[i]; |
| 870 | |
| 871 | ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(wm8580->supplies), |
| 872 | wm8580->supplies); |
| 873 | if (ret != 0) { |
| 874 | dev_err(codec->dev, "Failed to request supplies: %d\n", ret); |
| 875 | goto err; |
| 876 | } |
| 877 | |
| 878 | ret = regulator_bulk_enable(ARRAY_SIZE(wm8580->supplies), |
| 879 | wm8580->supplies); |
| 880 | if (ret != 0) { |
| 881 | dev_err(codec->dev, "Failed to enable supplies: %d\n", ret); |
| 882 | goto err_regulator_get; |
| 883 | } |
| 884 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 885 | /* Get the codec into a known state */ |
Mark Brown | f6f1eb1 | 2009-07-05 17:57:57 +0100 | [diff] [blame^] | 886 | ret = snd_soc_write(codec, WM8580_RESET, 0); |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 887 | if (ret != 0) { |
| 888 | dev_err(codec->dev, "Failed to reset codec: %d\n", ret); |
Mark Brown | a583cd5 | 2009-06-17 17:30:14 +0100 | [diff] [blame] | 889 | goto err_regulator_enable; |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | for (i = 0; i < ARRAY_SIZE(wm8580_dai); i++) |
| 893 | wm8580_dai[i].dev = codec->dev; |
| 894 | |
| 895 | wm8580_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |
| 896 | |
| 897 | wm8580_codec = codec; |
| 898 | |
| 899 | ret = snd_soc_register_codec(codec); |
| 900 | if (ret != 0) { |
| 901 | dev_err(codec->dev, "Failed to register codec: %d\n", ret); |
Mark Brown | a583cd5 | 2009-06-17 17:30:14 +0100 | [diff] [blame] | 902 | goto err_regulator_enable; |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | ret = snd_soc_register_dais(wm8580_dai, ARRAY_SIZE(wm8580_dai)); |
| 906 | if (ret != 0) { |
| 907 | dev_err(codec->dev, "Failed to register DAI: %d\n", ret); |
| 908 | goto err_codec; |
| 909 | } |
| 910 | |
| 911 | return 0; |
| 912 | |
| 913 | err_codec: |
| 914 | snd_soc_unregister_codec(codec); |
Mark Brown | a583cd5 | 2009-06-17 17:30:14 +0100 | [diff] [blame] | 915 | err_regulator_enable: |
| 916 | regulator_bulk_disable(ARRAY_SIZE(wm8580->supplies), wm8580->supplies); |
| 917 | err_regulator_get: |
| 918 | regulator_bulk_free(ARRAY_SIZE(wm8580->supplies), wm8580->supplies); |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 919 | err: |
| 920 | kfree(wm8580); |
| 921 | return ret; |
| 922 | } |
| 923 | |
| 924 | static void wm8580_unregister(struct wm8580_priv *wm8580) |
| 925 | { |
| 926 | wm8580_set_bias_level(&wm8580->codec, SND_SOC_BIAS_OFF); |
| 927 | snd_soc_unregister_dais(wm8580_dai, ARRAY_SIZE(wm8580_dai)); |
| 928 | snd_soc_unregister_codec(&wm8580->codec); |
Mark Brown | a583cd5 | 2009-06-17 17:30:14 +0100 | [diff] [blame] | 929 | regulator_bulk_disable(ARRAY_SIZE(wm8580->supplies), wm8580->supplies); |
| 930 | regulator_bulk_free(ARRAY_SIZE(wm8580->supplies), wm8580->supplies); |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 931 | kfree(wm8580); |
| 932 | wm8580_codec = NULL; |
| 933 | } |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 934 | |
| 935 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
Jean Delvare | 17be552 | 2008-10-15 19:57:12 +0200 | [diff] [blame] | 936 | static int wm8580_i2c_probe(struct i2c_client *i2c, |
| 937 | const struct i2c_device_id *id) |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 938 | { |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 939 | struct wm8580_priv *wm8580; |
| 940 | struct snd_soc_codec *codec; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 941 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 942 | wm8580 = kzalloc(sizeof(struct wm8580_priv), GFP_KERNEL); |
| 943 | if (wm8580 == NULL) |
| 944 | return -ENOMEM; |
| 945 | |
| 946 | codec = &wm8580->codec; |
| 947 | codec->hw_write = (hw_write_t)i2c_master_send; |
| 948 | |
| 949 | i2c_set_clientdata(i2c, wm8580); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 950 | codec->control_data = i2c; |
| 951 | |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 952 | codec->dev = &i2c->dev; |
| 953 | |
| 954 | return wm8580_register(wm8580); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 955 | } |
| 956 | |
Jean Delvare | 17be552 | 2008-10-15 19:57:12 +0200 | [diff] [blame] | 957 | static int wm8580_i2c_remove(struct i2c_client *client) |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 958 | { |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 959 | struct wm8580_priv *wm8580 = i2c_get_clientdata(client); |
| 960 | wm8580_unregister(wm8580); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 961 | return 0; |
| 962 | } |
| 963 | |
Mark Brown | b3b50b3 | 2009-06-13 22:30:18 +0100 | [diff] [blame] | 964 | #ifdef CONFIG_PM |
| 965 | static int wm8580_i2c_suspend(struct i2c_client *client, pm_message_t msg) |
| 966 | { |
| 967 | return snd_soc_suspend_device(&client->dev); |
| 968 | } |
| 969 | |
| 970 | static int wm8580_i2c_resume(struct i2c_client *client) |
| 971 | { |
| 972 | return snd_soc_resume_device(&client->dev); |
| 973 | } |
| 974 | #else |
| 975 | #define wm8580_i2c_suspend NULL |
| 976 | #define wm8580_i2c_resume NULL |
| 977 | #endif |
| 978 | |
Jean Delvare | 17be552 | 2008-10-15 19:57:12 +0200 | [diff] [blame] | 979 | static const struct i2c_device_id wm8580_i2c_id[] = { |
| 980 | { "wm8580", 0 }, |
| 981 | { } |
| 982 | }; |
| 983 | MODULE_DEVICE_TABLE(i2c, wm8580_i2c_id); |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 984 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 985 | static struct i2c_driver wm8580_i2c_driver = { |
| 986 | .driver = { |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 987 | .name = "wm8580", |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 988 | .owner = THIS_MODULE, |
| 989 | }, |
Jean Delvare | 17be552 | 2008-10-15 19:57:12 +0200 | [diff] [blame] | 990 | .probe = wm8580_i2c_probe, |
| 991 | .remove = wm8580_i2c_remove, |
Mark Brown | b3b50b3 | 2009-06-13 22:30:18 +0100 | [diff] [blame] | 992 | .suspend = wm8580_i2c_suspend, |
| 993 | .resume = wm8580_i2c_resume, |
Jean Delvare | 17be552 | 2008-10-15 19:57:12 +0200 | [diff] [blame] | 994 | .id_table = wm8580_i2c_id, |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 995 | }; |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 996 | #endif |
| 997 | |
Takashi Iwai | c9b3a40 | 2008-12-10 07:47:22 +0100 | [diff] [blame] | 998 | static int __init wm8580_modinit(void) |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 999 | { |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 1000 | int ret; |
| 1001 | |
| 1002 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
| 1003 | ret = i2c_add_driver(&wm8580_i2c_driver); |
| 1004 | if (ret != 0) { |
| 1005 | pr_err("Failed to register WM8580 I2C driver: %d\n", ret); |
| 1006 | } |
| 1007 | #endif |
| 1008 | |
| 1009 | return 0; |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 1010 | } |
| 1011 | module_init(wm8580_modinit); |
| 1012 | |
| 1013 | static void __exit wm8580_exit(void) |
| 1014 | { |
Mark Brown | 6f7cb44 | 2009-03-11 18:31:08 +0000 | [diff] [blame] | 1015 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
| 1016 | i2c_del_driver(&wm8580_i2c_driver); |
| 1017 | #endif |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 1018 | } |
| 1019 | module_exit(wm8580_exit); |
| 1020 | |
Mark Brown | e88ba01 | 2008-08-06 13:18:26 +0100 | [diff] [blame] | 1021 | MODULE_DESCRIPTION("ASoC WM8580 driver"); |
| 1022 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); |
| 1023 | MODULE_LICENSE("GPL"); |