Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 1 | /* |
| 2 | * wm8731.c -- WM8731 ALSA SoC Audio driver |
| 3 | * |
| 4 | * Copyright 2005 Openedhand Ltd. |
| 5 | * |
| 6 | * Author: Richard Purdie <richard@openedhand.com> |
| 7 | * |
| 8 | * Based on wm8753.c by Liam Girdwood |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/moduleparam.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/delay.h> |
| 19 | #include <linux/pm.h> |
| 20 | #include <linux/i2c.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 22 | #include <linux/platform_device.h> |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 23 | #include <linux/regulator/consumer.h> |
Cliff Cai | d2a4035 | 2008-09-01 18:47:03 +0100 | [diff] [blame] | 24 | #include <linux/spi/spi.h> |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 25 | #include <sound/core.h> |
| 26 | #include <sound/pcm.h> |
| 27 | #include <sound/pcm_params.h> |
| 28 | #include <sound/soc.h> |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 29 | #include <sound/initval.h> |
Mark Brown | d00efa6 | 2009-07-08 16:53:12 +0100 | [diff] [blame] | 30 | #include <sound/tlv.h> |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 31 | |
| 32 | #include "wm8731.h" |
| 33 | |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 34 | #define WM8731_NUM_SUPPLIES 4 |
| 35 | static const char *wm8731_supply_names[WM8731_NUM_SUPPLIES] = { |
| 36 | "AVDD", |
| 37 | "HPVDD", |
| 38 | "DCVDD", |
| 39 | "DBVDD", |
| 40 | }; |
| 41 | |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 42 | /* codec private data */ |
| 43 | struct wm8731_priv { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 44 | enum snd_soc_control_type control_type; |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 45 | struct regulator_bulk_data supplies[WM8731_NUM_SUPPLIES]; |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 46 | u16 reg_cache[WM8731_CACHEREGNUM]; |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 47 | unsigned int sysclk; |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 48 | int sysclk_type; |
Mark Brown | dd31b31 | 2010-12-02 11:44:00 +0000 | [diff] [blame^] | 49 | int playback_fs; |
| 50 | bool deemph; |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 51 | }; |
| 52 | |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 53 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 54 | /* |
| 55 | * wm8731 register cache |
| 56 | * We can't read the WM8731 register space when we are |
| 57 | * using 2 wire for device control, so we cache them instead. |
| 58 | * There is no point in caching the reset register |
| 59 | */ |
| 60 | static const u16 wm8731_reg[WM8731_CACHEREGNUM] = { |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 61 | 0x0097, 0x0097, 0x0079, 0x0079, |
| 62 | 0x000a, 0x0008, 0x009f, 0x000a, |
| 63 | 0x0000, 0x0000 |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 66 | #define wm8731_reset(c) snd_soc_write(c, WM8731_RESET, 0) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 67 | |
| 68 | static const char *wm8731_input_select[] = {"Line In", "Mic"}; |
Mark Brown | 59f7297 | 2010-11-30 21:03:44 +0000 | [diff] [blame] | 69 | |
Mark Brown | 59f7297 | 2010-11-30 21:03:44 +0000 | [diff] [blame] | 70 | static const struct soc_enum wm8731_insel_enum = |
| 71 | SOC_ENUM_SINGLE(WM8731_APANA, 2, 2, wm8731_input_select); |
| 72 | |
Mark Brown | dd31b31 | 2010-12-02 11:44:00 +0000 | [diff] [blame^] | 73 | static int wm8731_deemph[] = { 0, 32000, 44100, 48000 }; |
Mark Brown | 59f7297 | 2010-11-30 21:03:44 +0000 | [diff] [blame] | 74 | |
Mark Brown | dd31b31 | 2010-12-02 11:44:00 +0000 | [diff] [blame^] | 75 | static int wm8731_set_deemph(struct snd_soc_codec *codec) |
| 76 | { |
| 77 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); |
| 78 | int val, i, best; |
| 79 | |
| 80 | /* If we're using deemphasis select the nearest available sample |
| 81 | * rate. |
| 82 | */ |
| 83 | if (wm8731->deemph) { |
| 84 | best = 1; |
| 85 | for (i = 2; i < ARRAY_SIZE(wm8731_deemph); i++) { |
| 86 | if (abs(wm8731_deemph[i] - wm8731->playback_fs) < |
| 87 | abs(wm8731_deemph[best] - wm8731->playback_fs)) |
| 88 | best = i; |
| 89 | } |
| 90 | |
| 91 | val = best << 1; |
| 92 | } else { |
| 93 | best = 0; |
| 94 | val = 0; |
| 95 | } |
| 96 | |
| 97 | dev_dbg(codec->dev, "Set deemphasis %d (%dHz)\n", |
| 98 | best, wm8731_deemph[best]); |
| 99 | |
| 100 | return snd_soc_update_bits(codec, WM8731_APDIGI, 0x6, val); |
| 101 | } |
| 102 | |
| 103 | static int wm8731_get_deemph(struct snd_kcontrol *kcontrol, |
| 104 | struct snd_ctl_elem_value *ucontrol) |
| 105 | { |
| 106 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 107 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); |
| 108 | |
| 109 | ucontrol->value.enumerated.item[0] = wm8731->deemph; |
| 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | static int wm8731_put_deemph(struct snd_kcontrol *kcontrol, |
| 115 | struct snd_ctl_elem_value *ucontrol) |
| 116 | { |
| 117 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 118 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); |
| 119 | int deemph = ucontrol->value.enumerated.item[0]; |
| 120 | int ret = 0; |
| 121 | |
| 122 | if (deemph > 1) |
| 123 | return -EINVAL; |
| 124 | |
| 125 | mutex_lock(&codec->mutex); |
| 126 | if (wm8731->deemph != deemph) { |
| 127 | wm8731->deemph = deemph; |
| 128 | |
| 129 | wm8731_set_deemph(codec); |
| 130 | |
| 131 | ret = 1; |
| 132 | } |
| 133 | mutex_unlock(&codec->mutex); |
| 134 | |
| 135 | return ret; |
| 136 | } |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 137 | |
Mark Brown | d00efa6 | 2009-07-08 16:53:12 +0100 | [diff] [blame] | 138 | static const DECLARE_TLV_DB_SCALE(in_tlv, -3450, 150, 0); |
| 139 | static const DECLARE_TLV_DB_SCALE(sidetone_tlv, -1500, 300, 0); |
| 140 | static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1); |
Mark Brown | d921184 | 2010-11-30 21:03:09 +0000 | [diff] [blame] | 141 | static const DECLARE_TLV_DB_SCALE(mic_tlv, 0, 2000, 0); |
Mark Brown | d00efa6 | 2009-07-08 16:53:12 +0100 | [diff] [blame] | 142 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 143 | static const struct snd_kcontrol_new wm8731_snd_controls[] = { |
| 144 | |
Mark Brown | d00efa6 | 2009-07-08 16:53:12 +0100 | [diff] [blame] | 145 | SOC_DOUBLE_R_TLV("Master Playback Volume", WM8731_LOUT1V, WM8731_ROUT1V, |
| 146 | 0, 127, 0, out_tlv), |
Liam Girdwood | bd903b6 | 2006-11-09 16:35:01 +0100 | [diff] [blame] | 147 | SOC_DOUBLE_R("Master Playback ZC Switch", WM8731_LOUT1V, WM8731_ROUT1V, |
| 148 | 7, 1, 0), |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 149 | |
Mark Brown | d00efa6 | 2009-07-08 16:53:12 +0100 | [diff] [blame] | 150 | SOC_DOUBLE_R_TLV("Capture Volume", WM8731_LINVOL, WM8731_RINVOL, 0, 31, 0, |
| 151 | in_tlv), |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 152 | SOC_DOUBLE_R("Line Capture Switch", WM8731_LINVOL, WM8731_RINVOL, 7, 1, 1), |
| 153 | |
Mark Brown | d921184 | 2010-11-30 21:03:09 +0000 | [diff] [blame] | 154 | SOC_SINGLE_TLV("Mic Boost Volume", WM8731_APANA, 0, 1, 0, mic_tlv), |
Mark Brown | ef38ed8 | 2009-07-08 17:05:43 +0100 | [diff] [blame] | 155 | SOC_SINGLE("Mic Capture Switch", WM8731_APANA, 1, 1, 1), |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 156 | |
Mark Brown | d00efa6 | 2009-07-08 16:53:12 +0100 | [diff] [blame] | 157 | SOC_SINGLE_TLV("Sidetone Playback Volume", WM8731_APANA, 6, 3, 1, |
| 158 | sidetone_tlv), |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 159 | |
| 160 | SOC_SINGLE("ADC High Pass Filter Switch", WM8731_APDIGI, 0, 1, 1), |
| 161 | SOC_SINGLE("Store DC Offset Switch", WM8731_APDIGI, 4, 1, 0), |
| 162 | |
Mark Brown | dd31b31 | 2010-12-02 11:44:00 +0000 | [diff] [blame^] | 163 | SOC_SINGLE_BOOL_EXT("Playback Deemphasis Switch", 0, |
| 164 | wm8731_get_deemph, wm8731_put_deemph), |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 165 | }; |
| 166 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 167 | /* Output Mixer */ |
| 168 | static const struct snd_kcontrol_new wm8731_output_mixer_controls[] = { |
| 169 | SOC_DAPM_SINGLE("Line Bypass Switch", WM8731_APANA, 3, 1, 0), |
| 170 | SOC_DAPM_SINGLE("Mic Sidetone Switch", WM8731_APANA, 5, 1, 0), |
| 171 | SOC_DAPM_SINGLE("HiFi Playback Switch", WM8731_APANA, 4, 1, 0), |
| 172 | }; |
| 173 | |
| 174 | /* Input mux */ |
| 175 | static const struct snd_kcontrol_new wm8731_input_mux_controls = |
Mark Brown | 59f7297 | 2010-11-30 21:03:44 +0000 | [diff] [blame] | 176 | SOC_DAPM_ENUM("Input Select", wm8731_insel_enum); |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 177 | |
| 178 | static const struct snd_soc_dapm_widget wm8731_dapm_widgets[] = { |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 179 | SND_SOC_DAPM_SUPPLY("OSC", WM8731_PWR, 5, 1, NULL, 0), |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 180 | SND_SOC_DAPM_MIXER("Output Mixer", WM8731_PWR, 4, 1, |
| 181 | &wm8731_output_mixer_controls[0], |
| 182 | ARRAY_SIZE(wm8731_output_mixer_controls)), |
| 183 | SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM8731_PWR, 3, 1), |
| 184 | SND_SOC_DAPM_OUTPUT("LOUT"), |
| 185 | SND_SOC_DAPM_OUTPUT("LHPOUT"), |
| 186 | SND_SOC_DAPM_OUTPUT("ROUT"), |
| 187 | SND_SOC_DAPM_OUTPUT("RHPOUT"), |
| 188 | SND_SOC_DAPM_ADC("ADC", "HiFi Capture", WM8731_PWR, 2, 1), |
| 189 | SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM, 0, 0, &wm8731_input_mux_controls), |
| 190 | SND_SOC_DAPM_PGA("Line Input", WM8731_PWR, 0, 1, NULL, 0), |
| 191 | SND_SOC_DAPM_MICBIAS("Mic Bias", WM8731_PWR, 1, 1), |
| 192 | SND_SOC_DAPM_INPUT("MICIN"), |
| 193 | SND_SOC_DAPM_INPUT("RLINEIN"), |
| 194 | SND_SOC_DAPM_INPUT("LLINEIN"), |
| 195 | }; |
| 196 | |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 197 | static int wm8731_check_osc(struct snd_soc_dapm_widget *source, |
| 198 | struct snd_soc_dapm_widget *sink) |
| 199 | { |
| 200 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(source->codec); |
| 201 | |
| 202 | return wm8731->sysclk_type == WM8731_SYSCLK_MCLK; |
| 203 | } |
| 204 | |
Mark Brown | a65f056 | 2008-05-13 14:54:43 +0200 | [diff] [blame] | 205 | static const struct snd_soc_dapm_route intercon[] = { |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 206 | {"DAC", NULL, "OSC", wm8731_check_osc}, |
| 207 | {"ADC", NULL, "OSC", wm8731_check_osc}, |
| 208 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 209 | /* output mixer */ |
| 210 | {"Output Mixer", "Line Bypass Switch", "Line Input"}, |
| 211 | {"Output Mixer", "HiFi Playback Switch", "DAC"}, |
| 212 | {"Output Mixer", "Mic Sidetone Switch", "Mic Bias"}, |
| 213 | |
| 214 | /* outputs */ |
| 215 | {"RHPOUT", NULL, "Output Mixer"}, |
| 216 | {"ROUT", NULL, "Output Mixer"}, |
| 217 | {"LHPOUT", NULL, "Output Mixer"}, |
| 218 | {"LOUT", NULL, "Output Mixer"}, |
| 219 | |
| 220 | /* input mux */ |
| 221 | {"Input Mux", "Line In", "Line Input"}, |
| 222 | {"Input Mux", "Mic", "Mic Bias"}, |
| 223 | {"ADC", NULL, "Input Mux"}, |
| 224 | |
| 225 | /* inputs */ |
| 226 | {"Line Input", NULL, "LLINEIN"}, |
| 227 | {"Line Input", NULL, "RLINEIN"}, |
| 228 | {"Mic Bias", NULL, "MICIN"}, |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 229 | }; |
| 230 | |
| 231 | static int wm8731_add_widgets(struct snd_soc_codec *codec) |
| 232 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 233 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 234 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 235 | snd_soc_dapm_new_controls(dapm, wm8731_dapm_widgets, |
| 236 | ARRAY_SIZE(wm8731_dapm_widgets)); |
| 237 | snd_soc_dapm_add_routes(dapm, intercon, ARRAY_SIZE(intercon)); |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 238 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | struct _coeff_div { |
| 243 | u32 mclk; |
| 244 | u32 rate; |
| 245 | u16 fs; |
| 246 | u8 sr:4; |
| 247 | u8 bosr:1; |
| 248 | u8 usb:1; |
| 249 | }; |
| 250 | |
| 251 | /* codec mclk clock divider coefficients */ |
| 252 | static const struct _coeff_div coeff_div[] = { |
| 253 | /* 48k */ |
| 254 | {12288000, 48000, 256, 0x0, 0x0, 0x0}, |
| 255 | {18432000, 48000, 384, 0x0, 0x1, 0x0}, |
| 256 | {12000000, 48000, 250, 0x0, 0x0, 0x1}, |
| 257 | |
| 258 | /* 32k */ |
| 259 | {12288000, 32000, 384, 0x6, 0x0, 0x0}, |
| 260 | {18432000, 32000, 576, 0x6, 0x1, 0x0}, |
Frank Mandarino | 298a2c7 | 2007-01-31 10:02:56 +0100 | [diff] [blame] | 261 | {12000000, 32000, 375, 0x6, 0x0, 0x1}, |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 262 | |
| 263 | /* 8k */ |
| 264 | {12288000, 8000, 1536, 0x3, 0x0, 0x0}, |
| 265 | {18432000, 8000, 2304, 0x3, 0x1, 0x0}, |
| 266 | {11289600, 8000, 1408, 0xb, 0x0, 0x0}, |
| 267 | {16934400, 8000, 2112, 0xb, 0x1, 0x0}, |
| 268 | {12000000, 8000, 1500, 0x3, 0x0, 0x1}, |
| 269 | |
| 270 | /* 96k */ |
| 271 | {12288000, 96000, 128, 0x7, 0x0, 0x0}, |
| 272 | {18432000, 96000, 192, 0x7, 0x1, 0x0}, |
| 273 | {12000000, 96000, 125, 0x7, 0x0, 0x1}, |
| 274 | |
| 275 | /* 44.1k */ |
| 276 | {11289600, 44100, 256, 0x8, 0x0, 0x0}, |
| 277 | {16934400, 44100, 384, 0x8, 0x1, 0x0}, |
| 278 | {12000000, 44100, 272, 0x8, 0x1, 0x1}, |
| 279 | |
| 280 | /* 88.2k */ |
| 281 | {11289600, 88200, 128, 0xf, 0x0, 0x0}, |
| 282 | {16934400, 88200, 192, 0xf, 0x1, 0x0}, |
| 283 | {12000000, 88200, 136, 0xf, 0x1, 0x1}, |
| 284 | }; |
| 285 | |
| 286 | static inline int get_coeff(int mclk, int rate) |
| 287 | { |
| 288 | int i; |
| 289 | |
| 290 | for (i = 0; i < ARRAY_SIZE(coeff_div); i++) { |
| 291 | if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk) |
| 292 | return i; |
| 293 | } |
| 294 | return 0; |
| 295 | } |
| 296 | |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 297 | static int wm8731_hw_params(struct snd_pcm_substream *substream, |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 298 | struct snd_pcm_hw_params *params, |
| 299 | struct snd_soc_dai *dai) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 300 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 301 | struct snd_soc_codec *codec = dai->codec; |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 302 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 303 | u16 iface = snd_soc_read(codec, WM8731_IFACE) & 0xfff3; |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 304 | int i = get_coeff(wm8731->sysclk, params_rate(params)); |
| 305 | u16 srate = (coeff_div[i].sr << 2) | |
| 306 | (coeff_div[i].bosr << 1) | coeff_div[i].usb; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 307 | |
Mark Brown | dd31b31 | 2010-12-02 11:44:00 +0000 | [diff] [blame^] | 308 | wm8731->playback_fs = params_rate(params); |
| 309 | |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 310 | snd_soc_write(codec, WM8731_SRATE, srate); |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 311 | |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 312 | /* bit size */ |
| 313 | switch (params_format(params)) { |
| 314 | case SNDRV_PCM_FORMAT_S16_LE: |
| 315 | break; |
| 316 | case SNDRV_PCM_FORMAT_S20_3LE: |
| 317 | iface |= 0x0004; |
| 318 | break; |
| 319 | case SNDRV_PCM_FORMAT_S24_LE: |
| 320 | iface |= 0x0008; |
| 321 | break; |
| 322 | } |
| 323 | |
Mark Brown | dd31b31 | 2010-12-02 11:44:00 +0000 | [diff] [blame^] | 324 | wm8731_set_deemph(codec); |
| 325 | |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 326 | snd_soc_write(codec, WM8731_IFACE, iface); |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 327 | return 0; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 328 | } |
| 329 | |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 330 | static int wm8731_pcm_prepare(struct snd_pcm_substream *substream, |
| 331 | struct snd_soc_dai *dai) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 332 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 333 | struct snd_soc_codec *codec = dai->codec; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 334 | |
| 335 | /* set active */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 336 | snd_soc_write(codec, WM8731_ACTIVE, 0x0001); |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 337 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 338 | return 0; |
| 339 | } |
| 340 | |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 341 | static void wm8731_shutdown(struct snd_pcm_substream *substream, |
| 342 | struct snd_soc_dai *dai) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 343 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 344 | struct snd_soc_codec *codec = dai->codec; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 345 | |
| 346 | /* deactivate */ |
| 347 | if (!codec->active) { |
| 348 | udelay(50); |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 349 | snd_soc_write(codec, WM8731_ACTIVE, 0x0); |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 350 | } |
| 351 | } |
| 352 | |
Liam Girdwood | e550e17 | 2008-07-07 16:07:52 +0100 | [diff] [blame] | 353 | static int wm8731_mute(struct snd_soc_dai *dai, int mute) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 354 | { |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 355 | struct snd_soc_codec *codec = dai->codec; |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 356 | u16 mute_reg = snd_soc_read(codec, WM8731_APDIGI) & 0xfff7; |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 357 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 358 | if (mute) |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 359 | snd_soc_write(codec, WM8731_APDIGI, mute_reg | 0x8); |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 360 | else |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 361 | snd_soc_write(codec, WM8731_APDIGI, mute_reg); |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 362 | return 0; |
| 363 | } |
| 364 | |
Liam Girdwood | e550e17 | 2008-07-07 16:07:52 +0100 | [diff] [blame] | 365 | static int wm8731_set_dai_sysclk(struct snd_soc_dai *codec_dai, |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 366 | int clk_id, unsigned int freq, int dir) |
| 367 | { |
| 368 | struct snd_soc_codec *codec = codec_dai->codec; |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 369 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 370 | |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 371 | switch (clk_id) { |
| 372 | case WM8731_SYSCLK_XTAL: |
| 373 | case WM8731_SYSCLK_MCLK: |
| 374 | wm8731->sysclk_type = clk_id; |
| 375 | break; |
| 376 | default: |
| 377 | return -EINVAL; |
| 378 | } |
| 379 | |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 380 | switch (freq) { |
| 381 | case 11289600: |
| 382 | case 12000000: |
| 383 | case 12288000: |
| 384 | case 16934400: |
| 385 | case 18432000: |
| 386 | wm8731->sysclk = freq; |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 387 | break; |
| 388 | default: |
| 389 | return -EINVAL; |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 390 | } |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 391 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 392 | snd_soc_dapm_sync(&codec->dapm); |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 393 | |
| 394 | return 0; |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | |
Liam Girdwood | e550e17 | 2008-07-07 16:07:52 +0100 | [diff] [blame] | 398 | static int wm8731_set_dai_fmt(struct snd_soc_dai *codec_dai, |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 399 | unsigned int fmt) |
| 400 | { |
| 401 | struct snd_soc_codec *codec = codec_dai->codec; |
| 402 | u16 iface = 0; |
| 403 | |
| 404 | /* set master/slave audio interface */ |
| 405 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 406 | case SND_SOC_DAIFMT_CBM_CFM: |
| 407 | iface |= 0x0040; |
| 408 | break; |
| 409 | case SND_SOC_DAIFMT_CBS_CFS: |
| 410 | break; |
| 411 | default: |
| 412 | return -EINVAL; |
| 413 | } |
| 414 | |
| 415 | /* interface format */ |
| 416 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 417 | case SND_SOC_DAIFMT_I2S: |
| 418 | iface |= 0x0002; |
| 419 | break; |
| 420 | case SND_SOC_DAIFMT_RIGHT_J: |
| 421 | break; |
| 422 | case SND_SOC_DAIFMT_LEFT_J: |
| 423 | iface |= 0x0001; |
| 424 | break; |
| 425 | case SND_SOC_DAIFMT_DSP_A: |
| 426 | iface |= 0x0003; |
| 427 | break; |
| 428 | case SND_SOC_DAIFMT_DSP_B: |
| 429 | iface |= 0x0013; |
| 430 | break; |
| 431 | default: |
| 432 | return -EINVAL; |
| 433 | } |
| 434 | |
| 435 | /* clock inversion */ |
| 436 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 437 | case SND_SOC_DAIFMT_NB_NF: |
| 438 | break; |
| 439 | case SND_SOC_DAIFMT_IB_IF: |
| 440 | iface |= 0x0090; |
| 441 | break; |
| 442 | case SND_SOC_DAIFMT_IB_NF: |
| 443 | iface |= 0x0080; |
| 444 | break; |
| 445 | case SND_SOC_DAIFMT_NB_IF: |
| 446 | iface |= 0x0010; |
| 447 | break; |
| 448 | default: |
| 449 | return -EINVAL; |
| 450 | } |
| 451 | |
| 452 | /* set iface */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 453 | snd_soc_write(codec, WM8731_IFACE, iface); |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 454 | return 0; |
| 455 | } |
| 456 | |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 457 | static int wm8731_set_bias_level(struct snd_soc_codec *codec, |
| 458 | enum snd_soc_bias_level level) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 459 | { |
Mark Brown | 06ae998 | 2010-05-07 19:14:45 +0100 | [diff] [blame] | 460 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); |
| 461 | int i, ret; |
| 462 | u8 data[2]; |
| 463 | u16 *cache = codec->reg_cache; |
Mark Brown | 22d22ee | 2009-02-16 19:20:15 +0000 | [diff] [blame] | 464 | u16 reg; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 465 | |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 466 | switch (level) { |
| 467 | case SND_SOC_BIAS_ON: |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 468 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 469 | case SND_SOC_BIAS_PREPARE: |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 470 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 471 | case SND_SOC_BIAS_STANDBY: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 472 | if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) { |
Mark Brown | 06ae998 | 2010-05-07 19:14:45 +0100 | [diff] [blame] | 473 | ret = regulator_bulk_enable(ARRAY_SIZE(wm8731->supplies), |
| 474 | wm8731->supplies); |
| 475 | if (ret != 0) |
| 476 | return ret; |
| 477 | |
| 478 | /* Sync reg_cache with the hardware */ |
| 479 | for (i = 0; i < ARRAY_SIZE(wm8731_reg); i++) { |
| 480 | if (cache[i] == wm8731_reg[i]) |
| 481 | continue; |
| 482 | |
| 483 | data[0] = (i << 1) | ((cache[i] >> 8) |
| 484 | & 0x0001); |
| 485 | data[1] = cache[i] & 0x00ff; |
| 486 | codec->hw_write(codec->control_data, data, 2); |
| 487 | } |
| 488 | } |
| 489 | |
Mark Brown | 22d22ee | 2009-02-16 19:20:15 +0000 | [diff] [blame] | 490 | /* Clear PWROFF, gate CLKOUT, everything else as-is */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 491 | reg = snd_soc_read(codec, WM8731_PWR) & 0xff7f; |
| 492 | snd_soc_write(codec, WM8731_PWR, reg | 0x0040); |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 493 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 494 | case SND_SOC_BIAS_OFF: |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 495 | snd_soc_write(codec, WM8731_ACTIVE, 0x0); |
| 496 | snd_soc_write(codec, WM8731_PWR, 0xffff); |
Mark Brown | 06ae998 | 2010-05-07 19:14:45 +0100 | [diff] [blame] | 497 | regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), |
| 498 | wm8731->supplies); |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 499 | break; |
| 500 | } |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 501 | codec->dapm.bias_level = level; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 502 | return 0; |
| 503 | } |
| 504 | |
Bill Gatliff | e135443 | 2010-04-09 18:08:08 +0100 | [diff] [blame] | 505 | #define WM8731_RATES SNDRV_PCM_RATE_8000_96000 |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 506 | |
| 507 | #define WM8731_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\ |
| 508 | SNDRV_PCM_FMTBIT_S24_LE) |
| 509 | |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 510 | static struct snd_soc_dai_ops wm8731_dai_ops = { |
| 511 | .prepare = wm8731_pcm_prepare, |
| 512 | .hw_params = wm8731_hw_params, |
| 513 | .shutdown = wm8731_shutdown, |
| 514 | .digital_mute = wm8731_mute, |
| 515 | .set_sysclk = wm8731_set_dai_sysclk, |
| 516 | .set_fmt = wm8731_set_dai_fmt, |
| 517 | }; |
| 518 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 519 | static struct snd_soc_dai_driver wm8731_dai = { |
| 520 | .name = "wm8731-hifi", |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 521 | .playback = { |
| 522 | .stream_name = "Playback", |
| 523 | .channels_min = 1, |
| 524 | .channels_max = 2, |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 525 | .rates = WM8731_RATES, |
| 526 | .formats = WM8731_FORMATS,}, |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 527 | .capture = { |
| 528 | .stream_name = "Capture", |
| 529 | .channels_min = 1, |
| 530 | .channels_max = 2, |
Frank Mandarino | b36d61d | 2007-02-02 17:14:56 +0100 | [diff] [blame] | 531 | .rates = WM8731_RATES, |
| 532 | .formats = WM8731_FORMATS,}, |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 533 | .ops = &wm8731_dai_ops, |
Mark Brown | 4934482 | 2009-07-08 17:48:12 +0100 | [diff] [blame] | 534 | .symmetric_rates = 1, |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 535 | }; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 536 | |
Mark Brown | b3b50b3 | 2009-06-13 22:30:18 +0100 | [diff] [blame] | 537 | #ifdef CONFIG_PM |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 538 | static int wm8731_suspend(struct snd_soc_codec *codec, pm_message_t state) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 539 | { |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 540 | wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF); |
Mark Brown | 06ae998 | 2010-05-07 19:14:45 +0100 | [diff] [blame] | 541 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 542 | return 0; |
| 543 | } |
| 544 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 545 | static int wm8731_resume(struct snd_soc_codec *codec) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 546 | { |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 547 | wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 548 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 549 | return 0; |
| 550 | } |
Mark Brown | b3b50b3 | 2009-06-13 22:30:18 +0100 | [diff] [blame] | 551 | #else |
| 552 | #define wm8731_suspend NULL |
| 553 | #define wm8731_resume NULL |
| 554 | #endif |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 555 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 556 | static int wm8731_probe(struct snd_soc_codec *codec) |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 557 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 558 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); |
| 559 | int ret = 0, i; |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 560 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 561 | ret = snd_soc_codec_set_cache_io(codec, 7, 9, wm8731->control_type); |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 562 | if (ret < 0) { |
| 563 | dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 564 | return ret; |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 565 | } |
| 566 | |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 567 | for (i = 0; i < ARRAY_SIZE(wm8731->supplies); i++) |
| 568 | wm8731->supplies[i].supply = wm8731_supply_names[i]; |
| 569 | |
| 570 | ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(wm8731->supplies), |
| 571 | wm8731->supplies); |
| 572 | if (ret != 0) { |
| 573 | dev_err(codec->dev, "Failed to request supplies: %d\n", ret); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 574 | return ret; |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | ret = regulator_bulk_enable(ARRAY_SIZE(wm8731->supplies), |
| 578 | wm8731->supplies); |
| 579 | if (ret != 0) { |
| 580 | dev_err(codec->dev, "Failed to enable supplies: %d\n", ret); |
| 581 | goto err_regulator_get; |
| 582 | } |
| 583 | |
Mark Brown | 519cf2d | 2009-02-18 21:06:01 +0000 | [diff] [blame] | 584 | ret = wm8731_reset(codec); |
| 585 | if (ret < 0) { |
Mark Brown | fe5422f | 2009-07-05 15:18:01 +0100 | [diff] [blame] | 586 | dev_err(codec->dev, "Failed to issue reset: %d\n", ret); |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 587 | goto err_regulator_enable; |
Mark Brown | 519cf2d | 2009-02-18 21:06:01 +0000 | [diff] [blame] | 588 | } |
| 589 | |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 590 | wm8731_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |
| 591 | |
| 592 | /* Latch the update bits */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 593 | snd_soc_update_bits(codec, WM8731_LOUT1V, 0x100, 0); |
| 594 | snd_soc_update_bits(codec, WM8731_ROUT1V, 0x100, 0); |
| 595 | snd_soc_update_bits(codec, WM8731_LINVOL, 0x100, 0); |
| 596 | snd_soc_update_bits(codec, WM8731_RINVOL, 0x100, 0); |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 597 | |
Mark Brown | ce3bdaa | 2009-02-19 14:29:49 +0000 | [diff] [blame] | 598 | /* Disable bypass path by default */ |
Dimitris Papastamos | 2062ea5 | 2010-12-01 09:38:55 +0000 | [diff] [blame] | 599 | snd_soc_update_bits(codec, WM8731_APANA, 0x8, 0); |
Mark Brown | ce3bdaa | 2009-02-19 14:29:49 +0000 | [diff] [blame] | 600 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 601 | snd_soc_add_controls(codec, wm8731_snd_controls, |
| 602 | ARRAY_SIZE(wm8731_snd_controls)); |
| 603 | wm8731_add_widgets(codec); |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 604 | |
Mark Brown | 06ae998 | 2010-05-07 19:14:45 +0100 | [diff] [blame] | 605 | /* Regulators will have been enabled by bias management */ |
| 606 | regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); |
| 607 | |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 608 | return 0; |
Mark Brown | fe5422f | 2009-07-05 15:18:01 +0100 | [diff] [blame] | 609 | |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 610 | err_regulator_enable: |
| 611 | regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); |
| 612 | err_regulator_get: |
| 613 | regulator_bulk_free(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 614 | |
Mark Brown | fe5422f | 2009-07-05 15:18:01 +0100 | [diff] [blame] | 615 | return ret; |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 616 | } |
| 617 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 618 | /* power down chip */ |
| 619 | static int wm8731_remove(struct snd_soc_codec *codec) |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 620 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 621 | struct wm8731_priv *wm8731 = snd_soc_codec_get_drvdata(codec); |
| 622 | |
| 623 | wm8731_set_bias_level(codec, SND_SOC_BIAS_OFF); |
| 624 | |
| 625 | regulator_bulk_disable(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); |
Mark Brown | 7dea7c0 | 2009-10-26 15:20:17 +0000 | [diff] [blame] | 626 | regulator_bulk_free(ARRAY_SIZE(wm8731->supplies), wm8731->supplies); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 627 | |
| 628 | return 0; |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 629 | } |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 630 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 631 | static struct snd_soc_codec_driver soc_codec_dev_wm8731 = { |
| 632 | .probe = wm8731_probe, |
| 633 | .remove = wm8731_remove, |
| 634 | .suspend = wm8731_suspend, |
| 635 | .resume = wm8731_resume, |
| 636 | .set_bias_level = wm8731_set_bias_level, |
Dimitris Papastamos | e5eec34 | 2010-09-10 18:14:56 +0100 | [diff] [blame] | 637 | .reg_cache_size = ARRAY_SIZE(wm8731_reg), |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 638 | .reg_word_size = sizeof(u16), |
| 639 | .reg_cache_default = wm8731_reg, |
| 640 | }; |
| 641 | |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 642 | #if defined(CONFIG_SPI_MASTER) |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 643 | static int __devinit wm8731_spi_probe(struct spi_device *spi) |
| 644 | { |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 645 | struct wm8731_priv *wm8731; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 646 | int ret; |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 647 | |
| 648 | wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL); |
| 649 | if (wm8731 == NULL) |
| 650 | return -ENOMEM; |
| 651 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 652 | wm8731->control_type = SND_SOC_SPI; |
| 653 | spi_set_drvdata(spi, wm8731); |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 654 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 655 | ret = snd_soc_register_codec(&spi->dev, |
| 656 | &soc_codec_dev_wm8731, &wm8731_dai, 1); |
| 657 | if (ret < 0) |
| 658 | kfree(wm8731); |
| 659 | return ret; |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | static int __devexit wm8731_spi_remove(struct spi_device *spi) |
| 663 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 664 | snd_soc_unregister_codec(&spi->dev); |
| 665 | kfree(spi_get_drvdata(spi)); |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 666 | return 0; |
| 667 | } |
| 668 | |
| 669 | static struct spi_driver wm8731_spi_driver = { |
| 670 | .driver = { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 671 | .name = "wm8731-codec", |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 672 | .owner = THIS_MODULE, |
| 673 | }, |
| 674 | .probe = wm8731_spi_probe, |
| 675 | .remove = __devexit_p(wm8731_spi_remove), |
| 676 | }; |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 677 | #endif /* CONFIG_SPI_MASTER */ |
| 678 | |
| 679 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
Mark Brown | c6f2981 | 2009-02-18 21:25:40 +0000 | [diff] [blame] | 680 | static __devinit int wm8731_i2c_probe(struct i2c_client *i2c, |
| 681 | const struct i2c_device_id *id) |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 682 | { |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 683 | struct wm8731_priv *wm8731; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 684 | int ret; |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 685 | |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 686 | wm8731 = kzalloc(sizeof(struct wm8731_priv), GFP_KERNEL); |
| 687 | if (wm8731 == NULL) |
| 688 | return -ENOMEM; |
| 689 | |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 690 | i2c_set_clientdata(i2c, wm8731); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 691 | wm8731->control_type = SND_SOC_I2C; |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 692 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 693 | ret = snd_soc_register_codec(&i2c->dev, |
| 694 | &soc_codec_dev_wm8731, &wm8731_dai, 1); |
| 695 | if (ret < 0) |
| 696 | kfree(wm8731); |
| 697 | return ret; |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 698 | } |
| 699 | |
Mark Brown | c6f2981 | 2009-02-18 21:25:40 +0000 | [diff] [blame] | 700 | static __devexit int wm8731_i2c_remove(struct i2c_client *client) |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 701 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 702 | snd_soc_unregister_codec(&client->dev); |
| 703 | kfree(i2c_get_clientdata(client)); |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 704 | return 0; |
| 705 | } |
| 706 | |
| 707 | static const struct i2c_device_id wm8731_i2c_id[] = { |
| 708 | { "wm8731", 0 }, |
| 709 | { } |
| 710 | }; |
| 711 | MODULE_DEVICE_TABLE(i2c, wm8731_i2c_id); |
| 712 | |
| 713 | static struct i2c_driver wm8731_i2c_driver = { |
| 714 | .driver = { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 715 | .name = "wm8731-codec", |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 716 | .owner = THIS_MODULE, |
| 717 | }, |
| 718 | .probe = wm8731_i2c_probe, |
Mark Brown | c6f2981 | 2009-02-18 21:25:40 +0000 | [diff] [blame] | 719 | .remove = __devexit_p(wm8731_i2c_remove), |
Mark Brown | a8035c8 | 2009-02-16 19:35:43 +0000 | [diff] [blame] | 720 | .id_table = wm8731_i2c_id, |
| 721 | }; |
| 722 | #endif |
| 723 | |
Takashi Iwai | c9b3a40 | 2008-12-10 07:47:22 +0100 | [diff] [blame] | 724 | static int __init wm8731_modinit(void) |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 725 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 726 | int ret = 0; |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 727 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
| 728 | ret = i2c_add_driver(&wm8731_i2c_driver); |
| 729 | if (ret != 0) { |
| 730 | printk(KERN_ERR "Failed to register WM8731 I2C driver: %d\n", |
| 731 | ret); |
| 732 | } |
| 733 | #endif |
| 734 | #if defined(CONFIG_SPI_MASTER) |
| 735 | ret = spi_register_driver(&wm8731_spi_driver); |
| 736 | if (ret != 0) { |
| 737 | printk(KERN_ERR "Failed to register WM8731 SPI driver: %d\n", |
| 738 | ret); |
| 739 | } |
| 740 | #endif |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 741 | return ret; |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 742 | } |
| 743 | module_init(wm8731_modinit); |
| 744 | |
| 745 | static void __exit wm8731_exit(void) |
| 746 | { |
Mark Brown | 5998102 | 2009-02-16 20:49:16 +0000 | [diff] [blame] | 747 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
| 748 | i2c_del_driver(&wm8731_i2c_driver); |
| 749 | #endif |
| 750 | #if defined(CONFIG_SPI_MASTER) |
| 751 | spi_unregister_driver(&wm8731_spi_driver); |
| 752 | #endif |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 753 | } |
| 754 | module_exit(wm8731_exit); |
| 755 | |
Richard Purdie | 40e0aa6 | 2006-10-06 18:36:07 +0200 | [diff] [blame] | 756 | MODULE_DESCRIPTION("ASoC WM8731 driver"); |
| 757 | MODULE_AUTHOR("Richard Purdie"); |
| 758 | MODULE_LICENSE("GPL"); |