Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1 | /* |
| 2 | * sgtl5000.c -- SGTL5000 ALSA SoC Audio driver |
| 3 | * |
| 4 | * Copyright 2010-2011 Freescale Semiconductor, Inc. All Rights Reserved. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/moduleparam.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/delay.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <linux/pm.h> |
| 17 | #include <linux/i2c.h> |
| 18 | #include <linux/clk.h> |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 19 | #include <linux/log2.h> |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 20 | #include <linux/regmap.h> |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 21 | #include <linux/regulator/driver.h> |
| 22 | #include <linux/regulator/machine.h> |
| 23 | #include <linux/regulator/consumer.h> |
Shawn Guo | 58e4942 | 2011-07-22 00:28:51 +0800 | [diff] [blame] | 24 | #include <linux/of_device.h> |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 25 | #include <sound/core.h> |
| 26 | #include <sound/tlv.h> |
| 27 | #include <sound/pcm.h> |
| 28 | #include <sound/pcm_params.h> |
| 29 | #include <sound/soc.h> |
| 30 | #include <sound/soc-dapm.h> |
| 31 | #include <sound/initval.h> |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 32 | |
| 33 | #include "sgtl5000.h" |
| 34 | |
| 35 | #define SGTL5000_DAP_REG_OFFSET 0x0100 |
| 36 | #define SGTL5000_MAX_REG_OFFSET 0x013A |
| 37 | |
Wolfram Sang | 151798f | 2011-08-02 19:42:19 +0200 | [diff] [blame] | 38 | /* default value of sgtl5000 registers */ |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 39 | static const struct reg_default sgtl5000_reg_defaults[] = { |
Fabio Estevam | 29aa37c | 2014-05-26 10:34:20 -0300 | [diff] [blame] | 40 | { SGTL5000_CHIP_DIG_POWER, 0x0000 }, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 41 | { SGTL5000_CHIP_I2S_CTRL, 0x0010 }, |
Fabio Estevam | 016fcab | 2013-07-04 20:01:02 -0300 | [diff] [blame] | 42 | { SGTL5000_CHIP_SSS_CTRL, 0x0010 }, |
Fabio Estevam | 29aa37c | 2014-05-26 10:34:20 -0300 | [diff] [blame] | 43 | { SGTL5000_CHIP_ADCDAC_CTRL, 0x020c }, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 44 | { SGTL5000_CHIP_DAC_VOL, 0x3c3c }, |
| 45 | { SGTL5000_CHIP_PAD_STRENGTH, 0x015f }, |
Fabio Estevam | 29aa37c | 2014-05-26 10:34:20 -0300 | [diff] [blame] | 46 | { SGTL5000_CHIP_ANA_ADC_CTRL, 0x0000 }, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 47 | { SGTL5000_CHIP_ANA_HP_CTRL, 0x1818 }, |
| 48 | { SGTL5000_CHIP_ANA_CTRL, 0x0111 }, |
Fabio Estevam | 29aa37c | 2014-05-26 10:34:20 -0300 | [diff] [blame] | 49 | { SGTL5000_CHIP_REF_CTRL, 0x0000 }, |
| 50 | { SGTL5000_CHIP_MIC_CTRL, 0x0000 }, |
| 51 | { SGTL5000_CHIP_LINE_OUT_CTRL, 0x0000 }, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 52 | { SGTL5000_CHIP_LINE_OUT_VOL, 0x0404 }, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 53 | { SGTL5000_CHIP_PLL_CTRL, 0x5000 }, |
Fabio Estevam | 29aa37c | 2014-05-26 10:34:20 -0300 | [diff] [blame] | 54 | { SGTL5000_CHIP_CLK_TOP_CTRL, 0x0000 }, |
| 55 | { SGTL5000_CHIP_ANA_STATUS, 0x0000 }, |
| 56 | { SGTL5000_CHIP_SHORT_CTRL, 0x0000 }, |
| 57 | { SGTL5000_CHIP_ANA_TEST2, 0x0000 }, |
| 58 | { SGTL5000_DAP_CTRL, 0x0000 }, |
| 59 | { SGTL5000_DAP_PEQ, 0x0000 }, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 60 | { SGTL5000_DAP_BASS_ENHANCE, 0x0040 }, |
| 61 | { SGTL5000_DAP_BASS_ENHANCE_CTRL, 0x051f }, |
Fabio Estevam | 29aa37c | 2014-05-26 10:34:20 -0300 | [diff] [blame] | 62 | { SGTL5000_DAP_AUDIO_EQ, 0x0000 }, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 63 | { SGTL5000_DAP_SURROUND, 0x0040 }, |
| 64 | { SGTL5000_DAP_EQ_BASS_BAND0, 0x002f }, |
| 65 | { SGTL5000_DAP_EQ_BASS_BAND1, 0x002f }, |
| 66 | { SGTL5000_DAP_EQ_BASS_BAND2, 0x002f }, |
| 67 | { SGTL5000_DAP_EQ_BASS_BAND3, 0x002f }, |
| 68 | { SGTL5000_DAP_EQ_BASS_BAND4, 0x002f }, |
| 69 | { SGTL5000_DAP_MAIN_CHAN, 0x8000 }, |
Fabio Estevam | 29aa37c | 2014-05-26 10:34:20 -0300 | [diff] [blame] | 70 | { SGTL5000_DAP_MIX_CHAN, 0x0000 }, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 71 | { SGTL5000_DAP_AVC_CTRL, 0x0510 }, |
| 72 | { SGTL5000_DAP_AVC_THRESHOLD, 0x1473 }, |
| 73 | { SGTL5000_DAP_AVC_ATTACK, 0x0028 }, |
| 74 | { SGTL5000_DAP_AVC_DECAY, 0x0050 }, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 75 | }; |
| 76 | |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 77 | /* AVC: Threshold dB -> register: pre-calculated values */ |
| 78 | static const u16 avc_thr_db2reg[97] = { |
| 79 | 0x5168, 0x488E, 0x40AA, 0x39A1, 0x335D, 0x2DC7, 0x28CC, 0x245D, 0x2068, |
| 80 | 0x1CE2, 0x19BE, 0x16F1, 0x1472, 0x1239, 0x103E, 0x0E7A, 0x0CE6, 0x0B7F, |
| 81 | 0x0A3F, 0x0922, 0x0824, 0x0741, 0x0677, 0x05C3, 0x0522, 0x0493, 0x0414, |
| 82 | 0x03A2, 0x033D, 0x02E3, 0x0293, 0x024B, 0x020B, 0x01D2, 0x019F, 0x0172, |
| 83 | 0x014A, 0x0126, 0x0106, 0x00E9, 0x00D0, 0x00B9, 0x00A5, 0x0093, 0x0083, |
| 84 | 0x0075, 0x0068, 0x005D, 0x0052, 0x0049, 0x0041, 0x003A, 0x0034, 0x002E, |
| 85 | 0x0029, 0x0025, 0x0021, 0x001D, 0x001A, 0x0017, 0x0014, 0x0012, 0x0010, |
| 86 | 0x000E, 0x000D, 0x000B, 0x000A, 0x0009, 0x0008, 0x0007, 0x0006, 0x0005, |
| 87 | 0x0005, 0x0004, 0x0004, 0x0003, 0x0003, 0x0002, 0x0002, 0x0002, 0x0002, |
| 88 | 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0000, 0x0000, 0x0000, |
| 89 | 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000}; |
| 90 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 91 | /* regulator supplies for sgtl5000, VDDD is an optional external supply */ |
| 92 | enum sgtl5000_regulator_supplies { |
| 93 | VDDA, |
| 94 | VDDIO, |
| 95 | VDDD, |
| 96 | SGTL5000_SUPPLY_NUM |
| 97 | }; |
| 98 | |
| 99 | /* vddd is optional supply */ |
| 100 | static const char *supply_names[SGTL5000_SUPPLY_NUM] = { |
| 101 | "VDDA", |
| 102 | "VDDIO", |
| 103 | "VDDD" |
| 104 | }; |
| 105 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 106 | #define LDO_VOLTAGE 1200000 |
Eric Nelson | 3d632cc | 2016-06-07 01:14:50 +0200 | [diff] [blame] | 107 | #define LINREG_VDDD ((1600 - LDO_VOLTAGE / 1000) / 50) |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 108 | |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 109 | enum sgtl5000_micbias_resistor { |
| 110 | SGTL5000_MICBIAS_OFF = 0, |
| 111 | SGTL5000_MICBIAS_2K = 2, |
| 112 | SGTL5000_MICBIAS_4K = 4, |
| 113 | SGTL5000_MICBIAS_8K = 8, |
| 114 | }; |
| 115 | |
Fabio Estevam | 570c70a | 2017-04-05 11:32:34 -0300 | [diff] [blame] | 116 | enum { |
| 117 | I2S_LRCLK_STRENGTH_DISABLE, |
| 118 | I2S_LRCLK_STRENGTH_LOW, |
| 119 | I2S_LRCLK_STRENGTH_MEDIUM, |
| 120 | I2S_LRCLK_STRENGTH_HIGH, |
| 121 | }; |
| 122 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 123 | /* sgtl5000 private structure in codec */ |
| 124 | struct sgtl5000_priv { |
| 125 | int sysclk; /* sysclk rate */ |
| 126 | int master; /* i2s master or not */ |
| 127 | int fmt; /* i2s data format */ |
| 128 | struct regulator_bulk_data supplies[SGTL5000_SUPPLY_NUM]; |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 129 | int num_supplies; |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 130 | struct regmap *regmap; |
Fabio Estevam | 9e13f34 | 2013-06-09 22:07:46 -0300 | [diff] [blame] | 131 | struct clk *mclk; |
Shawn Guo | 252e91f | 2013-12-13 14:43:02 +0800 | [diff] [blame] | 132 | int revision; |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 133 | u8 micbias_resistor; |
Jean-Michel Hautbois | 8735779 | 2014-10-14 08:43:12 +0200 | [diff] [blame] | 134 | u8 micbias_voltage; |
Fabio Estevam | 570c70a | 2017-04-05 11:32:34 -0300 | [diff] [blame] | 135 | u8 lrclk_strength; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | /* |
| 139 | * mic_bias power on/off share the same register bits with |
| 140 | * output impedance of mic bias, when power on mic bias, we |
| 141 | * need reclaim it to impedance value. |
| 142 | * 0x0 = Powered off |
| 143 | * 0x1 = 2Kohm |
| 144 | * 0x2 = 4Kohm |
| 145 | * 0x3 = 8Kohm |
| 146 | */ |
| 147 | static int mic_bias_event(struct snd_soc_dapm_widget *w, |
| 148 | struct snd_kcontrol *kcontrol, int event) |
| 149 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 150 | struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); |
| 151 | struct sgtl5000_priv *sgtl5000 = snd_soc_component_get_drvdata(component); |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 152 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 153 | switch (event) { |
| 154 | case SND_SOC_DAPM_POST_PMU: |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 155 | /* change mic bias resistor */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 156 | snd_soc_component_update_bits(component, SGTL5000_CHIP_MIC_CTRL, |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 157 | SGTL5000_BIAS_R_MASK, |
| 158 | sgtl5000->micbias_resistor << SGTL5000_BIAS_R_SHIFT); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 159 | break; |
| 160 | |
| 161 | case SND_SOC_DAPM_PRE_PMD: |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 162 | snd_soc_component_update_bits(component, SGTL5000_CHIP_MIC_CTRL, |
Axel Lin | dc56c5a8 | 2011-10-19 11:00:42 +0800 | [diff] [blame] | 163 | SGTL5000_BIAS_R_MASK, 0); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 164 | break; |
| 165 | } |
| 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | /* |
Zeng Zhaoming | f0cdcf3 | 2012-03-30 00:13:02 +0800 | [diff] [blame] | 170 | * As manual described, ADC/DAC only works when VAG powerup, |
| 171 | * So enabled VAG before ADC/DAC up. |
| 172 | * In power down case, we need wait 400ms when vag fully ramped down. |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 173 | */ |
Zeng Zhaoming | f0cdcf3 | 2012-03-30 00:13:02 +0800 | [diff] [blame] | 174 | static int power_vag_event(struct snd_soc_dapm_widget *w, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 175 | struct snd_kcontrol *kcontrol, int event) |
| 176 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 177 | struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); |
Lothar Waßmann | f091f3f | 2013-07-31 16:44:29 +0200 | [diff] [blame] | 178 | const u32 mask = SGTL5000_DAC_POWERUP | SGTL5000_ADC_POWERUP; |
| 179 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 180 | switch (event) { |
Marek Vasut | dd4d2d6 | 2013-05-28 20:55:56 +0200 | [diff] [blame] | 181 | case SND_SOC_DAPM_POST_PMU: |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 182 | snd_soc_component_update_bits(component, SGTL5000_CHIP_ANA_POWER, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 183 | SGTL5000_VAG_POWERUP, SGTL5000_VAG_POWERUP); |
Jean-Michel Hautbois | c803cc2 | 2015-12-17 11:07:23 +0100 | [diff] [blame] | 184 | msleep(400); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 185 | break; |
| 186 | |
Marek Vasut | dd4d2d6 | 2013-05-28 20:55:56 +0200 | [diff] [blame] | 187 | case SND_SOC_DAPM_PRE_PMD: |
Lothar Waßmann | f091f3f | 2013-07-31 16:44:29 +0200 | [diff] [blame] | 188 | /* |
| 189 | * Don't clear VAG_POWERUP, when both DAC and ADC are |
| 190 | * operational to prevent inadvertently starving the |
| 191 | * other one of them. |
| 192 | */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 193 | if ((snd_soc_component_read32(component, SGTL5000_CHIP_ANA_POWER) & |
Lothar Waßmann | f091f3f | 2013-07-31 16:44:29 +0200 | [diff] [blame] | 194 | mask) != mask) { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 195 | snd_soc_component_update_bits(component, SGTL5000_CHIP_ANA_POWER, |
Lothar Waßmann | f091f3f | 2013-07-31 16:44:29 +0200 | [diff] [blame] | 196 | SGTL5000_VAG_POWERUP, 0); |
| 197 | msleep(400); |
| 198 | } |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 199 | break; |
| 200 | default: |
| 201 | break; |
| 202 | } |
| 203 | |
| 204 | return 0; |
| 205 | } |
| 206 | |
| 207 | /* input sources for ADC */ |
| 208 | static const char *adc_mux_text[] = { |
| 209 | "MIC_IN", "LINE_IN" |
| 210 | }; |
| 211 | |
Takashi Iwai | c8ed650 | 2014-02-18 10:16:31 +0100 | [diff] [blame] | 212 | static SOC_ENUM_SINGLE_DECL(adc_enum, |
| 213 | SGTL5000_CHIP_ANA_CTRL, 2, |
| 214 | adc_mux_text); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 215 | |
| 216 | static const struct snd_kcontrol_new adc_mux = |
| 217 | SOC_DAPM_ENUM("Capture Mux", adc_enum); |
| 218 | |
Michal Oleszczyk | 7f7d523 | 2018-02-19 10:03:45 +0100 | [diff] [blame^] | 219 | /* input sources for headphone */ |
| 220 | static const char *hp_mux_text[] = { |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 221 | "DAC", "LINE_IN" |
| 222 | }; |
| 223 | |
Michal Oleszczyk | 7f7d523 | 2018-02-19 10:03:45 +0100 | [diff] [blame^] | 224 | static SOC_ENUM_SINGLE_DECL(hp_enum, |
Takashi Iwai | c8ed650 | 2014-02-18 10:16:31 +0100 | [diff] [blame] | 225 | SGTL5000_CHIP_ANA_CTRL, 6, |
Michal Oleszczyk | 7f7d523 | 2018-02-19 10:03:45 +0100 | [diff] [blame^] | 226 | hp_mux_text); |
| 227 | |
| 228 | static const struct snd_kcontrol_new hp_mux = |
| 229 | SOC_DAPM_ENUM("Headphone Mux", hp_enum); |
| 230 | |
| 231 | /* input sources for DAC */ |
| 232 | static const char *dac_mux_text[] = { |
| 233 | "ADC", "I2S", "Rsvrd", "DAP" |
| 234 | }; |
| 235 | |
| 236 | static SOC_ENUM_SINGLE_DECL(dac_enum, |
| 237 | SGTL5000_CHIP_SSS_CTRL, SGTL5000_DAC_SEL_SHIFT, |
Takashi Iwai | c8ed650 | 2014-02-18 10:16:31 +0100 | [diff] [blame] | 238 | dac_mux_text); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 239 | |
| 240 | static const struct snd_kcontrol_new dac_mux = |
Michal Oleszczyk | 7f7d523 | 2018-02-19 10:03:45 +0100 | [diff] [blame^] | 241 | SOC_DAPM_ENUM("Digital Input Mux", dac_enum); |
| 242 | |
| 243 | /* input sources for DAP */ |
| 244 | static const char *dap_mux_text[] = { |
| 245 | "ADC", "I2S" |
| 246 | }; |
| 247 | |
| 248 | static SOC_ENUM_SINGLE_DECL(dap_enum, |
| 249 | SGTL5000_CHIP_SSS_CTRL, SGTL5000_DAP_SEL_SHIFT, |
| 250 | dap_mux_text); |
| 251 | |
| 252 | static const struct snd_kcontrol_new dap_mux = |
| 253 | SOC_DAPM_ENUM("DAP Mux", dap_enum); |
| 254 | |
| 255 | /* input sources for DAP mix */ |
| 256 | static const char *dapmix_mux_text[] = { |
| 257 | "ADC", "I2S" |
| 258 | }; |
| 259 | |
| 260 | static SOC_ENUM_SINGLE_DECL(dapmix_enum, |
| 261 | SGTL5000_CHIP_SSS_CTRL, SGTL5000_DAP_MIX_SEL_SHIFT, |
| 262 | dapmix_mux_text); |
| 263 | |
| 264 | static const struct snd_kcontrol_new dapmix_mux = |
| 265 | SOC_DAPM_ENUM("DAP MIX Mux", dapmix_enum); |
| 266 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 267 | |
| 268 | static const struct snd_soc_dapm_widget sgtl5000_dapm_widgets[] = { |
| 269 | SND_SOC_DAPM_INPUT("LINE_IN"), |
| 270 | SND_SOC_DAPM_INPUT("MIC_IN"), |
| 271 | |
| 272 | SND_SOC_DAPM_OUTPUT("HP_OUT"), |
| 273 | SND_SOC_DAPM_OUTPUT("LINE_OUT"), |
| 274 | |
Mark Brown | 8fc8ec9 | 2012-03-28 20:51:43 +0100 | [diff] [blame] | 275 | SND_SOC_DAPM_SUPPLY("Mic Bias", SGTL5000_CHIP_MIC_CTRL, 8, 0, |
| 276 | mic_bias_event, |
| 277 | SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 278 | |
Zeng Zhaoming | f0cdcf3 | 2012-03-30 00:13:02 +0800 | [diff] [blame] | 279 | SND_SOC_DAPM_PGA("HP", SGTL5000_CHIP_ANA_POWER, 4, 0, NULL, 0), |
| 280 | SND_SOC_DAPM_PGA("LO", SGTL5000_CHIP_ANA_POWER, 0, 0, NULL, 0), |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 281 | |
| 282 | SND_SOC_DAPM_MUX("Capture Mux", SND_SOC_NOPM, 0, 0, &adc_mux), |
Michal Oleszczyk | 7f7d523 | 2018-02-19 10:03:45 +0100 | [diff] [blame^] | 283 | SND_SOC_DAPM_MUX("Headphone Mux", SND_SOC_NOPM, 0, 0, &hp_mux), |
| 284 | SND_SOC_DAPM_MUX("Digital Input Mux", SND_SOC_NOPM, 0, 0, &dac_mux), |
| 285 | SND_SOC_DAPM_MUX("DAP Mux", SGTL5000_DAP_CTRL, 0, 0, &dap_mux), |
| 286 | SND_SOC_DAPM_MUX("DAP MIX Mux", SGTL5000_DAP_CTRL, 4, 0, &dapmix_mux), |
| 287 | SND_SOC_DAPM_MIXER("DAP", SGTL5000_CHIP_DIG_POWER, 4, 0, NULL, 0), |
| 288 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 289 | |
| 290 | /* aif for i2s input */ |
| 291 | SND_SOC_DAPM_AIF_IN("AIFIN", "Playback", |
| 292 | 0, SGTL5000_CHIP_DIG_POWER, |
| 293 | 0, 0), |
| 294 | |
| 295 | /* aif for i2s output */ |
| 296 | SND_SOC_DAPM_AIF_OUT("AIFOUT", "Capture", |
| 297 | 0, SGTL5000_CHIP_DIG_POWER, |
| 298 | 1, 0), |
| 299 | |
Zeng Zhaoming | f0cdcf3 | 2012-03-30 00:13:02 +0800 | [diff] [blame] | 300 | SND_SOC_DAPM_ADC("ADC", "Capture", SGTL5000_CHIP_ANA_POWER, 1, 0), |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 301 | SND_SOC_DAPM_DAC("DAC", "Playback", SGTL5000_CHIP_ANA_POWER, 3, 0), |
Marek Vasut | dd4d2d6 | 2013-05-28 20:55:56 +0200 | [diff] [blame] | 302 | |
| 303 | SND_SOC_DAPM_PRE("VAG_POWER_PRE", power_vag_event), |
| 304 | SND_SOC_DAPM_POST("VAG_POWER_POST", power_vag_event), |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 305 | }; |
| 306 | |
| 307 | /* routes for sgtl5000 */ |
Fabio Estevam | 8998963 | 2012-01-22 14:49:42 -0200 | [diff] [blame] | 308 | static const struct snd_soc_dapm_route sgtl5000_dapm_routes[] = { |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 309 | {"Capture Mux", "LINE_IN", "LINE_IN"}, /* line_in --> adc_mux */ |
| 310 | {"Capture Mux", "MIC_IN", "MIC_IN"}, /* mic_in --> adc_mux */ |
| 311 | |
| 312 | {"ADC", NULL, "Capture Mux"}, /* adc_mux --> adc */ |
| 313 | {"AIFOUT", NULL, "ADC"}, /* adc --> i2s_out */ |
| 314 | |
Michal Oleszczyk | 7f7d523 | 2018-02-19 10:03:45 +0100 | [diff] [blame^] | 315 | {"DAP Mux", "ADC", "ADC"}, /* adc --> DAP mux */ |
| 316 | {"DAP Mux", NULL, "AIFIN"}, /* i2s --> DAP mux */ |
| 317 | {"DAP", NULL, "DAP Mux"}, /* DAP mux --> dap */ |
| 318 | |
| 319 | {"DAP MIX Mux", "ADC", "ADC"}, /* adc --> DAP MIX mux */ |
| 320 | {"DAP MIX Mux", NULL, "AIFIN"}, /* i2s --> DAP MIX mux */ |
| 321 | {"DAP", NULL, "DAP MIX Mux"}, /* DAP MIX mux --> dap */ |
| 322 | |
| 323 | {"Digital Input Mux", "ADC", "ADC"}, /* adc --> audio mux */ |
| 324 | {"Digital Input Mux", NULL, "AIFIN"}, /* i2s --> audio mux */ |
| 325 | {"Digital Input Mux", NULL, "DAP"}, /* dap --> audio mux */ |
| 326 | {"DAC", NULL, "Digital Input Mux"}, /* audio mux --> dac */ |
| 327 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 328 | {"Headphone Mux", "DAC", "DAC"}, /* dac --> hp_mux */ |
| 329 | {"LO", NULL, "DAC"}, /* dac --> line_out */ |
| 330 | |
| 331 | {"Headphone Mux", "LINE_IN", "LINE_IN"},/* line_in --> hp_mux */ |
| 332 | {"HP", NULL, "Headphone Mux"}, /* hp_mux --> hp */ |
| 333 | |
| 334 | {"LINE_OUT", NULL, "LO"}, |
| 335 | {"HP_OUT", NULL, "HP"}, |
| 336 | }; |
| 337 | |
| 338 | /* custom function to fetch info of PCM playback volume */ |
| 339 | static int dac_info_volsw(struct snd_kcontrol *kcontrol, |
| 340 | struct snd_ctl_elem_info *uinfo) |
| 341 | { |
| 342 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 343 | uinfo->count = 2; |
| 344 | uinfo->value.integer.min = 0; |
| 345 | uinfo->value.integer.max = 0xfc - 0x3c; |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | /* |
| 350 | * custom function to get of PCM playback volume |
| 351 | * |
| 352 | * dac volume register |
| 353 | * 15-------------8-7--------------0 |
| 354 | * | R channel vol | L channel vol | |
| 355 | * ------------------------------- |
| 356 | * |
| 357 | * PCM volume with 0.5017 dB steps from 0 to -90 dB |
| 358 | * |
| 359 | * register values map to dB |
| 360 | * 0x3B and less = Reserved |
| 361 | * 0x3C = 0 dB |
| 362 | * 0x3D = -0.5 dB |
| 363 | * 0xF0 = -90 dB |
| 364 | * 0xFC and greater = Muted |
| 365 | * |
| 366 | * register value map to userspace value |
| 367 | * |
| 368 | * register value 0x3c(0dB) 0xf0(-90dB)0xfc |
| 369 | * ------------------------------ |
| 370 | * userspace value 0xc0 0 |
| 371 | */ |
| 372 | static int dac_get_volsw(struct snd_kcontrol *kcontrol, |
| 373 | struct snd_ctl_elem_value *ucontrol) |
| 374 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 375 | struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 376 | int reg; |
| 377 | int l; |
| 378 | int r; |
| 379 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 380 | reg = snd_soc_component_read32(component, SGTL5000_CHIP_DAC_VOL); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 381 | |
| 382 | /* get left channel volume */ |
| 383 | l = (reg & SGTL5000_DAC_VOL_LEFT_MASK) >> SGTL5000_DAC_VOL_LEFT_SHIFT; |
| 384 | |
| 385 | /* get right channel volume */ |
| 386 | r = (reg & SGTL5000_DAC_VOL_RIGHT_MASK) >> SGTL5000_DAC_VOL_RIGHT_SHIFT; |
| 387 | |
| 388 | /* make sure value fall in (0x3c,0xfc) */ |
| 389 | l = clamp(l, 0x3c, 0xfc); |
| 390 | r = clamp(r, 0x3c, 0xfc); |
| 391 | |
| 392 | /* invert it and map to userspace value */ |
| 393 | l = 0xfc - l; |
| 394 | r = 0xfc - r; |
| 395 | |
| 396 | ucontrol->value.integer.value[0] = l; |
| 397 | ucontrol->value.integer.value[1] = r; |
| 398 | |
| 399 | return 0; |
| 400 | } |
| 401 | |
| 402 | /* |
| 403 | * custom function to put of PCM playback volume |
| 404 | * |
| 405 | * dac volume register |
| 406 | * 15-------------8-7--------------0 |
| 407 | * | R channel vol | L channel vol | |
| 408 | * ------------------------------- |
| 409 | * |
| 410 | * PCM volume with 0.5017 dB steps from 0 to -90 dB |
| 411 | * |
| 412 | * register values map to dB |
| 413 | * 0x3B and less = Reserved |
| 414 | * 0x3C = 0 dB |
| 415 | * 0x3D = -0.5 dB |
| 416 | * 0xF0 = -90 dB |
| 417 | * 0xFC and greater = Muted |
| 418 | * |
| 419 | * userspace value map to register value |
| 420 | * |
| 421 | * userspace value 0xc0 0 |
| 422 | * ------------------------------ |
| 423 | * register value 0x3c(0dB) 0xf0(-90dB)0xfc |
| 424 | */ |
| 425 | static int dac_put_volsw(struct snd_kcontrol *kcontrol, |
| 426 | struct snd_ctl_elem_value *ucontrol) |
| 427 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 428 | struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 429 | int reg; |
| 430 | int l; |
| 431 | int r; |
| 432 | |
| 433 | l = ucontrol->value.integer.value[0]; |
| 434 | r = ucontrol->value.integer.value[1]; |
| 435 | |
| 436 | /* make sure userspace volume fall in (0, 0xfc-0x3c) */ |
| 437 | l = clamp(l, 0, 0xfc - 0x3c); |
| 438 | r = clamp(r, 0, 0xfc - 0x3c); |
| 439 | |
| 440 | /* invert it, get the value can be set to register */ |
| 441 | l = 0xfc - l; |
| 442 | r = 0xfc - r; |
| 443 | |
| 444 | /* shift to get the register value */ |
| 445 | reg = l << SGTL5000_DAC_VOL_LEFT_SHIFT | |
| 446 | r << SGTL5000_DAC_VOL_RIGHT_SHIFT; |
| 447 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 448 | snd_soc_component_write(component, SGTL5000_CHIP_DAC_VOL, reg); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 449 | |
| 450 | return 0; |
| 451 | } |
| 452 | |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 453 | /* |
| 454 | * custom function to get AVC threshold |
| 455 | * |
| 456 | * The threshold dB is calculated by rearranging the calculation from the |
| 457 | * avc_put_threshold function: register_value = 10^(dB/20) * 0.636 * 2^15 ==> |
| 458 | * dB = ( fls(register_value) - 14.347 ) * 6.02 |
| 459 | * |
| 460 | * As this calculation is expensive and the threshold dB values may not exeed |
| 461 | * 0 to 96 we use pre-calculated values. |
| 462 | */ |
| 463 | static int avc_get_threshold(struct snd_kcontrol *kcontrol, |
| 464 | struct snd_ctl_elem_value *ucontrol) |
| 465 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 466 | struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol); |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 467 | int db, i; |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 468 | u16 reg = snd_soc_component_read32(component, SGTL5000_DAP_AVC_THRESHOLD); |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 469 | |
| 470 | /* register value 0 => -96dB */ |
| 471 | if (!reg) { |
| 472 | ucontrol->value.integer.value[0] = 96; |
| 473 | ucontrol->value.integer.value[1] = 96; |
| 474 | return 0; |
| 475 | } |
| 476 | |
| 477 | /* get dB from register value (rounded down) */ |
| 478 | for (i = 0; avc_thr_db2reg[i] > reg; i++) |
| 479 | ; |
| 480 | db = i; |
| 481 | |
| 482 | ucontrol->value.integer.value[0] = db; |
| 483 | ucontrol->value.integer.value[1] = db; |
| 484 | |
| 485 | return 0; |
| 486 | } |
| 487 | |
| 488 | /* |
| 489 | * custom function to put AVC threshold |
| 490 | * |
| 491 | * The register value is calculated by following formula: |
| 492 | * register_value = 10^(dB/20) * 0.636 * 2^15 |
| 493 | * As this calculation is expensive and the threshold dB values may not exeed |
| 494 | * 0 to 96 we use pre-calculated values. |
| 495 | */ |
| 496 | static int avc_put_threshold(struct snd_kcontrol *kcontrol, |
| 497 | struct snd_ctl_elem_value *ucontrol) |
| 498 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 499 | struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol); |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 500 | int db; |
| 501 | u16 reg; |
| 502 | |
| 503 | db = (int)ucontrol->value.integer.value[0]; |
| 504 | if (db < 0 || db > 96) |
| 505 | return -EINVAL; |
| 506 | reg = avc_thr_db2reg[db]; |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 507 | snd_soc_component_write(component, SGTL5000_DAP_AVC_THRESHOLD, reg); |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 508 | |
| 509 | return 0; |
| 510 | } |
| 511 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 512 | static const DECLARE_TLV_DB_SCALE(capture_6db_attenuate, -600, 600, 0); |
| 513 | |
| 514 | /* tlv for mic gain, 0db 20db 30db 40db */ |
Lars-Peter Clausen | 53eb1ca | 2015-08-02 17:19:53 +0200 | [diff] [blame] | 515 | static const DECLARE_TLV_DB_RANGE(mic_gain_tlv, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 516 | 0, 0, TLV_DB_SCALE_ITEM(0, 0, 0), |
Lars-Peter Clausen | 53eb1ca | 2015-08-02 17:19:53 +0200 | [diff] [blame] | 517 | 1, 3, TLV_DB_SCALE_ITEM(2000, 1000, 0) |
| 518 | ); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 519 | |
Michal Oleszczyk | 7f7d523 | 2018-02-19 10:03:45 +0100 | [diff] [blame^] | 520 | /* tlv for DAP channels, 0% - 100% - 200% */ |
| 521 | static const DECLARE_TLV_DB_SCALE(dap_volume, 0, 1, 0); |
| 522 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 523 | /* tlv for hp volume, -51.5db to 12.0db, step .5db */ |
| 524 | static const DECLARE_TLV_DB_SCALE(headphone_volume, -5150, 50, 0); |
| 525 | |
Kalle Kankare | 0593d46 | 2016-07-12 10:41:18 +0200 | [diff] [blame] | 526 | /* tlv for lineout volume, 31 steps of .5db each */ |
| 527 | static const DECLARE_TLV_DB_SCALE(lineout_volume, -1550, 50, 0); |
| 528 | |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 529 | /* tlv for dap avc max gain, 0db, 6db, 12db */ |
| 530 | static const DECLARE_TLV_DB_SCALE(avc_max_gain, 0, 600, 0); |
| 531 | |
| 532 | /* tlv for dap avc threshold, */ |
| 533 | static const DECLARE_TLV_DB_MINMAX(avc_threshold, 0, 9600); |
| 534 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 535 | static const struct snd_kcontrol_new sgtl5000_snd_controls[] = { |
| 536 | /* SOC_DOUBLE_S8_TLV with invert */ |
| 537 | { |
| 538 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 539 | .name = "PCM Playback Volume", |
| 540 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | |
| 541 | SNDRV_CTL_ELEM_ACCESS_READWRITE, |
| 542 | .info = dac_info_volsw, |
| 543 | .get = dac_get_volsw, |
| 544 | .put = dac_put_volsw, |
| 545 | }, |
| 546 | |
| 547 | SOC_DOUBLE("Capture Volume", SGTL5000_CHIP_ANA_ADC_CTRL, 0, 4, 0xf, 0), |
| 548 | SOC_SINGLE_TLV("Capture Attenuate Switch (-6dB)", |
| 549 | SGTL5000_CHIP_ANA_ADC_CTRL, |
Lothar Waßmann | 65f2b22 | 2013-07-31 16:44:30 +0200 | [diff] [blame] | 550 | 8, 1, 0, capture_6db_attenuate), |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 551 | SOC_SINGLE("Capture ZC Switch", SGTL5000_CHIP_ANA_CTRL, 1, 1, 0), |
| 552 | |
| 553 | SOC_DOUBLE_TLV("Headphone Playback Volume", |
| 554 | SGTL5000_CHIP_ANA_HP_CTRL, |
| 555 | 0, 8, |
| 556 | 0x7f, 1, |
| 557 | headphone_volume), |
Richard Leitner | 904a987 | 2016-08-31 09:26:31 +0200 | [diff] [blame] | 558 | SOC_SINGLE("Headphone Playback Switch", SGTL5000_CHIP_ANA_CTRL, |
| 559 | 4, 1, 1), |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 560 | SOC_SINGLE("Headphone Playback ZC Switch", SGTL5000_CHIP_ANA_CTRL, |
| 561 | 5, 1, 0), |
| 562 | |
| 563 | SOC_SINGLE_TLV("Mic Volume", SGTL5000_CHIP_MIC_CTRL, |
Fabio Estevam | b50684d | 2012-12-23 15:45:31 -0200 | [diff] [blame] | 564 | 0, 3, 0, mic_gain_tlv), |
Kalle Kankare | 0593d46 | 2016-07-12 10:41:18 +0200 | [diff] [blame] | 565 | |
| 566 | SOC_DOUBLE_TLV("Lineout Playback Volume", |
| 567 | SGTL5000_CHIP_LINE_OUT_VOL, |
| 568 | SGTL5000_LINE_OUT_VOL_LEFT_SHIFT, |
| 569 | SGTL5000_LINE_OUT_VOL_RIGHT_SHIFT, |
| 570 | 0x1f, 1, |
| 571 | lineout_volume), |
Richard Leitner | 904a987 | 2016-08-31 09:26:31 +0200 | [diff] [blame] | 572 | SOC_SINGLE("Lineout Playback Switch", SGTL5000_CHIP_ANA_CTRL, 8, 1, 1), |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 573 | |
Michal Oleszczyk | 7f7d523 | 2018-02-19 10:03:45 +0100 | [diff] [blame^] | 574 | SOC_SINGLE_TLV("DAP Main channel", SGTL5000_DAP_MAIN_CHAN, |
| 575 | 0, 0xffff, 0, dap_volume), |
| 576 | |
| 577 | SOC_SINGLE_TLV("DAP Mix channel", SGTL5000_DAP_MIX_CHAN, |
| 578 | 0, 0xffff, 0, dap_volume), |
Richard Leitner | a729526 | 2017-06-14 10:36:12 +0200 | [diff] [blame] | 579 | /* Automatic Volume Control (DAP AVC) */ |
| 580 | SOC_SINGLE("AVC Switch", SGTL5000_DAP_AVC_CTRL, 0, 1, 0), |
| 581 | SOC_SINGLE("AVC Hard Limiter Switch", SGTL5000_DAP_AVC_CTRL, 5, 1, 0), |
| 582 | SOC_SINGLE_TLV("AVC Max Gain Volume", SGTL5000_DAP_AVC_CTRL, 12, 2, 0, |
| 583 | avc_max_gain), |
| 584 | SOC_SINGLE("AVC Integrator Response", SGTL5000_DAP_AVC_CTRL, 8, 3, 0), |
| 585 | SOC_SINGLE_EXT_TLV("AVC Threshold Volume", SGTL5000_DAP_AVC_THRESHOLD, |
| 586 | 0, 96, 0, avc_get_threshold, avc_put_threshold, |
| 587 | avc_threshold), |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 588 | }; |
| 589 | |
| 590 | /* mute the codec used by alsa core */ |
| 591 | static int sgtl5000_digital_mute(struct snd_soc_dai *codec_dai, int mute) |
| 592 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 593 | struct snd_soc_component *component = codec_dai->component; |
Michal Oleszczyk | c5489f9 | 2018-02-02 13:10:29 +0100 | [diff] [blame] | 594 | u16 i2s_pwr = SGTL5000_I2S_IN_POWERUP; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 595 | |
Michal Oleszczyk | c5489f9 | 2018-02-02 13:10:29 +0100 | [diff] [blame] | 596 | /* |
| 597 | * During 'digital mute' do not mute DAC |
| 598 | * because LINE_IN would be muted aswell. We want to mute |
| 599 | * only I2S block - this can be done by powering it off |
| 600 | */ |
Mark Brown | 58fadc1 | 2018-02-14 15:39:30 +0000 | [diff] [blame] | 601 | snd_soc_component_update_bits(component, SGTL5000_CHIP_DIG_POWER, |
Michal Oleszczyk | c5489f9 | 2018-02-02 13:10:29 +0100 | [diff] [blame] | 602 | i2s_pwr, mute ? 0 : i2s_pwr); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 603 | |
| 604 | return 0; |
| 605 | } |
| 606 | |
| 607 | /* set codec format */ |
| 608 | static int sgtl5000_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt) |
| 609 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 610 | struct snd_soc_component *component = codec_dai->component; |
| 611 | struct sgtl5000_priv *sgtl5000 = snd_soc_component_get_drvdata(component); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 612 | u16 i2sctl = 0; |
| 613 | |
| 614 | sgtl5000->master = 0; |
| 615 | /* |
| 616 | * i2s clock and frame master setting. |
| 617 | * ONLY support: |
| 618 | * - clock and frame slave, |
| 619 | * - clock and frame master |
| 620 | */ |
| 621 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 622 | case SND_SOC_DAIFMT_CBS_CFS: |
| 623 | break; |
| 624 | case SND_SOC_DAIFMT_CBM_CFM: |
| 625 | i2sctl |= SGTL5000_I2S_MASTER; |
| 626 | sgtl5000->master = 1; |
| 627 | break; |
| 628 | default: |
| 629 | return -EINVAL; |
| 630 | } |
| 631 | |
| 632 | /* setting i2s data format */ |
| 633 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 634 | case SND_SOC_DAIFMT_DSP_A: |
Filip Brozovic | 9ee802e | 2015-01-30 12:58:24 +0100 | [diff] [blame] | 635 | i2sctl |= SGTL5000_I2S_MODE_PCM << SGTL5000_I2S_MODE_SHIFT; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 636 | break; |
| 637 | case SND_SOC_DAIFMT_DSP_B: |
Filip Brozovic | 9ee802e | 2015-01-30 12:58:24 +0100 | [diff] [blame] | 638 | i2sctl |= SGTL5000_I2S_MODE_PCM << SGTL5000_I2S_MODE_SHIFT; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 639 | i2sctl |= SGTL5000_I2S_LRALIGN; |
| 640 | break; |
| 641 | case SND_SOC_DAIFMT_I2S: |
Filip Brozovic | 9ee802e | 2015-01-30 12:58:24 +0100 | [diff] [blame] | 642 | i2sctl |= SGTL5000_I2S_MODE_I2S_LJ << SGTL5000_I2S_MODE_SHIFT; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 643 | break; |
| 644 | case SND_SOC_DAIFMT_RIGHT_J: |
Filip Brozovic | 9ee802e | 2015-01-30 12:58:24 +0100 | [diff] [blame] | 645 | i2sctl |= SGTL5000_I2S_MODE_RJ << SGTL5000_I2S_MODE_SHIFT; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 646 | i2sctl |= SGTL5000_I2S_LRPOL; |
| 647 | break; |
| 648 | case SND_SOC_DAIFMT_LEFT_J: |
Filip Brozovic | 9ee802e | 2015-01-30 12:58:24 +0100 | [diff] [blame] | 649 | i2sctl |= SGTL5000_I2S_MODE_I2S_LJ << SGTL5000_I2S_MODE_SHIFT; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 650 | i2sctl |= SGTL5000_I2S_LRALIGN; |
| 651 | break; |
| 652 | default: |
| 653 | return -EINVAL; |
| 654 | } |
| 655 | |
| 656 | sgtl5000->fmt = fmt & SND_SOC_DAIFMT_FORMAT_MASK; |
| 657 | |
| 658 | /* Clock inversion */ |
| 659 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 660 | case SND_SOC_DAIFMT_NB_NF: |
| 661 | break; |
| 662 | case SND_SOC_DAIFMT_IB_NF: |
| 663 | i2sctl |= SGTL5000_I2S_SCLK_INV; |
| 664 | break; |
| 665 | default: |
| 666 | return -EINVAL; |
| 667 | } |
| 668 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 669 | snd_soc_component_write(component, SGTL5000_CHIP_I2S_CTRL, i2sctl); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 670 | |
| 671 | return 0; |
| 672 | } |
| 673 | |
| 674 | /* set codec sysclk */ |
| 675 | static int sgtl5000_set_dai_sysclk(struct snd_soc_dai *codec_dai, |
| 676 | int clk_id, unsigned int freq, int dir) |
| 677 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 678 | struct snd_soc_component *component = codec_dai->component; |
| 679 | struct sgtl5000_priv *sgtl5000 = snd_soc_component_get_drvdata(component); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 680 | |
| 681 | switch (clk_id) { |
| 682 | case SGTL5000_SYSCLK: |
| 683 | sgtl5000->sysclk = freq; |
| 684 | break; |
| 685 | default: |
| 686 | return -EINVAL; |
| 687 | } |
| 688 | |
| 689 | return 0; |
| 690 | } |
| 691 | |
| 692 | /* |
| 693 | * set clock according to i2s frame clock, |
Fabio Estevam | 7f6d75d | 2014-10-07 10:50:56 -0300 | [diff] [blame] | 694 | * sgtl5000 provides 2 clock sources: |
| 695 | * 1. sys_mclk: sample freq can only be configured to |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 696 | * 1/256, 1/384, 1/512 of sys_mclk. |
Fabio Estevam | 7f6d75d | 2014-10-07 10:50:56 -0300 | [diff] [blame] | 697 | * 2. pll: can derive any audio clocks. |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 698 | * |
| 699 | * clock setting rules: |
Fabio Estevam | 7f6d75d | 2014-10-07 10:50:56 -0300 | [diff] [blame] | 700 | * 1. in slave mode, only sys_mclk can be used |
| 701 | * 2. as constraint by sys_mclk, sample freq should be set to 32 kHz, 44.1 kHz |
| 702 | * and above. |
| 703 | * 3. usage of sys_mclk is preferred over pll to save power. |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 704 | */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 705 | static int sgtl5000_set_clock(struct snd_soc_component *component, int frame_rate) |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 706 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 707 | struct sgtl5000_priv *sgtl5000 = snd_soc_component_get_drvdata(component); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 708 | int clk_ctl = 0; |
| 709 | int sys_fs; /* sample freq */ |
| 710 | |
| 711 | /* |
| 712 | * sample freq should be divided by frame clock, |
Fabio Estevam | 7f6d75d | 2014-10-07 10:50:56 -0300 | [diff] [blame] | 713 | * if frame clock is lower than 44.1 kHz, sample freq should be set to |
| 714 | * 32 kHz or 44.1 kHz. |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 715 | */ |
| 716 | switch (frame_rate) { |
| 717 | case 8000: |
| 718 | case 16000: |
| 719 | sys_fs = 32000; |
| 720 | break; |
| 721 | case 11025: |
| 722 | case 22050: |
| 723 | sys_fs = 44100; |
| 724 | break; |
| 725 | default: |
| 726 | sys_fs = frame_rate; |
| 727 | break; |
| 728 | } |
| 729 | |
| 730 | /* set divided factor of frame clock */ |
| 731 | switch (sys_fs / frame_rate) { |
| 732 | case 4: |
| 733 | clk_ctl |= SGTL5000_RATE_MODE_DIV_4 << SGTL5000_RATE_MODE_SHIFT; |
| 734 | break; |
| 735 | case 2: |
| 736 | clk_ctl |= SGTL5000_RATE_MODE_DIV_2 << SGTL5000_RATE_MODE_SHIFT; |
| 737 | break; |
| 738 | case 1: |
| 739 | clk_ctl |= SGTL5000_RATE_MODE_DIV_1 << SGTL5000_RATE_MODE_SHIFT; |
| 740 | break; |
| 741 | default: |
| 742 | return -EINVAL; |
| 743 | } |
| 744 | |
| 745 | /* set the sys_fs according to frame rate */ |
| 746 | switch (sys_fs) { |
| 747 | case 32000: |
| 748 | clk_ctl |= SGTL5000_SYS_FS_32k << SGTL5000_SYS_FS_SHIFT; |
| 749 | break; |
| 750 | case 44100: |
| 751 | clk_ctl |= SGTL5000_SYS_FS_44_1k << SGTL5000_SYS_FS_SHIFT; |
| 752 | break; |
| 753 | case 48000: |
| 754 | clk_ctl |= SGTL5000_SYS_FS_48k << SGTL5000_SYS_FS_SHIFT; |
| 755 | break; |
| 756 | case 96000: |
| 757 | clk_ctl |= SGTL5000_SYS_FS_96k << SGTL5000_SYS_FS_SHIFT; |
| 758 | break; |
| 759 | default: |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 760 | dev_err(component->dev, "frame rate %d not supported\n", |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 761 | frame_rate); |
| 762 | return -EINVAL; |
| 763 | } |
| 764 | |
| 765 | /* |
| 766 | * calculate the divider of mclk/sample_freq, |
Fabio Estevam | 7f6d75d | 2014-10-07 10:50:56 -0300 | [diff] [blame] | 767 | * factor of freq = 96 kHz can only be 256, since mclk is in the range |
| 768 | * of 8 MHz - 27 MHz |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 769 | */ |
Fabio Estevam | 2a4cfd1 | 2014-11-27 13:02:01 -0200 | [diff] [blame] | 770 | switch (sgtl5000->sysclk / frame_rate) { |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 771 | case 256: |
| 772 | clk_ctl |= SGTL5000_MCLK_FREQ_256FS << |
| 773 | SGTL5000_MCLK_FREQ_SHIFT; |
| 774 | break; |
| 775 | case 384: |
| 776 | clk_ctl |= SGTL5000_MCLK_FREQ_384FS << |
| 777 | SGTL5000_MCLK_FREQ_SHIFT; |
| 778 | break; |
| 779 | case 512: |
| 780 | clk_ctl |= SGTL5000_MCLK_FREQ_512FS << |
| 781 | SGTL5000_MCLK_FREQ_SHIFT; |
| 782 | break; |
| 783 | default: |
Fabio Estevam | 7f6d75d | 2014-10-07 10:50:56 -0300 | [diff] [blame] | 784 | /* if mclk does not satisfy the divider, use pll */ |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 785 | if (sgtl5000->master) { |
| 786 | clk_ctl |= SGTL5000_MCLK_FREQ_PLL << |
| 787 | SGTL5000_MCLK_FREQ_SHIFT; |
| 788 | } else { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 789 | dev_err(component->dev, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 790 | "PLL not supported in slave mode\n"); |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 791 | dev_err(component->dev, "%d ratio is not supported. " |
Fabio Estevam | fa558d0 | 2014-10-02 16:16:50 -0300 | [diff] [blame] | 792 | "SYS_MCLK needs to be 256, 384 or 512 * fs\n", |
Fabio Estevam | 2a4cfd1 | 2014-11-27 13:02:01 -0200 | [diff] [blame] | 793 | sgtl5000->sysclk / frame_rate); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 794 | return -EINVAL; |
| 795 | } |
| 796 | } |
| 797 | |
| 798 | /* if using pll, please check manual 6.4.2 for detail */ |
| 799 | if ((clk_ctl & SGTL5000_MCLK_FREQ_MASK) == SGTL5000_MCLK_FREQ_PLL) { |
| 800 | u64 out, t; |
| 801 | int div2; |
| 802 | int pll_ctl; |
| 803 | unsigned int in, int_div, frac_div; |
| 804 | |
| 805 | if (sgtl5000->sysclk > 17000000) { |
| 806 | div2 = 1; |
| 807 | in = sgtl5000->sysclk / 2; |
| 808 | } else { |
| 809 | div2 = 0; |
| 810 | in = sgtl5000->sysclk; |
| 811 | } |
| 812 | if (sys_fs == 44100) |
| 813 | out = 180633600; |
| 814 | else |
| 815 | out = 196608000; |
| 816 | t = do_div(out, in); |
| 817 | int_div = out; |
| 818 | t *= 2048; |
| 819 | do_div(t, in); |
| 820 | frac_div = t; |
| 821 | pll_ctl = int_div << SGTL5000_PLL_INT_DIV_SHIFT | |
| 822 | frac_div << SGTL5000_PLL_FRAC_DIV_SHIFT; |
| 823 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 824 | snd_soc_component_write(component, SGTL5000_CHIP_PLL_CTRL, pll_ctl); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 825 | if (div2) |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 826 | snd_soc_component_update_bits(component, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 827 | SGTL5000_CHIP_CLK_TOP_CTRL, |
| 828 | SGTL5000_INPUT_FREQ_DIV2, |
| 829 | SGTL5000_INPUT_FREQ_DIV2); |
| 830 | else |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 831 | snd_soc_component_update_bits(component, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 832 | SGTL5000_CHIP_CLK_TOP_CTRL, |
| 833 | SGTL5000_INPUT_FREQ_DIV2, |
| 834 | 0); |
| 835 | |
| 836 | /* power up pll */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 837 | snd_soc_component_update_bits(component, SGTL5000_CHIP_ANA_POWER, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 838 | SGTL5000_PLL_POWERUP | SGTL5000_VCOAMP_POWERUP, |
| 839 | SGTL5000_PLL_POWERUP | SGTL5000_VCOAMP_POWERUP); |
Oskar Schirmer | e06e4c2 | 2013-08-05 07:36:02 +0000 | [diff] [blame] | 840 | |
| 841 | /* if using pll, clk_ctrl must be set after pll power up */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 842 | snd_soc_component_write(component, SGTL5000_CHIP_CLK_CTRL, clk_ctl); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 843 | } else { |
Oskar Schirmer | e06e4c2 | 2013-08-05 07:36:02 +0000 | [diff] [blame] | 844 | /* otherwise, clk_ctrl must be set before pll power down */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 845 | snd_soc_component_write(component, SGTL5000_CHIP_CLK_CTRL, clk_ctl); |
Oskar Schirmer | e06e4c2 | 2013-08-05 07:36:02 +0000 | [diff] [blame] | 846 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 847 | /* power down pll */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 848 | snd_soc_component_update_bits(component, SGTL5000_CHIP_ANA_POWER, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 849 | SGTL5000_PLL_POWERUP | SGTL5000_VCOAMP_POWERUP, |
| 850 | 0); |
| 851 | } |
| 852 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 853 | return 0; |
| 854 | } |
| 855 | |
| 856 | /* |
| 857 | * Set PCM DAI bit size and sample rate. |
| 858 | * input: params_rate, params_fmt |
| 859 | */ |
| 860 | static int sgtl5000_pcm_hw_params(struct snd_pcm_substream *substream, |
| 861 | struct snd_pcm_hw_params *params, |
| 862 | struct snd_soc_dai *dai) |
| 863 | { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 864 | struct snd_soc_component *component = dai->component; |
| 865 | struct sgtl5000_priv *sgtl5000 = snd_soc_component_get_drvdata(component); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 866 | int channels = params_channels(params); |
| 867 | int i2s_ctl = 0; |
| 868 | int stereo; |
| 869 | int ret; |
| 870 | |
| 871 | /* sysclk should already set */ |
| 872 | if (!sgtl5000->sysclk) { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 873 | dev_err(component->dev, "%s: set sysclk first!\n", __func__); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 874 | return -EFAULT; |
| 875 | } |
| 876 | |
| 877 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 878 | stereo = SGTL5000_DAC_STEREO; |
| 879 | else |
| 880 | stereo = SGTL5000_ADC_STEREO; |
| 881 | |
| 882 | /* set mono to save power */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 883 | snd_soc_component_update_bits(component, SGTL5000_CHIP_ANA_POWER, stereo, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 884 | channels == 1 ? 0 : stereo); |
| 885 | |
| 886 | /* set codec clock base on lrclk */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 887 | ret = sgtl5000_set_clock(component, params_rate(params)); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 888 | if (ret) |
| 889 | return ret; |
| 890 | |
| 891 | /* set i2s data format */ |
Mark Brown | dacc2ae | 2014-07-31 12:46:05 +0100 | [diff] [blame] | 892 | switch (params_width(params)) { |
| 893 | case 16: |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 894 | if (sgtl5000->fmt == SND_SOC_DAIFMT_RIGHT_J) |
| 895 | return -EINVAL; |
| 896 | i2s_ctl |= SGTL5000_I2S_DLEN_16 << SGTL5000_I2S_DLEN_SHIFT; |
| 897 | i2s_ctl |= SGTL5000_I2S_SCLKFREQ_32FS << |
| 898 | SGTL5000_I2S_SCLKFREQ_SHIFT; |
| 899 | break; |
Mark Brown | dacc2ae | 2014-07-31 12:46:05 +0100 | [diff] [blame] | 900 | case 20: |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 901 | i2s_ctl |= SGTL5000_I2S_DLEN_20 << SGTL5000_I2S_DLEN_SHIFT; |
| 902 | i2s_ctl |= SGTL5000_I2S_SCLKFREQ_64FS << |
| 903 | SGTL5000_I2S_SCLKFREQ_SHIFT; |
| 904 | break; |
Mark Brown | dacc2ae | 2014-07-31 12:46:05 +0100 | [diff] [blame] | 905 | case 24: |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 906 | i2s_ctl |= SGTL5000_I2S_DLEN_24 << SGTL5000_I2S_DLEN_SHIFT; |
| 907 | i2s_ctl |= SGTL5000_I2S_SCLKFREQ_64FS << |
| 908 | SGTL5000_I2S_SCLKFREQ_SHIFT; |
| 909 | break; |
Mark Brown | dacc2ae | 2014-07-31 12:46:05 +0100 | [diff] [blame] | 910 | case 32: |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 911 | if (sgtl5000->fmt == SND_SOC_DAIFMT_RIGHT_J) |
| 912 | return -EINVAL; |
| 913 | i2s_ctl |= SGTL5000_I2S_DLEN_32 << SGTL5000_I2S_DLEN_SHIFT; |
| 914 | i2s_ctl |= SGTL5000_I2S_SCLKFREQ_64FS << |
| 915 | SGTL5000_I2S_SCLKFREQ_SHIFT; |
| 916 | break; |
| 917 | default: |
| 918 | return -EINVAL; |
| 919 | } |
| 920 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 921 | snd_soc_component_update_bits(component, SGTL5000_CHIP_I2S_CTRL, |
Axel Lin | 33cb92c | 2011-10-21 09:54:43 +0800 | [diff] [blame] | 922 | SGTL5000_I2S_DLEN_MASK | SGTL5000_I2S_SCLKFREQ_MASK, |
| 923 | i2s_ctl); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 924 | |
| 925 | return 0; |
| 926 | } |
| 927 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 928 | /* |
| 929 | * set dac bias |
| 930 | * common state changes: |
| 931 | * startup: |
| 932 | * off --> standby --> prepare --> on |
| 933 | * standby --> prepare --> on |
| 934 | * |
| 935 | * stop: |
| 936 | * on --> prepare --> standby |
| 937 | */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 938 | static int sgtl5000_set_bias_level(struct snd_soc_component *component, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 939 | enum snd_soc_bias_level level) |
| 940 | { |
Mark Brown | 27a4b3f | 2018-02-16 15:29:19 +0000 | [diff] [blame] | 941 | struct sgtl5000_priv *sgtl = snd_soc_component_get_drvdata(component); |
Fabio Estevam | a899297 | 2018-02-16 11:58:54 -0200 | [diff] [blame] | 942 | int ret; |
| 943 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 944 | switch (level) { |
| 945 | case SND_SOC_BIAS_ON: |
| 946 | case SND_SOC_BIAS_PREPARE: |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 947 | case SND_SOC_BIAS_STANDBY: |
Fabio Estevam | a899297 | 2018-02-16 11:58:54 -0200 | [diff] [blame] | 948 | regcache_cache_only(sgtl->regmap, false); |
| 949 | ret = regcache_sync(sgtl->regmap); |
| 950 | if (ret) { |
| 951 | regcache_cache_only(sgtl->regmap, true); |
| 952 | return ret; |
| 953 | } |
| 954 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 955 | snd_soc_component_update_bits(component, SGTL5000_CHIP_ANA_POWER, |
Eric Nelson | 8419caa | 2016-06-07 01:14:52 +0200 | [diff] [blame] | 956 | SGTL5000_REFTOP_POWERUP, |
| 957 | SGTL5000_REFTOP_POWERUP); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 958 | break; |
| 959 | case SND_SOC_BIAS_OFF: |
Fabio Estevam | a899297 | 2018-02-16 11:58:54 -0200 | [diff] [blame] | 960 | regcache_cache_only(sgtl->regmap, true); |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 961 | snd_soc_component_update_bits(component, SGTL5000_CHIP_ANA_POWER, |
Eric Nelson | 8419caa | 2016-06-07 01:14:52 +0200 | [diff] [blame] | 962 | SGTL5000_REFTOP_POWERUP, 0); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 963 | break; |
| 964 | } |
| 965 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 966 | return 0; |
| 967 | } |
| 968 | |
| 969 | #define SGTL5000_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\ |
| 970 | SNDRV_PCM_FMTBIT_S20_3LE |\ |
| 971 | SNDRV_PCM_FMTBIT_S24_LE |\ |
| 972 | SNDRV_PCM_FMTBIT_S32_LE) |
| 973 | |
Lars-Peter Clausen | 85e7652 | 2011-11-23 11:40:40 +0100 | [diff] [blame] | 974 | static const struct snd_soc_dai_ops sgtl5000_ops = { |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 975 | .hw_params = sgtl5000_pcm_hw_params, |
| 976 | .digital_mute = sgtl5000_digital_mute, |
| 977 | .set_fmt = sgtl5000_set_dai_fmt, |
| 978 | .set_sysclk = sgtl5000_set_dai_sysclk, |
| 979 | }; |
| 980 | |
| 981 | static struct snd_soc_dai_driver sgtl5000_dai = { |
| 982 | .name = "sgtl5000", |
| 983 | .playback = { |
| 984 | .stream_name = "Playback", |
| 985 | .channels_min = 1, |
| 986 | .channels_max = 2, |
| 987 | /* |
| 988 | * only support 8~48K + 96K, |
| 989 | * TODO modify hw_param to support more |
| 990 | */ |
| 991 | .rates = SNDRV_PCM_RATE_8000_48000 | SNDRV_PCM_RATE_96000, |
| 992 | .formats = SGTL5000_FORMATS, |
| 993 | }, |
| 994 | .capture = { |
| 995 | .stream_name = "Capture", |
| 996 | .channels_min = 1, |
| 997 | .channels_max = 2, |
| 998 | .rates = SNDRV_PCM_RATE_8000_48000 | SNDRV_PCM_RATE_96000, |
| 999 | .formats = SGTL5000_FORMATS, |
| 1000 | }, |
| 1001 | .ops = &sgtl5000_ops, |
| 1002 | .symmetric_rates = 1, |
| 1003 | }; |
| 1004 | |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 1005 | static bool sgtl5000_volatile(struct device *dev, unsigned int reg) |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1006 | { |
| 1007 | switch (reg) { |
| 1008 | case SGTL5000_CHIP_ID: |
| 1009 | case SGTL5000_CHIP_ADCDAC_CTRL: |
| 1010 | case SGTL5000_CHIP_ANA_STATUS: |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 1011 | return true; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1012 | } |
| 1013 | |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 1014 | return false; |
| 1015 | } |
| 1016 | |
| 1017 | static bool sgtl5000_readable(struct device *dev, unsigned int reg) |
| 1018 | { |
| 1019 | switch (reg) { |
| 1020 | case SGTL5000_CHIP_ID: |
| 1021 | case SGTL5000_CHIP_DIG_POWER: |
| 1022 | case SGTL5000_CHIP_CLK_CTRL: |
| 1023 | case SGTL5000_CHIP_I2S_CTRL: |
| 1024 | case SGTL5000_CHIP_SSS_CTRL: |
| 1025 | case SGTL5000_CHIP_ADCDAC_CTRL: |
| 1026 | case SGTL5000_CHIP_DAC_VOL: |
| 1027 | case SGTL5000_CHIP_PAD_STRENGTH: |
| 1028 | case SGTL5000_CHIP_ANA_ADC_CTRL: |
| 1029 | case SGTL5000_CHIP_ANA_HP_CTRL: |
| 1030 | case SGTL5000_CHIP_ANA_CTRL: |
| 1031 | case SGTL5000_CHIP_LINREG_CTRL: |
| 1032 | case SGTL5000_CHIP_REF_CTRL: |
| 1033 | case SGTL5000_CHIP_MIC_CTRL: |
| 1034 | case SGTL5000_CHIP_LINE_OUT_CTRL: |
| 1035 | case SGTL5000_CHIP_LINE_OUT_VOL: |
| 1036 | case SGTL5000_CHIP_ANA_POWER: |
| 1037 | case SGTL5000_CHIP_PLL_CTRL: |
| 1038 | case SGTL5000_CHIP_CLK_TOP_CTRL: |
| 1039 | case SGTL5000_CHIP_ANA_STATUS: |
| 1040 | case SGTL5000_CHIP_SHORT_CTRL: |
| 1041 | case SGTL5000_CHIP_ANA_TEST2: |
| 1042 | case SGTL5000_DAP_CTRL: |
| 1043 | case SGTL5000_DAP_PEQ: |
| 1044 | case SGTL5000_DAP_BASS_ENHANCE: |
| 1045 | case SGTL5000_DAP_BASS_ENHANCE_CTRL: |
| 1046 | case SGTL5000_DAP_AUDIO_EQ: |
| 1047 | case SGTL5000_DAP_SURROUND: |
| 1048 | case SGTL5000_DAP_FLT_COEF_ACCESS: |
| 1049 | case SGTL5000_DAP_COEF_WR_B0_MSB: |
| 1050 | case SGTL5000_DAP_COEF_WR_B0_LSB: |
| 1051 | case SGTL5000_DAP_EQ_BASS_BAND0: |
| 1052 | case SGTL5000_DAP_EQ_BASS_BAND1: |
| 1053 | case SGTL5000_DAP_EQ_BASS_BAND2: |
| 1054 | case SGTL5000_DAP_EQ_BASS_BAND3: |
| 1055 | case SGTL5000_DAP_EQ_BASS_BAND4: |
| 1056 | case SGTL5000_DAP_MAIN_CHAN: |
| 1057 | case SGTL5000_DAP_MIX_CHAN: |
| 1058 | case SGTL5000_DAP_AVC_CTRL: |
| 1059 | case SGTL5000_DAP_AVC_THRESHOLD: |
| 1060 | case SGTL5000_DAP_AVC_ATTACK: |
| 1061 | case SGTL5000_DAP_AVC_DECAY: |
| 1062 | case SGTL5000_DAP_COEF_WR_B1_MSB: |
| 1063 | case SGTL5000_DAP_COEF_WR_B1_LSB: |
| 1064 | case SGTL5000_DAP_COEF_WR_B2_MSB: |
| 1065 | case SGTL5000_DAP_COEF_WR_B2_LSB: |
| 1066 | case SGTL5000_DAP_COEF_WR_A1_MSB: |
| 1067 | case SGTL5000_DAP_COEF_WR_A1_LSB: |
| 1068 | case SGTL5000_DAP_COEF_WR_A2_MSB: |
| 1069 | case SGTL5000_DAP_COEF_WR_A2_LSB: |
| 1070 | return true; |
| 1071 | |
| 1072 | default: |
| 1073 | return false; |
| 1074 | } |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1075 | } |
| 1076 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1077 | /* |
Alexander Stein | 1f39d93 | 2015-04-16 14:51:57 +0200 | [diff] [blame] | 1078 | * This precalculated table contains all (vag_val * 100 / lo_calcntrl) results |
| 1079 | * to select an appropriate lo_vol_* in SGTL5000_CHIP_LINE_OUT_VOL |
| 1080 | * The calculatation was done for all possible register values which |
| 1081 | * is the array index and the following formula: 10^((idx−15)/40) * 100 |
| 1082 | */ |
| 1083 | static const u8 vol_quot_table[] = { |
| 1084 | 42, 45, 47, 50, 53, 56, 60, 63, |
| 1085 | 67, 71, 75, 79, 84, 89, 94, 100, |
| 1086 | 106, 112, 119, 126, 133, 141, 150, 158, |
| 1087 | 168, 178, 188, 200, 211, 224, 237, 251 |
| 1088 | }; |
| 1089 | |
| 1090 | /* |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1091 | * sgtl5000 has 3 internal power supplies: |
| 1092 | * 1. VAG, normally set to vdda/2 |
Fabio Estevam | 7f6d75d | 2014-10-07 10:50:56 -0300 | [diff] [blame] | 1093 | * 2. charge pump, set to different value |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1094 | * according to voltage of vdda and vddio |
| 1095 | * 3. line out VAG, normally set to vddio/2 |
| 1096 | * |
| 1097 | * and should be set according to: |
| 1098 | * 1. vddd provided by external or not |
| 1099 | * 2. vdda and vddio voltage value. > 3.1v or not |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1100 | */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1101 | static int sgtl5000_set_power_regs(struct snd_soc_component *component) |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1102 | { |
| 1103 | int vddd; |
| 1104 | int vdda; |
| 1105 | int vddio; |
| 1106 | u16 ana_pwr; |
| 1107 | u16 lreg_ctrl; |
| 1108 | int vag; |
Alexander Stein | d2b7c2a | 2015-04-16 14:51:56 +0200 | [diff] [blame] | 1109 | int lo_vag; |
Alexander Stein | 1f39d93 | 2015-04-16 14:51:57 +0200 | [diff] [blame] | 1110 | int vol_quot; |
| 1111 | int lo_vol; |
| 1112 | size_t i; |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1113 | struct sgtl5000_priv *sgtl5000 = snd_soc_component_get_drvdata(component); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1114 | |
| 1115 | vdda = regulator_get_voltage(sgtl5000->supplies[VDDA].consumer); |
| 1116 | vddio = regulator_get_voltage(sgtl5000->supplies[VDDIO].consumer); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1117 | vddd = (sgtl5000->num_supplies > VDDD) |
| 1118 | ? regulator_get_voltage(sgtl5000->supplies[VDDD].consumer) |
| 1119 | : LDO_VOLTAGE; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1120 | |
| 1121 | vdda = vdda / 1000; |
| 1122 | vddio = vddio / 1000; |
| 1123 | vddd = vddd / 1000; |
| 1124 | |
| 1125 | if (vdda <= 0 || vddio <= 0 || vddd < 0) { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1126 | dev_err(component->dev, "regulator voltage not set correctly\n"); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1127 | |
| 1128 | return -EINVAL; |
| 1129 | } |
| 1130 | |
| 1131 | /* according to datasheet, maximum voltage of supplies */ |
| 1132 | if (vdda > 3600 || vddio > 3600 || vddd > 1980) { |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1133 | dev_err(component->dev, |
Fabio Estevam | cf1ee98 | 2011-12-28 09:55:15 -0200 | [diff] [blame] | 1134 | "exceed max voltage vdda %dmV vddio %dmV vddd %dmV\n", |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1135 | vdda, vddio, vddd); |
| 1136 | |
| 1137 | return -EINVAL; |
| 1138 | } |
| 1139 | |
| 1140 | /* reset value */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1141 | ana_pwr = snd_soc_component_read32(component, SGTL5000_CHIP_ANA_POWER); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1142 | ana_pwr |= SGTL5000_DAC_STEREO | |
| 1143 | SGTL5000_ADC_STEREO | |
| 1144 | SGTL5000_REFTOP_POWERUP; |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1145 | lreg_ctrl = snd_soc_component_read32(component, SGTL5000_CHIP_LINREG_CTRL); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1146 | |
| 1147 | if (vddio < 3100 && vdda < 3100) { |
| 1148 | /* enable internal oscillator used for charge pump */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1149 | snd_soc_component_update_bits(component, SGTL5000_CHIP_CLK_TOP_CTRL, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1150 | SGTL5000_INT_OSC_EN, |
| 1151 | SGTL5000_INT_OSC_EN); |
| 1152 | /* Enable VDDC charge pump */ |
| 1153 | ana_pwr |= SGTL5000_VDDC_CHRGPMP_POWERUP; |
| 1154 | } else if (vddio >= 3100 && vdda >= 3100) { |
Eric Nelson | c7d910b | 2015-02-27 08:06:45 -0700 | [diff] [blame] | 1155 | ana_pwr &= ~SGTL5000_VDDC_CHRGPMP_POWERUP; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1156 | /* VDDC use VDDIO rail */ |
| 1157 | lreg_ctrl |= SGTL5000_VDDC_ASSN_OVRD; |
| 1158 | lreg_ctrl |= SGTL5000_VDDC_MAN_ASSN_VDDIO << |
| 1159 | SGTL5000_VDDC_MAN_ASSN_SHIFT; |
| 1160 | } |
| 1161 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1162 | snd_soc_component_write(component, SGTL5000_CHIP_LINREG_CTRL, lreg_ctrl); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1163 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1164 | snd_soc_component_write(component, SGTL5000_CHIP_ANA_POWER, ana_pwr); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1165 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1166 | /* |
| 1167 | * set ADC/DAC VAG to vdda / 2, |
| 1168 | * should stay in range (0.8v, 1.575v) |
| 1169 | */ |
| 1170 | vag = vdda / 2; |
| 1171 | if (vag <= SGTL5000_ANA_GND_BASE) |
| 1172 | vag = 0; |
| 1173 | else if (vag >= SGTL5000_ANA_GND_BASE + SGTL5000_ANA_GND_STP * |
| 1174 | (SGTL5000_ANA_GND_MASK >> SGTL5000_ANA_GND_SHIFT)) |
| 1175 | vag = SGTL5000_ANA_GND_MASK >> SGTL5000_ANA_GND_SHIFT; |
| 1176 | else |
| 1177 | vag = (vag - SGTL5000_ANA_GND_BASE) / SGTL5000_ANA_GND_STP; |
| 1178 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1179 | snd_soc_component_update_bits(component, SGTL5000_CHIP_REF_CTRL, |
Axel Lin | 33cb92c | 2011-10-21 09:54:43 +0800 | [diff] [blame] | 1180 | SGTL5000_ANA_GND_MASK, vag << SGTL5000_ANA_GND_SHIFT); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1181 | |
| 1182 | /* set line out VAG to vddio / 2, in range (0.8v, 1.675v) */ |
Alexander Stein | d2b7c2a | 2015-04-16 14:51:56 +0200 | [diff] [blame] | 1183 | lo_vag = vddio / 2; |
| 1184 | if (lo_vag <= SGTL5000_LINE_OUT_GND_BASE) |
| 1185 | lo_vag = 0; |
| 1186 | else if (lo_vag >= SGTL5000_LINE_OUT_GND_BASE + |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1187 | SGTL5000_LINE_OUT_GND_STP * SGTL5000_LINE_OUT_GND_MAX) |
Alexander Stein | d2b7c2a | 2015-04-16 14:51:56 +0200 | [diff] [blame] | 1188 | lo_vag = SGTL5000_LINE_OUT_GND_MAX; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1189 | else |
Alexander Stein | d2b7c2a | 2015-04-16 14:51:56 +0200 | [diff] [blame] | 1190 | lo_vag = (lo_vag - SGTL5000_LINE_OUT_GND_BASE) / |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1191 | SGTL5000_LINE_OUT_GND_STP; |
| 1192 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1193 | snd_soc_component_update_bits(component, SGTL5000_CHIP_LINE_OUT_CTRL, |
Axel Lin | 33cb92c | 2011-10-21 09:54:43 +0800 | [diff] [blame] | 1194 | SGTL5000_LINE_OUT_CURRENT_MASK | |
| 1195 | SGTL5000_LINE_OUT_GND_MASK, |
Alexander Stein | d2b7c2a | 2015-04-16 14:51:56 +0200 | [diff] [blame] | 1196 | lo_vag << SGTL5000_LINE_OUT_GND_SHIFT | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1197 | SGTL5000_LINE_OUT_CURRENT_360u << |
| 1198 | SGTL5000_LINE_OUT_CURRENT_SHIFT); |
| 1199 | |
Alexander Stein | 1f39d93 | 2015-04-16 14:51:57 +0200 | [diff] [blame] | 1200 | /* |
| 1201 | * Set lineout output level in range (0..31) |
| 1202 | * the same value is used for right and left channel |
| 1203 | * |
| 1204 | * Searching for a suitable index solving this formula: |
| 1205 | * idx = 40 * log10(vag_val / lo_cagcntrl) + 15 |
| 1206 | */ |
| 1207 | vol_quot = (vag * 100) / lo_vag; |
| 1208 | lo_vol = 0; |
| 1209 | for (i = 0; i < ARRAY_SIZE(vol_quot_table); i++) { |
| 1210 | if (vol_quot >= vol_quot_table[i]) |
| 1211 | lo_vol = i; |
| 1212 | else |
| 1213 | break; |
| 1214 | } |
| 1215 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1216 | snd_soc_component_update_bits(component, SGTL5000_CHIP_LINE_OUT_VOL, |
Alexander Stein | 1f39d93 | 2015-04-16 14:51:57 +0200 | [diff] [blame] | 1217 | SGTL5000_LINE_OUT_VOL_RIGHT_MASK | |
| 1218 | SGTL5000_LINE_OUT_VOL_LEFT_MASK, |
| 1219 | lo_vol << SGTL5000_LINE_OUT_VOL_RIGHT_SHIFT | |
| 1220 | lo_vol << SGTL5000_LINE_OUT_VOL_LEFT_SHIFT); |
| 1221 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1222 | return 0; |
| 1223 | } |
| 1224 | |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1225 | static int sgtl5000_enable_regulators(struct i2c_client *client) |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1226 | { |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1227 | int ret; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1228 | int i; |
| 1229 | int external_vddd = 0; |
Shawn Guo | 11db0da | 2013-12-13 14:43:03 +0800 | [diff] [blame] | 1230 | struct regulator *vddd; |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1231 | struct sgtl5000_priv *sgtl5000 = i2c_get_clientdata(client); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1232 | |
| 1233 | for (i = 0; i < ARRAY_SIZE(sgtl5000->supplies); i++) |
| 1234 | sgtl5000->supplies[i].supply = supply_names[i]; |
| 1235 | |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1236 | vddd = regulator_get_optional(&client->dev, "VDDD"); |
| 1237 | if (IS_ERR(vddd)) { |
| 1238 | /* See if it's just not registered yet */ |
| 1239 | if (PTR_ERR(vddd) == -EPROBE_DEFER) |
| 1240 | return -EPROBE_DEFER; |
| 1241 | } else { |
| 1242 | external_vddd = 1; |
| 1243 | regulator_put(vddd); |
Shawn Guo | 11db0da | 2013-12-13 14:43:03 +0800 | [diff] [blame] | 1244 | } |
| 1245 | |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1246 | sgtl5000->num_supplies = ARRAY_SIZE(sgtl5000->supplies) |
| 1247 | - 1 + external_vddd; |
| 1248 | ret = regulator_bulk_get(&client->dev, sgtl5000->num_supplies, |
Shawn Guo | 11db0da | 2013-12-13 14:43:03 +0800 | [diff] [blame] | 1249 | sgtl5000->supplies); |
| 1250 | if (ret) |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1251 | return ret; |
Shawn Guo | 11db0da | 2013-12-13 14:43:03 +0800 | [diff] [blame] | 1252 | |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1253 | ret = regulator_bulk_enable(sgtl5000->num_supplies, |
| 1254 | sgtl5000->supplies); |
| 1255 | if (!ret) |
| 1256 | usleep_range(10, 20); |
| 1257 | else |
| 1258 | regulator_bulk_free(sgtl5000->num_supplies, |
| 1259 | sgtl5000->supplies); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1260 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1261 | return ret; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1262 | } |
| 1263 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1264 | static int sgtl5000_probe(struct snd_soc_component *component) |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1265 | { |
| 1266 | int ret; |
Fabio Estevam | 570c70a | 2017-04-05 11:32:34 -0300 | [diff] [blame] | 1267 | u16 reg; |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1268 | struct sgtl5000_priv *sgtl5000 = snd_soc_component_get_drvdata(component); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1269 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1270 | /* power up sgtl5000 */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1271 | ret = sgtl5000_set_power_regs(component); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1272 | if (ret) |
| 1273 | goto err; |
| 1274 | |
| 1275 | /* enable small pop, introduce 400ms delay in turning off */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1276 | snd_soc_component_update_bits(component, SGTL5000_CHIP_REF_CTRL, |
Fabio Estevam | c251ea7 | 2014-11-14 02:14:47 -0200 | [diff] [blame] | 1277 | SGTL5000_SMALL_POP, 1); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1278 | |
| 1279 | /* disable short cut detector */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1280 | snd_soc_component_write(component, SGTL5000_CHIP_SHORT_CTRL, 0); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1281 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1282 | snd_soc_component_write(component, SGTL5000_CHIP_DIG_POWER, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1283 | SGTL5000_ADC_EN | SGTL5000_DAC_EN); |
| 1284 | |
| 1285 | /* enable dac volume ramp by default */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1286 | snd_soc_component_write(component, SGTL5000_CHIP_ADCDAC_CTRL, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1287 | SGTL5000_DAC_VOL_RAMP_EN | |
| 1288 | SGTL5000_DAC_MUTE_RIGHT | |
| 1289 | SGTL5000_DAC_MUTE_LEFT); |
| 1290 | |
Fabio Estevam | 570c70a | 2017-04-05 11:32:34 -0300 | [diff] [blame] | 1291 | reg = ((sgtl5000->lrclk_strength) << SGTL5000_PAD_I2S_LRCLK_SHIFT | 0x5f); |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1292 | snd_soc_component_write(component, SGTL5000_CHIP_PAD_STRENGTH, reg); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1293 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1294 | snd_soc_component_write(component, SGTL5000_CHIP_ANA_CTRL, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1295 | SGTL5000_HP_ZCD_EN | |
| 1296 | SGTL5000_ADC_ZCD_EN); |
| 1297 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1298 | snd_soc_component_update_bits(component, SGTL5000_CHIP_MIC_CTRL, |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 1299 | SGTL5000_BIAS_R_MASK, |
| 1300 | sgtl5000->micbias_resistor << SGTL5000_BIAS_R_SHIFT); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1301 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1302 | snd_soc_component_update_bits(component, SGTL5000_CHIP_MIC_CTRL, |
Gianluca Renzi | e256da8 | 2015-09-25 21:33:41 +0200 | [diff] [blame] | 1303 | SGTL5000_BIAS_VOLT_MASK, |
| 1304 | sgtl5000->micbias_voltage << SGTL5000_BIAS_VOLT_SHIFT); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1305 | /* |
| 1306 | * disable DAP |
| 1307 | * TODO: |
| 1308 | * Enable DAP in kcontrol and dapm. |
| 1309 | */ |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1310 | snd_soc_component_write(component, SGTL5000_DAP_CTRL, 0); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1311 | |
Michal Oleszczyk | c5489f9 | 2018-02-02 13:10:29 +0100 | [diff] [blame] | 1312 | /* Unmute DAC after start */ |
Mark Brown | 58fadc1 | 2018-02-14 15:39:30 +0000 | [diff] [blame] | 1313 | snd_soc_component_update_bits(component, SGTL5000_CHIP_ADCDAC_CTRL, |
Michal Oleszczyk | c5489f9 | 2018-02-02 13:10:29 +0100 | [diff] [blame] | 1314 | SGTL5000_DAC_MUTE_LEFT | SGTL5000_DAC_MUTE_RIGHT, 0); |
| 1315 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1316 | return 0; |
| 1317 | |
| 1318 | err: |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1319 | return ret; |
| 1320 | } |
| 1321 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1322 | static const struct snd_soc_component_driver sgtl5000_driver = { |
| 1323 | .probe = sgtl5000_probe, |
| 1324 | .set_bias_level = sgtl5000_set_bias_level, |
| 1325 | .controls = sgtl5000_snd_controls, |
| 1326 | .num_controls = ARRAY_SIZE(sgtl5000_snd_controls), |
| 1327 | .dapm_widgets = sgtl5000_dapm_widgets, |
| 1328 | .num_dapm_widgets = ARRAY_SIZE(sgtl5000_dapm_widgets), |
| 1329 | .dapm_routes = sgtl5000_dapm_routes, |
| 1330 | .num_dapm_routes = ARRAY_SIZE(sgtl5000_dapm_routes), |
| 1331 | .suspend_bias_off = 1, |
| 1332 | .idle_bias_on = 1, |
| 1333 | .use_pmdown_time = 1, |
| 1334 | .endianness = 1, |
| 1335 | .non_legacy_dai_naming = 1, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1336 | }; |
| 1337 | |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 1338 | static const struct regmap_config sgtl5000_regmap = { |
| 1339 | .reg_bits = 16, |
| 1340 | .val_bits = 16, |
Fabio Estevam | cb23e85 | 2013-07-04 20:01:01 -0300 | [diff] [blame] | 1341 | .reg_stride = 2, |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 1342 | |
| 1343 | .max_register = SGTL5000_MAX_REG_OFFSET, |
| 1344 | .volatile_reg = sgtl5000_volatile, |
| 1345 | .readable_reg = sgtl5000_readable, |
| 1346 | |
| 1347 | .cache_type = REGCACHE_RBTREE, |
| 1348 | .reg_defaults = sgtl5000_reg_defaults, |
| 1349 | .num_reg_defaults = ARRAY_SIZE(sgtl5000_reg_defaults), |
| 1350 | }; |
| 1351 | |
Fabio Estevam | af8ee11 | 2013-05-09 21:15:47 -0300 | [diff] [blame] | 1352 | /* |
| 1353 | * Write all the default values from sgtl5000_reg_defaults[] array into the |
| 1354 | * sgtl5000 registers, to make sure we always start with the sane registers |
| 1355 | * values as stated in the datasheet. |
| 1356 | * |
| 1357 | * Since sgtl5000 does not have a reset line, nor a reset command in software, |
| 1358 | * we follow this approach to guarantee we always start from the default values |
| 1359 | * and avoid problems like, not being able to probe after an audio playback |
| 1360 | * followed by a system reset or a 'reboot' command in Linux |
| 1361 | */ |
Eric Nelson | f219b16 | 2016-06-07 01:14:49 +0200 | [diff] [blame] | 1362 | static void sgtl5000_fill_defaults(struct i2c_client *client) |
Fabio Estevam | af8ee11 | 2013-05-09 21:15:47 -0300 | [diff] [blame] | 1363 | { |
Eric Nelson | f219b16 | 2016-06-07 01:14:49 +0200 | [diff] [blame] | 1364 | struct sgtl5000_priv *sgtl5000 = i2c_get_clientdata(client); |
Fabio Estevam | af8ee11 | 2013-05-09 21:15:47 -0300 | [diff] [blame] | 1365 | int i, ret, val, index; |
| 1366 | |
| 1367 | for (i = 0; i < ARRAY_SIZE(sgtl5000_reg_defaults); i++) { |
| 1368 | val = sgtl5000_reg_defaults[i].def; |
| 1369 | index = sgtl5000_reg_defaults[i].reg; |
| 1370 | ret = regmap_write(sgtl5000->regmap, index, val); |
| 1371 | if (ret) |
Eric Nelson | f219b16 | 2016-06-07 01:14:49 +0200 | [diff] [blame] | 1372 | dev_err(&client->dev, |
| 1373 | "%s: error %d setting reg 0x%02x to 0x%04x\n", |
| 1374 | __func__, ret, index, val); |
Fabio Estevam | af8ee11 | 2013-05-09 21:15:47 -0300 | [diff] [blame] | 1375 | } |
Fabio Estevam | af8ee11 | 2013-05-09 21:15:47 -0300 | [diff] [blame] | 1376 | } |
| 1377 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 1378 | static int sgtl5000_i2c_probe(struct i2c_client *client, |
| 1379 | const struct i2c_device_id *id) |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1380 | { |
| 1381 | struct sgtl5000_priv *sgtl5000; |
Fabio Estevam | b871f1a | 2013-05-09 21:15:46 -0300 | [diff] [blame] | 1382 | int ret, reg, rev; |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 1383 | struct device_node *np = client->dev.of_node; |
| 1384 | u32 value; |
Eric Nelson | 3d632cc | 2016-06-07 01:14:50 +0200 | [diff] [blame] | 1385 | u16 ana_pwr; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1386 | |
Fabio Estevam | 3f7256f | 2014-10-24 13:01:25 -0200 | [diff] [blame] | 1387 | sgtl5000 = devm_kzalloc(&client->dev, sizeof(*sgtl5000), GFP_KERNEL); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1388 | if (!sgtl5000) |
| 1389 | return -ENOMEM; |
| 1390 | |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1391 | i2c_set_clientdata(client, sgtl5000); |
| 1392 | |
| 1393 | ret = sgtl5000_enable_regulators(client); |
| 1394 | if (ret) |
| 1395 | return ret; |
| 1396 | |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 1397 | sgtl5000->regmap = devm_regmap_init_i2c(client, &sgtl5000_regmap); |
| 1398 | if (IS_ERR(sgtl5000->regmap)) { |
| 1399 | ret = PTR_ERR(sgtl5000->regmap); |
| 1400 | dev_err(&client->dev, "Failed to allocate regmap: %d\n", ret); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1401 | goto disable_regs; |
Fabio Estevam | e5d80e8 | 2013-05-04 15:39:34 -0300 | [diff] [blame] | 1402 | } |
| 1403 | |
Fabio Estevam | 9e13f34 | 2013-06-09 22:07:46 -0300 | [diff] [blame] | 1404 | sgtl5000->mclk = devm_clk_get(&client->dev, NULL); |
| 1405 | if (IS_ERR(sgtl5000->mclk)) { |
| 1406 | ret = PTR_ERR(sgtl5000->mclk); |
Shawn Guo | 46a5905 | 2013-07-16 09:17:27 +0800 | [diff] [blame] | 1407 | /* Defer the probe to see if the clk will be provided later */ |
| 1408 | if (ret == -ENOENT) |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1409 | ret = -EPROBE_DEFER; |
Fabio Estevam | 8af5748 | 2018-01-17 13:48:54 -0200 | [diff] [blame] | 1410 | |
| 1411 | if (ret != -EPROBE_DEFER) |
| 1412 | dev_err(&client->dev, "Failed to get mclock: %d\n", |
| 1413 | ret); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1414 | goto disable_regs; |
Fabio Estevam | 9e13f34 | 2013-06-09 22:07:46 -0300 | [diff] [blame] | 1415 | } |
| 1416 | |
| 1417 | ret = clk_prepare_enable(sgtl5000->mclk); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1418 | if (ret) { |
| 1419 | dev_err(&client->dev, "Error enabling clock %d\n", ret); |
| 1420 | goto disable_regs; |
| 1421 | } |
Fabio Estevam | 9e13f34 | 2013-06-09 22:07:46 -0300 | [diff] [blame] | 1422 | |
Eric Nelson | 58cc9c9 | 2015-01-30 14:07:55 -0700 | [diff] [blame] | 1423 | /* Need 8 clocks before I2C accesses */ |
| 1424 | udelay(1); |
| 1425 | |
Fabio Estevam | b871f1a | 2013-05-09 21:15:46 -0300 | [diff] [blame] | 1426 | /* read chip information */ |
| 1427 | ret = regmap_read(sgtl5000->regmap, SGTL5000_CHIP_ID, ®); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1428 | if (ret) { |
| 1429 | dev_err(&client->dev, "Error reading chip id %d\n", ret); |
Fabio Estevam | 9e13f34 | 2013-06-09 22:07:46 -0300 | [diff] [blame] | 1430 | goto disable_clk; |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1431 | } |
Fabio Estevam | b871f1a | 2013-05-09 21:15:46 -0300 | [diff] [blame] | 1432 | |
| 1433 | if (((reg & SGTL5000_PARTID_MASK) >> SGTL5000_PARTID_SHIFT) != |
| 1434 | SGTL5000_PARTID_PART_ID) { |
| 1435 | dev_err(&client->dev, |
| 1436 | "Device with ID register %x is not a sgtl5000\n", reg); |
Fabio Estevam | 9e13f34 | 2013-06-09 22:07:46 -0300 | [diff] [blame] | 1437 | ret = -ENODEV; |
| 1438 | goto disable_clk; |
Fabio Estevam | b871f1a | 2013-05-09 21:15:46 -0300 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | rev = (reg & SGTL5000_REVID_MASK) >> SGTL5000_REVID_SHIFT; |
| 1442 | dev_info(&client->dev, "sgtl5000 revision 0x%x\n", rev); |
Shawn Guo | 252e91f | 2013-12-13 14:43:02 +0800 | [diff] [blame] | 1443 | sgtl5000->revision = rev; |
Fabio Estevam | b871f1a | 2013-05-09 21:15:46 -0300 | [diff] [blame] | 1444 | |
Eric Nelson | 08dea16 | 2016-06-07 01:14:51 +0200 | [diff] [blame] | 1445 | /* reconfigure the clocks in case we're using the PLL */ |
| 1446 | ret = regmap_write(sgtl5000->regmap, |
| 1447 | SGTL5000_CHIP_CLK_CTRL, |
| 1448 | SGTL5000_CHIP_CLK_CTRL_DEFAULT); |
| 1449 | if (ret) |
| 1450 | dev_err(&client->dev, |
| 1451 | "Error %d initializing CHIP_CLK_CTRL\n", ret); |
| 1452 | |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1453 | /* Follow section 2.2.1.1 of AN3663 */ |
Eric Nelson | 3d632cc | 2016-06-07 01:14:50 +0200 | [diff] [blame] | 1454 | ana_pwr = SGTL5000_ANA_POWER_DEFAULT; |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1455 | if (sgtl5000->num_supplies <= VDDD) { |
| 1456 | /* internal VDDD at 1.2V */ |
Eric Nelson | 3d632cc | 2016-06-07 01:14:50 +0200 | [diff] [blame] | 1457 | ret = regmap_update_bits(sgtl5000->regmap, |
| 1458 | SGTL5000_CHIP_LINREG_CTRL, |
| 1459 | SGTL5000_LINREG_VDDD_MASK, |
| 1460 | LINREG_VDDD); |
| 1461 | if (ret) |
| 1462 | dev_err(&client->dev, |
| 1463 | "Error %d setting LINREG_VDDD\n", ret); |
| 1464 | |
| 1465 | ana_pwr |= SGTL5000_LINEREG_D_POWERUP; |
| 1466 | dev_info(&client->dev, |
Fabio Estevam | da689e0 | 2018-01-18 09:45:28 -0200 | [diff] [blame] | 1467 | "Using internal LDO instead of VDDD: check ER1 erratum\n"); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1468 | } else { |
| 1469 | /* using external LDO for VDDD |
| 1470 | * Clear startup powerup and simple powerup |
| 1471 | * bits to save power |
| 1472 | */ |
Eric Nelson | 3d632cc | 2016-06-07 01:14:50 +0200 | [diff] [blame] | 1473 | ana_pwr &= ~(SGTL5000_STARTUP_POWERUP |
| 1474 | | SGTL5000_LINREG_SIMPLE_POWERUP); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1475 | dev_dbg(&client->dev, "Using external VDDD\n"); |
| 1476 | } |
Eric Nelson | 3d632cc | 2016-06-07 01:14:50 +0200 | [diff] [blame] | 1477 | ret = regmap_write(sgtl5000->regmap, SGTL5000_CHIP_ANA_POWER, ana_pwr); |
| 1478 | if (ret) |
| 1479 | dev_err(&client->dev, |
| 1480 | "Error %d setting CHIP_ANA_POWER to %04x\n", |
| 1481 | ret, ana_pwr); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1482 | |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 1483 | if (np) { |
| 1484 | if (!of_property_read_u32(np, |
| 1485 | "micbias-resistor-k-ohms", &value)) { |
| 1486 | switch (value) { |
| 1487 | case SGTL5000_MICBIAS_OFF: |
| 1488 | sgtl5000->micbias_resistor = 0; |
| 1489 | break; |
| 1490 | case SGTL5000_MICBIAS_2K: |
| 1491 | sgtl5000->micbias_resistor = 1; |
| 1492 | break; |
| 1493 | case SGTL5000_MICBIAS_4K: |
| 1494 | sgtl5000->micbias_resistor = 2; |
| 1495 | break; |
| 1496 | case SGTL5000_MICBIAS_8K: |
| 1497 | sgtl5000->micbias_resistor = 3; |
| 1498 | break; |
| 1499 | default: |
| 1500 | sgtl5000->micbias_resistor = 2; |
| 1501 | dev_err(&client->dev, |
| 1502 | "Unsuitable MicBias resistor\n"); |
| 1503 | } |
| 1504 | } else { |
| 1505 | /* default is 4Kohms */ |
| 1506 | sgtl5000->micbias_resistor = 2; |
| 1507 | } |
Jean-Michel Hautbois | 8735779 | 2014-10-14 08:43:12 +0200 | [diff] [blame] | 1508 | if (!of_property_read_u32(np, |
| 1509 | "micbias-voltage-m-volts", &value)) { |
| 1510 | /* 1250mV => 0 */ |
| 1511 | /* steps of 250mV */ |
| 1512 | if ((value >= 1250) && (value <= 3000)) |
| 1513 | sgtl5000->micbias_voltage = (value / 250) - 5; |
| 1514 | else { |
| 1515 | sgtl5000->micbias_voltage = 0; |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 1516 | dev_err(&client->dev, |
Gianluca Renzi | fb97d75 | 2015-09-25 21:33:42 +0200 | [diff] [blame] | 1517 | "Unsuitable MicBias voltage\n"); |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 1518 | } |
| 1519 | } else { |
Jean-Michel Hautbois | 8735779 | 2014-10-14 08:43:12 +0200 | [diff] [blame] | 1520 | sgtl5000->micbias_voltage = 0; |
Jean-Michel Hautbois | bd0593f | 2014-10-14 08:43:11 +0200 | [diff] [blame] | 1521 | } |
| 1522 | } |
| 1523 | |
Fabio Estevam | 570c70a | 2017-04-05 11:32:34 -0300 | [diff] [blame] | 1524 | sgtl5000->lrclk_strength = I2S_LRCLK_STRENGTH_LOW; |
| 1525 | if (!of_property_read_u32(np, "lrclk-strength", &value)) { |
| 1526 | if (value > I2S_LRCLK_STRENGTH_HIGH) |
| 1527 | value = I2S_LRCLK_STRENGTH_LOW; |
| 1528 | sgtl5000->lrclk_strength = value; |
| 1529 | } |
| 1530 | |
Fabio Estevam | af8ee11 | 2013-05-09 21:15:47 -0300 | [diff] [blame] | 1531 | /* Ensure sgtl5000 will start with sane register values */ |
Eric Nelson | f219b16 | 2016-06-07 01:14:49 +0200 | [diff] [blame] | 1532 | sgtl5000_fill_defaults(client); |
Fabio Estevam | af8ee11 | 2013-05-09 21:15:47 -0300 | [diff] [blame] | 1533 | |
Kuninori Morimoto | 2f8b318 | 2018-01-29 04:37:53 +0000 | [diff] [blame] | 1534 | ret = devm_snd_soc_register_component(&client->dev, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1535 | &sgtl5000_driver, &sgtl5000_dai, 1); |
Fabio Estevam | 9e13f34 | 2013-06-09 22:07:46 -0300 | [diff] [blame] | 1536 | if (ret) |
| 1537 | goto disable_clk; |
| 1538 | |
| 1539 | return 0; |
| 1540 | |
| 1541 | disable_clk: |
| 1542 | clk_disable_unprepare(sgtl5000->mclk); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1543 | |
| 1544 | disable_regs: |
| 1545 | regulator_bulk_disable(sgtl5000->num_supplies, sgtl5000->supplies); |
| 1546 | regulator_bulk_free(sgtl5000->num_supplies, sgtl5000->supplies); |
| 1547 | |
Fabio Estevam | 512fa7c | 2011-12-28 11:30:11 -0200 | [diff] [blame] | 1548 | return ret; |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1549 | } |
| 1550 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 1551 | static int sgtl5000_i2c_remove(struct i2c_client *client) |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1552 | { |
Fabio Estevam | 7c647af | 2013-06-10 10:24:41 -0300 | [diff] [blame] | 1553 | struct sgtl5000_priv *sgtl5000 = i2c_get_clientdata(client); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1554 | |
Fabio Estevam | 9e13f34 | 2013-06-09 22:07:46 -0300 | [diff] [blame] | 1555 | clk_disable_unprepare(sgtl5000->mclk); |
Eric Nelson | 940adb2 | 2016-06-07 01:14:48 +0200 | [diff] [blame] | 1556 | regulator_bulk_disable(sgtl5000->num_supplies, sgtl5000->supplies); |
| 1557 | regulator_bulk_free(sgtl5000->num_supplies, sgtl5000->supplies); |
| 1558 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1559 | return 0; |
| 1560 | } |
| 1561 | |
| 1562 | static const struct i2c_device_id sgtl5000_id[] = { |
| 1563 | {"sgtl5000", 0}, |
| 1564 | {}, |
| 1565 | }; |
| 1566 | |
| 1567 | MODULE_DEVICE_TABLE(i2c, sgtl5000_id); |
| 1568 | |
Shawn Guo | 58e4942 | 2011-07-22 00:28:51 +0800 | [diff] [blame] | 1569 | static const struct of_device_id sgtl5000_dt_ids[] = { |
| 1570 | { .compatible = "fsl,sgtl5000", }, |
| 1571 | { /* sentinel */ } |
| 1572 | }; |
Axel Lin | 4c54c6d | 2011-08-11 22:19:16 +0800 | [diff] [blame] | 1573 | MODULE_DEVICE_TABLE(of, sgtl5000_dt_ids); |
Shawn Guo | 58e4942 | 2011-07-22 00:28:51 +0800 | [diff] [blame] | 1574 | |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1575 | static struct i2c_driver sgtl5000_i2c_driver = { |
| 1576 | .driver = { |
| 1577 | .name = "sgtl5000", |
Shawn Guo | 58e4942 | 2011-07-22 00:28:51 +0800 | [diff] [blame] | 1578 | .of_match_table = sgtl5000_dt_ids, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1579 | }, |
| 1580 | .probe = sgtl5000_i2c_probe, |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 1581 | .remove = sgtl5000_i2c_remove, |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1582 | .id_table = sgtl5000_id, |
| 1583 | }; |
| 1584 | |
Mark Brown | 67d4509 | 2012-04-03 22:35:18 +0100 | [diff] [blame] | 1585 | module_i2c_driver(sgtl5000_i2c_driver); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1586 | |
| 1587 | MODULE_DESCRIPTION("Freescale SGTL5000 ALSA SoC Codec Driver"); |
Zeng Zhaoming | f7cb8a4 | 2012-01-16 15:18:11 +0800 | [diff] [blame] | 1588 | MODULE_AUTHOR("Zeng Zhaoming <zengzm.kernel@gmail.com>"); |
Zeng Zhaoming | 9b34e6c | 2011-02-24 02:08:21 +0800 | [diff] [blame] | 1589 | MODULE_LICENSE("GPL"); |