Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1 | /* |
| 2 | * wm8903.c -- WM8903 ALSA SoC Audio driver |
| 3 | * |
Mark Brown | 20c5fd3 | 2012-06-09 10:03:20 +0800 | [diff] [blame] | 4 | * Copyright 2008-12 Wolfson Microelectronics |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 5 | * Copyright 2011-2012 NVIDIA, Inc. |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 6 | * |
| 7 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | * |
| 13 | * TODO: |
| 14 | * - TDM mode configuration. |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 15 | * - Digital microphone support. |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/moduleparam.h> |
| 20 | #include <linux/init.h> |
Mark Brown | 8abd16a | 2010-03-15 18:25:26 +0000 | [diff] [blame] | 21 | #include <linux/completion.h> |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 22 | #include <linux/delay.h> |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 23 | #include <linux/gpio.h> |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 24 | #include <linux/pm.h> |
| 25 | #include <linux/i2c.h> |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 26 | #include <linux/regmap.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Stephen Warren | 9d35f3e | 2011-12-02 15:08:40 -0700 | [diff] [blame] | 28 | #include <linux/irq.h> |
Lars-Peter Clausen | 78660af | 2014-11-09 17:01:01 +0100 | [diff] [blame] | 29 | #include <linux/mutex.h> |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 30 | #include <sound/core.h> |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 31 | #include <sound/jack.h> |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 32 | #include <sound/pcm.h> |
| 33 | #include <sound/pcm_params.h> |
| 34 | #include <sound/tlv.h> |
| 35 | #include <sound/soc.h> |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 36 | #include <sound/initval.h> |
Mark Brown | 8abd16a | 2010-03-15 18:25:26 +0000 | [diff] [blame] | 37 | #include <sound/wm8903.h> |
Mark Brown | 2bbb5d6 | 2010-12-05 12:50:12 +0000 | [diff] [blame] | 38 | #include <trace/events/asoc.h> |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 39 | |
| 40 | #include "wm8903.h" |
| 41 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 42 | /* Register defaults at reset */ |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 43 | static const struct reg_default wm8903_reg_defaults[] = { |
| 44 | { 4, 0x0018 }, /* R4 - Bias Control 0 */ |
| 45 | { 5, 0x0000 }, /* R5 - VMID Control 0 */ |
| 46 | { 6, 0x0000 }, /* R6 - Mic Bias Control 0 */ |
| 47 | { 8, 0x0001 }, /* R8 - Analogue DAC 0 */ |
| 48 | { 10, 0x0001 }, /* R10 - Analogue ADC 0 */ |
| 49 | { 12, 0x0000 }, /* R12 - Power Management 0 */ |
| 50 | { 13, 0x0000 }, /* R13 - Power Management 1 */ |
| 51 | { 14, 0x0000 }, /* R14 - Power Management 2 */ |
| 52 | { 15, 0x0000 }, /* R15 - Power Management 3 */ |
| 53 | { 16, 0x0000 }, /* R16 - Power Management 4 */ |
| 54 | { 17, 0x0000 }, /* R17 - Power Management 5 */ |
| 55 | { 18, 0x0000 }, /* R18 - Power Management 6 */ |
| 56 | { 20, 0x0400 }, /* R20 - Clock Rates 0 */ |
| 57 | { 21, 0x0D07 }, /* R21 - Clock Rates 1 */ |
| 58 | { 22, 0x0000 }, /* R22 - Clock Rates 2 */ |
| 59 | { 24, 0x0050 }, /* R24 - Audio Interface 0 */ |
| 60 | { 25, 0x0242 }, /* R25 - Audio Interface 1 */ |
| 61 | { 26, 0x0008 }, /* R26 - Audio Interface 2 */ |
| 62 | { 27, 0x0022 }, /* R27 - Audio Interface 3 */ |
| 63 | { 30, 0x00C0 }, /* R30 - DAC Digital Volume Left */ |
| 64 | { 31, 0x00C0 }, /* R31 - DAC Digital Volume Right */ |
| 65 | { 32, 0x0000 }, /* R32 - DAC Digital 0 */ |
| 66 | { 33, 0x0000 }, /* R33 - DAC Digital 1 */ |
| 67 | { 36, 0x00C0 }, /* R36 - ADC Digital Volume Left */ |
| 68 | { 37, 0x00C0 }, /* R37 - ADC Digital Volume Right */ |
| 69 | { 38, 0x0000 }, /* R38 - ADC Digital 0 */ |
| 70 | { 39, 0x0073 }, /* R39 - Digital Microphone 0 */ |
| 71 | { 40, 0x09BF }, /* R40 - DRC 0 */ |
| 72 | { 41, 0x3241 }, /* R41 - DRC 1 */ |
| 73 | { 42, 0x0020 }, /* R42 - DRC 2 */ |
| 74 | { 43, 0x0000 }, /* R43 - DRC 3 */ |
| 75 | { 44, 0x0085 }, /* R44 - Analogue Left Input 0 */ |
| 76 | { 45, 0x0085 }, /* R45 - Analogue Right Input 0 */ |
| 77 | { 46, 0x0044 }, /* R46 - Analogue Left Input 1 */ |
| 78 | { 47, 0x0044 }, /* R47 - Analogue Right Input 1 */ |
| 79 | { 50, 0x0008 }, /* R50 - Analogue Left Mix 0 */ |
| 80 | { 51, 0x0004 }, /* R51 - Analogue Right Mix 0 */ |
| 81 | { 52, 0x0000 }, /* R52 - Analogue Spk Mix Left 0 */ |
| 82 | { 53, 0x0000 }, /* R53 - Analogue Spk Mix Left 1 */ |
| 83 | { 54, 0x0000 }, /* R54 - Analogue Spk Mix Right 0 */ |
| 84 | { 55, 0x0000 }, /* R55 - Analogue Spk Mix Right 1 */ |
| 85 | { 57, 0x002D }, /* R57 - Analogue OUT1 Left */ |
| 86 | { 58, 0x002D }, /* R58 - Analogue OUT1 Right */ |
| 87 | { 59, 0x0039 }, /* R59 - Analogue OUT2 Left */ |
| 88 | { 60, 0x0039 }, /* R60 - Analogue OUT2 Right */ |
| 89 | { 62, 0x0139 }, /* R62 - Analogue OUT3 Left */ |
| 90 | { 63, 0x0139 }, /* R63 - Analogue OUT3 Right */ |
| 91 | { 64, 0x0000 }, /* R65 - Analogue SPK Output Control 0 */ |
| 92 | { 67, 0x0010 }, /* R67 - DC Servo 0 */ |
| 93 | { 69, 0x00A4 }, /* R69 - DC Servo 2 */ |
| 94 | { 90, 0x0000 }, /* R90 - Analogue HP 0 */ |
| 95 | { 94, 0x0000 }, /* R94 - Analogue Lineout 0 */ |
| 96 | { 98, 0x0000 }, /* R98 - Charge Pump 0 */ |
| 97 | { 104, 0x0000 }, /* R104 - Class W 0 */ |
| 98 | { 108, 0x0000 }, /* R108 - Write Sequencer 0 */ |
| 99 | { 109, 0x0000 }, /* R109 - Write Sequencer 1 */ |
| 100 | { 110, 0x0000 }, /* R110 - Write Sequencer 2 */ |
| 101 | { 111, 0x0000 }, /* R111 - Write Sequencer 3 */ |
| 102 | { 112, 0x0000 }, /* R112 - Write Sequencer 4 */ |
| 103 | { 114, 0x0000 }, /* R114 - Control Interface */ |
| 104 | { 116, 0x00A8 }, /* R116 - GPIO Control 1 */ |
| 105 | { 117, 0x00A8 }, /* R117 - GPIO Control 2 */ |
| 106 | { 118, 0x00A8 }, /* R118 - GPIO Control 3 */ |
| 107 | { 119, 0x0220 }, /* R119 - GPIO Control 4 */ |
| 108 | { 120, 0x01A0 }, /* R120 - GPIO Control 5 */ |
| 109 | { 122, 0xFFFF }, /* R122 - Interrupt Status 1 Mask */ |
| 110 | { 123, 0x0000 }, /* R123 - Interrupt Polarity 1 */ |
| 111 | { 126, 0x0000 }, /* R126 - Interrupt Control */ |
| 112 | { 129, 0x0000 }, /* R129 - Control Interface Test 1 */ |
| 113 | { 149, 0x6810 }, /* R149 - Charge Pump Test 1 */ |
| 114 | { 164, 0x0028 }, /* R164 - Clock Rate Test 4 */ |
| 115 | { 172, 0x0000 }, /* R172 - Analogue Output Bias 0 */ |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 116 | }; |
| 117 | |
Mark Brown | d58d5d5 | 2008-12-10 18:36:42 +0000 | [diff] [blame] | 118 | struct wm8903_priv { |
Stephen Warren | c0eb27c | 2011-12-02 15:08:38 -0700 | [diff] [blame] | 119 | struct wm8903_platform_data *pdata; |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 120 | struct device *dev; |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 121 | struct regmap *regmap; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 122 | |
Mark Brown | d58d5d5 | 2008-12-10 18:36:42 +0000 | [diff] [blame] | 123 | int sysclk; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 124 | int irq; |
Mark Brown | d58d5d5 | 2008-12-10 18:36:42 +0000 | [diff] [blame] | 125 | |
Lars-Peter Clausen | 78660af | 2014-11-09 17:01:01 +0100 | [diff] [blame] | 126 | struct mutex lock; |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 127 | int fs; |
| 128 | int deemph; |
| 129 | |
Mark Brown | c5b6a9f | 2011-02-09 20:14:42 +0000 | [diff] [blame] | 130 | int dcs_pending; |
| 131 | int dcs_cache[4]; |
| 132 | |
Mark Brown | f2c1fe0 | 2010-12-10 19:17:07 +0000 | [diff] [blame] | 133 | /* Reference count */ |
Mark Brown | d58d5d5 | 2008-12-10 18:36:42 +0000 | [diff] [blame] | 134 | int class_w_users; |
Mark Brown | d58d5d5 | 2008-12-10 18:36:42 +0000 | [diff] [blame] | 135 | |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 136 | struct snd_soc_jack *mic_jack; |
| 137 | int mic_det; |
| 138 | int mic_short; |
| 139 | int mic_last_report; |
| 140 | int mic_delay; |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 141 | |
| 142 | #ifdef CONFIG_GPIOLIB |
| 143 | struct gpio_chip gpio_chip; |
| 144 | #endif |
Mark Brown | d58d5d5 | 2008-12-10 18:36:42 +0000 | [diff] [blame] | 145 | }; |
| 146 | |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 147 | static bool wm8903_readable_register(struct device *dev, unsigned int reg) |
| 148 | { |
| 149 | switch (reg) { |
| 150 | case WM8903_SW_RESET_AND_ID: |
| 151 | case WM8903_REVISION_NUMBER: |
| 152 | case WM8903_BIAS_CONTROL_0: |
| 153 | case WM8903_VMID_CONTROL_0: |
| 154 | case WM8903_MIC_BIAS_CONTROL_0: |
| 155 | case WM8903_ANALOGUE_DAC_0: |
| 156 | case WM8903_ANALOGUE_ADC_0: |
| 157 | case WM8903_POWER_MANAGEMENT_0: |
| 158 | case WM8903_POWER_MANAGEMENT_1: |
| 159 | case WM8903_POWER_MANAGEMENT_2: |
| 160 | case WM8903_POWER_MANAGEMENT_3: |
| 161 | case WM8903_POWER_MANAGEMENT_4: |
| 162 | case WM8903_POWER_MANAGEMENT_5: |
| 163 | case WM8903_POWER_MANAGEMENT_6: |
| 164 | case WM8903_CLOCK_RATES_0: |
| 165 | case WM8903_CLOCK_RATES_1: |
| 166 | case WM8903_CLOCK_RATES_2: |
| 167 | case WM8903_AUDIO_INTERFACE_0: |
| 168 | case WM8903_AUDIO_INTERFACE_1: |
| 169 | case WM8903_AUDIO_INTERFACE_2: |
| 170 | case WM8903_AUDIO_INTERFACE_3: |
| 171 | case WM8903_DAC_DIGITAL_VOLUME_LEFT: |
| 172 | case WM8903_DAC_DIGITAL_VOLUME_RIGHT: |
| 173 | case WM8903_DAC_DIGITAL_0: |
| 174 | case WM8903_DAC_DIGITAL_1: |
| 175 | case WM8903_ADC_DIGITAL_VOLUME_LEFT: |
| 176 | case WM8903_ADC_DIGITAL_VOLUME_RIGHT: |
| 177 | case WM8903_ADC_DIGITAL_0: |
| 178 | case WM8903_DIGITAL_MICROPHONE_0: |
| 179 | case WM8903_DRC_0: |
| 180 | case WM8903_DRC_1: |
| 181 | case WM8903_DRC_2: |
| 182 | case WM8903_DRC_3: |
| 183 | case WM8903_ANALOGUE_LEFT_INPUT_0: |
| 184 | case WM8903_ANALOGUE_RIGHT_INPUT_0: |
| 185 | case WM8903_ANALOGUE_LEFT_INPUT_1: |
| 186 | case WM8903_ANALOGUE_RIGHT_INPUT_1: |
| 187 | case WM8903_ANALOGUE_LEFT_MIX_0: |
| 188 | case WM8903_ANALOGUE_RIGHT_MIX_0: |
| 189 | case WM8903_ANALOGUE_SPK_MIX_LEFT_0: |
| 190 | case WM8903_ANALOGUE_SPK_MIX_LEFT_1: |
| 191 | case WM8903_ANALOGUE_SPK_MIX_RIGHT_0: |
| 192 | case WM8903_ANALOGUE_SPK_MIX_RIGHT_1: |
| 193 | case WM8903_ANALOGUE_OUT1_LEFT: |
| 194 | case WM8903_ANALOGUE_OUT1_RIGHT: |
| 195 | case WM8903_ANALOGUE_OUT2_LEFT: |
| 196 | case WM8903_ANALOGUE_OUT2_RIGHT: |
| 197 | case WM8903_ANALOGUE_OUT3_LEFT: |
| 198 | case WM8903_ANALOGUE_OUT3_RIGHT: |
| 199 | case WM8903_ANALOGUE_SPK_OUTPUT_CONTROL_0: |
| 200 | case WM8903_DC_SERVO_0: |
| 201 | case WM8903_DC_SERVO_2: |
| 202 | case WM8903_DC_SERVO_READBACK_1: |
| 203 | case WM8903_DC_SERVO_READBACK_2: |
| 204 | case WM8903_DC_SERVO_READBACK_3: |
| 205 | case WM8903_DC_SERVO_READBACK_4: |
| 206 | case WM8903_ANALOGUE_HP_0: |
| 207 | case WM8903_ANALOGUE_LINEOUT_0: |
| 208 | case WM8903_CHARGE_PUMP_0: |
| 209 | case WM8903_CLASS_W_0: |
| 210 | case WM8903_WRITE_SEQUENCER_0: |
| 211 | case WM8903_WRITE_SEQUENCER_1: |
| 212 | case WM8903_WRITE_SEQUENCER_2: |
| 213 | case WM8903_WRITE_SEQUENCER_3: |
| 214 | case WM8903_WRITE_SEQUENCER_4: |
| 215 | case WM8903_CONTROL_INTERFACE: |
| 216 | case WM8903_GPIO_CONTROL_1: |
| 217 | case WM8903_GPIO_CONTROL_2: |
| 218 | case WM8903_GPIO_CONTROL_3: |
| 219 | case WM8903_GPIO_CONTROL_4: |
| 220 | case WM8903_GPIO_CONTROL_5: |
| 221 | case WM8903_INTERRUPT_STATUS_1: |
| 222 | case WM8903_INTERRUPT_STATUS_1_MASK: |
| 223 | case WM8903_INTERRUPT_POLARITY_1: |
| 224 | case WM8903_INTERRUPT_CONTROL: |
| 225 | case WM8903_CLOCK_RATE_TEST_4: |
| 226 | case WM8903_ANALOGUE_OUTPUT_BIAS_0: |
| 227 | return true; |
| 228 | default: |
| 229 | return false; |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | static bool wm8903_volatile_register(struct device *dev, unsigned int reg) |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 234 | { |
| 235 | switch (reg) { |
| 236 | case WM8903_SW_RESET_AND_ID: |
| 237 | case WM8903_REVISION_NUMBER: |
| 238 | case WM8903_INTERRUPT_STATUS_1: |
| 239 | case WM8903_WRITE_SEQUENCER_4: |
Mark Brown | c5b6a9f | 2011-02-09 20:14:42 +0000 | [diff] [blame] | 240 | case WM8903_DC_SERVO_READBACK_1: |
| 241 | case WM8903_DC_SERVO_READBACK_2: |
| 242 | case WM8903_DC_SERVO_READBACK_3: |
| 243 | case WM8903_DC_SERVO_READBACK_4: |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 244 | return 1; |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 245 | |
| 246 | default: |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 247 | return 0; |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 248 | } |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 249 | } |
| 250 | |
Mark Brown | 42768a1 | 2009-04-22 18:39:39 +0100 | [diff] [blame] | 251 | static int wm8903_cp_event(struct snd_soc_dapm_widget *w, |
| 252 | struct snd_kcontrol *kcontrol, int event) |
| 253 | { |
| 254 | WARN_ON(event != SND_SOC_DAPM_POST_PMU); |
| 255 | mdelay(4); |
| 256 | |
| 257 | return 0; |
| 258 | } |
| 259 | |
Mark Brown | c5b6a9f | 2011-02-09 20:14:42 +0000 | [diff] [blame] | 260 | static int wm8903_dcs_event(struct snd_soc_dapm_widget *w, |
| 261 | struct snd_kcontrol *kcontrol, int event) |
| 262 | { |
Lars-Peter Clausen | 2ea7a3f | 2015-01-13 10:27:17 +0100 | [diff] [blame] | 263 | struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm); |
Mark Brown | c5b6a9f | 2011-02-09 20:14:42 +0000 | [diff] [blame] | 264 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
| 265 | |
| 266 | switch (event) { |
| 267 | case SND_SOC_DAPM_POST_PMU: |
| 268 | wm8903->dcs_pending |= 1 << w->shift; |
| 269 | break; |
| 270 | case SND_SOC_DAPM_PRE_PMD: |
| 271 | snd_soc_update_bits(codec, WM8903_DC_SERVO_0, |
| 272 | 1 << w->shift, 0); |
| 273 | break; |
| 274 | } |
| 275 | |
| 276 | return 0; |
| 277 | } |
| 278 | |
| 279 | #define WM8903_DCS_MODE_WRITE_STOP 0 |
| 280 | #define WM8903_DCS_MODE_START_STOP 2 |
| 281 | |
| 282 | static void wm8903_seq_notifier(struct snd_soc_dapm_context *dapm, |
| 283 | enum snd_soc_dapm_type event, int subseq) |
| 284 | { |
Lars-Peter Clausen | e73a257 | 2014-06-19 07:50:01 +0200 | [diff] [blame] | 285 | struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm); |
Mark Brown | c5b6a9f | 2011-02-09 20:14:42 +0000 | [diff] [blame] | 286 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
| 287 | int dcs_mode = WM8903_DCS_MODE_WRITE_STOP; |
| 288 | int i, val; |
| 289 | |
| 290 | /* Complete any pending DC servo starts */ |
| 291 | if (wm8903->dcs_pending) { |
| 292 | dev_dbg(codec->dev, "Starting DC servo for %x\n", |
| 293 | wm8903->dcs_pending); |
| 294 | |
| 295 | /* If we've no cached values then we need to do startup */ |
| 296 | for (i = 0; i < ARRAY_SIZE(wm8903->dcs_cache); i++) { |
| 297 | if (!(wm8903->dcs_pending & (1 << i))) |
| 298 | continue; |
| 299 | |
| 300 | if (wm8903->dcs_cache[i]) { |
| 301 | dev_dbg(codec->dev, |
| 302 | "Restore DC servo %d value %x\n", |
| 303 | 3 - i, wm8903->dcs_cache[i]); |
| 304 | |
| 305 | snd_soc_write(codec, WM8903_DC_SERVO_4 + i, |
| 306 | wm8903->dcs_cache[i] & 0xff); |
| 307 | } else { |
| 308 | dev_dbg(codec->dev, |
| 309 | "Calibrate DC servo %d\n", 3 - i); |
| 310 | dcs_mode = WM8903_DCS_MODE_START_STOP; |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | /* Don't trust the cache for analogue */ |
| 315 | if (wm8903->class_w_users) |
| 316 | dcs_mode = WM8903_DCS_MODE_START_STOP; |
| 317 | |
| 318 | snd_soc_update_bits(codec, WM8903_DC_SERVO_2, |
| 319 | WM8903_DCS_MODE_MASK, dcs_mode); |
| 320 | |
| 321 | snd_soc_update_bits(codec, WM8903_DC_SERVO_0, |
| 322 | WM8903_DCS_ENA_MASK, wm8903->dcs_pending); |
| 323 | |
| 324 | switch (dcs_mode) { |
| 325 | case WM8903_DCS_MODE_WRITE_STOP: |
| 326 | break; |
| 327 | |
| 328 | case WM8903_DCS_MODE_START_STOP: |
| 329 | msleep(270); |
| 330 | |
| 331 | /* Cache the measured offsets for digital */ |
| 332 | if (wm8903->class_w_users) |
| 333 | break; |
| 334 | |
| 335 | for (i = 0; i < ARRAY_SIZE(wm8903->dcs_cache); i++) { |
| 336 | if (!(wm8903->dcs_pending & (1 << i))) |
| 337 | continue; |
| 338 | |
| 339 | val = snd_soc_read(codec, |
| 340 | WM8903_DC_SERVO_READBACK_1 + i); |
| 341 | dev_dbg(codec->dev, "DC servo %d: %x\n", |
| 342 | 3 - i, val); |
| 343 | wm8903->dcs_cache[i] = val; |
| 344 | } |
| 345 | break; |
| 346 | |
| 347 | default: |
| 348 | pr_warn("DCS mode %d delay not set\n", dcs_mode); |
| 349 | break; |
| 350 | } |
| 351 | |
| 352 | wm8903->dcs_pending = 0; |
| 353 | } |
| 354 | } |
| 355 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 356 | /* |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 357 | * When used with DAC outputs only the WM8903 charge pump supports |
| 358 | * operation in class W mode, providing very low power consumption |
| 359 | * when used with digital sources. Enable and disable this mode |
| 360 | * automatically depending on the mixer configuration. |
| 361 | * |
| 362 | * All the relevant controls are simple switches. |
| 363 | */ |
| 364 | static int wm8903_class_w_put(struct snd_kcontrol *kcontrol, |
| 365 | struct snd_ctl_elem_value *ucontrol) |
| 366 | { |
Lars-Peter Clausen | eee5d7f | 2013-07-29 17:13:57 +0200 | [diff] [blame] | 367 | struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol); |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 368 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 369 | u16 reg; |
| 370 | int ret; |
| 371 | |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 372 | reg = snd_soc_read(codec, WM8903_CLASS_W_0); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 373 | |
| 374 | /* Turn it off if we're about to enable bypass */ |
| 375 | if (ucontrol->value.integer.value[0]) { |
| 376 | if (wm8903->class_w_users == 0) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 377 | dev_dbg(codec->dev, "Disabling Class W\n"); |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 378 | snd_soc_write(codec, WM8903_CLASS_W_0, reg & |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 379 | ~(WM8903_CP_DYN_FREQ | WM8903_CP_DYN_V)); |
| 380 | } |
| 381 | wm8903->class_w_users++; |
| 382 | } |
| 383 | |
| 384 | /* Implement the change */ |
| 385 | ret = snd_soc_dapm_put_volsw(kcontrol, ucontrol); |
| 386 | |
| 387 | /* If we've just disabled the last bypass path turn Class W on */ |
| 388 | if (!ucontrol->value.integer.value[0]) { |
| 389 | if (wm8903->class_w_users == 1) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 390 | dev_dbg(codec->dev, "Enabling Class W\n"); |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 391 | snd_soc_write(codec, WM8903_CLASS_W_0, reg | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 392 | WM8903_CP_DYN_FREQ | WM8903_CP_DYN_V); |
| 393 | } |
| 394 | wm8903->class_w_users--; |
| 395 | } |
| 396 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 397 | dev_dbg(codec->dev, "Bypass use count now %d\n", |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 398 | wm8903->class_w_users); |
| 399 | |
| 400 | return ret; |
| 401 | } |
| 402 | |
| 403 | #define SOC_DAPM_SINGLE_W(xname, reg, shift, max, invert) \ |
Lars-Peter Clausen | ea3583d | 2013-06-19 19:33:55 +0200 | [diff] [blame] | 404 | SOC_SINGLE_EXT(xname, reg, shift, max, invert, \ |
| 405 | snd_soc_dapm_get_volsw, wm8903_class_w_put) |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 406 | |
| 407 | |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 408 | static int wm8903_deemph[] = { 0, 32000, 44100, 48000 }; |
| 409 | |
| 410 | static int wm8903_set_deemph(struct snd_soc_codec *codec) |
| 411 | { |
| 412 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
| 413 | int val, i, best; |
| 414 | |
| 415 | /* If we're using deemphasis select the nearest available sample |
| 416 | * rate. |
| 417 | */ |
| 418 | if (wm8903->deemph) { |
| 419 | best = 1; |
| 420 | for (i = 2; i < ARRAY_SIZE(wm8903_deemph); i++) { |
| 421 | if (abs(wm8903_deemph[i] - wm8903->fs) < |
| 422 | abs(wm8903_deemph[best] - wm8903->fs)) |
| 423 | best = i; |
| 424 | } |
| 425 | |
| 426 | val = best << WM8903_DEEMPH_SHIFT; |
| 427 | } else { |
| 428 | best = 0; |
| 429 | val = 0; |
| 430 | } |
| 431 | |
| 432 | dev_dbg(codec->dev, "Set deemphasis %d (%dHz)\n", |
| 433 | best, wm8903_deemph[best]); |
| 434 | |
| 435 | return snd_soc_update_bits(codec, WM8903_DAC_DIGITAL_1, |
| 436 | WM8903_DEEMPH_MASK, val); |
| 437 | } |
| 438 | |
| 439 | static int wm8903_get_deemph(struct snd_kcontrol *kcontrol, |
| 440 | struct snd_ctl_elem_value *ucontrol) |
| 441 | { |
Lars-Peter Clausen | ea53bf7 | 2014-03-18 09:02:04 +0100 | [diff] [blame] | 442 | struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol); |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 443 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
| 444 | |
Takashi Iwai | 24cc883 | 2015-03-10 12:39:11 +0100 | [diff] [blame] | 445 | ucontrol->value.integer.value[0] = wm8903->deemph; |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 446 | |
| 447 | return 0; |
| 448 | } |
| 449 | |
| 450 | static int wm8903_put_deemph(struct snd_kcontrol *kcontrol, |
| 451 | struct snd_ctl_elem_value *ucontrol) |
| 452 | { |
Lars-Peter Clausen | ea53bf7 | 2014-03-18 09:02:04 +0100 | [diff] [blame] | 453 | struct snd_soc_codec *codec = snd_soc_kcontrol_codec(kcontrol); |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 454 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
Takashi Iwai | 24cc883 | 2015-03-10 12:39:11 +0100 | [diff] [blame] | 455 | int deemph = ucontrol->value.integer.value[0]; |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 456 | int ret = 0; |
| 457 | |
| 458 | if (deemph > 1) |
| 459 | return -EINVAL; |
| 460 | |
Lars-Peter Clausen | 78660af | 2014-11-09 17:01:01 +0100 | [diff] [blame] | 461 | mutex_lock(&wm8903->lock); |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 462 | if (wm8903->deemph != deemph) { |
| 463 | wm8903->deemph = deemph; |
| 464 | |
| 465 | wm8903_set_deemph(codec); |
| 466 | |
| 467 | ret = 1; |
| 468 | } |
Lars-Peter Clausen | 78660af | 2014-11-09 17:01:01 +0100 | [diff] [blame] | 469 | mutex_unlock(&wm8903->lock); |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 470 | |
| 471 | return ret; |
| 472 | } |
| 473 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 474 | /* ALSA can only do steps of .01dB */ |
| 475 | static const DECLARE_TLV_DB_SCALE(digital_tlv, -7200, 75, 1); |
| 476 | |
Alban Bedel | 00aa0fa | 2013-03-20 17:37:32 +0100 | [diff] [blame] | 477 | static const DECLARE_TLV_DB_SCALE(dac_boost_tlv, 0, 600, 0); |
| 478 | |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 479 | static const DECLARE_TLV_DB_SCALE(digital_sidetone_tlv, -3600, 300, 0); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 480 | static const DECLARE_TLV_DB_SCALE(out_tlv, -5700, 100, 0); |
| 481 | |
| 482 | static const DECLARE_TLV_DB_SCALE(drc_tlv_thresh, 0, 75, 0); |
| 483 | static const DECLARE_TLV_DB_SCALE(drc_tlv_amp, -2250, 75, 0); |
| 484 | static const DECLARE_TLV_DB_SCALE(drc_tlv_min, 0, 600, 0); |
| 485 | static const DECLARE_TLV_DB_SCALE(drc_tlv_max, 1200, 600, 0); |
| 486 | static const DECLARE_TLV_DB_SCALE(drc_tlv_startup, -300, 50, 0); |
| 487 | |
Mark Brown | 460f4aa | 2010-12-10 18:42:58 +0000 | [diff] [blame] | 488 | static const char *hpf_mode_text[] = { |
| 489 | "Hi-fi", "Voice 1", "Voice 2", "Voice 3" |
| 490 | }; |
| 491 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 492 | static SOC_ENUM_SINGLE_DECL(hpf_mode, |
| 493 | WM8903_ADC_DIGITAL_0, 5, hpf_mode_text); |
Mark Brown | 460f4aa | 2010-12-10 18:42:58 +0000 | [diff] [blame] | 494 | |
Mark Brown | dcf9ada | 2010-12-10 19:17:06 +0000 | [diff] [blame] | 495 | static const char *osr_text[] = { |
| 496 | "Low power", "High performance" |
| 497 | }; |
| 498 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 499 | static SOC_ENUM_SINGLE_DECL(adc_osr, |
| 500 | WM8903_ANALOGUE_ADC_0, 0, osr_text); |
Mark Brown | dcf9ada | 2010-12-10 19:17:06 +0000 | [diff] [blame] | 501 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 502 | static SOC_ENUM_SINGLE_DECL(dac_osr, |
| 503 | WM8903_DAC_DIGITAL_1, 0, osr_text); |
Mark Brown | dcf9ada | 2010-12-10 19:17:06 +0000 | [diff] [blame] | 504 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 505 | static const char *drc_slope_text[] = { |
| 506 | "1", "1/2", "1/4", "1/8", "1/16", "0" |
| 507 | }; |
| 508 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 509 | static SOC_ENUM_SINGLE_DECL(drc_slope_r0, |
| 510 | WM8903_DRC_2, 3, drc_slope_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 511 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 512 | static SOC_ENUM_SINGLE_DECL(drc_slope_r1, |
| 513 | WM8903_DRC_2, 0, drc_slope_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 514 | |
| 515 | static const char *drc_attack_text[] = { |
| 516 | "instantaneous", |
| 517 | "363us", "762us", "1.45ms", "2.9ms", "5.8ms", "11.6ms", "23.2ms", |
| 518 | "46.4ms", "92.8ms", "185.6ms" |
| 519 | }; |
| 520 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 521 | static SOC_ENUM_SINGLE_DECL(drc_attack, |
| 522 | WM8903_DRC_1, 12, drc_attack_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 523 | |
| 524 | static const char *drc_decay_text[] = { |
| 525 | "186ms", "372ms", "743ms", "1.49s", "2.97s", "5.94s", "11.89s", |
| 526 | "23.87s", "47.56s" |
| 527 | }; |
| 528 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 529 | static SOC_ENUM_SINGLE_DECL(drc_decay, |
| 530 | WM8903_DRC_1, 8, drc_decay_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 531 | |
| 532 | static const char *drc_ff_delay_text[] = { |
| 533 | "5 samples", "9 samples" |
| 534 | }; |
| 535 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 536 | static SOC_ENUM_SINGLE_DECL(drc_ff_delay, |
| 537 | WM8903_DRC_0, 5, drc_ff_delay_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 538 | |
| 539 | static const char *drc_qr_decay_text[] = { |
| 540 | "0.725ms", "1.45ms", "5.8ms" |
| 541 | }; |
| 542 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 543 | static SOC_ENUM_SINGLE_DECL(drc_qr_decay, |
| 544 | WM8903_DRC_1, 4, drc_qr_decay_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 545 | |
| 546 | static const char *drc_smoothing_text[] = { |
| 547 | "Low", "Medium", "High" |
| 548 | }; |
| 549 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 550 | static SOC_ENUM_SINGLE_DECL(drc_smoothing, |
| 551 | WM8903_DRC_0, 11, drc_smoothing_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 552 | |
| 553 | static const char *soft_mute_text[] = { |
| 554 | "Fast (fs/2)", "Slow (fs/32)" |
| 555 | }; |
| 556 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 557 | static SOC_ENUM_SINGLE_DECL(soft_mute, |
| 558 | WM8903_DAC_DIGITAL_1, 10, soft_mute_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 559 | |
| 560 | static const char *mute_mode_text[] = { |
| 561 | "Hard", "Soft" |
| 562 | }; |
| 563 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 564 | static SOC_ENUM_SINGLE_DECL(mute_mode, |
| 565 | WM8903_DAC_DIGITAL_1, 9, mute_mode_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 566 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 567 | static const char *companding_text[] = { |
| 568 | "ulaw", "alaw" |
| 569 | }; |
| 570 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 571 | static SOC_ENUM_SINGLE_DECL(dac_companding, |
| 572 | WM8903_AUDIO_INTERFACE_0, 0, companding_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 573 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 574 | static SOC_ENUM_SINGLE_DECL(adc_companding, |
| 575 | WM8903_AUDIO_INTERFACE_0, 2, companding_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 576 | |
| 577 | static const char *input_mode_text[] = { |
| 578 | "Single-Ended", "Differential Line", "Differential Mic" |
| 579 | }; |
| 580 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 581 | static SOC_ENUM_SINGLE_DECL(linput_mode_enum, |
| 582 | WM8903_ANALOGUE_LEFT_INPUT_1, 0, input_mode_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 583 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 584 | static SOC_ENUM_SINGLE_DECL(rinput_mode_enum, |
| 585 | WM8903_ANALOGUE_RIGHT_INPUT_1, 0, input_mode_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 586 | |
| 587 | static const char *linput_mux_text[] = { |
| 588 | "IN1L", "IN2L", "IN3L" |
| 589 | }; |
| 590 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 591 | static SOC_ENUM_SINGLE_DECL(linput_enum, |
| 592 | WM8903_ANALOGUE_LEFT_INPUT_1, 2, linput_mux_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 593 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 594 | static SOC_ENUM_SINGLE_DECL(linput_inv_enum, |
| 595 | WM8903_ANALOGUE_LEFT_INPUT_1, 4, linput_mux_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 596 | |
| 597 | static const char *rinput_mux_text[] = { |
| 598 | "IN1R", "IN2R", "IN3R" |
| 599 | }; |
| 600 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 601 | static SOC_ENUM_SINGLE_DECL(rinput_enum, |
| 602 | WM8903_ANALOGUE_RIGHT_INPUT_1, 2, rinput_mux_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 603 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 604 | static SOC_ENUM_SINGLE_DECL(rinput_inv_enum, |
| 605 | WM8903_ANALOGUE_RIGHT_INPUT_1, 4, rinput_mux_text); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 606 | |
| 607 | |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 608 | static const char *sidetone_text[] = { |
| 609 | "None", "Left", "Right" |
| 610 | }; |
| 611 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 612 | static SOC_ENUM_SINGLE_DECL(lsidetone_enum, |
| 613 | WM8903_DAC_DIGITAL_0, 2, sidetone_text); |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 614 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 615 | static SOC_ENUM_SINGLE_DECL(rsidetone_enum, |
| 616 | WM8903_DAC_DIGITAL_0, 0, sidetone_text); |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 617 | |
Stephen Warren | 97945c4 | 2011-04-18 20:58:11 -0600 | [diff] [blame] | 618 | static const char *adcinput_text[] = { |
| 619 | "ADC", "DMIC" |
| 620 | }; |
| 621 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 622 | static SOC_ENUM_SINGLE_DECL(adcinput_enum, |
| 623 | WM8903_CLOCK_RATE_TEST_4, 9, adcinput_text); |
Stephen Warren | 97945c4 | 2011-04-18 20:58:11 -0600 | [diff] [blame] | 624 | |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 625 | static const char *aif_text[] = { |
| 626 | "Left", "Right" |
| 627 | }; |
| 628 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 629 | static SOC_ENUM_SINGLE_DECL(lcapture_enum, |
| 630 | WM8903_AUDIO_INTERFACE_0, 7, aif_text); |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 631 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 632 | static SOC_ENUM_SINGLE_DECL(rcapture_enum, |
| 633 | WM8903_AUDIO_INTERFACE_0, 6, aif_text); |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 634 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 635 | static SOC_ENUM_SINGLE_DECL(lplay_enum, |
| 636 | WM8903_AUDIO_INTERFACE_0, 5, aif_text); |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 637 | |
Takashi Iwai | a21bc5c | 2014-02-18 10:40:16 +0100 | [diff] [blame] | 638 | static SOC_ENUM_SINGLE_DECL(rplay_enum, |
| 639 | WM8903_AUDIO_INTERFACE_0, 4, aif_text); |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 640 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 641 | static const struct snd_kcontrol_new wm8903_snd_controls[] = { |
| 642 | |
| 643 | /* Input PGAs - No TLV since the scale depends on PGA mode */ |
| 644 | SOC_SINGLE("Left Input PGA Switch", WM8903_ANALOGUE_LEFT_INPUT_0, |
Mark Brown | 5715952 | 2008-09-24 10:47:02 +0100 | [diff] [blame] | 645 | 7, 1, 1), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 646 | SOC_SINGLE("Left Input PGA Volume", WM8903_ANALOGUE_LEFT_INPUT_0, |
| 647 | 0, 31, 0), |
| 648 | SOC_SINGLE("Left Input PGA Common Mode Switch", WM8903_ANALOGUE_LEFT_INPUT_1, |
| 649 | 6, 1, 0), |
| 650 | |
| 651 | SOC_SINGLE("Right Input PGA Switch", WM8903_ANALOGUE_RIGHT_INPUT_0, |
Mark Brown | 5715952 | 2008-09-24 10:47:02 +0100 | [diff] [blame] | 652 | 7, 1, 1), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 653 | SOC_SINGLE("Right Input PGA Volume", WM8903_ANALOGUE_RIGHT_INPUT_0, |
| 654 | 0, 31, 0), |
| 655 | SOC_SINGLE("Right Input PGA Common Mode Switch", WM8903_ANALOGUE_RIGHT_INPUT_1, |
| 656 | 6, 1, 0), |
| 657 | |
| 658 | /* ADCs */ |
Mark Brown | dcf9ada | 2010-12-10 19:17:06 +0000 | [diff] [blame] | 659 | SOC_ENUM("ADC OSR", adc_osr), |
Mark Brown | 460f4aa | 2010-12-10 18:42:58 +0000 | [diff] [blame] | 660 | SOC_SINGLE("HPF Switch", WM8903_ADC_DIGITAL_0, 4, 1, 0), |
| 661 | SOC_ENUM("HPF Mode", hpf_mode), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 662 | SOC_SINGLE("DRC Switch", WM8903_DRC_0, 15, 1, 0), |
| 663 | SOC_ENUM("DRC Compressor Slope R0", drc_slope_r0), |
| 664 | SOC_ENUM("DRC Compressor Slope R1", drc_slope_r1), |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 665 | SOC_SINGLE_TLV("DRC Compressor Threshold Volume", WM8903_DRC_3, 5, 124, 1, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 666 | drc_tlv_thresh), |
| 667 | SOC_SINGLE_TLV("DRC Volume", WM8903_DRC_3, 0, 30, 1, drc_tlv_amp), |
| 668 | SOC_SINGLE_TLV("DRC Minimum Gain Volume", WM8903_DRC_1, 2, 3, 1, drc_tlv_min), |
| 669 | SOC_SINGLE_TLV("DRC Maximum Gain Volume", WM8903_DRC_1, 0, 3, 0, drc_tlv_max), |
| 670 | SOC_ENUM("DRC Attack Rate", drc_attack), |
| 671 | SOC_ENUM("DRC Decay Rate", drc_decay), |
| 672 | SOC_ENUM("DRC FF Delay", drc_ff_delay), |
| 673 | SOC_SINGLE("DRC Anticlip Switch", WM8903_DRC_0, 1, 1, 0), |
| 674 | SOC_SINGLE("DRC QR Switch", WM8903_DRC_0, 2, 1, 0), |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 675 | SOC_SINGLE_TLV("DRC QR Threshold Volume", WM8903_DRC_0, 6, 3, 0, drc_tlv_max), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 676 | SOC_ENUM("DRC QR Decay Rate", drc_qr_decay), |
| 677 | SOC_SINGLE("DRC Smoothing Switch", WM8903_DRC_0, 3, 1, 0), |
| 678 | SOC_SINGLE("DRC Smoothing Hysteresis Switch", WM8903_DRC_0, 0, 1, 0), |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 679 | SOC_ENUM("DRC Smoothing Threshold", drc_smoothing), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 680 | SOC_SINGLE_TLV("DRC Startup Volume", WM8903_DRC_0, 6, 18, 0, drc_tlv_startup), |
| 681 | |
| 682 | SOC_DOUBLE_R_TLV("Digital Capture Volume", WM8903_ADC_DIGITAL_VOLUME_LEFT, |
Stephen Warren | 61bf35b | 2011-05-09 16:32:03 -0600 | [diff] [blame] | 683 | WM8903_ADC_DIGITAL_VOLUME_RIGHT, 1, 120, 0, digital_tlv), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 684 | SOC_ENUM("ADC Companding Mode", adc_companding), |
| 685 | SOC_SINGLE("ADC Companding Switch", WM8903_AUDIO_INTERFACE_0, 3, 1, 0), |
| 686 | |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 687 | SOC_DOUBLE_TLV("Digital Sidetone Volume", WM8903_DAC_DIGITAL_0, 4, 8, |
| 688 | 12, 0, digital_sidetone_tlv), |
| 689 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 690 | /* DAC */ |
Mark Brown | dcf9ada | 2010-12-10 19:17:06 +0000 | [diff] [blame] | 691 | SOC_ENUM("DAC OSR", dac_osr), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 692 | SOC_DOUBLE_R_TLV("Digital Playback Volume", WM8903_DAC_DIGITAL_VOLUME_LEFT, |
| 693 | WM8903_DAC_DIGITAL_VOLUME_RIGHT, 1, 120, 0, digital_tlv), |
| 694 | SOC_ENUM("DAC Soft Mute Rate", soft_mute), |
| 695 | SOC_ENUM("DAC Mute Mode", mute_mode), |
| 696 | SOC_SINGLE("DAC Mono Switch", WM8903_DAC_DIGITAL_1, 12, 1, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 697 | SOC_ENUM("DAC Companding Mode", dac_companding), |
| 698 | SOC_SINGLE("DAC Companding Switch", WM8903_AUDIO_INTERFACE_0, 1, 1, 0), |
Alban Bedel | 00aa0fa | 2013-03-20 17:37:32 +0100 | [diff] [blame] | 699 | SOC_SINGLE_TLV("DAC Boost Volume", WM8903_AUDIO_INTERFACE_0, 9, 3, 0, |
| 700 | dac_boost_tlv), |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 701 | SOC_SINGLE_BOOL_EXT("Playback Deemphasis Switch", 0, |
| 702 | wm8903_get_deemph, wm8903_put_deemph), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 703 | |
| 704 | /* Headphones */ |
| 705 | SOC_DOUBLE_R("Headphone Switch", |
| 706 | WM8903_ANALOGUE_OUT1_LEFT, WM8903_ANALOGUE_OUT1_RIGHT, |
| 707 | 8, 1, 1), |
| 708 | SOC_DOUBLE_R("Headphone ZC Switch", |
| 709 | WM8903_ANALOGUE_OUT1_LEFT, WM8903_ANALOGUE_OUT1_RIGHT, |
| 710 | 6, 1, 0), |
| 711 | SOC_DOUBLE_R_TLV("Headphone Volume", |
| 712 | WM8903_ANALOGUE_OUT1_LEFT, WM8903_ANALOGUE_OUT1_RIGHT, |
| 713 | 0, 63, 0, out_tlv), |
| 714 | |
| 715 | /* Line out */ |
| 716 | SOC_DOUBLE_R("Line Out Switch", |
| 717 | WM8903_ANALOGUE_OUT2_LEFT, WM8903_ANALOGUE_OUT2_RIGHT, |
| 718 | 8, 1, 1), |
| 719 | SOC_DOUBLE_R("Line Out ZC Switch", |
| 720 | WM8903_ANALOGUE_OUT2_LEFT, WM8903_ANALOGUE_OUT2_RIGHT, |
| 721 | 6, 1, 0), |
| 722 | SOC_DOUBLE_R_TLV("Line Out Volume", |
| 723 | WM8903_ANALOGUE_OUT2_LEFT, WM8903_ANALOGUE_OUT2_RIGHT, |
| 724 | 0, 63, 0, out_tlv), |
| 725 | |
| 726 | /* Speaker */ |
| 727 | SOC_DOUBLE_R("Speaker Switch", |
| 728 | WM8903_ANALOGUE_OUT3_LEFT, WM8903_ANALOGUE_OUT3_RIGHT, 8, 1, 1), |
| 729 | SOC_DOUBLE_R("Speaker ZC Switch", |
| 730 | WM8903_ANALOGUE_OUT3_LEFT, WM8903_ANALOGUE_OUT3_RIGHT, 6, 1, 0), |
| 731 | SOC_DOUBLE_R_TLV("Speaker Volume", |
| 732 | WM8903_ANALOGUE_OUT3_LEFT, WM8903_ANALOGUE_OUT3_RIGHT, |
| 733 | 0, 63, 0, out_tlv), |
| 734 | }; |
| 735 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 736 | static const struct snd_kcontrol_new linput_mode_mux = |
| 737 | SOC_DAPM_ENUM("Left Input Mode Mux", linput_mode_enum); |
| 738 | |
| 739 | static const struct snd_kcontrol_new rinput_mode_mux = |
| 740 | SOC_DAPM_ENUM("Right Input Mode Mux", rinput_mode_enum); |
| 741 | |
| 742 | static const struct snd_kcontrol_new linput_mux = |
| 743 | SOC_DAPM_ENUM("Left Input Mux", linput_enum); |
| 744 | |
| 745 | static const struct snd_kcontrol_new linput_inv_mux = |
| 746 | SOC_DAPM_ENUM("Left Inverting Input Mux", linput_inv_enum); |
| 747 | |
| 748 | static const struct snd_kcontrol_new rinput_mux = |
| 749 | SOC_DAPM_ENUM("Right Input Mux", rinput_enum); |
| 750 | |
| 751 | static const struct snd_kcontrol_new rinput_inv_mux = |
| 752 | SOC_DAPM_ENUM("Right Inverting Input Mux", rinput_inv_enum); |
| 753 | |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 754 | static const struct snd_kcontrol_new lsidetone_mux = |
| 755 | SOC_DAPM_ENUM("DACL Sidetone Mux", lsidetone_enum); |
| 756 | |
| 757 | static const struct snd_kcontrol_new rsidetone_mux = |
| 758 | SOC_DAPM_ENUM("DACR Sidetone Mux", rsidetone_enum); |
| 759 | |
Stephen Warren | 97945c4 | 2011-04-18 20:58:11 -0600 | [diff] [blame] | 760 | static const struct snd_kcontrol_new adcinput_mux = |
| 761 | SOC_DAPM_ENUM("ADC Input", adcinput_enum); |
| 762 | |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 763 | static const struct snd_kcontrol_new lcapture_mux = |
| 764 | SOC_DAPM_ENUM("Left Capture Mux", lcapture_enum); |
| 765 | |
| 766 | static const struct snd_kcontrol_new rcapture_mux = |
| 767 | SOC_DAPM_ENUM("Right Capture Mux", rcapture_enum); |
| 768 | |
| 769 | static const struct snd_kcontrol_new lplay_mux = |
| 770 | SOC_DAPM_ENUM("Left Playback Mux", lplay_enum); |
| 771 | |
| 772 | static const struct snd_kcontrol_new rplay_mux = |
| 773 | SOC_DAPM_ENUM("Right Playback Mux", rplay_enum); |
| 774 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 775 | static const struct snd_kcontrol_new left_output_mixer[] = { |
| 776 | SOC_DAPM_SINGLE("DACL Switch", WM8903_ANALOGUE_LEFT_MIX_0, 3, 1, 0), |
| 777 | SOC_DAPM_SINGLE("DACR Switch", WM8903_ANALOGUE_LEFT_MIX_0, 2, 1, 0), |
| 778 | SOC_DAPM_SINGLE_W("Left Bypass Switch", WM8903_ANALOGUE_LEFT_MIX_0, 1, 1, 0), |
Mark Brown | 4b4fffd | 2008-12-03 11:21:08 +0000 | [diff] [blame] | 779 | SOC_DAPM_SINGLE_W("Right Bypass Switch", WM8903_ANALOGUE_LEFT_MIX_0, 0, 1, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 780 | }; |
| 781 | |
| 782 | static const struct snd_kcontrol_new right_output_mixer[] = { |
| 783 | SOC_DAPM_SINGLE("DACL Switch", WM8903_ANALOGUE_RIGHT_MIX_0, 3, 1, 0), |
| 784 | SOC_DAPM_SINGLE("DACR Switch", WM8903_ANALOGUE_RIGHT_MIX_0, 2, 1, 0), |
| 785 | SOC_DAPM_SINGLE_W("Left Bypass Switch", WM8903_ANALOGUE_RIGHT_MIX_0, 1, 1, 0), |
Mark Brown | 4b4fffd | 2008-12-03 11:21:08 +0000 | [diff] [blame] | 786 | SOC_DAPM_SINGLE_W("Right Bypass Switch", WM8903_ANALOGUE_RIGHT_MIX_0, 0, 1, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 787 | }; |
| 788 | |
| 789 | static const struct snd_kcontrol_new left_speaker_mixer[] = { |
| 790 | SOC_DAPM_SINGLE("DACL Switch", WM8903_ANALOGUE_SPK_MIX_LEFT_0, 3, 1, 0), |
| 791 | SOC_DAPM_SINGLE("DACR Switch", WM8903_ANALOGUE_SPK_MIX_LEFT_0, 2, 1, 0), |
| 792 | SOC_DAPM_SINGLE("Left Bypass Switch", WM8903_ANALOGUE_SPK_MIX_LEFT_0, 1, 1, 0), |
| 793 | SOC_DAPM_SINGLE("Right Bypass Switch", WM8903_ANALOGUE_SPK_MIX_LEFT_0, |
Mark Brown | 4b4fffd | 2008-12-03 11:21:08 +0000 | [diff] [blame] | 794 | 0, 1, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 795 | }; |
| 796 | |
| 797 | static const struct snd_kcontrol_new right_speaker_mixer[] = { |
| 798 | SOC_DAPM_SINGLE("DACL Switch", WM8903_ANALOGUE_SPK_MIX_RIGHT_0, 3, 1, 0), |
| 799 | SOC_DAPM_SINGLE("DACR Switch", WM8903_ANALOGUE_SPK_MIX_RIGHT_0, 2, 1, 0), |
| 800 | SOC_DAPM_SINGLE("Left Bypass Switch", WM8903_ANALOGUE_SPK_MIX_RIGHT_0, |
| 801 | 1, 1, 0), |
| 802 | SOC_DAPM_SINGLE("Right Bypass Switch", WM8903_ANALOGUE_SPK_MIX_RIGHT_0, |
Mark Brown | 4b4fffd | 2008-12-03 11:21:08 +0000 | [diff] [blame] | 803 | 0, 1, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 804 | }; |
| 805 | |
| 806 | static const struct snd_soc_dapm_widget wm8903_dapm_widgets[] = { |
| 807 | SND_SOC_DAPM_INPUT("IN1L"), |
| 808 | SND_SOC_DAPM_INPUT("IN1R"), |
| 809 | SND_SOC_DAPM_INPUT("IN2L"), |
| 810 | SND_SOC_DAPM_INPUT("IN2R"), |
| 811 | SND_SOC_DAPM_INPUT("IN3L"), |
| 812 | SND_SOC_DAPM_INPUT("IN3R"), |
Stephen Warren | 97945c4 | 2011-04-18 20:58:11 -0600 | [diff] [blame] | 813 | SND_SOC_DAPM_INPUT("DMICDAT"), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 814 | |
| 815 | SND_SOC_DAPM_OUTPUT("HPOUTL"), |
| 816 | SND_SOC_DAPM_OUTPUT("HPOUTR"), |
| 817 | SND_SOC_DAPM_OUTPUT("LINEOUTL"), |
| 818 | SND_SOC_DAPM_OUTPUT("LINEOUTR"), |
| 819 | SND_SOC_DAPM_OUTPUT("LOP"), |
| 820 | SND_SOC_DAPM_OUTPUT("LON"), |
| 821 | SND_SOC_DAPM_OUTPUT("ROP"), |
| 822 | SND_SOC_DAPM_OUTPUT("RON"), |
| 823 | |
Mark Brown | 5032dc3 | 2011-11-27 12:20:08 +0000 | [diff] [blame] | 824 | SND_SOC_DAPM_SUPPLY("MICBIAS", WM8903_MIC_BIAS_CONTROL_0, 0, 0, NULL, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 825 | |
| 826 | SND_SOC_DAPM_MUX("Left Input Mux", SND_SOC_NOPM, 0, 0, &linput_mux), |
| 827 | SND_SOC_DAPM_MUX("Left Input Inverting Mux", SND_SOC_NOPM, 0, 0, |
| 828 | &linput_inv_mux), |
| 829 | SND_SOC_DAPM_MUX("Left Input Mode Mux", SND_SOC_NOPM, 0, 0, &linput_mode_mux), |
| 830 | |
| 831 | SND_SOC_DAPM_MUX("Right Input Mux", SND_SOC_NOPM, 0, 0, &rinput_mux), |
| 832 | SND_SOC_DAPM_MUX("Right Input Inverting Mux", SND_SOC_NOPM, 0, 0, |
| 833 | &rinput_inv_mux), |
| 834 | SND_SOC_DAPM_MUX("Right Input Mode Mux", SND_SOC_NOPM, 0, 0, &rinput_mode_mux), |
| 835 | |
| 836 | SND_SOC_DAPM_PGA("Left Input PGA", WM8903_POWER_MANAGEMENT_0, 1, 0, NULL, 0), |
| 837 | SND_SOC_DAPM_PGA("Right Input PGA", WM8903_POWER_MANAGEMENT_0, 0, 0, NULL, 0), |
| 838 | |
Stephen Warren | 97945c4 | 2011-04-18 20:58:11 -0600 | [diff] [blame] | 839 | SND_SOC_DAPM_MUX("Left ADC Input", SND_SOC_NOPM, 0, 0, &adcinput_mux), |
| 840 | SND_SOC_DAPM_MUX("Right ADC Input", SND_SOC_NOPM, 0, 0, &adcinput_mux), |
| 841 | |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 842 | SND_SOC_DAPM_ADC("ADCL", NULL, WM8903_POWER_MANAGEMENT_6, 1, 0), |
| 843 | SND_SOC_DAPM_ADC("ADCR", NULL, WM8903_POWER_MANAGEMENT_6, 0, 0), |
| 844 | |
| 845 | SND_SOC_DAPM_MUX("Left Capture Mux", SND_SOC_NOPM, 0, 0, &lcapture_mux), |
| 846 | SND_SOC_DAPM_MUX("Right Capture Mux", SND_SOC_NOPM, 0, 0, &rcapture_mux), |
| 847 | |
| 848 | SND_SOC_DAPM_AIF_OUT("AIFTXL", "Left HiFi Capture", 0, SND_SOC_NOPM, 0, 0), |
| 849 | SND_SOC_DAPM_AIF_OUT("AIFTXR", "Right HiFi Capture", 0, SND_SOC_NOPM, 0, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 850 | |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 851 | SND_SOC_DAPM_MUX("DACL Sidetone", SND_SOC_NOPM, 0, 0, &lsidetone_mux), |
| 852 | SND_SOC_DAPM_MUX("DACR Sidetone", SND_SOC_NOPM, 0, 0, &rsidetone_mux), |
| 853 | |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 854 | SND_SOC_DAPM_AIF_IN("AIFRXL", "Left Playback", 0, SND_SOC_NOPM, 0, 0), |
| 855 | SND_SOC_DAPM_AIF_IN("AIFRXR", "Right Playback", 0, SND_SOC_NOPM, 0, 0), |
| 856 | |
| 857 | SND_SOC_DAPM_MUX("Left Playback Mux", SND_SOC_NOPM, 0, 0, &lplay_mux), |
| 858 | SND_SOC_DAPM_MUX("Right Playback Mux", SND_SOC_NOPM, 0, 0, &rplay_mux), |
| 859 | |
| 860 | SND_SOC_DAPM_DAC("DACL", NULL, WM8903_POWER_MANAGEMENT_6, 3, 0), |
| 861 | SND_SOC_DAPM_DAC("DACR", NULL, WM8903_POWER_MANAGEMENT_6, 2, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 862 | |
| 863 | SND_SOC_DAPM_MIXER("Left Output Mixer", WM8903_POWER_MANAGEMENT_1, 1, 0, |
| 864 | left_output_mixer, ARRAY_SIZE(left_output_mixer)), |
| 865 | SND_SOC_DAPM_MIXER("Right Output Mixer", WM8903_POWER_MANAGEMENT_1, 0, 0, |
| 866 | right_output_mixer, ARRAY_SIZE(right_output_mixer)), |
| 867 | |
| 868 | SND_SOC_DAPM_MIXER("Left Speaker Mixer", WM8903_POWER_MANAGEMENT_4, 1, 0, |
| 869 | left_speaker_mixer, ARRAY_SIZE(left_speaker_mixer)), |
| 870 | SND_SOC_DAPM_MIXER("Right Speaker Mixer", WM8903_POWER_MANAGEMENT_4, 0, 0, |
| 871 | right_speaker_mixer, ARRAY_SIZE(right_speaker_mixer)), |
| 872 | |
Dilan Lee | 1b877cb | 2011-04-07 11:08:38 -0600 | [diff] [blame] | 873 | SND_SOC_DAPM_PGA_S("Left Headphone Output PGA", 0, WM8903_POWER_MANAGEMENT_2, |
| 874 | 1, 0, NULL, 0), |
| 875 | SND_SOC_DAPM_PGA_S("Right Headphone Output PGA", 0, WM8903_POWER_MANAGEMENT_2, |
Mark Brown | 13a9983 | 2011-02-09 17:42:55 +0000 | [diff] [blame] | 876 | 0, 0, NULL, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 877 | |
Dilan Lee | 1b877cb | 2011-04-07 11:08:38 -0600 | [diff] [blame] | 878 | SND_SOC_DAPM_PGA_S("Left Line Output PGA", 0, WM8903_POWER_MANAGEMENT_3, 1, 0, |
Mark Brown | 13a9983 | 2011-02-09 17:42:55 +0000 | [diff] [blame] | 879 | NULL, 0), |
Dilan Lee | 1b877cb | 2011-04-07 11:08:38 -0600 | [diff] [blame] | 880 | SND_SOC_DAPM_PGA_S("Right Line Output PGA", 0, WM8903_POWER_MANAGEMENT_3, 0, 0, |
Mark Brown | 13a9983 | 2011-02-09 17:42:55 +0000 | [diff] [blame] | 881 | NULL, 0), |
| 882 | |
| 883 | SND_SOC_DAPM_PGA_S("HPL_RMV_SHORT", 4, WM8903_ANALOGUE_HP_0, 7, 0, NULL, 0), |
| 884 | SND_SOC_DAPM_PGA_S("HPL_ENA_OUTP", 3, WM8903_ANALOGUE_HP_0, 6, 0, NULL, 0), |
Dilan Lee | 1b877cb | 2011-04-07 11:08:38 -0600 | [diff] [blame] | 885 | SND_SOC_DAPM_PGA_S("HPL_ENA_DLY", 2, WM8903_ANALOGUE_HP_0, 5, 0, NULL, 0), |
| 886 | SND_SOC_DAPM_PGA_S("HPL_ENA", 1, WM8903_ANALOGUE_HP_0, 4, 0, NULL, 0), |
Mark Brown | 13a9983 | 2011-02-09 17:42:55 +0000 | [diff] [blame] | 887 | SND_SOC_DAPM_PGA_S("HPR_RMV_SHORT", 4, WM8903_ANALOGUE_HP_0, 3, 0, NULL, 0), |
| 888 | SND_SOC_DAPM_PGA_S("HPR_ENA_OUTP", 3, WM8903_ANALOGUE_HP_0, 2, 0, NULL, 0), |
Dilan Lee | 1b877cb | 2011-04-07 11:08:38 -0600 | [diff] [blame] | 889 | SND_SOC_DAPM_PGA_S("HPR_ENA_DLY", 2, WM8903_ANALOGUE_HP_0, 1, 0, NULL, 0), |
| 890 | SND_SOC_DAPM_PGA_S("HPR_ENA", 1, WM8903_ANALOGUE_HP_0, 0, 0, NULL, 0), |
Mark Brown | 13a9983 | 2011-02-09 17:42:55 +0000 | [diff] [blame] | 891 | |
| 892 | SND_SOC_DAPM_PGA_S("LINEOUTL_RMV_SHORT", 4, WM8903_ANALOGUE_LINEOUT_0, 7, 0, |
| 893 | NULL, 0), |
| 894 | SND_SOC_DAPM_PGA_S("LINEOUTL_ENA_OUTP", 3, WM8903_ANALOGUE_LINEOUT_0, 6, 0, |
| 895 | NULL, 0), |
Dilan Lee | 1b877cb | 2011-04-07 11:08:38 -0600 | [diff] [blame] | 896 | SND_SOC_DAPM_PGA_S("LINEOUTL_ENA_DLY", 2, WM8903_ANALOGUE_LINEOUT_0, 5, 0, |
| 897 | NULL, 0), |
| 898 | SND_SOC_DAPM_PGA_S("LINEOUTL_ENA", 1, WM8903_ANALOGUE_LINEOUT_0, 4, 0, |
Mark Brown | 13a9983 | 2011-02-09 17:42:55 +0000 | [diff] [blame] | 899 | NULL, 0), |
| 900 | SND_SOC_DAPM_PGA_S("LINEOUTR_RMV_SHORT", 4, WM8903_ANALOGUE_LINEOUT_0, 3, 0, |
| 901 | NULL, 0), |
| 902 | SND_SOC_DAPM_PGA_S("LINEOUTR_ENA_OUTP", 3, WM8903_ANALOGUE_LINEOUT_0, 2, 0, |
| 903 | NULL, 0), |
Dilan Lee | 1b877cb | 2011-04-07 11:08:38 -0600 | [diff] [blame] | 904 | SND_SOC_DAPM_PGA_S("LINEOUTR_ENA_DLY", 2, WM8903_ANALOGUE_LINEOUT_0, 1, 0, |
| 905 | NULL, 0), |
| 906 | SND_SOC_DAPM_PGA_S("LINEOUTR_ENA", 1, WM8903_ANALOGUE_LINEOUT_0, 0, 0, |
Mark Brown | 13a9983 | 2011-02-09 17:42:55 +0000 | [diff] [blame] | 907 | NULL, 0), |
| 908 | |
Mark Brown | c5b6a9f | 2011-02-09 20:14:42 +0000 | [diff] [blame] | 909 | SND_SOC_DAPM_SUPPLY("DCS Master", WM8903_DC_SERVO_0, 4, 0, NULL, 0), |
| 910 | SND_SOC_DAPM_PGA_S("HPL_DCS", 3, SND_SOC_NOPM, 3, 0, wm8903_dcs_event, |
| 911 | SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), |
| 912 | SND_SOC_DAPM_PGA_S("HPR_DCS", 3, SND_SOC_NOPM, 2, 0, wm8903_dcs_event, |
| 913 | SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), |
| 914 | SND_SOC_DAPM_PGA_S("LINEOUTL_DCS", 3, SND_SOC_NOPM, 1, 0, wm8903_dcs_event, |
| 915 | SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), |
| 916 | SND_SOC_DAPM_PGA_S("LINEOUTR_DCS", 3, SND_SOC_NOPM, 0, 0, wm8903_dcs_event, |
| 917 | SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 918 | |
| 919 | SND_SOC_DAPM_PGA("Left Speaker PGA", WM8903_POWER_MANAGEMENT_5, 1, 0, |
| 920 | NULL, 0), |
| 921 | SND_SOC_DAPM_PGA("Right Speaker PGA", WM8903_POWER_MANAGEMENT_5, 0, 0, |
| 922 | NULL, 0), |
| 923 | |
Mark Brown | 42768a1 | 2009-04-22 18:39:39 +0100 | [diff] [blame] | 924 | SND_SOC_DAPM_SUPPLY("Charge Pump", WM8903_CHARGE_PUMP_0, 0, 0, |
| 925 | wm8903_cp_event, SND_SOC_DAPM_POST_PMU), |
Mark Brown | c2aef4f | 2009-04-22 20:04:44 +0100 | [diff] [blame] | 926 | SND_SOC_DAPM_SUPPLY("CLK_DSP", WM8903_CLOCK_RATES_2, 1, 0, NULL, 0), |
Mark Brown | 2c8be5a | 2011-02-09 17:42:56 +0000 | [diff] [blame] | 927 | SND_SOC_DAPM_SUPPLY("CLK_SYS", WM8903_CLOCK_RATES_2, 2, 0, NULL, 0), |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 928 | }; |
| 929 | |
Mark Brown | ecd0151 | 2011-03-27 13:43:45 +0100 | [diff] [blame] | 930 | static const struct snd_soc_dapm_route wm8903_intercon[] = { |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 931 | |
Mark Brown | 2c8be5a | 2011-02-09 17:42:56 +0000 | [diff] [blame] | 932 | { "CLK_DSP", NULL, "CLK_SYS" }, |
Mark Brown | 5032dc3 | 2011-11-27 12:20:08 +0000 | [diff] [blame] | 933 | { "MICBIAS", NULL, "CLK_SYS" }, |
Mark Brown | 2c8be5a | 2011-02-09 17:42:56 +0000 | [diff] [blame] | 934 | { "HPL_DCS", NULL, "CLK_SYS" }, |
| 935 | { "HPR_DCS", NULL, "CLK_SYS" }, |
| 936 | { "LINEOUTL_DCS", NULL, "CLK_SYS" }, |
| 937 | { "LINEOUTR_DCS", NULL, "CLK_SYS" }, |
| 938 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 939 | { "Left Input Mux", "IN1L", "IN1L" }, |
| 940 | { "Left Input Mux", "IN2L", "IN2L" }, |
| 941 | { "Left Input Mux", "IN3L", "IN3L" }, |
| 942 | |
| 943 | { "Left Input Inverting Mux", "IN1L", "IN1L" }, |
| 944 | { "Left Input Inverting Mux", "IN2L", "IN2L" }, |
| 945 | { "Left Input Inverting Mux", "IN3L", "IN3L" }, |
| 946 | |
| 947 | { "Right Input Mux", "IN1R", "IN1R" }, |
| 948 | { "Right Input Mux", "IN2R", "IN2R" }, |
| 949 | { "Right Input Mux", "IN3R", "IN3R" }, |
| 950 | |
| 951 | { "Right Input Inverting Mux", "IN1R", "IN1R" }, |
| 952 | { "Right Input Inverting Mux", "IN2R", "IN2R" }, |
| 953 | { "Right Input Inverting Mux", "IN3R", "IN3R" }, |
| 954 | |
| 955 | { "Left Input Mode Mux", "Single-Ended", "Left Input Inverting Mux" }, |
| 956 | { "Left Input Mode Mux", "Differential Line", |
| 957 | "Left Input Mux" }, |
| 958 | { "Left Input Mode Mux", "Differential Line", |
| 959 | "Left Input Inverting Mux" }, |
| 960 | { "Left Input Mode Mux", "Differential Mic", |
| 961 | "Left Input Mux" }, |
| 962 | { "Left Input Mode Mux", "Differential Mic", |
| 963 | "Left Input Inverting Mux" }, |
| 964 | |
| 965 | { "Right Input Mode Mux", "Single-Ended", |
| 966 | "Right Input Inverting Mux" }, |
| 967 | { "Right Input Mode Mux", "Differential Line", |
| 968 | "Right Input Mux" }, |
| 969 | { "Right Input Mode Mux", "Differential Line", |
| 970 | "Right Input Inverting Mux" }, |
| 971 | { "Right Input Mode Mux", "Differential Mic", |
| 972 | "Right Input Mux" }, |
| 973 | { "Right Input Mode Mux", "Differential Mic", |
| 974 | "Right Input Inverting Mux" }, |
| 975 | |
| 976 | { "Left Input PGA", NULL, "Left Input Mode Mux" }, |
| 977 | { "Right Input PGA", NULL, "Right Input Mode Mux" }, |
| 978 | |
Stephen Warren | 97945c4 | 2011-04-18 20:58:11 -0600 | [diff] [blame] | 979 | { "Left ADC Input", "ADC", "Left Input PGA" }, |
| 980 | { "Left ADC Input", "DMIC", "DMICDAT" }, |
| 981 | { "Right ADC Input", "ADC", "Right Input PGA" }, |
| 982 | { "Right ADC Input", "DMIC", "DMICDAT" }, |
| 983 | |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 984 | { "Left Capture Mux", "Left", "ADCL" }, |
| 985 | { "Left Capture Mux", "Right", "ADCR" }, |
| 986 | |
| 987 | { "Right Capture Mux", "Left", "ADCL" }, |
| 988 | { "Right Capture Mux", "Right", "ADCR" }, |
| 989 | |
| 990 | { "AIFTXL", NULL, "Left Capture Mux" }, |
| 991 | { "AIFTXR", NULL, "Right Capture Mux" }, |
| 992 | |
Stephen Warren | 97945c4 | 2011-04-18 20:58:11 -0600 | [diff] [blame] | 993 | { "ADCL", NULL, "Left ADC Input" }, |
Mark Brown | c2aef4f | 2009-04-22 20:04:44 +0100 | [diff] [blame] | 994 | { "ADCL", NULL, "CLK_DSP" }, |
Stephen Warren | 97945c4 | 2011-04-18 20:58:11 -0600 | [diff] [blame] | 995 | { "ADCR", NULL, "Right ADC Input" }, |
Mark Brown | c2aef4f | 2009-04-22 20:04:44 +0100 | [diff] [blame] | 996 | { "ADCR", NULL, "CLK_DSP" }, |
| 997 | |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 998 | { "Left Playback Mux", "Left", "AIFRXL" }, |
| 999 | { "Left Playback Mux", "Right", "AIFRXR" }, |
| 1000 | |
| 1001 | { "Right Playback Mux", "Left", "AIFRXL" }, |
| 1002 | { "Right Playback Mux", "Right", "AIFRXR" }, |
| 1003 | |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 1004 | { "DACL Sidetone", "Left", "ADCL" }, |
| 1005 | { "DACL Sidetone", "Right", "ADCR" }, |
| 1006 | { "DACR Sidetone", "Left", "ADCL" }, |
| 1007 | { "DACR Sidetone", "Right", "ADCR" }, |
| 1008 | |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 1009 | { "DACL", NULL, "Left Playback Mux" }, |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 1010 | { "DACL", NULL, "DACL Sidetone" }, |
Mark Brown | c2aef4f | 2009-04-22 20:04:44 +0100 | [diff] [blame] | 1011 | { "DACL", NULL, "CLK_DSP" }, |
Mark Brown | 1e113bf | 2011-02-09 13:47:08 +0000 | [diff] [blame] | 1012 | |
| 1013 | { "DACR", NULL, "Right Playback Mux" }, |
Mark Brown | 291ce18 | 2009-04-22 21:36:14 +0100 | [diff] [blame] | 1014 | { "DACR", NULL, "DACR Sidetone" }, |
Mark Brown | c2aef4f | 2009-04-22 20:04:44 +0100 | [diff] [blame] | 1015 | { "DACR", NULL, "CLK_DSP" }, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1016 | |
| 1017 | { "Left Output Mixer", "Left Bypass Switch", "Left Input PGA" }, |
| 1018 | { "Left Output Mixer", "Right Bypass Switch", "Right Input PGA" }, |
| 1019 | { "Left Output Mixer", "DACL Switch", "DACL" }, |
| 1020 | { "Left Output Mixer", "DACR Switch", "DACR" }, |
| 1021 | |
| 1022 | { "Right Output Mixer", "Left Bypass Switch", "Left Input PGA" }, |
| 1023 | { "Right Output Mixer", "Right Bypass Switch", "Right Input PGA" }, |
| 1024 | { "Right Output Mixer", "DACL Switch", "DACL" }, |
| 1025 | { "Right Output Mixer", "DACR Switch", "DACR" }, |
| 1026 | |
| 1027 | { "Left Speaker Mixer", "Left Bypass Switch", "Left Input PGA" }, |
| 1028 | { "Left Speaker Mixer", "Right Bypass Switch", "Right Input PGA" }, |
| 1029 | { "Left Speaker Mixer", "DACL Switch", "DACL" }, |
| 1030 | { "Left Speaker Mixer", "DACR Switch", "DACR" }, |
| 1031 | |
| 1032 | { "Right Speaker Mixer", "Left Bypass Switch", "Left Input PGA" }, |
| 1033 | { "Right Speaker Mixer", "Right Bypass Switch", "Right Input PGA" }, |
| 1034 | { "Right Speaker Mixer", "DACL Switch", "DACL" }, |
| 1035 | { "Right Speaker Mixer", "DACR Switch", "DACR" }, |
| 1036 | |
| 1037 | { "Left Line Output PGA", NULL, "Left Output Mixer" }, |
| 1038 | { "Right Line Output PGA", NULL, "Right Output Mixer" }, |
| 1039 | |
| 1040 | { "Left Headphone Output PGA", NULL, "Left Output Mixer" }, |
| 1041 | { "Right Headphone Output PGA", NULL, "Right Output Mixer" }, |
| 1042 | |
| 1043 | { "Left Speaker PGA", NULL, "Left Speaker Mixer" }, |
| 1044 | { "Right Speaker PGA", NULL, "Right Speaker Mixer" }, |
| 1045 | |
Dilan Lee | 1b877cb | 2011-04-07 11:08:38 -0600 | [diff] [blame] | 1046 | { "HPL_ENA", NULL, "Left Headphone Output PGA" }, |
| 1047 | { "HPR_ENA", NULL, "Right Headphone Output PGA" }, |
| 1048 | { "HPL_ENA_DLY", NULL, "HPL_ENA" }, |
| 1049 | { "HPR_ENA_DLY", NULL, "HPR_ENA" }, |
| 1050 | { "LINEOUTL_ENA", NULL, "Left Line Output PGA" }, |
| 1051 | { "LINEOUTR_ENA", NULL, "Right Line Output PGA" }, |
| 1052 | { "LINEOUTL_ENA_DLY", NULL, "LINEOUTL_ENA" }, |
| 1053 | { "LINEOUTR_ENA_DLY", NULL, "LINEOUTR_ENA" }, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1054 | |
Mark Brown | c5b6a9f | 2011-02-09 20:14:42 +0000 | [diff] [blame] | 1055 | { "HPL_DCS", NULL, "DCS Master" }, |
| 1056 | { "HPR_DCS", NULL, "DCS Master" }, |
| 1057 | { "LINEOUTL_DCS", NULL, "DCS Master" }, |
| 1058 | { "LINEOUTR_DCS", NULL, "DCS Master" }, |
| 1059 | |
Mark Brown | 13a9983 | 2011-02-09 17:42:55 +0000 | [diff] [blame] | 1060 | { "HPL_DCS", NULL, "HPL_ENA_DLY" }, |
| 1061 | { "HPR_DCS", NULL, "HPR_ENA_DLY" }, |
| 1062 | { "LINEOUTL_DCS", NULL, "LINEOUTL_ENA_DLY" }, |
| 1063 | { "LINEOUTR_DCS", NULL, "LINEOUTR_ENA_DLY" }, |
| 1064 | |
| 1065 | { "HPL_ENA_OUTP", NULL, "HPL_DCS" }, |
| 1066 | { "HPR_ENA_OUTP", NULL, "HPR_DCS" }, |
| 1067 | { "LINEOUTL_ENA_OUTP", NULL, "LINEOUTL_DCS" }, |
| 1068 | { "LINEOUTR_ENA_OUTP", NULL, "LINEOUTR_DCS" }, |
| 1069 | |
| 1070 | { "HPL_RMV_SHORT", NULL, "HPL_ENA_OUTP" }, |
| 1071 | { "HPR_RMV_SHORT", NULL, "HPR_ENA_OUTP" }, |
| 1072 | { "LINEOUTL_RMV_SHORT", NULL, "LINEOUTL_ENA_OUTP" }, |
| 1073 | { "LINEOUTR_RMV_SHORT", NULL, "LINEOUTR_ENA_OUTP" }, |
| 1074 | |
| 1075 | { "HPOUTL", NULL, "HPL_RMV_SHORT" }, |
| 1076 | { "HPOUTR", NULL, "HPR_RMV_SHORT" }, |
| 1077 | { "LINEOUTL", NULL, "LINEOUTL_RMV_SHORT" }, |
| 1078 | { "LINEOUTR", NULL, "LINEOUTR_RMV_SHORT" }, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1079 | |
| 1080 | { "LOP", NULL, "Left Speaker PGA" }, |
| 1081 | { "LON", NULL, "Left Speaker PGA" }, |
| 1082 | |
| 1083 | { "ROP", NULL, "Right Speaker PGA" }, |
| 1084 | { "RON", NULL, "Right Speaker PGA" }, |
Mark Brown | 42768a1 | 2009-04-22 18:39:39 +0100 | [diff] [blame] | 1085 | |
Alban Bedel | f1ca493 | 2013-04-09 17:13:59 +0200 | [diff] [blame] | 1086 | { "Charge Pump", NULL, "CLK_DSP" }, |
| 1087 | |
Mark Brown | 42768a1 | 2009-04-22 18:39:39 +0100 | [diff] [blame] | 1088 | { "Left Headphone Output PGA", NULL, "Charge Pump" }, |
| 1089 | { "Right Headphone Output PGA", NULL, "Charge Pump" }, |
| 1090 | { "Left Line Output PGA", NULL, "Charge Pump" }, |
| 1091 | { "Right Line Output PGA", NULL, "Charge Pump" }, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1092 | }; |
| 1093 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1094 | static int wm8903_set_bias_level(struct snd_soc_codec *codec, |
| 1095 | enum snd_soc_bias_level level) |
| 1096 | { |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1097 | switch (level) { |
| 1098 | case SND_SOC_BIAS_ON: |
Mark Brown | 66daaa59 | 2011-02-10 13:32:58 +0000 | [diff] [blame] | 1099 | break; |
Mark Brown | 22f226d | 2011-02-10 14:01:38 +0000 | [diff] [blame] | 1100 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1101 | case SND_SOC_BIAS_PREPARE: |
Mark Brown | 66daaa59 | 2011-02-10 13:32:58 +0000 | [diff] [blame] | 1102 | snd_soc_update_bits(codec, WM8903_VMID_CONTROL_0, |
| 1103 | WM8903_VMID_RES_MASK, |
| 1104 | WM8903_VMID_RES_50K); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1105 | break; |
| 1106 | |
| 1107 | case SND_SOC_BIAS_STANDBY: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1108 | if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) { |
Mark Brown | 22f226d | 2011-02-10 14:01:38 +0000 | [diff] [blame] | 1109 | snd_soc_update_bits(codec, WM8903_BIAS_CONTROL_0, |
| 1110 | WM8903_POBCTRL | WM8903_ISEL_MASK | |
| 1111 | WM8903_STARTUP_BIAS_ENA | |
| 1112 | WM8903_BIAS_ENA, |
| 1113 | WM8903_POBCTRL | |
| 1114 | (2 << WM8903_ISEL_SHIFT) | |
| 1115 | WM8903_STARTUP_BIAS_ENA); |
Mark Brown | 3b1228a | 2008-12-10 19:27:10 +0000 | [diff] [blame] | 1116 | |
Mark Brown | 22f226d | 2011-02-10 14:01:38 +0000 | [diff] [blame] | 1117 | snd_soc_update_bits(codec, |
| 1118 | WM8903_ANALOGUE_SPK_OUTPUT_CONTROL_0, |
| 1119 | WM8903_SPK_DISCHARGE, |
| 1120 | WM8903_SPK_DISCHARGE); |
Mark Brown | 4dbfe80 | 2009-04-22 20:32:40 +0100 | [diff] [blame] | 1121 | |
Mark Brown | 22f226d | 2011-02-10 14:01:38 +0000 | [diff] [blame] | 1122 | msleep(33); |
| 1123 | |
| 1124 | snd_soc_update_bits(codec, WM8903_POWER_MANAGEMENT_5, |
| 1125 | WM8903_SPKL_ENA | WM8903_SPKR_ENA, |
| 1126 | WM8903_SPKL_ENA | WM8903_SPKR_ENA); |
| 1127 | |
| 1128 | snd_soc_update_bits(codec, |
| 1129 | WM8903_ANALOGUE_SPK_OUTPUT_CONTROL_0, |
| 1130 | WM8903_SPK_DISCHARGE, 0); |
| 1131 | |
| 1132 | snd_soc_update_bits(codec, WM8903_VMID_CONTROL_0, |
| 1133 | WM8903_VMID_TIE_ENA | |
| 1134 | WM8903_BUFIO_ENA | |
| 1135 | WM8903_VMID_IO_ENA | |
| 1136 | WM8903_VMID_SOFT_MASK | |
| 1137 | WM8903_VMID_RES_MASK | |
| 1138 | WM8903_VMID_BUF_ENA, |
| 1139 | WM8903_VMID_TIE_ENA | |
| 1140 | WM8903_BUFIO_ENA | |
| 1141 | WM8903_VMID_IO_ENA | |
| 1142 | (2 << WM8903_VMID_SOFT_SHIFT) | |
| 1143 | WM8903_VMID_RES_250K | |
| 1144 | WM8903_VMID_BUF_ENA); |
| 1145 | |
| 1146 | msleep(129); |
| 1147 | |
| 1148 | snd_soc_update_bits(codec, WM8903_POWER_MANAGEMENT_5, |
| 1149 | WM8903_SPKL_ENA | WM8903_SPKR_ENA, |
| 1150 | 0); |
| 1151 | |
| 1152 | snd_soc_update_bits(codec, WM8903_VMID_CONTROL_0, |
| 1153 | WM8903_VMID_SOFT_MASK, 0); |
| 1154 | |
| 1155 | snd_soc_update_bits(codec, WM8903_VMID_CONTROL_0, |
| 1156 | WM8903_VMID_RES_MASK, |
| 1157 | WM8903_VMID_RES_50K); |
| 1158 | |
| 1159 | snd_soc_update_bits(codec, WM8903_BIAS_CONTROL_0, |
| 1160 | WM8903_BIAS_ENA | WM8903_POBCTRL, |
| 1161 | WM8903_BIAS_ENA); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1162 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1163 | /* By default no bypass paths are enabled so |
| 1164 | * enable Class W support. |
| 1165 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1166 | dev_dbg(codec->dev, "Enabling Class W\n"); |
Mark Brown | 524d769 | 2010-12-23 11:17:24 +0000 | [diff] [blame] | 1167 | snd_soc_update_bits(codec, WM8903_CLASS_W_0, |
| 1168 | WM8903_CP_DYN_FREQ | |
| 1169 | WM8903_CP_DYN_V, |
| 1170 | WM8903_CP_DYN_FREQ | |
| 1171 | WM8903_CP_DYN_V); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1172 | } |
| 1173 | |
Mark Brown | 66daaa59 | 2011-02-10 13:32:58 +0000 | [diff] [blame] | 1174 | snd_soc_update_bits(codec, WM8903_VMID_CONTROL_0, |
| 1175 | WM8903_VMID_RES_MASK, |
| 1176 | WM8903_VMID_RES_250K); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1177 | break; |
| 1178 | |
| 1179 | case SND_SOC_BIAS_OFF: |
Mark Brown | b4d06f4 | 2011-02-10 14:20:49 +0000 | [diff] [blame] | 1180 | snd_soc_update_bits(codec, WM8903_BIAS_CONTROL_0, |
| 1181 | WM8903_BIAS_ENA, 0); |
| 1182 | |
| 1183 | snd_soc_update_bits(codec, WM8903_VMID_CONTROL_0, |
| 1184 | WM8903_VMID_SOFT_MASK, |
| 1185 | 2 << WM8903_VMID_SOFT_SHIFT); |
| 1186 | |
| 1187 | snd_soc_update_bits(codec, WM8903_VMID_CONTROL_0, |
| 1188 | WM8903_VMID_BUF_ENA, 0); |
| 1189 | |
| 1190 | msleep(290); |
| 1191 | |
| 1192 | snd_soc_update_bits(codec, WM8903_VMID_CONTROL_0, |
| 1193 | WM8903_VMID_TIE_ENA | WM8903_BUFIO_ENA | |
| 1194 | WM8903_VMID_IO_ENA | WM8903_VMID_RES_MASK | |
| 1195 | WM8903_VMID_SOFT_MASK | |
| 1196 | WM8903_VMID_BUF_ENA, 0); |
| 1197 | |
| 1198 | snd_soc_update_bits(codec, WM8903_BIAS_CONTROL_0, |
| 1199 | WM8903_STARTUP_BIAS_ENA, 0); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1200 | break; |
| 1201 | } |
| 1202 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1203 | codec->dapm.bias_level = level; |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1204 | |
| 1205 | return 0; |
| 1206 | } |
| 1207 | |
| 1208 | static int wm8903_set_dai_sysclk(struct snd_soc_dai *codec_dai, |
| 1209 | int clk_id, unsigned int freq, int dir) |
| 1210 | { |
| 1211 | struct snd_soc_codec *codec = codec_dai->codec; |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 1212 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1213 | |
| 1214 | wm8903->sysclk = freq; |
| 1215 | |
| 1216 | return 0; |
| 1217 | } |
| 1218 | |
| 1219 | static int wm8903_set_dai_fmt(struct snd_soc_dai *codec_dai, |
| 1220 | unsigned int fmt) |
| 1221 | { |
| 1222 | struct snd_soc_codec *codec = codec_dai->codec; |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 1223 | u16 aif1 = snd_soc_read(codec, WM8903_AUDIO_INTERFACE_1); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1224 | |
| 1225 | aif1 &= ~(WM8903_LRCLK_DIR | WM8903_BCLK_DIR | WM8903_AIF_FMT_MASK | |
| 1226 | WM8903_AIF_LRCLK_INV | WM8903_AIF_BCLK_INV); |
| 1227 | |
| 1228 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 1229 | case SND_SOC_DAIFMT_CBS_CFS: |
| 1230 | break; |
| 1231 | case SND_SOC_DAIFMT_CBS_CFM: |
| 1232 | aif1 |= WM8903_LRCLK_DIR; |
| 1233 | break; |
| 1234 | case SND_SOC_DAIFMT_CBM_CFM: |
| 1235 | aif1 |= WM8903_LRCLK_DIR | WM8903_BCLK_DIR; |
| 1236 | break; |
| 1237 | case SND_SOC_DAIFMT_CBM_CFS: |
| 1238 | aif1 |= WM8903_BCLK_DIR; |
| 1239 | break; |
| 1240 | default: |
| 1241 | return -EINVAL; |
| 1242 | } |
| 1243 | |
| 1244 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 1245 | case SND_SOC_DAIFMT_DSP_A: |
| 1246 | aif1 |= 0x3; |
| 1247 | break; |
| 1248 | case SND_SOC_DAIFMT_DSP_B: |
| 1249 | aif1 |= 0x3 | WM8903_AIF_LRCLK_INV; |
| 1250 | break; |
| 1251 | case SND_SOC_DAIFMT_I2S: |
| 1252 | aif1 |= 0x2; |
| 1253 | break; |
| 1254 | case SND_SOC_DAIFMT_RIGHT_J: |
| 1255 | aif1 |= 0x1; |
| 1256 | break; |
| 1257 | case SND_SOC_DAIFMT_LEFT_J: |
| 1258 | break; |
| 1259 | default: |
| 1260 | return -EINVAL; |
| 1261 | } |
| 1262 | |
| 1263 | /* Clock inversion */ |
| 1264 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 1265 | case SND_SOC_DAIFMT_DSP_A: |
| 1266 | case SND_SOC_DAIFMT_DSP_B: |
| 1267 | /* frame inversion not valid for DSP modes */ |
| 1268 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 1269 | case SND_SOC_DAIFMT_NB_NF: |
| 1270 | break; |
| 1271 | case SND_SOC_DAIFMT_IB_NF: |
| 1272 | aif1 |= WM8903_AIF_BCLK_INV; |
| 1273 | break; |
| 1274 | default: |
| 1275 | return -EINVAL; |
| 1276 | } |
| 1277 | break; |
| 1278 | case SND_SOC_DAIFMT_I2S: |
| 1279 | case SND_SOC_DAIFMT_RIGHT_J: |
| 1280 | case SND_SOC_DAIFMT_LEFT_J: |
| 1281 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 1282 | case SND_SOC_DAIFMT_NB_NF: |
| 1283 | break; |
| 1284 | case SND_SOC_DAIFMT_IB_IF: |
| 1285 | aif1 |= WM8903_AIF_BCLK_INV | WM8903_AIF_LRCLK_INV; |
| 1286 | break; |
| 1287 | case SND_SOC_DAIFMT_IB_NF: |
| 1288 | aif1 |= WM8903_AIF_BCLK_INV; |
| 1289 | break; |
| 1290 | case SND_SOC_DAIFMT_NB_IF: |
| 1291 | aif1 |= WM8903_AIF_LRCLK_INV; |
| 1292 | break; |
| 1293 | default: |
| 1294 | return -EINVAL; |
| 1295 | } |
| 1296 | break; |
| 1297 | default: |
| 1298 | return -EINVAL; |
| 1299 | } |
| 1300 | |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 1301 | snd_soc_write(codec, WM8903_AUDIO_INTERFACE_1, aif1); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1302 | |
| 1303 | return 0; |
| 1304 | } |
| 1305 | |
| 1306 | static int wm8903_digital_mute(struct snd_soc_dai *codec_dai, int mute) |
| 1307 | { |
| 1308 | struct snd_soc_codec *codec = codec_dai->codec; |
| 1309 | u16 reg; |
| 1310 | |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 1311 | reg = snd_soc_read(codec, WM8903_DAC_DIGITAL_1); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1312 | |
| 1313 | if (mute) |
| 1314 | reg |= WM8903_DAC_MUTE; |
| 1315 | else |
| 1316 | reg &= ~WM8903_DAC_MUTE; |
| 1317 | |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 1318 | snd_soc_write(codec, WM8903_DAC_DIGITAL_1, reg); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1319 | |
| 1320 | return 0; |
| 1321 | } |
| 1322 | |
| 1323 | /* Lookup table for CLK_SYS/fs ratio. 256fs or more is recommended |
| 1324 | * for optimal performance so we list the lower rates first and match |
| 1325 | * on the last match we find. */ |
| 1326 | static struct { |
| 1327 | int div; |
| 1328 | int rate; |
| 1329 | int mode; |
| 1330 | int mclk_div; |
| 1331 | } clk_sys_ratios[] = { |
| 1332 | { 64, 0x0, 0x0, 1 }, |
| 1333 | { 68, 0x0, 0x1, 1 }, |
| 1334 | { 125, 0x0, 0x2, 1 }, |
| 1335 | { 128, 0x1, 0x0, 1 }, |
| 1336 | { 136, 0x1, 0x1, 1 }, |
| 1337 | { 192, 0x2, 0x0, 1 }, |
| 1338 | { 204, 0x2, 0x1, 1 }, |
| 1339 | |
| 1340 | { 64, 0x0, 0x0, 2 }, |
| 1341 | { 68, 0x0, 0x1, 2 }, |
| 1342 | { 125, 0x0, 0x2, 2 }, |
| 1343 | { 128, 0x1, 0x0, 2 }, |
| 1344 | { 136, 0x1, 0x1, 2 }, |
| 1345 | { 192, 0x2, 0x0, 2 }, |
| 1346 | { 204, 0x2, 0x1, 2 }, |
| 1347 | |
| 1348 | { 250, 0x2, 0x2, 1 }, |
| 1349 | { 256, 0x3, 0x0, 1 }, |
| 1350 | { 272, 0x3, 0x1, 1 }, |
| 1351 | { 384, 0x4, 0x0, 1 }, |
| 1352 | { 408, 0x4, 0x1, 1 }, |
| 1353 | { 375, 0x4, 0x2, 1 }, |
| 1354 | { 512, 0x5, 0x0, 1 }, |
| 1355 | { 544, 0x5, 0x1, 1 }, |
| 1356 | { 500, 0x5, 0x2, 1 }, |
| 1357 | { 768, 0x6, 0x0, 1 }, |
| 1358 | { 816, 0x6, 0x1, 1 }, |
| 1359 | { 750, 0x6, 0x2, 1 }, |
| 1360 | { 1024, 0x7, 0x0, 1 }, |
| 1361 | { 1088, 0x7, 0x1, 1 }, |
| 1362 | { 1000, 0x7, 0x2, 1 }, |
| 1363 | { 1408, 0x8, 0x0, 1 }, |
| 1364 | { 1496, 0x8, 0x1, 1 }, |
| 1365 | { 1536, 0x9, 0x0, 1 }, |
| 1366 | { 1632, 0x9, 0x1, 1 }, |
| 1367 | { 1500, 0x9, 0x2, 1 }, |
| 1368 | |
| 1369 | { 250, 0x2, 0x2, 2 }, |
| 1370 | { 256, 0x3, 0x0, 2 }, |
| 1371 | { 272, 0x3, 0x1, 2 }, |
| 1372 | { 384, 0x4, 0x0, 2 }, |
| 1373 | { 408, 0x4, 0x1, 2 }, |
| 1374 | { 375, 0x4, 0x2, 2 }, |
| 1375 | { 512, 0x5, 0x0, 2 }, |
| 1376 | { 544, 0x5, 0x1, 2 }, |
| 1377 | { 500, 0x5, 0x2, 2 }, |
| 1378 | { 768, 0x6, 0x0, 2 }, |
| 1379 | { 816, 0x6, 0x1, 2 }, |
| 1380 | { 750, 0x6, 0x2, 2 }, |
| 1381 | { 1024, 0x7, 0x0, 2 }, |
| 1382 | { 1088, 0x7, 0x1, 2 }, |
| 1383 | { 1000, 0x7, 0x2, 2 }, |
| 1384 | { 1408, 0x8, 0x0, 2 }, |
| 1385 | { 1496, 0x8, 0x1, 2 }, |
| 1386 | { 1536, 0x9, 0x0, 2 }, |
| 1387 | { 1632, 0x9, 0x1, 2 }, |
| 1388 | { 1500, 0x9, 0x2, 2 }, |
| 1389 | }; |
| 1390 | |
| 1391 | /* CLK_SYS/BCLK ratios - multiplied by 10 due to .5s */ |
| 1392 | static struct { |
| 1393 | int ratio; |
| 1394 | int div; |
| 1395 | } bclk_divs[] = { |
| 1396 | { 10, 0 }, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1397 | { 20, 2 }, |
| 1398 | { 30, 3 }, |
| 1399 | { 40, 4 }, |
| 1400 | { 50, 5 }, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1401 | { 60, 7 }, |
| 1402 | { 80, 8 }, |
| 1403 | { 100, 9 }, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1404 | { 120, 11 }, |
| 1405 | { 160, 12 }, |
| 1406 | { 200, 13 }, |
| 1407 | { 220, 14 }, |
| 1408 | { 240, 15 }, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1409 | { 300, 17 }, |
| 1410 | { 320, 18 }, |
| 1411 | { 440, 19 }, |
| 1412 | { 480, 20 }, |
| 1413 | }; |
| 1414 | |
| 1415 | /* Sample rates for DSP */ |
| 1416 | static struct { |
| 1417 | int rate; |
| 1418 | int value; |
| 1419 | } sample_rates[] = { |
| 1420 | { 8000, 0 }, |
| 1421 | { 11025, 1 }, |
| 1422 | { 12000, 2 }, |
| 1423 | { 16000, 3 }, |
| 1424 | { 22050, 4 }, |
| 1425 | { 24000, 5 }, |
| 1426 | { 32000, 6 }, |
| 1427 | { 44100, 7 }, |
| 1428 | { 48000, 8 }, |
| 1429 | { 88200, 9 }, |
| 1430 | { 96000, 10 }, |
| 1431 | { 0, 0 }, |
| 1432 | }; |
| 1433 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1434 | static int wm8903_hw_params(struct snd_pcm_substream *substream, |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 1435 | struct snd_pcm_hw_params *params, |
| 1436 | struct snd_soc_dai *dai) |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1437 | { |
Mark Brown | e6968a1 | 2012-04-04 15:58:16 +0100 | [diff] [blame] | 1438 | struct snd_soc_codec *codec = dai->codec; |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 1439 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1440 | int fs = params_rate(params); |
| 1441 | int bclk; |
| 1442 | int bclk_div; |
| 1443 | int i; |
| 1444 | int dsp_config; |
| 1445 | int clk_config; |
| 1446 | int best_val; |
| 1447 | int cur_val; |
| 1448 | int clk_sys; |
| 1449 | |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 1450 | u16 aif1 = snd_soc_read(codec, WM8903_AUDIO_INTERFACE_1); |
| 1451 | u16 aif2 = snd_soc_read(codec, WM8903_AUDIO_INTERFACE_2); |
| 1452 | u16 aif3 = snd_soc_read(codec, WM8903_AUDIO_INTERFACE_3); |
| 1453 | u16 clock0 = snd_soc_read(codec, WM8903_CLOCK_RATES_0); |
| 1454 | u16 clock1 = snd_soc_read(codec, WM8903_CLOCK_RATES_1); |
| 1455 | u16 dac_digital1 = snd_soc_read(codec, WM8903_DAC_DIGITAL_1); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1456 | |
Mark Brown | 9e79261 | 2009-06-12 17:27:07 +0100 | [diff] [blame] | 1457 | /* Enable sloping stopband filter for low sample rates */ |
| 1458 | if (fs <= 24000) |
| 1459 | dac_digital1 |= WM8903_DAC_SB_FILT; |
| 1460 | else |
| 1461 | dac_digital1 &= ~WM8903_DAC_SB_FILT; |
| 1462 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1463 | /* Configure sample rate logic for DSP - choose nearest rate */ |
| 1464 | dsp_config = 0; |
| 1465 | best_val = abs(sample_rates[dsp_config].rate - fs); |
| 1466 | for (i = 1; i < ARRAY_SIZE(sample_rates); i++) { |
| 1467 | cur_val = abs(sample_rates[i].rate - fs); |
| 1468 | if (cur_val <= best_val) { |
| 1469 | dsp_config = i; |
| 1470 | best_val = cur_val; |
| 1471 | } |
| 1472 | } |
| 1473 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1474 | dev_dbg(codec->dev, "DSP fs = %dHz\n", sample_rates[dsp_config].rate); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1475 | clock1 &= ~WM8903_SAMPLE_RATE_MASK; |
| 1476 | clock1 |= sample_rates[dsp_config].value; |
| 1477 | |
| 1478 | aif1 &= ~WM8903_AIF_WL_MASK; |
| 1479 | bclk = 2 * fs; |
Mark Brown | 6139ea2 | 2014-07-31 12:52:53 +0100 | [diff] [blame] | 1480 | switch (params_width(params)) { |
| 1481 | case 16: |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1482 | bclk *= 16; |
| 1483 | break; |
Mark Brown | 6139ea2 | 2014-07-31 12:52:53 +0100 | [diff] [blame] | 1484 | case 20: |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1485 | bclk *= 20; |
| 1486 | aif1 |= 0x4; |
| 1487 | break; |
Mark Brown | 6139ea2 | 2014-07-31 12:52:53 +0100 | [diff] [blame] | 1488 | case 24: |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1489 | bclk *= 24; |
| 1490 | aif1 |= 0x8; |
| 1491 | break; |
Mark Brown | 6139ea2 | 2014-07-31 12:52:53 +0100 | [diff] [blame] | 1492 | case 32: |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1493 | bclk *= 32; |
| 1494 | aif1 |= 0xc; |
| 1495 | break; |
| 1496 | default: |
| 1497 | return -EINVAL; |
| 1498 | } |
| 1499 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1500 | dev_dbg(codec->dev, "MCLK = %dHz, target sample rate = %dHz\n", |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1501 | wm8903->sysclk, fs); |
| 1502 | |
| 1503 | /* We may not have an MCLK which allows us to generate exactly |
| 1504 | * the clock we want, particularly with USB derived inputs, so |
| 1505 | * approximate. |
| 1506 | */ |
| 1507 | clk_config = 0; |
| 1508 | best_val = abs((wm8903->sysclk / |
| 1509 | (clk_sys_ratios[0].mclk_div * |
| 1510 | clk_sys_ratios[0].div)) - fs); |
| 1511 | for (i = 1; i < ARRAY_SIZE(clk_sys_ratios); i++) { |
| 1512 | cur_val = abs((wm8903->sysclk / |
| 1513 | (clk_sys_ratios[i].mclk_div * |
| 1514 | clk_sys_ratios[i].div)) - fs); |
| 1515 | |
| 1516 | if (cur_val <= best_val) { |
| 1517 | clk_config = i; |
| 1518 | best_val = cur_val; |
| 1519 | } |
| 1520 | } |
| 1521 | |
| 1522 | if (clk_sys_ratios[clk_config].mclk_div == 2) { |
| 1523 | clock0 |= WM8903_MCLKDIV2; |
| 1524 | clk_sys = wm8903->sysclk / 2; |
| 1525 | } else { |
| 1526 | clock0 &= ~WM8903_MCLKDIV2; |
| 1527 | clk_sys = wm8903->sysclk; |
| 1528 | } |
| 1529 | |
| 1530 | clock1 &= ~(WM8903_CLK_SYS_RATE_MASK | |
| 1531 | WM8903_CLK_SYS_MODE_MASK); |
| 1532 | clock1 |= clk_sys_ratios[clk_config].rate << WM8903_CLK_SYS_RATE_SHIFT; |
| 1533 | clock1 |= clk_sys_ratios[clk_config].mode << WM8903_CLK_SYS_MODE_SHIFT; |
| 1534 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1535 | dev_dbg(codec->dev, "CLK_SYS_RATE=%x, CLK_SYS_MODE=%x div=%d\n", |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1536 | clk_sys_ratios[clk_config].rate, |
| 1537 | clk_sys_ratios[clk_config].mode, |
| 1538 | clk_sys_ratios[clk_config].div); |
| 1539 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1540 | dev_dbg(codec->dev, "Actual CLK_SYS = %dHz\n", clk_sys); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1541 | |
| 1542 | /* We may not get quite the right frequency if using |
| 1543 | * approximate clocks so look for the closest match that is |
| 1544 | * higher than the target (we need to ensure that there enough |
| 1545 | * BCLKs to clock out the samples). |
| 1546 | */ |
| 1547 | bclk_div = 0; |
| 1548 | best_val = ((clk_sys * 10) / bclk_divs[0].ratio) - bclk; |
| 1549 | i = 1; |
| 1550 | while (i < ARRAY_SIZE(bclk_divs)) { |
| 1551 | cur_val = ((clk_sys * 10) / bclk_divs[i].ratio) - bclk; |
| 1552 | if (cur_val < 0) /* BCLK table is sorted */ |
| 1553 | break; |
| 1554 | bclk_div = i; |
| 1555 | best_val = cur_val; |
| 1556 | i++; |
| 1557 | } |
| 1558 | |
| 1559 | aif2 &= ~WM8903_BCLK_DIV_MASK; |
| 1560 | aif3 &= ~WM8903_LRCLK_RATE_MASK; |
| 1561 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1562 | dev_dbg(codec->dev, "BCLK ratio %d for %dHz - actual BCLK = %dHz\n", |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1563 | bclk_divs[bclk_div].ratio / 10, bclk, |
| 1564 | (clk_sys * 10) / bclk_divs[bclk_div].ratio); |
| 1565 | |
| 1566 | aif2 |= bclk_divs[bclk_div].div; |
| 1567 | aif3 |= bclk / fs; |
| 1568 | |
Mark Brown | 69fff9b | 2010-12-10 19:17:08 +0000 | [diff] [blame] | 1569 | wm8903->fs = params_rate(params); |
| 1570 | wm8903_set_deemph(codec); |
| 1571 | |
Mark Brown | 8d50e44 | 2009-07-10 23:12:01 +0100 | [diff] [blame] | 1572 | snd_soc_write(codec, WM8903_CLOCK_RATES_0, clock0); |
| 1573 | snd_soc_write(codec, WM8903_CLOCK_RATES_1, clock1); |
| 1574 | snd_soc_write(codec, WM8903_AUDIO_INTERFACE_1, aif1); |
| 1575 | snd_soc_write(codec, WM8903_AUDIO_INTERFACE_2, aif2); |
| 1576 | snd_soc_write(codec, WM8903_AUDIO_INTERFACE_3, aif3); |
| 1577 | snd_soc_write(codec, WM8903_DAC_DIGITAL_1, dac_digital1); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1578 | |
| 1579 | return 0; |
| 1580 | } |
| 1581 | |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1582 | /** |
| 1583 | * wm8903_mic_detect - Enable microphone detection via the WM8903 IRQ |
| 1584 | * |
| 1585 | * @codec: WM8903 codec |
| 1586 | * @jack: jack to report detection events on |
| 1587 | * @det: value to report for presence detection |
| 1588 | * @shrt: value to report for short detection |
| 1589 | * |
| 1590 | * Enable microphone detection via IRQ on the WM8903. If GPIOs are |
| 1591 | * being used to bring out signals to the processor then only platform |
| 1592 | * data configuration is needed for WM8903 and processor GPIOs should |
| 1593 | * be configured using snd_soc_jack_add_gpios() instead. |
| 1594 | * |
| 1595 | * The current threasholds for detection should be configured using |
| 1596 | * micdet_cfg in the platform data. Using this function will force on |
| 1597 | * the microphone bias for the device. |
| 1598 | */ |
| 1599 | int wm8903_mic_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack, |
| 1600 | int det, int shrt) |
| 1601 | { |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 1602 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
Mark Brown | 6926686 | 2010-03-22 16:37:01 +0000 | [diff] [blame] | 1603 | int irq_mask = WM8903_MICDET_EINT | WM8903_MICSHRT_EINT; |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1604 | |
| 1605 | dev_dbg(codec->dev, "Enabling microphone detection: %x %x\n", |
| 1606 | det, shrt); |
| 1607 | |
| 1608 | /* Store the configuration */ |
| 1609 | wm8903->mic_jack = jack; |
| 1610 | wm8903->mic_det = det; |
| 1611 | wm8903->mic_short = shrt; |
| 1612 | |
| 1613 | /* Enable interrupts we've got a report configured for */ |
| 1614 | if (det) |
| 1615 | irq_mask &= ~WM8903_MICDET_EINT; |
| 1616 | if (shrt) |
| 1617 | irq_mask &= ~WM8903_MICSHRT_EINT; |
| 1618 | |
| 1619 | snd_soc_update_bits(codec, WM8903_INTERRUPT_STATUS_1_MASK, |
| 1620 | WM8903_MICDET_EINT | WM8903_MICSHRT_EINT, |
| 1621 | irq_mask); |
| 1622 | |
Stephen Warren | 3088e3b | 2011-02-10 15:37:14 -0700 | [diff] [blame] | 1623 | if (det || shrt) { |
Mark Brown | 6926686 | 2010-03-22 16:37:01 +0000 | [diff] [blame] | 1624 | /* Enable mic detection, this may not have been set through |
| 1625 | * platform data (eg, if the defaults are OK). */ |
| 1626 | snd_soc_update_bits(codec, WM8903_WRITE_SEQUENCER_0, |
| 1627 | WM8903_WSEQ_ENA, WM8903_WSEQ_ENA); |
| 1628 | snd_soc_update_bits(codec, WM8903_MIC_BIAS_CONTROL_0, |
| 1629 | WM8903_MICDET_ENA, WM8903_MICDET_ENA); |
| 1630 | } else { |
| 1631 | snd_soc_update_bits(codec, WM8903_MIC_BIAS_CONTROL_0, |
| 1632 | WM8903_MICDET_ENA, 0); |
| 1633 | } |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1634 | |
| 1635 | return 0; |
| 1636 | } |
| 1637 | EXPORT_SYMBOL_GPL(wm8903_mic_detect); |
| 1638 | |
Mark Brown | 8abd16a | 2010-03-15 18:25:26 +0000 | [diff] [blame] | 1639 | static irqreturn_t wm8903_irq(int irq, void *data) |
| 1640 | { |
Mark Brown | e373cbf | 2012-06-09 10:06:11 +0800 | [diff] [blame] | 1641 | struct wm8903_priv *wm8903 = data; |
| 1642 | int mic_report, ret; |
| 1643 | unsigned int int_val, mask, int_pol; |
Mark Brown | 8abd16a | 2010-03-15 18:25:26 +0000 | [diff] [blame] | 1644 | |
Mark Brown | e373cbf | 2012-06-09 10:06:11 +0800 | [diff] [blame] | 1645 | ret = regmap_read(wm8903->regmap, WM8903_INTERRUPT_STATUS_1_MASK, |
| 1646 | &mask); |
| 1647 | if (ret != 0) { |
| 1648 | dev_err(wm8903->dev, "Failed to read IRQ mask: %d\n", ret); |
| 1649 | return IRQ_NONE; |
| 1650 | } |
| 1651 | |
| 1652 | ret = regmap_read(wm8903->regmap, WM8903_INTERRUPT_STATUS_1, &int_val); |
| 1653 | if (ret != 0) { |
| 1654 | dev_err(wm8903->dev, "Failed to read IRQ status: %d\n", ret); |
| 1655 | return IRQ_NONE; |
| 1656 | } |
| 1657 | |
| 1658 | int_val &= ~mask; |
Mark Brown | 8abd16a | 2010-03-15 18:25:26 +0000 | [diff] [blame] | 1659 | |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1660 | if (int_val & WM8903_WSEQ_BUSY_EINT) { |
Mark Brown | e373cbf | 2012-06-09 10:06:11 +0800 | [diff] [blame] | 1661 | dev_warn(wm8903->dev, "Write sequencer done\n"); |
Mark Brown | 8abd16a | 2010-03-15 18:25:26 +0000 | [diff] [blame] | 1662 | } |
| 1663 | |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1664 | /* |
| 1665 | * The rest is microphone jack detection. We need to manually |
| 1666 | * invert the polarity of the interrupt after each event - to |
| 1667 | * simplify the code keep track of the last state we reported |
| 1668 | * and just invert the relevant bits in both the report and |
| 1669 | * the polarity register. |
| 1670 | */ |
| 1671 | mic_report = wm8903->mic_last_report; |
Mark Brown | e373cbf | 2012-06-09 10:06:11 +0800 | [diff] [blame] | 1672 | ret = regmap_read(wm8903->regmap, WM8903_INTERRUPT_POLARITY_1, |
| 1673 | &int_pol); |
| 1674 | if (ret != 0) { |
| 1675 | dev_err(wm8903->dev, "Failed to read interrupt polarity: %d\n", |
| 1676 | ret); |
| 1677 | return IRQ_HANDLED; |
| 1678 | } |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1679 | |
Mark Brown | 1435b94 | 2010-12-23 01:56:20 +0000 | [diff] [blame] | 1680 | #ifndef CONFIG_SND_SOC_WM8903_MODULE |
Mark Brown | 2bbb5d6 | 2010-12-05 12:50:12 +0000 | [diff] [blame] | 1681 | if (int_val & (WM8903_MICSHRT_EINT | WM8903_MICDET_EINT)) |
Mark Brown | e373cbf | 2012-06-09 10:06:11 +0800 | [diff] [blame] | 1682 | trace_snd_soc_jack_irq(dev_name(wm8903->dev)); |
Mark Brown | 1435b94 | 2010-12-23 01:56:20 +0000 | [diff] [blame] | 1683 | #endif |
Mark Brown | 2bbb5d6 | 2010-12-05 12:50:12 +0000 | [diff] [blame] | 1684 | |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1685 | if (int_val & WM8903_MICSHRT_EINT) { |
Mark Brown | e373cbf | 2012-06-09 10:06:11 +0800 | [diff] [blame] | 1686 | dev_dbg(wm8903->dev, "Microphone short (pol=%x)\n", int_pol); |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1687 | |
| 1688 | mic_report ^= wm8903->mic_short; |
| 1689 | int_pol ^= WM8903_MICSHRT_INV; |
| 1690 | } |
| 1691 | |
| 1692 | if (int_val & WM8903_MICDET_EINT) { |
Mark Brown | e373cbf | 2012-06-09 10:06:11 +0800 | [diff] [blame] | 1693 | dev_dbg(wm8903->dev, "Microphone detect (pol=%x)\n", int_pol); |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1694 | |
| 1695 | mic_report ^= wm8903->mic_det; |
| 1696 | int_pol ^= WM8903_MICDET_INV; |
| 1697 | |
| 1698 | msleep(wm8903->mic_delay); |
| 1699 | } |
| 1700 | |
Mark Brown | e373cbf | 2012-06-09 10:06:11 +0800 | [diff] [blame] | 1701 | regmap_update_bits(wm8903->regmap, WM8903_INTERRUPT_POLARITY_1, |
| 1702 | WM8903_MICSHRT_INV | WM8903_MICDET_INV, int_pol); |
Mark Brown | 7245387 | 2010-03-15 21:22:58 +0000 | [diff] [blame] | 1703 | |
| 1704 | snd_soc_jack_report(wm8903->mic_jack, mic_report, |
| 1705 | wm8903->mic_short | wm8903->mic_det); |
| 1706 | |
| 1707 | wm8903->mic_last_report = mic_report; |
| 1708 | |
Mark Brown | 8abd16a | 2010-03-15 18:25:26 +0000 | [diff] [blame] | 1709 | return IRQ_HANDLED; |
| 1710 | } |
| 1711 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1712 | #define WM8903_PLAYBACK_RATES (SNDRV_PCM_RATE_8000 |\ |
| 1713 | SNDRV_PCM_RATE_11025 | \ |
| 1714 | SNDRV_PCM_RATE_16000 | \ |
| 1715 | SNDRV_PCM_RATE_22050 | \ |
| 1716 | SNDRV_PCM_RATE_32000 | \ |
| 1717 | SNDRV_PCM_RATE_44100 | \ |
| 1718 | SNDRV_PCM_RATE_48000 | \ |
| 1719 | SNDRV_PCM_RATE_88200 | \ |
| 1720 | SNDRV_PCM_RATE_96000) |
| 1721 | |
| 1722 | #define WM8903_CAPTURE_RATES (SNDRV_PCM_RATE_8000 |\ |
| 1723 | SNDRV_PCM_RATE_11025 | \ |
| 1724 | SNDRV_PCM_RATE_16000 | \ |
| 1725 | SNDRV_PCM_RATE_22050 | \ |
| 1726 | SNDRV_PCM_RATE_32000 | \ |
| 1727 | SNDRV_PCM_RATE_44100 | \ |
| 1728 | SNDRV_PCM_RATE_48000) |
| 1729 | |
| 1730 | #define WM8903_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\ |
| 1731 | SNDRV_PCM_FMTBIT_S20_3LE |\ |
| 1732 | SNDRV_PCM_FMTBIT_S24_LE) |
| 1733 | |
Lars-Peter Clausen | 85e7652 | 2011-11-23 11:40:40 +0100 | [diff] [blame] | 1734 | static const struct snd_soc_dai_ops wm8903_dai_ops = { |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 1735 | .hw_params = wm8903_hw_params, |
| 1736 | .digital_mute = wm8903_digital_mute, |
| 1737 | .set_fmt = wm8903_set_dai_fmt, |
| 1738 | .set_sysclk = wm8903_set_dai_sysclk, |
| 1739 | }; |
| 1740 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1741 | static struct snd_soc_dai_driver wm8903_dai = { |
| 1742 | .name = "wm8903-hifi", |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1743 | .playback = { |
| 1744 | .stream_name = "Playback", |
| 1745 | .channels_min = 2, |
| 1746 | .channels_max = 2, |
| 1747 | .rates = WM8903_PLAYBACK_RATES, |
| 1748 | .formats = WM8903_FORMATS, |
| 1749 | }, |
| 1750 | .capture = { |
| 1751 | .stream_name = "Capture", |
| 1752 | .channels_min = 2, |
| 1753 | .channels_max = 2, |
| 1754 | .rates = WM8903_CAPTURE_RATES, |
| 1755 | .formats = WM8903_FORMATS, |
| 1756 | }, |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 1757 | .ops = &wm8903_dai_ops, |
Mark Brown | 0d960e8 | 2009-04-16 10:08:39 +0100 | [diff] [blame] | 1758 | .symmetric_rates = 1, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1759 | }; |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1760 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1761 | static int wm8903_resume(struct snd_soc_codec *codec) |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1762 | { |
Mark Brown | 45e9675 | 2011-12-02 18:23:37 +0000 | [diff] [blame] | 1763 | struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec); |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1764 | |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 1765 | regcache_sync(wm8903->regmap); |
Mark Brown | 45e9675 | 2011-12-02 18:23:37 +0000 | [diff] [blame] | 1766 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 1767 | return 0; |
| 1768 | } |
| 1769 | |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1770 | #ifdef CONFIG_GPIOLIB |
| 1771 | static inline struct wm8903_priv *gpio_to_wm8903(struct gpio_chip *chip) |
| 1772 | { |
| 1773 | return container_of(chip, struct wm8903_priv, gpio_chip); |
| 1774 | } |
| 1775 | |
| 1776 | static int wm8903_gpio_request(struct gpio_chip *chip, unsigned offset) |
| 1777 | { |
| 1778 | if (offset >= WM8903_NUM_GPIO) |
| 1779 | return -EINVAL; |
| 1780 | |
| 1781 | return 0; |
| 1782 | } |
| 1783 | |
| 1784 | static int wm8903_gpio_direction_in(struct gpio_chip *chip, unsigned offset) |
| 1785 | { |
| 1786 | struct wm8903_priv *wm8903 = gpio_to_wm8903(chip); |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1787 | unsigned int mask, val; |
Axel Lin | 385bd93 | 2011-12-31 11:01:41 +0800 | [diff] [blame] | 1788 | int ret; |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1789 | |
| 1790 | mask = WM8903_GP1_FN_MASK | WM8903_GP1_DIR_MASK; |
| 1791 | val = (WM8903_GPn_FN_GPIO_INPUT << WM8903_GP1_FN_SHIFT) | |
| 1792 | WM8903_GP1_DIR; |
| 1793 | |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1794 | ret = regmap_update_bits(wm8903->regmap, |
| 1795 | WM8903_GPIO_CONTROL_1 + offset, mask, val); |
Axel Lin | 385bd93 | 2011-12-31 11:01:41 +0800 | [diff] [blame] | 1796 | if (ret < 0) |
| 1797 | return ret; |
| 1798 | |
| 1799 | return 0; |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1800 | } |
| 1801 | |
| 1802 | static int wm8903_gpio_get(struct gpio_chip *chip, unsigned offset) |
| 1803 | { |
| 1804 | struct wm8903_priv *wm8903 = gpio_to_wm8903(chip); |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1805 | unsigned int reg; |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1806 | |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1807 | regmap_read(wm8903->regmap, WM8903_GPIO_CONTROL_1 + offset, ®); |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1808 | |
| 1809 | return (reg & WM8903_GP1_LVL_MASK) >> WM8903_GP1_LVL_SHIFT; |
| 1810 | } |
| 1811 | |
| 1812 | static int wm8903_gpio_direction_out(struct gpio_chip *chip, |
| 1813 | unsigned offset, int value) |
| 1814 | { |
| 1815 | struct wm8903_priv *wm8903 = gpio_to_wm8903(chip); |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1816 | unsigned int mask, val; |
Axel Lin | 385bd93 | 2011-12-31 11:01:41 +0800 | [diff] [blame] | 1817 | int ret; |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1818 | |
| 1819 | mask = WM8903_GP1_FN_MASK | WM8903_GP1_DIR_MASK | WM8903_GP1_LVL_MASK; |
| 1820 | val = (WM8903_GPn_FN_GPIO_OUTPUT << WM8903_GP1_FN_SHIFT) | |
| 1821 | (value << WM8903_GP2_LVL_SHIFT); |
| 1822 | |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1823 | ret = regmap_update_bits(wm8903->regmap, |
| 1824 | WM8903_GPIO_CONTROL_1 + offset, mask, val); |
Axel Lin | 385bd93 | 2011-12-31 11:01:41 +0800 | [diff] [blame] | 1825 | if (ret < 0) |
| 1826 | return ret; |
| 1827 | |
| 1828 | return 0; |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1829 | } |
| 1830 | |
| 1831 | static void wm8903_gpio_set(struct gpio_chip *chip, unsigned offset, int value) |
| 1832 | { |
| 1833 | struct wm8903_priv *wm8903 = gpio_to_wm8903(chip); |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1834 | |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1835 | regmap_update_bits(wm8903->regmap, WM8903_GPIO_CONTROL_1 + offset, |
| 1836 | WM8903_GP1_LVL_MASK, |
| 1837 | !!value << WM8903_GP1_LVL_SHIFT); |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1838 | } |
| 1839 | |
| 1840 | static struct gpio_chip wm8903_template_chip = { |
| 1841 | .label = "wm8903", |
| 1842 | .owner = THIS_MODULE, |
| 1843 | .request = wm8903_gpio_request, |
| 1844 | .direction_input = wm8903_gpio_direction_in, |
| 1845 | .get = wm8903_gpio_get, |
| 1846 | .direction_output = wm8903_gpio_direction_out, |
| 1847 | .set = wm8903_gpio_set, |
| 1848 | .can_sleep = 1, |
| 1849 | }; |
| 1850 | |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1851 | static void wm8903_init_gpio(struct wm8903_priv *wm8903) |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1852 | { |
Stephen Warren | c0eb27c | 2011-12-02 15:08:38 -0700 | [diff] [blame] | 1853 | struct wm8903_platform_data *pdata = wm8903->pdata; |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1854 | int ret; |
| 1855 | |
| 1856 | wm8903->gpio_chip = wm8903_template_chip; |
| 1857 | wm8903->gpio_chip.ngpio = WM8903_NUM_GPIO; |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1858 | wm8903->gpio_chip.dev = wm8903->dev; |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1859 | |
Stephen Warren | db81778 | 2011-12-02 15:08:39 -0700 | [diff] [blame] | 1860 | if (pdata->gpio_base) |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1861 | wm8903->gpio_chip.base = pdata->gpio_base; |
| 1862 | else |
| 1863 | wm8903->gpio_chip.base = -1; |
| 1864 | |
| 1865 | ret = gpiochip_add(&wm8903->gpio_chip); |
| 1866 | if (ret != 0) |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1867 | dev_err(wm8903->dev, "Failed to add GPIOs: %d\n", ret); |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1868 | } |
| 1869 | |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1870 | static void wm8903_free_gpio(struct wm8903_priv *wm8903) |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1871 | { |
abdoulaye berthe | 88d5e52 | 2014-07-12 22:30:14 +0200 | [diff] [blame] | 1872 | gpiochip_remove(&wm8903->gpio_chip); |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1873 | } |
| 1874 | #else |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1875 | static void wm8903_init_gpio(struct wm8903_priv *wm8903) |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1876 | { |
| 1877 | } |
| 1878 | |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1879 | static void wm8903_free_gpio(struct wm8903_priv *wm8903) |
Stephen Warren | 7cfe561 | 2011-01-20 13:52:08 -0700 | [diff] [blame] | 1880 | { |
| 1881 | } |
| 1882 | #endif |
| 1883 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1884 | static struct snd_soc_codec_driver soc_codec_dev_wm8903 = { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1885 | .resume = wm8903_resume, |
| 1886 | .set_bias_level = wm8903_set_bias_level, |
Mark Brown | c5b6a9f | 2011-02-09 20:14:42 +0000 | [diff] [blame] | 1887 | .seq_notifier = wm8903_seq_notifier, |
Lars-Peter Clausen | b0d55b1 | 2014-11-23 13:37:30 +0100 | [diff] [blame] | 1888 | .suspend_bias_off = true, |
| 1889 | |
Mark Brown | f4a1083 | 2011-12-02 18:21:28 +0000 | [diff] [blame] | 1890 | .controls = wm8903_snd_controls, |
| 1891 | .num_controls = ARRAY_SIZE(wm8903_snd_controls), |
Mark Brown | ecd0151 | 2011-03-27 13:43:45 +0100 | [diff] [blame] | 1892 | .dapm_widgets = wm8903_dapm_widgets, |
| 1893 | .num_dapm_widgets = ARRAY_SIZE(wm8903_dapm_widgets), |
| 1894 | .dapm_routes = wm8903_intercon, |
| 1895 | .num_dapm_routes = ARRAY_SIZE(wm8903_intercon), |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1896 | }; |
| 1897 | |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 1898 | static const struct regmap_config wm8903_regmap = { |
| 1899 | .reg_bits = 8, |
| 1900 | .val_bits = 16, |
| 1901 | |
| 1902 | .max_register = WM8903_MAX_REGISTER, |
| 1903 | .volatile_reg = wm8903_volatile_register, |
| 1904 | .readable_reg = wm8903_readable_register, |
| 1905 | |
| 1906 | .cache_type = REGCACHE_RBTREE, |
| 1907 | .reg_defaults = wm8903_reg_defaults, |
| 1908 | .num_reg_defaults = ARRAY_SIZE(wm8903_reg_defaults), |
| 1909 | }; |
| 1910 | |
Stephen Warren | 9d35f3e | 2011-12-02 15:08:40 -0700 | [diff] [blame] | 1911 | static int wm8903_set_pdata_irq_trigger(struct i2c_client *i2c, |
| 1912 | struct wm8903_platform_data *pdata) |
| 1913 | { |
| 1914 | struct irq_data *irq_data = irq_get_irq_data(i2c->irq); |
| 1915 | if (!irq_data) { |
| 1916 | dev_err(&i2c->dev, "Invalid IRQ: %d\n", |
| 1917 | i2c->irq); |
| 1918 | return -EINVAL; |
| 1919 | } |
| 1920 | |
| 1921 | switch (irqd_get_trigger_type(irq_data)) { |
| 1922 | case IRQ_TYPE_NONE: |
Mark Brown | 6664ee1 | 2011-12-06 10:30:24 +0000 | [diff] [blame] | 1923 | default: |
Stephen Warren | 9d35f3e | 2011-12-02 15:08:40 -0700 | [diff] [blame] | 1924 | /* |
| 1925 | * We assume the controller imposes no restrictions, |
| 1926 | * so we are able to select active-high |
| 1927 | */ |
| 1928 | /* Fall-through */ |
| 1929 | case IRQ_TYPE_LEVEL_HIGH: |
| 1930 | pdata->irq_active_low = false; |
| 1931 | break; |
| 1932 | case IRQ_TYPE_LEVEL_LOW: |
| 1933 | pdata->irq_active_low = true; |
| 1934 | break; |
Stephen Warren | 9d35f3e | 2011-12-02 15:08:40 -0700 | [diff] [blame] | 1935 | } |
| 1936 | |
| 1937 | return 0; |
| 1938 | } |
| 1939 | |
Stephen Warren | 5d680b3 | 2011-12-02 15:08:41 -0700 | [diff] [blame] | 1940 | static int wm8903_set_pdata_from_of(struct i2c_client *i2c, |
| 1941 | struct wm8903_platform_data *pdata) |
| 1942 | { |
| 1943 | const struct device_node *np = i2c->dev.of_node; |
| 1944 | u32 val32; |
| 1945 | int i; |
| 1946 | |
| 1947 | if (of_property_read_u32(np, "micdet-cfg", &val32) >= 0) |
| 1948 | pdata->micdet_cfg = val32; |
| 1949 | |
| 1950 | if (of_property_read_u32(np, "micdet-delay", &val32) >= 0) |
| 1951 | pdata->micdet_delay = val32; |
| 1952 | |
| 1953 | if (of_property_read_u32_array(np, "gpio-cfg", pdata->gpio_cfg, |
| 1954 | ARRAY_SIZE(pdata->gpio_cfg)) >= 0) { |
| 1955 | /* |
| 1956 | * In device tree: 0 means "write 0", |
| 1957 | * 0xffffffff means "don't touch". |
| 1958 | * |
| 1959 | * In platform data: 0 means "don't touch", |
| 1960 | * 0x8000 means "write 0". |
| 1961 | * |
| 1962 | * Note: WM8903_GPIO_CONFIG_ZERO == 0x8000. |
| 1963 | * |
| 1964 | * Convert from DT to pdata representation here, |
| 1965 | * so no other code needs to change. |
| 1966 | */ |
| 1967 | for (i = 0; i < ARRAY_SIZE(pdata->gpio_cfg); i++) { |
| 1968 | if (pdata->gpio_cfg[i] == 0) { |
| 1969 | pdata->gpio_cfg[i] = WM8903_GPIO_CONFIG_ZERO; |
| 1970 | } else if (pdata->gpio_cfg[i] == 0xffffffff) { |
| 1971 | pdata->gpio_cfg[i] = 0; |
| 1972 | } else if (pdata->gpio_cfg[i] > 0x7fff) { |
| 1973 | dev_err(&i2c->dev, "Invalid gpio-cfg[%d] %x\n", |
| 1974 | i, pdata->gpio_cfg[i]); |
| 1975 | return -EINVAL; |
| 1976 | } |
| 1977 | } |
| 1978 | } |
| 1979 | |
| 1980 | return 0; |
| 1981 | } |
| 1982 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 1983 | static int wm8903_i2c_probe(struct i2c_client *i2c, |
| 1984 | const struct i2c_device_id *id) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1985 | { |
Stephen Warren | c0eb27c | 2011-12-02 15:08:38 -0700 | [diff] [blame] | 1986 | struct wm8903_platform_data *pdata = dev_get_platdata(&i2c->dev); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1987 | struct wm8903_priv *wm8903; |
Mark Brown | b7c95d9 | 2012-06-09 10:15:10 +0800 | [diff] [blame] | 1988 | int trigger; |
Mark Brown | 20c5fd3 | 2012-06-09 10:03:20 +0800 | [diff] [blame] | 1989 | bool mic_gpio = false; |
Mark Brown | b7c95d9 | 2012-06-09 10:15:10 +0800 | [diff] [blame] | 1990 | unsigned int val, irq_pol; |
Mark Brown | 20c5fd3 | 2012-06-09 10:03:20 +0800 | [diff] [blame] | 1991 | int ret, i; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1992 | |
Mark Brown | 2950cd22 | 2011-12-03 10:59:32 +0000 | [diff] [blame] | 1993 | wm8903 = devm_kzalloc(&i2c->dev, sizeof(struct wm8903_priv), |
| 1994 | GFP_KERNEL); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1995 | if (wm8903 == NULL) |
| 1996 | return -ENOMEM; |
Lars-Peter Clausen | 78660af | 2014-11-09 17:01:01 +0100 | [diff] [blame] | 1997 | |
| 1998 | mutex_init(&wm8903->lock); |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 1999 | wm8903->dev = &i2c->dev; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2000 | |
Mark Brown | 7d11668 | 2012-06-09 10:21:16 +0800 | [diff] [blame] | 2001 | wm8903->regmap = devm_regmap_init_i2c(i2c, &wm8903_regmap); |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 2002 | if (IS_ERR(wm8903->regmap)) { |
| 2003 | ret = PTR_ERR(wm8903->regmap); |
| 2004 | dev_err(&i2c->dev, "Failed to allocate register map: %d\n", |
| 2005 | ret); |
| 2006 | return ret; |
| 2007 | } |
| 2008 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2009 | i2c_set_clientdata(i2c, wm8903); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2010 | |
Stephen Warren | c0eb27c | 2011-12-02 15:08:38 -0700 | [diff] [blame] | 2011 | /* If no platform data was supplied, create storage for defaults */ |
| 2012 | if (pdata) { |
| 2013 | wm8903->pdata = pdata; |
| 2014 | } else { |
| 2015 | wm8903->pdata = devm_kzalloc(&i2c->dev, |
| 2016 | sizeof(struct wm8903_platform_data), |
| 2017 | GFP_KERNEL); |
| 2018 | if (wm8903->pdata == NULL) { |
| 2019 | dev_err(&i2c->dev, "Failed to allocate pdata\n"); |
| 2020 | return -ENOMEM; |
| 2021 | } |
Stephen Warren | 9d35f3e | 2011-12-02 15:08:40 -0700 | [diff] [blame] | 2022 | |
| 2023 | if (i2c->irq) { |
| 2024 | ret = wm8903_set_pdata_irq_trigger(i2c, wm8903->pdata); |
| 2025 | if (ret != 0) |
| 2026 | return ret; |
| 2027 | } |
Stephen Warren | 5d680b3 | 2011-12-02 15:08:41 -0700 | [diff] [blame] | 2028 | |
| 2029 | if (i2c->dev.of_node) { |
| 2030 | ret = wm8903_set_pdata_from_of(i2c, wm8903->pdata); |
| 2031 | if (ret != 0) |
| 2032 | return ret; |
| 2033 | } |
Stephen Warren | c0eb27c | 2011-12-02 15:08:38 -0700 | [diff] [blame] | 2034 | } |
| 2035 | |
Mark Brown | 20c5fd3 | 2012-06-09 10:03:20 +0800 | [diff] [blame] | 2036 | pdata = wm8903->pdata; |
| 2037 | |
Mark Brown | 7d46a52 | 2011-12-02 18:39:17 +0000 | [diff] [blame] | 2038 | ret = regmap_read(wm8903->regmap, WM8903_SW_RESET_AND_ID, &val); |
| 2039 | if (ret != 0) { |
| 2040 | dev_err(&i2c->dev, "Failed to read chip ID: %d\n", ret); |
| 2041 | goto err; |
| 2042 | } |
| 2043 | if (val != 0x8903) { |
| 2044 | dev_err(&i2c->dev, "Device with ID %x is not a WM8903\n", val); |
| 2045 | ret = -ENODEV; |
| 2046 | goto err; |
| 2047 | } |
| 2048 | |
| 2049 | ret = regmap_read(wm8903->regmap, WM8903_REVISION_NUMBER, &val); |
| 2050 | if (ret != 0) { |
| 2051 | dev_err(&i2c->dev, "Failed to read chip revision: %d\n", ret); |
| 2052 | goto err; |
| 2053 | } |
| 2054 | dev_info(&i2c->dev, "WM8903 revision %c\n", |
| 2055 | (val & WM8903_CHIP_REV_MASK) + 'A'); |
| 2056 | |
| 2057 | /* Reset the device */ |
| 2058 | regmap_write(wm8903->regmap, WM8903_SW_RESET_AND_ID, 0x8903); |
| 2059 | |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 2060 | wm8903_init_gpio(wm8903); |
| 2061 | |
Mark Brown | 20c5fd3 | 2012-06-09 10:03:20 +0800 | [diff] [blame] | 2062 | /* Set up GPIO pin state, detect if any are MIC detect outputs */ |
| 2063 | for (i = 0; i < ARRAY_SIZE(pdata->gpio_cfg); i++) { |
| 2064 | if ((!pdata->gpio_cfg[i]) || |
| 2065 | (pdata->gpio_cfg[i] > WM8903_GPIO_CONFIG_ZERO)) |
| 2066 | continue; |
| 2067 | |
| 2068 | regmap_write(wm8903->regmap, WM8903_GPIO_CONTROL_1 + i, |
| 2069 | pdata->gpio_cfg[i] & 0x7fff); |
| 2070 | |
| 2071 | val = (pdata->gpio_cfg[i] & WM8903_GP1_FN_MASK) |
| 2072 | >> WM8903_GP1_FN_SHIFT; |
| 2073 | |
| 2074 | switch (val) { |
| 2075 | case WM8903_GPn_FN_MICBIAS_CURRENT_DETECT: |
| 2076 | case WM8903_GPn_FN_MICBIAS_SHORT_DETECT: |
| 2077 | mic_gpio = true; |
| 2078 | break; |
| 2079 | default: |
| 2080 | break; |
| 2081 | } |
| 2082 | } |
| 2083 | |
| 2084 | /* Set up microphone detection */ |
| 2085 | regmap_write(wm8903->regmap, WM8903_MIC_BIAS_CONTROL_0, |
| 2086 | pdata->micdet_cfg); |
| 2087 | |
| 2088 | /* Microphone detection needs the WSEQ clock */ |
| 2089 | if (pdata->micdet_cfg) |
| 2090 | regmap_update_bits(wm8903->regmap, WM8903_WRITE_SEQUENCER_0, |
| 2091 | WM8903_WSEQ_ENA, WM8903_WSEQ_ENA); |
| 2092 | |
| 2093 | /* If microphone detection is enabled by pdata but |
| 2094 | * detected via IRQ then interrupts can be lost before |
| 2095 | * the machine driver has set up microphone detection |
| 2096 | * IRQs as the IRQs are clear on read. The detection |
| 2097 | * will be enabled when the machine driver configures. |
| 2098 | */ |
| 2099 | WARN_ON(!mic_gpio && (pdata->micdet_cfg & WM8903_MICDET_ENA)); |
| 2100 | |
| 2101 | wm8903->mic_delay = pdata->micdet_delay; |
| 2102 | |
Mark Brown | b7c95d9 | 2012-06-09 10:15:10 +0800 | [diff] [blame] | 2103 | if (i2c->irq) { |
| 2104 | if (pdata->irq_active_low) { |
| 2105 | trigger = IRQF_TRIGGER_LOW; |
| 2106 | irq_pol = WM8903_IRQ_POL; |
| 2107 | } else { |
| 2108 | trigger = IRQF_TRIGGER_HIGH; |
| 2109 | irq_pol = 0; |
| 2110 | } |
| 2111 | |
| 2112 | regmap_update_bits(wm8903->regmap, WM8903_INTERRUPT_CONTROL, |
| 2113 | WM8903_IRQ_POL, irq_pol); |
| 2114 | |
| 2115 | ret = request_threaded_irq(i2c->irq, NULL, wm8903_irq, |
| 2116 | trigger | IRQF_ONESHOT, |
| 2117 | "wm8903", wm8903); |
| 2118 | if (ret != 0) { |
| 2119 | dev_err(wm8903->dev, "Failed to request IRQ: %d\n", |
| 2120 | ret); |
| 2121 | return ret; |
| 2122 | } |
| 2123 | |
| 2124 | /* Enable write sequencer interrupts */ |
| 2125 | regmap_update_bits(wm8903->regmap, |
| 2126 | WM8903_INTERRUPT_STATUS_1_MASK, |
| 2127 | WM8903_IM_WSEQ_BUSY_EINT, 0); |
| 2128 | } |
| 2129 | |
Mark Brown | a89c3e9 | 2012-06-09 10:30:34 +0800 | [diff] [blame] | 2130 | /* Latch volume update bits */ |
| 2131 | regmap_update_bits(wm8903->regmap, WM8903_ADC_DIGITAL_VOLUME_LEFT, |
| 2132 | WM8903_ADCVU, WM8903_ADCVU); |
| 2133 | regmap_update_bits(wm8903->regmap, WM8903_ADC_DIGITAL_VOLUME_RIGHT, |
| 2134 | WM8903_ADCVU, WM8903_ADCVU); |
| 2135 | |
| 2136 | regmap_update_bits(wm8903->regmap, WM8903_DAC_DIGITAL_VOLUME_LEFT, |
| 2137 | WM8903_DACVU, WM8903_DACVU); |
| 2138 | regmap_update_bits(wm8903->regmap, WM8903_DAC_DIGITAL_VOLUME_RIGHT, |
| 2139 | WM8903_DACVU, WM8903_DACVU); |
| 2140 | |
| 2141 | regmap_update_bits(wm8903->regmap, WM8903_ANALOGUE_OUT1_LEFT, |
| 2142 | WM8903_HPOUTVU, WM8903_HPOUTVU); |
| 2143 | regmap_update_bits(wm8903->regmap, WM8903_ANALOGUE_OUT1_RIGHT, |
| 2144 | WM8903_HPOUTVU, WM8903_HPOUTVU); |
| 2145 | |
| 2146 | regmap_update_bits(wm8903->regmap, WM8903_ANALOGUE_OUT2_LEFT, |
| 2147 | WM8903_LINEOUTVU, WM8903_LINEOUTVU); |
| 2148 | regmap_update_bits(wm8903->regmap, WM8903_ANALOGUE_OUT2_RIGHT, |
| 2149 | WM8903_LINEOUTVU, WM8903_LINEOUTVU); |
| 2150 | |
| 2151 | regmap_update_bits(wm8903->regmap, WM8903_ANALOGUE_OUT3_LEFT, |
| 2152 | WM8903_SPKVU, WM8903_SPKVU); |
| 2153 | regmap_update_bits(wm8903->regmap, WM8903_ANALOGUE_OUT3_RIGHT, |
| 2154 | WM8903_SPKVU, WM8903_SPKVU); |
| 2155 | |
| 2156 | /* Enable DAC soft mute by default */ |
| 2157 | regmap_update_bits(wm8903->regmap, WM8903_DAC_DIGITAL_1, |
| 2158 | WM8903_DAC_MUTEMODE | WM8903_DAC_MUTE, |
| 2159 | WM8903_DAC_MUTEMODE | WM8903_DAC_MUTE); |
| 2160 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2161 | ret = snd_soc_register_codec(&i2c->dev, |
| 2162 | &soc_codec_dev_wm8903, &wm8903_dai, 1); |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 2163 | if (ret != 0) |
| 2164 | goto err; |
Mark Brown | 2950cd22 | 2011-12-03 10:59:32 +0000 | [diff] [blame] | 2165 | |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 2166 | return 0; |
| 2167 | err: |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2168 | return ret; |
| 2169 | } |
| 2170 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 2171 | static int wm8903_i2c_remove(struct i2c_client *client) |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2172 | { |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 2173 | struct wm8903_priv *wm8903 = i2c_get_clientdata(client); |
| 2174 | |
Mark Brown | b7c95d9 | 2012-06-09 10:15:10 +0800 | [diff] [blame] | 2175 | if (client->irq) |
| 2176 | free_irq(client->irq, wm8903); |
Stephen Warren | 0bf79ef | 2012-05-22 16:08:52 -0600 | [diff] [blame] | 2177 | wm8903_free_gpio(wm8903); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2178 | snd_soc_unregister_codec(&client->dev); |
Mark Brown | ee244ce | 2011-12-02 18:33:32 +0000 | [diff] [blame] | 2179 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2180 | return 0; |
| 2181 | } |
| 2182 | |
Stephen Warren | f18b4e2 | 2011-12-06 14:15:41 -0700 | [diff] [blame] | 2183 | static const struct of_device_id wm8903_of_match[] = { |
| 2184 | { .compatible = "wlf,wm8903", }, |
| 2185 | {}, |
| 2186 | }; |
| 2187 | MODULE_DEVICE_TABLE(of, wm8903_of_match); |
| 2188 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2189 | static const struct i2c_device_id wm8903_i2c_id[] = { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2190 | { "wm8903", 0 }, |
| 2191 | { } |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2192 | }; |
| 2193 | MODULE_DEVICE_TABLE(i2c, wm8903_i2c_id); |
| 2194 | |
| 2195 | static struct i2c_driver wm8903_i2c_driver = { |
| 2196 | .driver = { |
Mark Brown | 4b592c9 | 2011-02-09 13:47:06 +0000 | [diff] [blame] | 2197 | .name = "wm8903", |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2198 | .owner = THIS_MODULE, |
Stephen Warren | f18b4e2 | 2011-12-06 14:15:41 -0700 | [diff] [blame] | 2199 | .of_match_table = wm8903_of_match, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2200 | }, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2201 | .probe = wm8903_i2c_probe, |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 2202 | .remove = wm8903_i2c_remove, |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2203 | .id_table = wm8903_i2c_id, |
| 2204 | }; |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2205 | |
Sachin Kamat | 5c86ea4 | 2012-08-06 17:25:57 +0530 | [diff] [blame] | 2206 | module_i2c_driver(wm8903_i2c_driver); |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 2207 | |
Mark Brown | f1c0a02 | 2008-08-26 13:05:27 +0100 | [diff] [blame] | 2208 | MODULE_DESCRIPTION("ASoC WM8903 driver"); |
| 2209 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.cm>"); |
| 2210 | MODULE_LICENSE("GPL"); |