Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1 | /* |
| 2 | * wm8960.c -- WM8960 ALSA SoC Audio driver |
| 3 | * |
Mark Brown | 656baae | 2012-05-23 12:39:07 +0100 | [diff] [blame] | 4 | * Copyright 2007-11 Wolfson Microelectronics, plc |
| 5 | * |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 6 | * Author: Liam Girdwood |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/moduleparam.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/delay.h> |
| 17 | #include <linux/pm.h> |
Zidan Wang | 75aa886 | 2015-01-07 15:31:44 +0800 | [diff] [blame] | 18 | #include <linux/clk.h> |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 19 | #include <linux/i2c.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 21 | #include <sound/core.h> |
| 22 | #include <sound/pcm.h> |
| 23 | #include <sound/pcm_params.h> |
| 24 | #include <sound/soc.h> |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 25 | #include <sound/initval.h> |
| 26 | #include <sound/tlv.h> |
Mark Brown | b6877a4 | 2010-03-03 11:43:38 +0000 | [diff] [blame] | 27 | #include <sound/wm8960.h> |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 28 | |
| 29 | #include "wm8960.h" |
| 30 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 31 | /* R25 - Power 1 */ |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 32 | #define WM8960_VMID_MASK 0x180 |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 33 | #define WM8960_VREF 0x40 |
| 34 | |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 35 | /* R26 - Power 2 */ |
| 36 | #define WM8960_PWR2_LOUT1 0x40 |
| 37 | #define WM8960_PWR2_ROUT1 0x20 |
| 38 | #define WM8960_PWR2_OUT3 0x02 |
| 39 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 40 | /* R28 - Anti-pop 1 */ |
| 41 | #define WM8960_POBCTRL 0x80 |
| 42 | #define WM8960_BUFDCOPEN 0x10 |
| 43 | #define WM8960_BUFIOEN 0x08 |
| 44 | #define WM8960_SOFT_ST 0x04 |
| 45 | #define WM8960_HPSTBY 0x01 |
| 46 | |
| 47 | /* R29 - Anti-pop 2 */ |
| 48 | #define WM8960_DISOP 0x40 |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 49 | #define WM8960_DRES_MASK 0x30 |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 50 | |
| 51 | /* |
| 52 | * wm8960 register cache |
| 53 | * We can't read the WM8960 register space when we are |
| 54 | * using 2 wire for device control, so we cache them instead. |
| 55 | */ |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 56 | static const struct reg_default wm8960_reg_defaults[] = { |
Mark Brown | b3df026 | 2013-02-26 23:35:46 +0000 | [diff] [blame] | 57 | { 0x0, 0x00a7 }, |
| 58 | { 0x1, 0x00a7 }, |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 59 | { 0x2, 0x0000 }, |
| 60 | { 0x3, 0x0000 }, |
| 61 | { 0x4, 0x0000 }, |
| 62 | { 0x5, 0x0008 }, |
| 63 | { 0x6, 0x0000 }, |
| 64 | { 0x7, 0x000a }, |
| 65 | { 0x8, 0x01c0 }, |
| 66 | { 0x9, 0x0000 }, |
| 67 | { 0xa, 0x00ff }, |
| 68 | { 0xb, 0x00ff }, |
| 69 | |
| 70 | { 0x10, 0x0000 }, |
| 71 | { 0x11, 0x007b }, |
| 72 | { 0x12, 0x0100 }, |
| 73 | { 0x13, 0x0032 }, |
| 74 | { 0x14, 0x0000 }, |
| 75 | { 0x15, 0x00c3 }, |
| 76 | { 0x16, 0x00c3 }, |
| 77 | { 0x17, 0x01c0 }, |
| 78 | { 0x18, 0x0000 }, |
| 79 | { 0x19, 0x0000 }, |
| 80 | { 0x1a, 0x0000 }, |
| 81 | { 0x1b, 0x0000 }, |
| 82 | { 0x1c, 0x0000 }, |
| 83 | { 0x1d, 0x0000 }, |
| 84 | |
| 85 | { 0x20, 0x0100 }, |
| 86 | { 0x21, 0x0100 }, |
| 87 | { 0x22, 0x0050 }, |
| 88 | |
| 89 | { 0x25, 0x0050 }, |
| 90 | { 0x26, 0x0000 }, |
| 91 | { 0x27, 0x0000 }, |
| 92 | { 0x28, 0x0000 }, |
| 93 | { 0x29, 0x0000 }, |
| 94 | { 0x2a, 0x0040 }, |
| 95 | { 0x2b, 0x0000 }, |
| 96 | { 0x2c, 0x0000 }, |
| 97 | { 0x2d, 0x0050 }, |
| 98 | { 0x2e, 0x0050 }, |
| 99 | { 0x2f, 0x0000 }, |
| 100 | { 0x30, 0x0002 }, |
| 101 | { 0x31, 0x0037 }, |
| 102 | |
| 103 | { 0x33, 0x0080 }, |
| 104 | { 0x34, 0x0008 }, |
| 105 | { 0x35, 0x0031 }, |
| 106 | { 0x36, 0x0026 }, |
| 107 | { 0x37, 0x00e9 }, |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 108 | }; |
| 109 | |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 110 | static bool wm8960_volatile(struct device *dev, unsigned int reg) |
| 111 | { |
| 112 | switch (reg) { |
| 113 | case WM8960_RESET: |
| 114 | return true; |
| 115 | default: |
| 116 | return false; |
| 117 | } |
| 118 | } |
| 119 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 120 | struct wm8960_priv { |
Zidan Wang | 75aa886 | 2015-01-07 15:31:44 +0800 | [diff] [blame] | 121 | struct clk *mclk; |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 122 | struct regmap *regmap; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 123 | int (*set_bias_level)(struct snd_soc_codec *, |
| 124 | enum snd_soc_bias_level level); |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 125 | struct snd_soc_dapm_widget *lout1; |
| 126 | struct snd_soc_dapm_widget *rout1; |
| 127 | struct snd_soc_dapm_widget *out3; |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 128 | bool deemph; |
| 129 | int playback_fs; |
Zidan Wang | 0e50b51 | 2015-05-12 14:58:08 +0800 | [diff] [blame^] | 130 | int bclk; |
| 131 | int sysclk; |
Zidan Wang | e2280c90 | 2014-11-20 19:07:48 +0800 | [diff] [blame] | 132 | struct wm8960_data pdata; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 133 | }; |
| 134 | |
Zidan Wang | 3ad5e86 | 2014-11-27 16:53:08 +0800 | [diff] [blame] | 135 | #define wm8960_reset(c) regmap_write(c, WM8960_RESET, 0) |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 136 | |
| 137 | /* enumerated controls */ |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 138 | static const char *wm8960_polarity[] = {"No Inversion", "Left Inverted", |
| 139 | "Right Inverted", "Stereo Inversion"}; |
| 140 | static const char *wm8960_3d_upper_cutoff[] = {"High", "Low"}; |
| 141 | static const char *wm8960_3d_lower_cutoff[] = {"Low", "High"}; |
| 142 | static const char *wm8960_alcfunc[] = {"Off", "Right", "Left", "Stereo"}; |
| 143 | static const char *wm8960_alcmode[] = {"ALC", "Limiter"}; |
| 144 | |
| 145 | static const struct soc_enum wm8960_enum[] = { |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 146 | SOC_ENUM_SINGLE(WM8960_DACCTL1, 5, 4, wm8960_polarity), |
| 147 | SOC_ENUM_SINGLE(WM8960_DACCTL2, 5, 4, wm8960_polarity), |
| 148 | SOC_ENUM_SINGLE(WM8960_3D, 6, 2, wm8960_3d_upper_cutoff), |
| 149 | SOC_ENUM_SINGLE(WM8960_3D, 5, 2, wm8960_3d_lower_cutoff), |
| 150 | SOC_ENUM_SINGLE(WM8960_ALC1, 7, 4, wm8960_alcfunc), |
| 151 | SOC_ENUM_SINGLE(WM8960_ALC3, 8, 2, wm8960_alcmode), |
| 152 | }; |
| 153 | |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 154 | static const int deemph_settings[] = { 0, 32000, 44100, 48000 }; |
| 155 | |
| 156 | static int wm8960_set_deemph(struct snd_soc_codec *codec) |
| 157 | { |
| 158 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
| 159 | int val, i, best; |
| 160 | |
| 161 | /* If we're using deemphasis select the nearest available sample |
| 162 | * rate. |
| 163 | */ |
| 164 | if (wm8960->deemph) { |
| 165 | best = 1; |
| 166 | for (i = 2; i < ARRAY_SIZE(deemph_settings); i++) { |
| 167 | if (abs(deemph_settings[i] - wm8960->playback_fs) < |
| 168 | abs(deemph_settings[best] - wm8960->playback_fs)) |
| 169 | best = i; |
| 170 | } |
| 171 | |
| 172 | val = best << 1; |
| 173 | } else { |
| 174 | val = 0; |
| 175 | } |
| 176 | |
| 177 | dev_dbg(codec->dev, "Set deemphasis %d\n", val); |
| 178 | |
| 179 | return snd_soc_update_bits(codec, WM8960_DACCTL1, |
| 180 | 0x6, val); |
| 181 | } |
| 182 | |
| 183 | static int wm8960_get_deemph(struct snd_kcontrol *kcontrol, |
| 184 | struct snd_ctl_elem_value *ucontrol) |
| 185 | { |
Lars-Peter Clausen | ea53bf7 | 2014-03-18 09:02:04 +0100 | [diff] [blame] | 186 | struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol); |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 187 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
| 188 | |
Takashi Iwai | b4a18c8 | 2015-03-10 12:39:14 +0100 | [diff] [blame] | 189 | ucontrol->value.integer.value[0] = wm8960->deemph; |
Dmitry Artamonow | 3f343f8 | 2010-12-08 23:36:17 +0300 | [diff] [blame] | 190 | return 0; |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | static int wm8960_put_deemph(struct snd_kcontrol *kcontrol, |
| 194 | struct snd_ctl_elem_value *ucontrol) |
| 195 | { |
Lars-Peter Clausen | ea53bf7 | 2014-03-18 09:02:04 +0100 | [diff] [blame] | 196 | struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol); |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 197 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
Takashi Iwai | b4a18c8 | 2015-03-10 12:39:14 +0100 | [diff] [blame] | 198 | int deemph = ucontrol->value.integer.value[0]; |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 199 | |
| 200 | if (deemph > 1) |
| 201 | return -EINVAL; |
| 202 | |
| 203 | wm8960->deemph = deemph; |
| 204 | |
| 205 | return wm8960_set_deemph(codec); |
| 206 | } |
| 207 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 208 | static const DECLARE_TLV_DB_SCALE(adc_tlv, -9700, 50, 0); |
| 209 | static const DECLARE_TLV_DB_SCALE(dac_tlv, -12700, 50, 1); |
| 210 | static const DECLARE_TLV_DB_SCALE(bypass_tlv, -2100, 300, 0); |
| 211 | static const DECLARE_TLV_DB_SCALE(out_tlv, -12100, 100, 1); |
Mark Brown | 21eb269 | 2013-02-26 23:36:37 +0000 | [diff] [blame] | 212 | static const DECLARE_TLV_DB_SCALE(boost_tlv, -1200, 300, 1); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 213 | |
| 214 | static const struct snd_kcontrol_new wm8960_snd_controls[] = { |
| 215 | SOC_DOUBLE_R_TLV("Capture Volume", WM8960_LINVOL, WM8960_RINVOL, |
| 216 | 0, 63, 0, adc_tlv), |
| 217 | SOC_DOUBLE_R("Capture Volume ZC Switch", WM8960_LINVOL, WM8960_RINVOL, |
| 218 | 6, 1, 0), |
| 219 | SOC_DOUBLE_R("Capture Switch", WM8960_LINVOL, WM8960_RINVOL, |
| 220 | 7, 1, 0), |
| 221 | |
Mark Brown | 21eb269 | 2013-02-26 23:36:37 +0000 | [diff] [blame] | 222 | SOC_SINGLE_TLV("Right Input Boost Mixer RINPUT3 Volume", |
| 223 | WM8960_INBMIX1, 4, 7, 0, boost_tlv), |
| 224 | SOC_SINGLE_TLV("Right Input Boost Mixer RINPUT2 Volume", |
| 225 | WM8960_INBMIX1, 1, 7, 0, boost_tlv), |
| 226 | SOC_SINGLE_TLV("Left Input Boost Mixer LINPUT3 Volume", |
| 227 | WM8960_INBMIX2, 4, 7, 0, boost_tlv), |
| 228 | SOC_SINGLE_TLV("Left Input Boost Mixer LINPUT2 Volume", |
| 229 | WM8960_INBMIX2, 1, 7, 0, boost_tlv), |
| 230 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 231 | SOC_DOUBLE_R_TLV("Playback Volume", WM8960_LDAC, WM8960_RDAC, |
| 232 | 0, 255, 0, dac_tlv), |
| 233 | |
| 234 | SOC_DOUBLE_R_TLV("Headphone Playback Volume", WM8960_LOUT1, WM8960_ROUT1, |
| 235 | 0, 127, 0, out_tlv), |
| 236 | SOC_DOUBLE_R("Headphone Playback ZC Switch", WM8960_LOUT1, WM8960_ROUT1, |
| 237 | 7, 1, 0), |
| 238 | |
| 239 | SOC_DOUBLE_R_TLV("Speaker Playback Volume", WM8960_LOUT2, WM8960_ROUT2, |
| 240 | 0, 127, 0, out_tlv), |
| 241 | SOC_DOUBLE_R("Speaker Playback ZC Switch", WM8960_LOUT2, WM8960_ROUT2, |
| 242 | 7, 1, 0), |
| 243 | SOC_SINGLE("Speaker DC Volume", WM8960_CLASSD3, 3, 5, 0), |
| 244 | SOC_SINGLE("Speaker AC Volume", WM8960_CLASSD3, 0, 5, 0), |
| 245 | |
| 246 | SOC_SINGLE("PCM Playback -6dB Switch", WM8960_DACCTL1, 7, 1, 0), |
Mark Brown | 4faaa8d | 2010-07-05 13:54:32 +0900 | [diff] [blame] | 247 | SOC_ENUM("ADC Polarity", wm8960_enum[0]), |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 248 | SOC_SINGLE("ADC High Pass Filter Switch", WM8960_DACCTL1, 0, 1, 0), |
| 249 | |
| 250 | SOC_ENUM("DAC Polarity", wm8960_enum[2]), |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 251 | SOC_SINGLE_BOOL_EXT("DAC Deemphasis Switch", 0, |
| 252 | wm8960_get_deemph, wm8960_put_deemph), |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 253 | |
Mark Brown | 4faaa8d | 2010-07-05 13:54:32 +0900 | [diff] [blame] | 254 | SOC_ENUM("3D Filter Upper Cut-Off", wm8960_enum[2]), |
| 255 | SOC_ENUM("3D Filter Lower Cut-Off", wm8960_enum[3]), |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 256 | SOC_SINGLE("3D Volume", WM8960_3D, 1, 15, 0), |
| 257 | SOC_SINGLE("3D Switch", WM8960_3D, 0, 1, 0), |
| 258 | |
Mark Brown | 4faaa8d | 2010-07-05 13:54:32 +0900 | [diff] [blame] | 259 | SOC_ENUM("ALC Function", wm8960_enum[4]), |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 260 | SOC_SINGLE("ALC Max Gain", WM8960_ALC1, 4, 7, 0), |
| 261 | SOC_SINGLE("ALC Target", WM8960_ALC1, 0, 15, 1), |
| 262 | SOC_SINGLE("ALC Min Gain", WM8960_ALC2, 4, 7, 0), |
| 263 | SOC_SINGLE("ALC Hold Time", WM8960_ALC2, 0, 15, 0), |
Mark Brown | 4faaa8d | 2010-07-05 13:54:32 +0900 | [diff] [blame] | 264 | SOC_ENUM("ALC Mode", wm8960_enum[5]), |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 265 | SOC_SINGLE("ALC Decay", WM8960_ALC3, 4, 15, 0), |
| 266 | SOC_SINGLE("ALC Attack", WM8960_ALC3, 0, 15, 0), |
| 267 | |
| 268 | SOC_SINGLE("Noise Gate Threshold", WM8960_NOISEG, 3, 31, 0), |
| 269 | SOC_SINGLE("Noise Gate Switch", WM8960_NOISEG, 0, 1, 0), |
| 270 | |
Ma Haijun | c324aac | 2013-08-14 09:15:38 +0800 | [diff] [blame] | 271 | SOC_DOUBLE_R_TLV("ADC PCM Capture Volume", WM8960_LADC, WM8960_RADC, |
| 272 | 0, 255, 0, adc_tlv), |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 273 | |
| 274 | SOC_SINGLE_TLV("Left Output Mixer Boost Bypass Volume", |
| 275 | WM8960_BYPASS1, 4, 7, 1, bypass_tlv), |
| 276 | SOC_SINGLE_TLV("Left Output Mixer LINPUT3 Volume", |
| 277 | WM8960_LOUTMIX, 4, 7, 1, bypass_tlv), |
| 278 | SOC_SINGLE_TLV("Right Output Mixer Boost Bypass Volume", |
| 279 | WM8960_BYPASS2, 4, 7, 1, bypass_tlv), |
| 280 | SOC_SINGLE_TLV("Right Output Mixer RINPUT3 Volume", |
| 281 | WM8960_ROUTMIX, 4, 7, 1, bypass_tlv), |
| 282 | }; |
| 283 | |
| 284 | static const struct snd_kcontrol_new wm8960_lin_boost[] = { |
| 285 | SOC_DAPM_SINGLE("LINPUT2 Switch", WM8960_LINPATH, 6, 1, 0), |
| 286 | SOC_DAPM_SINGLE("LINPUT3 Switch", WM8960_LINPATH, 7, 1, 0), |
| 287 | SOC_DAPM_SINGLE("LINPUT1 Switch", WM8960_LINPATH, 8, 1, 0), |
| 288 | }; |
| 289 | |
| 290 | static const struct snd_kcontrol_new wm8960_lin[] = { |
| 291 | SOC_DAPM_SINGLE("Boost Switch", WM8960_LINPATH, 3, 1, 0), |
| 292 | }; |
| 293 | |
| 294 | static const struct snd_kcontrol_new wm8960_rin_boost[] = { |
| 295 | SOC_DAPM_SINGLE("RINPUT2 Switch", WM8960_RINPATH, 6, 1, 0), |
| 296 | SOC_DAPM_SINGLE("RINPUT3 Switch", WM8960_RINPATH, 7, 1, 0), |
| 297 | SOC_DAPM_SINGLE("RINPUT1 Switch", WM8960_RINPATH, 8, 1, 0), |
| 298 | }; |
| 299 | |
| 300 | static const struct snd_kcontrol_new wm8960_rin[] = { |
| 301 | SOC_DAPM_SINGLE("Boost Switch", WM8960_RINPATH, 3, 1, 0), |
| 302 | }; |
| 303 | |
| 304 | static const struct snd_kcontrol_new wm8960_loutput_mixer[] = { |
| 305 | SOC_DAPM_SINGLE("PCM Playback Switch", WM8960_LOUTMIX, 8, 1, 0), |
| 306 | SOC_DAPM_SINGLE("LINPUT3 Switch", WM8960_LOUTMIX, 7, 1, 0), |
| 307 | SOC_DAPM_SINGLE("Boost Bypass Switch", WM8960_BYPASS1, 7, 1, 0), |
| 308 | }; |
| 309 | |
| 310 | static const struct snd_kcontrol_new wm8960_routput_mixer[] = { |
| 311 | SOC_DAPM_SINGLE("PCM Playback Switch", WM8960_ROUTMIX, 8, 1, 0), |
| 312 | SOC_DAPM_SINGLE("RINPUT3 Switch", WM8960_ROUTMIX, 7, 1, 0), |
| 313 | SOC_DAPM_SINGLE("Boost Bypass Switch", WM8960_BYPASS2, 7, 1, 0), |
| 314 | }; |
| 315 | |
| 316 | static const struct snd_kcontrol_new wm8960_mono_out[] = { |
| 317 | SOC_DAPM_SINGLE("Left Switch", WM8960_MONOMIX1, 7, 1, 0), |
| 318 | SOC_DAPM_SINGLE("Right Switch", WM8960_MONOMIX2, 7, 1, 0), |
| 319 | }; |
| 320 | |
| 321 | static const struct snd_soc_dapm_widget wm8960_dapm_widgets[] = { |
| 322 | SND_SOC_DAPM_INPUT("LINPUT1"), |
| 323 | SND_SOC_DAPM_INPUT("RINPUT1"), |
| 324 | SND_SOC_DAPM_INPUT("LINPUT2"), |
| 325 | SND_SOC_DAPM_INPUT("RINPUT2"), |
| 326 | SND_SOC_DAPM_INPUT("LINPUT3"), |
| 327 | SND_SOC_DAPM_INPUT("RINPUT3"), |
| 328 | |
Mark Brown | 187774c | 2011-10-27 09:46:17 +0200 | [diff] [blame] | 329 | SND_SOC_DAPM_SUPPLY("MICB", WM8960_POWER1, 1, 0, NULL, 0), |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 330 | |
| 331 | SND_SOC_DAPM_MIXER("Left Boost Mixer", WM8960_POWER1, 5, 0, |
| 332 | wm8960_lin_boost, ARRAY_SIZE(wm8960_lin_boost)), |
| 333 | SND_SOC_DAPM_MIXER("Right Boost Mixer", WM8960_POWER1, 4, 0, |
| 334 | wm8960_rin_boost, ARRAY_SIZE(wm8960_rin_boost)), |
| 335 | |
| 336 | SND_SOC_DAPM_MIXER("Left Input Mixer", WM8960_POWER3, 5, 0, |
| 337 | wm8960_lin, ARRAY_SIZE(wm8960_lin)), |
| 338 | SND_SOC_DAPM_MIXER("Right Input Mixer", WM8960_POWER3, 4, 0, |
| 339 | wm8960_rin, ARRAY_SIZE(wm8960_rin)), |
| 340 | |
Mark Brown | 44426de | 2013-02-26 23:36:48 +0000 | [diff] [blame] | 341 | SND_SOC_DAPM_ADC("Left ADC", "Capture", WM8960_POWER1, 3, 0), |
| 342 | SND_SOC_DAPM_ADC("Right ADC", "Capture", WM8960_POWER1, 2, 0), |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 343 | |
| 344 | SND_SOC_DAPM_DAC("Left DAC", "Playback", WM8960_POWER2, 8, 0), |
| 345 | SND_SOC_DAPM_DAC("Right DAC", "Playback", WM8960_POWER2, 7, 0), |
| 346 | |
| 347 | SND_SOC_DAPM_MIXER("Left Output Mixer", WM8960_POWER3, 3, 0, |
| 348 | &wm8960_loutput_mixer[0], |
| 349 | ARRAY_SIZE(wm8960_loutput_mixer)), |
| 350 | SND_SOC_DAPM_MIXER("Right Output Mixer", WM8960_POWER3, 2, 0, |
| 351 | &wm8960_routput_mixer[0], |
| 352 | ARRAY_SIZE(wm8960_routput_mixer)), |
| 353 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 354 | SND_SOC_DAPM_PGA("LOUT1 PGA", WM8960_POWER2, 6, 0, NULL, 0), |
| 355 | SND_SOC_DAPM_PGA("ROUT1 PGA", WM8960_POWER2, 5, 0, NULL, 0), |
| 356 | |
| 357 | SND_SOC_DAPM_PGA("Left Speaker PGA", WM8960_POWER2, 4, 0, NULL, 0), |
| 358 | SND_SOC_DAPM_PGA("Right Speaker PGA", WM8960_POWER2, 3, 0, NULL, 0), |
| 359 | |
| 360 | SND_SOC_DAPM_PGA("Right Speaker Output", WM8960_CLASSD1, 7, 0, NULL, 0), |
| 361 | SND_SOC_DAPM_PGA("Left Speaker Output", WM8960_CLASSD1, 6, 0, NULL, 0), |
| 362 | |
| 363 | SND_SOC_DAPM_OUTPUT("SPK_LP"), |
| 364 | SND_SOC_DAPM_OUTPUT("SPK_LN"), |
| 365 | SND_SOC_DAPM_OUTPUT("HP_L"), |
| 366 | SND_SOC_DAPM_OUTPUT("HP_R"), |
| 367 | SND_SOC_DAPM_OUTPUT("SPK_RP"), |
| 368 | SND_SOC_DAPM_OUTPUT("SPK_RN"), |
| 369 | SND_SOC_DAPM_OUTPUT("OUT3"), |
| 370 | }; |
| 371 | |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 372 | static const struct snd_soc_dapm_widget wm8960_dapm_widgets_out3[] = { |
| 373 | SND_SOC_DAPM_MIXER("Mono Output Mixer", WM8960_POWER2, 1, 0, |
| 374 | &wm8960_mono_out[0], |
| 375 | ARRAY_SIZE(wm8960_mono_out)), |
| 376 | }; |
| 377 | |
| 378 | /* Represent OUT3 as a PGA so that it gets turned on with LOUT1/ROUT1 */ |
| 379 | static const struct snd_soc_dapm_widget wm8960_dapm_widgets_capless[] = { |
| 380 | SND_SOC_DAPM_PGA("OUT3 VMID", WM8960_POWER2, 1, 0, NULL, 0), |
| 381 | }; |
| 382 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 383 | static const struct snd_soc_dapm_route audio_paths[] = { |
| 384 | { "Left Boost Mixer", "LINPUT1 Switch", "LINPUT1" }, |
| 385 | { "Left Boost Mixer", "LINPUT2 Switch", "LINPUT2" }, |
| 386 | { "Left Boost Mixer", "LINPUT3 Switch", "LINPUT3" }, |
| 387 | |
| 388 | { "Left Input Mixer", "Boost Switch", "Left Boost Mixer", }, |
| 389 | { "Left Input Mixer", NULL, "LINPUT1", }, /* Really Boost Switch */ |
| 390 | { "Left Input Mixer", NULL, "LINPUT2" }, |
| 391 | { "Left Input Mixer", NULL, "LINPUT3" }, |
| 392 | |
| 393 | { "Right Boost Mixer", "RINPUT1 Switch", "RINPUT1" }, |
| 394 | { "Right Boost Mixer", "RINPUT2 Switch", "RINPUT2" }, |
| 395 | { "Right Boost Mixer", "RINPUT3 Switch", "RINPUT3" }, |
| 396 | |
| 397 | { "Right Input Mixer", "Boost Switch", "Right Boost Mixer", }, |
| 398 | { "Right Input Mixer", NULL, "RINPUT1", }, /* Really Boost Switch */ |
| 399 | { "Right Input Mixer", NULL, "RINPUT2" }, |
| 400 | { "Right Input Mixer", NULL, "LINPUT3" }, |
| 401 | |
| 402 | { "Left ADC", NULL, "Left Input Mixer" }, |
| 403 | { "Right ADC", NULL, "Right Input Mixer" }, |
| 404 | |
| 405 | { "Left Output Mixer", "LINPUT3 Switch", "LINPUT3" }, |
| 406 | { "Left Output Mixer", "Boost Bypass Switch", "Left Boost Mixer"} , |
| 407 | { "Left Output Mixer", "PCM Playback Switch", "Left DAC" }, |
| 408 | |
| 409 | { "Right Output Mixer", "RINPUT3 Switch", "RINPUT3" }, |
| 410 | { "Right Output Mixer", "Boost Bypass Switch", "Right Boost Mixer" } , |
| 411 | { "Right Output Mixer", "PCM Playback Switch", "Right DAC" }, |
| 412 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 413 | { "LOUT1 PGA", NULL, "Left Output Mixer" }, |
| 414 | { "ROUT1 PGA", NULL, "Right Output Mixer" }, |
| 415 | |
| 416 | { "HP_L", NULL, "LOUT1 PGA" }, |
| 417 | { "HP_R", NULL, "ROUT1 PGA" }, |
| 418 | |
| 419 | { "Left Speaker PGA", NULL, "Left Output Mixer" }, |
| 420 | { "Right Speaker PGA", NULL, "Right Output Mixer" }, |
| 421 | |
| 422 | { "Left Speaker Output", NULL, "Left Speaker PGA" }, |
| 423 | { "Right Speaker Output", NULL, "Right Speaker PGA" }, |
| 424 | |
| 425 | { "SPK_LN", NULL, "Left Speaker Output" }, |
| 426 | { "SPK_LP", NULL, "Left Speaker Output" }, |
| 427 | { "SPK_RN", NULL, "Right Speaker Output" }, |
| 428 | { "SPK_RP", NULL, "Right Speaker Output" }, |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 429 | }; |
| 430 | |
| 431 | static const struct snd_soc_dapm_route audio_paths_out3[] = { |
| 432 | { "Mono Output Mixer", "Left Switch", "Left Output Mixer" }, |
| 433 | { "Mono Output Mixer", "Right Switch", "Right Output Mixer" }, |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 434 | |
| 435 | { "OUT3", NULL, "Mono Output Mixer", } |
| 436 | }; |
| 437 | |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 438 | static const struct snd_soc_dapm_route audio_paths_capless[] = { |
| 439 | { "HP_L", NULL, "OUT3 VMID" }, |
| 440 | { "HP_R", NULL, "OUT3 VMID" }, |
| 441 | |
| 442 | { "OUT3 VMID", NULL, "Left Output Mixer" }, |
| 443 | { "OUT3 VMID", NULL, "Right Output Mixer" }, |
| 444 | }; |
| 445 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 446 | static int wm8960_add_widgets(struct snd_soc_codec *codec) |
| 447 | { |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 448 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
Zidan Wang | e2280c90 | 2014-11-20 19:07:48 +0800 | [diff] [blame] | 449 | struct wm8960_data *pdata = &wm8960->pdata; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 450 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 451 | struct snd_soc_dapm_widget *w; |
| 452 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 453 | snd_soc_dapm_new_controls(dapm, wm8960_dapm_widgets, |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 454 | ARRAY_SIZE(wm8960_dapm_widgets)); |
| 455 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 456 | snd_soc_dapm_add_routes(dapm, audio_paths, ARRAY_SIZE(audio_paths)); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 457 | |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 458 | /* In capless mode OUT3 is used to provide VMID for the |
| 459 | * headphone outputs, otherwise it is used as a mono mixer. |
| 460 | */ |
| 461 | if (pdata && pdata->capless) { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 462 | snd_soc_dapm_new_controls(dapm, wm8960_dapm_widgets_capless, |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 463 | ARRAY_SIZE(wm8960_dapm_widgets_capless)); |
| 464 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 465 | snd_soc_dapm_add_routes(dapm, audio_paths_capless, |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 466 | ARRAY_SIZE(audio_paths_capless)); |
| 467 | } else { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 468 | snd_soc_dapm_new_controls(dapm, wm8960_dapm_widgets_out3, |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 469 | ARRAY_SIZE(wm8960_dapm_widgets_out3)); |
| 470 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 471 | snd_soc_dapm_add_routes(dapm, audio_paths_out3, |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 472 | ARRAY_SIZE(audio_paths_out3)); |
| 473 | } |
| 474 | |
| 475 | /* We need to power up the headphone output stage out of |
| 476 | * sequence for capless mode. To save scanning the widget |
| 477 | * list each time to find the desired power state do so now |
| 478 | * and save the result. |
| 479 | */ |
Lars-Peter Clausen | 0020010 | 2014-07-17 22:01:07 +0200 | [diff] [blame] | 480 | list_for_each_entry(w, &codec->component.card->widgets, list) { |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 481 | if (w->dapm != &codec->dapm) |
| 482 | continue; |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 483 | if (strcmp(w->name, "LOUT1 PGA") == 0) |
| 484 | wm8960->lout1 = w; |
| 485 | if (strcmp(w->name, "ROUT1 PGA") == 0) |
| 486 | wm8960->rout1 = w; |
| 487 | if (strcmp(w->name, "OUT3 VMID") == 0) |
| 488 | wm8960->out3 = w; |
| 489 | } |
| 490 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 491 | return 0; |
| 492 | } |
| 493 | |
| 494 | static int wm8960_set_dai_fmt(struct snd_soc_dai *codec_dai, |
| 495 | unsigned int fmt) |
| 496 | { |
| 497 | struct snd_soc_codec *codec = codec_dai->codec; |
| 498 | u16 iface = 0; |
| 499 | |
| 500 | /* set master/slave audio interface */ |
| 501 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 502 | case SND_SOC_DAIFMT_CBM_CFM: |
| 503 | iface |= 0x0040; |
| 504 | break; |
| 505 | case SND_SOC_DAIFMT_CBS_CFS: |
| 506 | break; |
| 507 | default: |
| 508 | return -EINVAL; |
| 509 | } |
| 510 | |
| 511 | /* interface format */ |
| 512 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 513 | case SND_SOC_DAIFMT_I2S: |
| 514 | iface |= 0x0002; |
| 515 | break; |
| 516 | case SND_SOC_DAIFMT_RIGHT_J: |
| 517 | break; |
| 518 | case SND_SOC_DAIFMT_LEFT_J: |
| 519 | iface |= 0x0001; |
| 520 | break; |
| 521 | case SND_SOC_DAIFMT_DSP_A: |
| 522 | iface |= 0x0003; |
| 523 | break; |
| 524 | case SND_SOC_DAIFMT_DSP_B: |
| 525 | iface |= 0x0013; |
| 526 | break; |
| 527 | default: |
| 528 | return -EINVAL; |
| 529 | } |
| 530 | |
| 531 | /* clock inversion */ |
| 532 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 533 | case SND_SOC_DAIFMT_NB_NF: |
| 534 | break; |
| 535 | case SND_SOC_DAIFMT_IB_IF: |
| 536 | iface |= 0x0090; |
| 537 | break; |
| 538 | case SND_SOC_DAIFMT_IB_NF: |
| 539 | iface |= 0x0080; |
| 540 | break; |
| 541 | case SND_SOC_DAIFMT_NB_IF: |
| 542 | iface |= 0x0010; |
| 543 | break; |
| 544 | default: |
| 545 | return -EINVAL; |
| 546 | } |
| 547 | |
| 548 | /* set iface */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 549 | snd_soc_write(codec, WM8960_IFACE1, iface); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 550 | return 0; |
| 551 | } |
| 552 | |
Mark Brown | db059c0 | 2010-07-05 23:54:51 +0900 | [diff] [blame] | 553 | static struct { |
| 554 | int rate; |
| 555 | unsigned int val; |
| 556 | } alc_rates[] = { |
| 557 | { 48000, 0 }, |
| 558 | { 44100, 0 }, |
| 559 | { 32000, 1 }, |
| 560 | { 22050, 2 }, |
| 561 | { 24000, 2 }, |
| 562 | { 16000, 3 }, |
Zidan Wang | 22ee76d | 2014-12-31 11:39:14 +0800 | [diff] [blame] | 563 | { 11025, 4 }, |
Mark Brown | db059c0 | 2010-07-05 23:54:51 +0900 | [diff] [blame] | 564 | { 12000, 4 }, |
| 565 | { 8000, 5 }, |
| 566 | }; |
| 567 | |
Zidan Wang | 0e50b51 | 2015-05-12 14:58:08 +0800 | [diff] [blame^] | 568 | /* Multiply 256 for internal 256 div */ |
| 569 | static const int dac_divs[] = { 256, 384, 512, 768, 1024, 1408, 1536 }; |
| 570 | |
| 571 | /* Multiply 10 to eliminate decimials */ |
| 572 | static const int bclk_divs[] = { |
| 573 | 10, 15, 20, 30, 40, 55, 60, 80, 110, |
| 574 | 120, 160, 220, 240, 320, 320, 320 |
| 575 | }; |
| 576 | |
| 577 | static void wm8960_configure_clocking(struct snd_soc_codec *codec, |
| 578 | bool tx, int lrclk) |
| 579 | { |
| 580 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
| 581 | u16 iface1 = snd_soc_read(codec, WM8960_IFACE1); |
| 582 | u16 iface2 = snd_soc_read(codec, WM8960_IFACE2); |
| 583 | u32 sysclk; |
| 584 | int i, j; |
| 585 | |
| 586 | if (!(iface1 & (1<<6))) { |
| 587 | dev_dbg(codec->dev, |
| 588 | "Codec is slave mode, no need to configure clock\n"); |
| 589 | return; |
| 590 | } |
| 591 | |
| 592 | if (!wm8960->sysclk) { |
| 593 | dev_dbg(codec->dev, "No SYSCLK configured\n"); |
| 594 | return; |
| 595 | } |
| 596 | |
| 597 | if (!wm8960->bclk || !lrclk) { |
| 598 | dev_dbg(codec->dev, "No audio clocks configured\n"); |
| 599 | return; |
| 600 | } |
| 601 | |
| 602 | for (i = 0; i < ARRAY_SIZE(dac_divs); ++i) { |
| 603 | if (wm8960->sysclk == lrclk * dac_divs[i]) { |
| 604 | for (j = 0; j < ARRAY_SIZE(bclk_divs); ++j) { |
| 605 | sysclk = wm8960->bclk * bclk_divs[j] / 10; |
| 606 | if (wm8960->sysclk == sysclk) |
| 607 | break; |
| 608 | } |
| 609 | if(j != ARRAY_SIZE(bclk_divs)) |
| 610 | break; |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | if (i == ARRAY_SIZE(dac_divs)) { |
| 615 | dev_err(codec->dev, "Unsupported sysclk %d\n", wm8960->sysclk); |
| 616 | return; |
| 617 | } |
| 618 | |
| 619 | /* |
| 620 | * configure frame clock. If ADCLRC configure as GPIO pin, DACLRC |
| 621 | * pin is used as a frame clock for ADCs and DACs. |
| 622 | */ |
| 623 | if (iface2 & (1<<6)) |
| 624 | snd_soc_update_bits(codec, WM8960_CLOCK1, 0x7 << 3, i << 3); |
| 625 | else if (tx) |
| 626 | snd_soc_update_bits(codec, WM8960_CLOCK1, 0x7 << 3, i << 3); |
| 627 | else if (!tx) |
| 628 | snd_soc_update_bits(codec, WM8960_CLOCK1, 0x7 << 6, i << 6); |
| 629 | |
| 630 | /* configure bit clock */ |
| 631 | snd_soc_update_bits(codec, WM8960_CLOCK2, 0xf, j); |
| 632 | } |
| 633 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 634 | static int wm8960_hw_params(struct snd_pcm_substream *substream, |
| 635 | struct snd_pcm_hw_params *params, |
| 636 | struct snd_soc_dai *dai) |
| 637 | { |
Mark Brown | e6968a1 | 2012-04-04 15:58:16 +0100 | [diff] [blame] | 638 | struct snd_soc_codec *codec = dai->codec; |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 639 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 640 | u16 iface = snd_soc_read(codec, WM8960_IFACE1) & 0xfff3; |
Zidan Wang | 0e50b51 | 2015-05-12 14:58:08 +0800 | [diff] [blame^] | 641 | bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
Mark Brown | db059c0 | 2010-07-05 23:54:51 +0900 | [diff] [blame] | 642 | int i; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 643 | |
Zidan Wang | 0e50b51 | 2015-05-12 14:58:08 +0800 | [diff] [blame^] | 644 | wm8960->bclk = snd_soc_params_to_bclk(params); |
| 645 | if (params_channels(params) == 1) |
| 646 | wm8960->bclk *= 2; |
| 647 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 648 | /* bit size */ |
Mark Brown | 39e9cc4 | 2014-07-31 12:53:23 +0100 | [diff] [blame] | 649 | switch (params_width(params)) { |
| 650 | case 16: |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 651 | break; |
Mark Brown | 39e9cc4 | 2014-07-31 12:53:23 +0100 | [diff] [blame] | 652 | case 20: |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 653 | iface |= 0x0004; |
| 654 | break; |
Mark Brown | 39e9cc4 | 2014-07-31 12:53:23 +0100 | [diff] [blame] | 655 | case 24: |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 656 | iface |= 0x0008; |
| 657 | break; |
Timur Tabi | 4c2474c | 2012-09-14 16:14:37 -0500 | [diff] [blame] | 658 | default: |
Mark Brown | 39e9cc4 | 2014-07-31 12:53:23 +0100 | [diff] [blame] | 659 | dev_err(codec->dev, "unsupported width %d\n", |
| 660 | params_width(params)); |
Timur Tabi | 4c2474c | 2012-09-14 16:14:37 -0500 | [diff] [blame] | 661 | return -EINVAL; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 662 | } |
| 663 | |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 664 | /* Update filters for the new rate */ |
| 665 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 666 | wm8960->playback_fs = params_rate(params); |
| 667 | wm8960_set_deemph(codec); |
Mark Brown | db059c0 | 2010-07-05 23:54:51 +0900 | [diff] [blame] | 668 | } else { |
| 669 | for (i = 0; i < ARRAY_SIZE(alc_rates); i++) |
| 670 | if (alc_rates[i].rate == params_rate(params)) |
| 671 | snd_soc_update_bits(codec, |
| 672 | WM8960_ADDCTL3, 0x7, |
| 673 | alc_rates[i].val); |
Mark Brown | afd6d36 | 2010-07-05 13:58:16 +0900 | [diff] [blame] | 674 | } |
| 675 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 676 | /* set iface */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 677 | snd_soc_write(codec, WM8960_IFACE1, iface); |
Zidan Wang | 0e50b51 | 2015-05-12 14:58:08 +0800 | [diff] [blame^] | 678 | |
| 679 | wm8960_configure_clocking(codec, tx, params_rate(params)); |
| 680 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 681 | return 0; |
| 682 | } |
| 683 | |
| 684 | static int wm8960_mute(struct snd_soc_dai *dai, int mute) |
| 685 | { |
| 686 | struct snd_soc_codec *codec = dai->codec; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 687 | |
| 688 | if (mute) |
Axel Lin | 16b2488 | 2011-12-08 11:09:15 +0800 | [diff] [blame] | 689 | snd_soc_update_bits(codec, WM8960_DACCTL1, 0x8, 0x8); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 690 | else |
Axel Lin | 16b2488 | 2011-12-08 11:09:15 +0800 | [diff] [blame] | 691 | snd_soc_update_bits(codec, WM8960_DACCTL1, 0x8, 0); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 692 | return 0; |
| 693 | } |
| 694 | |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 695 | static int wm8960_set_bias_level_out3(struct snd_soc_codec *codec, |
| 696 | enum snd_soc_bias_level level) |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 697 | { |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 698 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
Zidan Wang | 75aa886 | 2015-01-07 15:31:44 +0800 | [diff] [blame] | 699 | int ret; |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 700 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 701 | switch (level) { |
| 702 | case SND_SOC_BIAS_ON: |
| 703 | break; |
| 704 | |
| 705 | case SND_SOC_BIAS_PREPARE: |
Zidan Wang | 75aa886 | 2015-01-07 15:31:44 +0800 | [diff] [blame] | 706 | switch (codec->dapm.bias_level) { |
| 707 | case SND_SOC_BIAS_STANDBY: |
| 708 | if (!IS_ERR(wm8960->mclk)) { |
| 709 | ret = clk_prepare_enable(wm8960->mclk); |
| 710 | if (ret) { |
| 711 | dev_err(codec->dev, |
| 712 | "Failed to enable MCLK: %d\n", |
| 713 | ret); |
| 714 | return ret; |
| 715 | } |
| 716 | } |
| 717 | |
| 718 | /* Set VMID to 2x50k */ |
| 719 | snd_soc_update_bits(codec, WM8960_POWER1, 0x180, 0x80); |
| 720 | break; |
| 721 | |
| 722 | case SND_SOC_BIAS_ON: |
| 723 | if (!IS_ERR(wm8960->mclk)) |
| 724 | clk_disable_unprepare(wm8960->mclk); |
| 725 | break; |
| 726 | |
| 727 | default: |
| 728 | break; |
| 729 | } |
| 730 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 731 | break; |
| 732 | |
| 733 | case SND_SOC_BIAS_STANDBY: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 734 | if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) { |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 735 | regcache_sync(wm8960->regmap); |
Axel Lin | bc45df2 | 2011-10-07 21:50:23 +0800 | [diff] [blame] | 736 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 737 | /* Enable anti-pop features */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 738 | snd_soc_write(codec, WM8960_APOP1, |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 739 | WM8960_POBCTRL | WM8960_SOFT_ST | |
| 740 | WM8960_BUFDCOPEN | WM8960_BUFIOEN); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 741 | |
| 742 | /* Enable & ramp VMID at 2x50k */ |
Axel Lin | 16b2488 | 2011-12-08 11:09:15 +0800 | [diff] [blame] | 743 | snd_soc_update_bits(codec, WM8960_POWER1, 0x80, 0x80); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 744 | msleep(100); |
| 745 | |
| 746 | /* Enable VREF */ |
Axel Lin | 16b2488 | 2011-12-08 11:09:15 +0800 | [diff] [blame] | 747 | snd_soc_update_bits(codec, WM8960_POWER1, WM8960_VREF, |
| 748 | WM8960_VREF); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 749 | |
| 750 | /* Disable anti-pop features */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 751 | snd_soc_write(codec, WM8960_APOP1, WM8960_BUFIOEN); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 752 | } |
| 753 | |
| 754 | /* Set VMID to 2x250k */ |
Axel Lin | 16b2488 | 2011-12-08 11:09:15 +0800 | [diff] [blame] | 755 | snd_soc_update_bits(codec, WM8960_POWER1, 0x180, 0x100); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 756 | break; |
| 757 | |
| 758 | case SND_SOC_BIAS_OFF: |
| 759 | /* Enable anti-pop features */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 760 | snd_soc_write(codec, WM8960_APOP1, |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 761 | WM8960_POBCTRL | WM8960_SOFT_ST | |
| 762 | WM8960_BUFDCOPEN | WM8960_BUFIOEN); |
| 763 | |
| 764 | /* Disable VMID and VREF, let them discharge */ |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 765 | snd_soc_write(codec, WM8960_POWER1, 0); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 766 | msleep(600); |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 767 | break; |
| 768 | } |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 769 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 770 | codec->dapm.bias_level = level; |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 771 | |
| 772 | return 0; |
| 773 | } |
| 774 | |
| 775 | static int wm8960_set_bias_level_capless(struct snd_soc_codec *codec, |
| 776 | enum snd_soc_bias_level level) |
| 777 | { |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 778 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
Zidan Wang | 75aa886 | 2015-01-07 15:31:44 +0800 | [diff] [blame] | 779 | int reg, ret; |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 780 | |
| 781 | switch (level) { |
| 782 | case SND_SOC_BIAS_ON: |
| 783 | break; |
| 784 | |
| 785 | case SND_SOC_BIAS_PREPARE: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 786 | switch (codec->dapm.bias_level) { |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 787 | case SND_SOC_BIAS_STANDBY: |
| 788 | /* Enable anti pop mode */ |
| 789 | snd_soc_update_bits(codec, WM8960_APOP1, |
| 790 | WM8960_POBCTRL | WM8960_SOFT_ST | |
| 791 | WM8960_BUFDCOPEN, |
| 792 | WM8960_POBCTRL | WM8960_SOFT_ST | |
| 793 | WM8960_BUFDCOPEN); |
| 794 | |
| 795 | /* Enable LOUT1, ROUT1 and OUT3 if they're enabled */ |
| 796 | reg = 0; |
| 797 | if (wm8960->lout1 && wm8960->lout1->power) |
| 798 | reg |= WM8960_PWR2_LOUT1; |
| 799 | if (wm8960->rout1 && wm8960->rout1->power) |
| 800 | reg |= WM8960_PWR2_ROUT1; |
| 801 | if (wm8960->out3 && wm8960->out3->power) |
| 802 | reg |= WM8960_PWR2_OUT3; |
| 803 | snd_soc_update_bits(codec, WM8960_POWER2, |
| 804 | WM8960_PWR2_LOUT1 | |
| 805 | WM8960_PWR2_ROUT1 | |
| 806 | WM8960_PWR2_OUT3, reg); |
| 807 | |
| 808 | /* Enable VMID at 2*50k */ |
| 809 | snd_soc_update_bits(codec, WM8960_POWER1, |
| 810 | WM8960_VMID_MASK, 0x80); |
| 811 | |
| 812 | /* Ramp */ |
| 813 | msleep(100); |
| 814 | |
| 815 | /* Enable VREF */ |
| 816 | snd_soc_update_bits(codec, WM8960_POWER1, |
| 817 | WM8960_VREF, WM8960_VREF); |
| 818 | |
| 819 | msleep(100); |
Zidan Wang | 75aa886 | 2015-01-07 15:31:44 +0800 | [diff] [blame] | 820 | |
| 821 | if (!IS_ERR(wm8960->mclk)) { |
| 822 | ret = clk_prepare_enable(wm8960->mclk); |
| 823 | if (ret) { |
| 824 | dev_err(codec->dev, |
| 825 | "Failed to enable MCLK: %d\n", |
| 826 | ret); |
| 827 | return ret; |
| 828 | } |
| 829 | } |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 830 | break; |
| 831 | |
| 832 | case SND_SOC_BIAS_ON: |
Zidan Wang | 75aa886 | 2015-01-07 15:31:44 +0800 | [diff] [blame] | 833 | if (!IS_ERR(wm8960->mclk)) |
| 834 | clk_disable_unprepare(wm8960->mclk); |
| 835 | |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 836 | /* Enable anti-pop mode */ |
| 837 | snd_soc_update_bits(codec, WM8960_APOP1, |
| 838 | WM8960_POBCTRL | WM8960_SOFT_ST | |
| 839 | WM8960_BUFDCOPEN, |
| 840 | WM8960_POBCTRL | WM8960_SOFT_ST | |
| 841 | WM8960_BUFDCOPEN); |
| 842 | |
| 843 | /* Disable VMID and VREF */ |
| 844 | snd_soc_update_bits(codec, WM8960_POWER1, |
| 845 | WM8960_VREF | WM8960_VMID_MASK, 0); |
| 846 | break; |
| 847 | |
Axel Lin | bc45df2 | 2011-10-07 21:50:23 +0800 | [diff] [blame] | 848 | case SND_SOC_BIAS_OFF: |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 849 | regcache_sync(wm8960->regmap); |
Axel Lin | bc45df2 | 2011-10-07 21:50:23 +0800 | [diff] [blame] | 850 | break; |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 851 | default: |
| 852 | break; |
| 853 | } |
| 854 | break; |
| 855 | |
| 856 | case SND_SOC_BIAS_STANDBY: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 857 | switch (codec->dapm.bias_level) { |
Mark Brown | 913d7b4 | 2010-03-03 13:47:03 +0000 | [diff] [blame] | 858 | case SND_SOC_BIAS_PREPARE: |
| 859 | /* Disable HP discharge */ |
| 860 | snd_soc_update_bits(codec, WM8960_APOP2, |
| 861 | WM8960_DISOP | WM8960_DRES_MASK, |
| 862 | 0); |
| 863 | |
| 864 | /* Disable anti-pop features */ |
| 865 | snd_soc_update_bits(codec, WM8960_APOP1, |
| 866 | WM8960_POBCTRL | WM8960_SOFT_ST | |
| 867 | WM8960_BUFDCOPEN, |
| 868 | WM8960_POBCTRL | WM8960_SOFT_ST | |
| 869 | WM8960_BUFDCOPEN); |
| 870 | break; |
| 871 | |
| 872 | default: |
| 873 | break; |
| 874 | } |
| 875 | break; |
| 876 | |
| 877 | case SND_SOC_BIAS_OFF: |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 878 | break; |
| 879 | } |
| 880 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 881 | codec->dapm.bias_level = level; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 882 | |
| 883 | return 0; |
| 884 | } |
| 885 | |
| 886 | /* PLL divisors */ |
| 887 | struct _pll_div { |
| 888 | u32 pre_div:1; |
| 889 | u32 n:4; |
| 890 | u32 k:24; |
| 891 | }; |
| 892 | |
| 893 | /* The size in bits of the pll divide multiplied by 10 |
| 894 | * to allow rounding later */ |
| 895 | #define FIXED_PLL_SIZE ((1 << 24) * 10) |
| 896 | |
| 897 | static int pll_factors(unsigned int source, unsigned int target, |
| 898 | struct _pll_div *pll_div) |
| 899 | { |
| 900 | unsigned long long Kpart; |
| 901 | unsigned int K, Ndiv, Nmod; |
| 902 | |
| 903 | pr_debug("WM8960 PLL: setting %dHz->%dHz\n", source, target); |
| 904 | |
| 905 | /* Scale up target to PLL operating frequency */ |
| 906 | target *= 4; |
| 907 | |
| 908 | Ndiv = target / source; |
| 909 | if (Ndiv < 6) { |
| 910 | source >>= 1; |
| 911 | pll_div->pre_div = 1; |
| 912 | Ndiv = target / source; |
| 913 | } else |
| 914 | pll_div->pre_div = 0; |
| 915 | |
| 916 | if ((Ndiv < 6) || (Ndiv > 12)) { |
| 917 | pr_err("WM8960 PLL: Unsupported N=%d\n", Ndiv); |
| 918 | return -EINVAL; |
| 919 | } |
| 920 | |
| 921 | pll_div->n = Ndiv; |
| 922 | Nmod = target % source; |
| 923 | Kpart = FIXED_PLL_SIZE * (long long)Nmod; |
| 924 | |
| 925 | do_div(Kpart, source); |
| 926 | |
| 927 | K = Kpart & 0xFFFFFFFF; |
| 928 | |
| 929 | /* Check if we need to round */ |
| 930 | if ((K % 10) >= 5) |
| 931 | K += 5; |
| 932 | |
| 933 | /* Move down to proper range now rounding is done */ |
| 934 | K /= 10; |
| 935 | |
| 936 | pll_div->k = K; |
| 937 | |
| 938 | pr_debug("WM8960 PLL: N=%x K=%x pre_div=%d\n", |
| 939 | pll_div->n, pll_div->k, pll_div->pre_div); |
| 940 | |
| 941 | return 0; |
| 942 | } |
| 943 | |
Mark Brown | 8548803 | 2009-09-05 18:52:16 +0100 | [diff] [blame] | 944 | static int wm8960_set_dai_pll(struct snd_soc_dai *codec_dai, int pll_id, |
| 945 | int source, unsigned int freq_in, unsigned int freq_out) |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 946 | { |
| 947 | struct snd_soc_codec *codec = codec_dai->codec; |
| 948 | u16 reg; |
| 949 | static struct _pll_div pll_div; |
| 950 | int ret; |
| 951 | |
| 952 | if (freq_in && freq_out) { |
| 953 | ret = pll_factors(freq_in, freq_out, &pll_div); |
| 954 | if (ret != 0) |
| 955 | return ret; |
| 956 | } |
| 957 | |
| 958 | /* Disable the PLL: even if we are changing the frequency the |
| 959 | * PLL needs to be disabled while we do so. */ |
Axel Lin | 16b2488 | 2011-12-08 11:09:15 +0800 | [diff] [blame] | 960 | snd_soc_update_bits(codec, WM8960_CLOCK1, 0x1, 0); |
| 961 | snd_soc_update_bits(codec, WM8960_POWER2, 0x1, 0); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 962 | |
| 963 | if (!freq_in || !freq_out) |
| 964 | return 0; |
| 965 | |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 966 | reg = snd_soc_read(codec, WM8960_PLL1) & ~0x3f; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 967 | reg |= pll_div.pre_div << 4; |
| 968 | reg |= pll_div.n; |
| 969 | |
| 970 | if (pll_div.k) { |
| 971 | reg |= 0x20; |
| 972 | |
Mike Dyer | 85fa532 | 2013-08-16 18:36:28 +0100 | [diff] [blame] | 973 | snd_soc_write(codec, WM8960_PLL2, (pll_div.k >> 16) & 0xff); |
| 974 | snd_soc_write(codec, WM8960_PLL3, (pll_div.k >> 8) & 0xff); |
| 975 | snd_soc_write(codec, WM8960_PLL4, pll_div.k & 0xff); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 976 | } |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 977 | snd_soc_write(codec, WM8960_PLL1, reg); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 978 | |
| 979 | /* Turn it on */ |
Axel Lin | 16b2488 | 2011-12-08 11:09:15 +0800 | [diff] [blame] | 980 | snd_soc_update_bits(codec, WM8960_POWER2, 0x1, 0x1); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 981 | msleep(250); |
Axel Lin | 16b2488 | 2011-12-08 11:09:15 +0800 | [diff] [blame] | 982 | snd_soc_update_bits(codec, WM8960_CLOCK1, 0x1, 0x1); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 983 | |
| 984 | return 0; |
| 985 | } |
| 986 | |
| 987 | static int wm8960_set_dai_clkdiv(struct snd_soc_dai *codec_dai, |
| 988 | int div_id, int div) |
| 989 | { |
| 990 | struct snd_soc_codec *codec = codec_dai->codec; |
| 991 | u16 reg; |
| 992 | |
| 993 | switch (div_id) { |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 994 | case WM8960_SYSCLKDIV: |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 995 | reg = snd_soc_read(codec, WM8960_CLOCK1) & 0x1f9; |
| 996 | snd_soc_write(codec, WM8960_CLOCK1, reg | div); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 997 | break; |
| 998 | case WM8960_DACDIV: |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 999 | reg = snd_soc_read(codec, WM8960_CLOCK1) & 0x1c7; |
| 1000 | snd_soc_write(codec, WM8960_CLOCK1, reg | div); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1001 | break; |
| 1002 | case WM8960_OPCLKDIV: |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 1003 | reg = snd_soc_read(codec, WM8960_PLL1) & 0x03f; |
| 1004 | snd_soc_write(codec, WM8960_PLL1, reg | div); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1005 | break; |
| 1006 | case WM8960_DCLKDIV: |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 1007 | reg = snd_soc_read(codec, WM8960_CLOCK2) & 0x03f; |
| 1008 | snd_soc_write(codec, WM8960_CLOCK2, reg | div); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1009 | break; |
| 1010 | case WM8960_TOCLKSEL: |
Mark Brown | 17a52fd | 2009-07-05 17:24:50 +0100 | [diff] [blame] | 1011 | reg = snd_soc_read(codec, WM8960_ADDCTL1) & 0x1fd; |
| 1012 | snd_soc_write(codec, WM8960_ADDCTL1, reg | div); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1013 | break; |
| 1014 | default: |
| 1015 | return -EINVAL; |
| 1016 | } |
| 1017 | |
| 1018 | return 0; |
| 1019 | } |
| 1020 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1021 | static int wm8960_set_bias_level(struct snd_soc_codec *codec, |
| 1022 | enum snd_soc_bias_level level) |
| 1023 | { |
| 1024 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
| 1025 | |
| 1026 | return wm8960->set_bias_level(codec, level); |
| 1027 | } |
| 1028 | |
Zidan Wang | 0e50b51 | 2015-05-12 14:58:08 +0800 | [diff] [blame^] | 1029 | static int wm8960_set_dai_sysclk(struct snd_soc_dai *dai, int clk_id, |
| 1030 | unsigned int freq, int dir) |
| 1031 | { |
| 1032 | struct snd_soc_codec *codec = dai->codec; |
| 1033 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
| 1034 | |
| 1035 | switch (clk_id) { |
| 1036 | case WM8960_SYSCLK_MCLK: |
| 1037 | snd_soc_update_bits(codec, WM8960_CLOCK1, |
| 1038 | 0x1, WM8960_SYSCLK_MCLK); |
| 1039 | break; |
| 1040 | case WM8960_SYSCLK_PLL: |
| 1041 | snd_soc_update_bits(codec, WM8960_CLOCK1, |
| 1042 | 0x1, WM8960_SYSCLK_PLL); |
| 1043 | break; |
| 1044 | default: |
| 1045 | return -EINVAL; |
| 1046 | } |
| 1047 | |
| 1048 | wm8960->sysclk = freq; |
| 1049 | |
| 1050 | return 0; |
| 1051 | } |
| 1052 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1053 | #define WM8960_RATES SNDRV_PCM_RATE_8000_48000 |
| 1054 | |
| 1055 | #define WM8960_FORMATS \ |
| 1056 | (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \ |
| 1057 | SNDRV_PCM_FMTBIT_S24_LE) |
| 1058 | |
Lars-Peter Clausen | 85e7652 | 2011-11-23 11:40:40 +0100 | [diff] [blame] | 1059 | static const struct snd_soc_dai_ops wm8960_dai_ops = { |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1060 | .hw_params = wm8960_hw_params, |
| 1061 | .digital_mute = wm8960_mute, |
| 1062 | .set_fmt = wm8960_set_dai_fmt, |
| 1063 | .set_clkdiv = wm8960_set_dai_clkdiv, |
| 1064 | .set_pll = wm8960_set_dai_pll, |
Zidan Wang | 0e50b51 | 2015-05-12 14:58:08 +0800 | [diff] [blame^] | 1065 | .set_sysclk = wm8960_set_dai_sysclk, |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1066 | }; |
| 1067 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1068 | static struct snd_soc_dai_driver wm8960_dai = { |
| 1069 | .name = "wm8960-hifi", |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1070 | .playback = { |
| 1071 | .stream_name = "Playback", |
| 1072 | .channels_min = 1, |
| 1073 | .channels_max = 2, |
| 1074 | .rates = WM8960_RATES, |
| 1075 | .formats = WM8960_FORMATS,}, |
| 1076 | .capture = { |
| 1077 | .stream_name = "Capture", |
| 1078 | .channels_min = 1, |
| 1079 | .channels_max = 2, |
| 1080 | .rates = WM8960_RATES, |
| 1081 | .formats = WM8960_FORMATS,}, |
| 1082 | .ops = &wm8960_dai_ops, |
| 1083 | .symmetric_rates = 1, |
| 1084 | }; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1085 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1086 | static int wm8960_probe(struct snd_soc_codec *codec) |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1087 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1088 | struct wm8960_priv *wm8960 = snd_soc_codec_get_drvdata(codec); |
Zidan Wang | e2280c90 | 2014-11-20 19:07:48 +0800 | [diff] [blame] | 1089 | struct wm8960_data *pdata = &wm8960->pdata; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1090 | |
Zidan Wang | e2280c90 | 2014-11-20 19:07:48 +0800 | [diff] [blame] | 1091 | if (pdata->capless) |
| 1092 | wm8960->set_bias_level = wm8960_set_bias_level_capless; |
| 1093 | else |
| 1094 | wm8960->set_bias_level = wm8960_set_bias_level_out3; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1095 | |
Liam Girdwood | 022658b | 2012-02-03 17:43:09 +0000 | [diff] [blame] | 1096 | snd_soc_add_codec_controls(codec, wm8960_snd_controls, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1097 | ARRAY_SIZE(wm8960_snd_controls)); |
| 1098 | wm8960_add_widgets(codec); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1099 | |
| 1100 | return 0; |
| 1101 | } |
| 1102 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1103 | static struct snd_soc_codec_driver soc_codec_dev_wm8960 = { |
| 1104 | .probe = wm8960_probe, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1105 | .set_bias_level = wm8960_set_bias_level, |
Lars-Peter Clausen | 0a87a6e | 2014-11-23 13:37:33 +0100 | [diff] [blame] | 1106 | .suspend_bias_off = true, |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 1107 | }; |
| 1108 | |
| 1109 | static const struct regmap_config wm8960_regmap = { |
| 1110 | .reg_bits = 7, |
| 1111 | .val_bits = 9, |
| 1112 | .max_register = WM8960_PLL4, |
| 1113 | |
| 1114 | .reg_defaults = wm8960_reg_defaults, |
| 1115 | .num_reg_defaults = ARRAY_SIZE(wm8960_reg_defaults), |
| 1116 | .cache_type = REGCACHE_RBTREE, |
| 1117 | |
| 1118 | .volatile_reg = wm8960_volatile, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1119 | }; |
| 1120 | |
Zidan Wang | e2280c90 | 2014-11-20 19:07:48 +0800 | [diff] [blame] | 1121 | static void wm8960_set_pdata_from_of(struct i2c_client *i2c, |
| 1122 | struct wm8960_data *pdata) |
| 1123 | { |
| 1124 | const struct device_node *np = i2c->dev.of_node; |
| 1125 | |
| 1126 | if (of_property_read_bool(np, "wlf,capless")) |
| 1127 | pdata->capless = true; |
| 1128 | |
| 1129 | if (of_property_read_bool(np, "wlf,shared-lrclk")) |
| 1130 | pdata->shared_lrclk = true; |
| 1131 | } |
| 1132 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 1133 | static int wm8960_i2c_probe(struct i2c_client *i2c, |
| 1134 | const struct i2c_device_id *id) |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1135 | { |
Mark Brown | 3706163 | 2012-09-13 11:46:58 +0800 | [diff] [blame] | 1136 | struct wm8960_data *pdata = dev_get_platdata(&i2c->dev); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1137 | struct wm8960_priv *wm8960; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1138 | int ret; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1139 | |
Mark Brown | b9791c0 | 2011-12-16 07:42:58 +0100 | [diff] [blame] | 1140 | wm8960 = devm_kzalloc(&i2c->dev, sizeof(struct wm8960_priv), |
| 1141 | GFP_KERNEL); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1142 | if (wm8960 == NULL) |
| 1143 | return -ENOMEM; |
| 1144 | |
Zidan Wang | 75aa886 | 2015-01-07 15:31:44 +0800 | [diff] [blame] | 1145 | wm8960->mclk = devm_clk_get(&i2c->dev, "mclk"); |
| 1146 | if (IS_ERR(wm8960->mclk)) { |
| 1147 | if (PTR_ERR(wm8960->mclk) == -EPROBE_DEFER) |
| 1148 | return -EPROBE_DEFER; |
| 1149 | } |
| 1150 | |
Sachin Kamat | c5e6f5f | 2012-11-26 17:19:43 +0530 | [diff] [blame] | 1151 | wm8960->regmap = devm_regmap_init_i2c(i2c, &wm8960_regmap); |
Mark Brown | 0ebe36c | 2012-09-10 19:23:57 +0800 | [diff] [blame] | 1152 | if (IS_ERR(wm8960->regmap)) |
| 1153 | return PTR_ERR(wm8960->regmap); |
| 1154 | |
Zidan Wang | e2280c90 | 2014-11-20 19:07:48 +0800 | [diff] [blame] | 1155 | if (pdata) |
| 1156 | memcpy(&wm8960->pdata, pdata, sizeof(struct wm8960_data)); |
| 1157 | else if (i2c->dev.of_node) |
| 1158 | wm8960_set_pdata_from_of(i2c, &wm8960->pdata); |
| 1159 | |
Zidan Wang | 3ad5e86 | 2014-11-27 16:53:08 +0800 | [diff] [blame] | 1160 | ret = wm8960_reset(wm8960->regmap); |
| 1161 | if (ret != 0) { |
| 1162 | dev_err(&i2c->dev, "Failed to issue reset\n"); |
| 1163 | return ret; |
| 1164 | } |
| 1165 | |
| 1166 | if (wm8960->pdata.shared_lrclk) { |
Mark Brown | 3706163 | 2012-09-13 11:46:58 +0800 | [diff] [blame] | 1167 | ret = regmap_update_bits(wm8960->regmap, WM8960_ADDCTL2, |
| 1168 | 0x4, 0x4); |
| 1169 | if (ret != 0) { |
| 1170 | dev_err(&i2c->dev, "Failed to enable LRCM: %d\n", |
| 1171 | ret); |
| 1172 | return ret; |
| 1173 | } |
| 1174 | } |
| 1175 | |
Zidan Wang | 3ad5e86 | 2014-11-27 16:53:08 +0800 | [diff] [blame] | 1176 | /* Latch the update bits */ |
| 1177 | regmap_update_bits(wm8960->regmap, WM8960_LINVOL, 0x100, 0x100); |
| 1178 | regmap_update_bits(wm8960->regmap, WM8960_RINVOL, 0x100, 0x100); |
| 1179 | regmap_update_bits(wm8960->regmap, WM8960_LADC, 0x100, 0x100); |
| 1180 | regmap_update_bits(wm8960->regmap, WM8960_RADC, 0x100, 0x100); |
| 1181 | regmap_update_bits(wm8960->regmap, WM8960_LDAC, 0x100, 0x100); |
| 1182 | regmap_update_bits(wm8960->regmap, WM8960_RDAC, 0x100, 0x100); |
| 1183 | regmap_update_bits(wm8960->regmap, WM8960_LOUT1, 0x100, 0x100); |
| 1184 | regmap_update_bits(wm8960->regmap, WM8960_ROUT1, 0x100, 0x100); |
| 1185 | regmap_update_bits(wm8960->regmap, WM8960_LOUT2, 0x100, 0x100); |
| 1186 | regmap_update_bits(wm8960->regmap, WM8960_ROUT2, 0x100, 0x100); |
| 1187 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1188 | i2c_set_clientdata(i2c, wm8960); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1189 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1190 | ret = snd_soc_register_codec(&i2c->dev, |
| 1191 | &soc_codec_dev_wm8960, &wm8960_dai, 1); |
Mark Brown | b9791c0 | 2011-12-16 07:42:58 +0100 | [diff] [blame] | 1192 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1193 | return ret; |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1194 | } |
| 1195 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 1196 | static int wm8960_i2c_remove(struct i2c_client *client) |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1197 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1198 | snd_soc_unregister_codec(&client->dev); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1199 | return 0; |
| 1200 | } |
| 1201 | |
| 1202 | static const struct i2c_device_id wm8960_i2c_id[] = { |
| 1203 | { "wm8960", 0 }, |
| 1204 | { } |
| 1205 | }; |
| 1206 | MODULE_DEVICE_TABLE(i2c, wm8960_i2c_id); |
| 1207 | |
Zidan Wang | e2280c90 | 2014-11-20 19:07:48 +0800 | [diff] [blame] | 1208 | static const struct of_device_id wm8960_of_match[] = { |
| 1209 | { .compatible = "wlf,wm8960", }, |
| 1210 | { } |
| 1211 | }; |
| 1212 | MODULE_DEVICE_TABLE(of, wm8960_of_match); |
| 1213 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1214 | static struct i2c_driver wm8960_i2c_driver = { |
| 1215 | .driver = { |
Mark Brown | 091edcc | 2011-12-02 22:08:49 +0000 | [diff] [blame] | 1216 | .name = "wm8960", |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1217 | .owner = THIS_MODULE, |
Zidan Wang | e2280c90 | 2014-11-20 19:07:48 +0800 | [diff] [blame] | 1218 | .of_match_table = wm8960_of_match, |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1219 | }, |
| 1220 | .probe = wm8960_i2c_probe, |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 1221 | .remove = wm8960_i2c_remove, |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1222 | .id_table = wm8960_i2c_id, |
| 1223 | }; |
| 1224 | |
Sachin Kamat | 3c010e6 | 2012-08-06 17:25:36 +0530 | [diff] [blame] | 1225 | module_i2c_driver(wm8960_i2c_driver); |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1226 | |
Mark Brown | f2644a2 | 2009-04-07 19:20:14 +0100 | [diff] [blame] | 1227 | MODULE_DESCRIPTION("ASoC WM8960 driver"); |
| 1228 | MODULE_AUTHOR("Liam Girdwood"); |
| 1229 | MODULE_LICENSE("GPL"); |