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