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