Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 1 | /* |
| 2 | * CS4270 ALSA SoC (ASoC) codec driver |
| 3 | * |
| 4 | * Author: Timur Tabi <timur@freescale.com> |
| 5 | * |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 6 | * Copyright 2007-2009 Freescale Semiconductor, Inc. This file is licensed |
| 7 | * under the terms of the GNU General Public License version 2. This |
| 8 | * program is licensed "as is" without any warranty of any kind, whether |
| 9 | * express or implied. |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 10 | * |
| 11 | * This is an ASoC device driver for the Cirrus Logic CS4270 codec. |
| 12 | * |
| 13 | * Current features/limitations: |
| 14 | * |
Daniel Mack | b191f63 | 2009-03-08 17:51:52 +0100 | [diff] [blame] | 15 | * - Software mode is supported. Stand-alone mode is not supported. |
| 16 | * - Only I2C is supported, not SPI |
| 17 | * - Support for master and slave mode |
| 18 | * - The machine driver's 'startup' function must call |
| 19 | * cs4270_set_dai_sysclk() with the value of MCLK. |
| 20 | * - Only I2S and left-justified modes are supported |
Daniel Mack | 5e7c034 | 2009-05-06 01:26:01 +0200 | [diff] [blame] | 21 | * - Power management is supported |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 26 | #include <sound/core.h> |
| 27 | #include <sound/soc.h> |
| 28 | #include <sound/initval.h> |
| 29 | #include <linux/i2c.h> |
Daniel Mack | 5e7c034 | 2009-05-06 01:26:01 +0200 | [diff] [blame] | 30 | #include <linux/delay.h> |
Daniel Mack | ffbfd33 | 2009-11-30 17:56:11 +0100 | [diff] [blame] | 31 | #include <linux/regulator/consumer.h> |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 32 | |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 33 | /* |
| 34 | * The codec isn't really big-endian or little-endian, since the I2S |
| 35 | * interface requires data to be sent serially with the MSbit first. |
| 36 | * However, to support BE and LE I2S devices, we specify both here. That |
| 37 | * way, ALSA will always match the bit patterns. |
| 38 | */ |
| 39 | #define CS4270_FORMATS (SNDRV_PCM_FMTBIT_S8 | \ |
| 40 | SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE | \ |
| 41 | SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE | \ |
| 42 | SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE | \ |
| 43 | SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE | \ |
| 44 | SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE) |
| 45 | |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 46 | /* CS4270 registers addresses */ |
| 47 | #define CS4270_CHIPID 0x01 /* Chip ID */ |
| 48 | #define CS4270_PWRCTL 0x02 /* Power Control */ |
| 49 | #define CS4270_MODE 0x03 /* Mode Control */ |
| 50 | #define CS4270_FORMAT 0x04 /* Serial Format, ADC/DAC Control */ |
| 51 | #define CS4270_TRANS 0x05 /* Transition Control */ |
| 52 | #define CS4270_MUTE 0x06 /* Mute Control */ |
| 53 | #define CS4270_VOLA 0x07 /* DAC Channel A Volume Control */ |
| 54 | #define CS4270_VOLB 0x08 /* DAC Channel B Volume Control */ |
| 55 | |
| 56 | #define CS4270_FIRSTREG 0x01 |
| 57 | #define CS4270_LASTREG 0x08 |
| 58 | #define CS4270_NUMREGS (CS4270_LASTREG - CS4270_FIRSTREG + 1) |
Daniel Mack | 80ab881 | 2009-05-05 11:25:00 +0200 | [diff] [blame] | 59 | #define CS4270_I2C_INCR 0x80 |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 60 | |
| 61 | /* Bit masks for the CS4270 registers */ |
| 62 | #define CS4270_CHIPID_ID 0xF0 |
| 63 | #define CS4270_CHIPID_REV 0x0F |
| 64 | #define CS4270_PWRCTL_FREEZE 0x80 |
| 65 | #define CS4270_PWRCTL_PDN_ADC 0x20 |
| 66 | #define CS4270_PWRCTL_PDN_DAC 0x02 |
| 67 | #define CS4270_PWRCTL_PDN 0x01 |
Daniel Mack | 5e7c034 | 2009-05-06 01:26:01 +0200 | [diff] [blame] | 68 | #define CS4270_PWRCTL_PDN_ALL \ |
| 69 | (CS4270_PWRCTL_PDN_ADC | CS4270_PWRCTL_PDN_DAC | CS4270_PWRCTL_PDN) |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 70 | #define CS4270_MODE_SPEED_MASK 0x30 |
| 71 | #define CS4270_MODE_1X 0x00 |
| 72 | #define CS4270_MODE_2X 0x10 |
| 73 | #define CS4270_MODE_4X 0x20 |
| 74 | #define CS4270_MODE_SLAVE 0x30 |
| 75 | #define CS4270_MODE_DIV_MASK 0x0E |
| 76 | #define CS4270_MODE_DIV1 0x00 |
| 77 | #define CS4270_MODE_DIV15 0x02 |
| 78 | #define CS4270_MODE_DIV2 0x04 |
| 79 | #define CS4270_MODE_DIV3 0x06 |
| 80 | #define CS4270_MODE_DIV4 0x08 |
| 81 | #define CS4270_MODE_POPGUARD 0x01 |
| 82 | #define CS4270_FORMAT_FREEZE_A 0x80 |
| 83 | #define CS4270_FORMAT_FREEZE_B 0x40 |
| 84 | #define CS4270_FORMAT_LOOPBACK 0x20 |
| 85 | #define CS4270_FORMAT_DAC_MASK 0x18 |
| 86 | #define CS4270_FORMAT_DAC_LJ 0x00 |
| 87 | #define CS4270_FORMAT_DAC_I2S 0x08 |
| 88 | #define CS4270_FORMAT_DAC_RJ16 0x18 |
| 89 | #define CS4270_FORMAT_DAC_RJ24 0x10 |
| 90 | #define CS4270_FORMAT_ADC_MASK 0x01 |
| 91 | #define CS4270_FORMAT_ADC_LJ 0x00 |
| 92 | #define CS4270_FORMAT_ADC_I2S 0x01 |
| 93 | #define CS4270_TRANS_ONE_VOL 0x80 |
| 94 | #define CS4270_TRANS_SOFT 0x40 |
| 95 | #define CS4270_TRANS_ZERO 0x20 |
| 96 | #define CS4270_TRANS_INV_ADC_A 0x08 |
| 97 | #define CS4270_TRANS_INV_ADC_B 0x10 |
| 98 | #define CS4270_TRANS_INV_DAC_A 0x02 |
| 99 | #define CS4270_TRANS_INV_DAC_B 0x04 |
| 100 | #define CS4270_TRANS_DEEMPH 0x01 |
| 101 | #define CS4270_MUTE_AUTO 0x20 |
| 102 | #define CS4270_MUTE_ADC_A 0x08 |
| 103 | #define CS4270_MUTE_ADC_B 0x10 |
| 104 | #define CS4270_MUTE_POLARITY 0x04 |
| 105 | #define CS4270_MUTE_DAC_A 0x01 |
| 106 | #define CS4270_MUTE_DAC_B 0x02 |
| 107 | |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 108 | /* Power-on default values for the registers |
| 109 | * |
| 110 | * This array contains the power-on default values of the registers, with the |
| 111 | * exception of the "CHIPID" register (01h). The lower four bits of that |
| 112 | * register contain the hardware revision, so it is treated as volatile. |
| 113 | * |
| 114 | * Also note that on the CS4270, the first readable register is 1, but ASoC |
| 115 | * assumes the first register is 0. Therfore, the array must have an entry for |
| 116 | * register 0, but we use cs4270_reg_is_readable() to tell ASoC that it can't |
| 117 | * be read. |
| 118 | */ |
| 119 | static const u8 cs4270_default_reg_cache[CS4270_LASTREG + 1] = { |
| 120 | 0x00, 0x00, 0x00, 0x30, 0x00, 0x60, 0x20, 0x00, 0x00 |
| 121 | }; |
| 122 | |
Daniel Mack | ffbfd33 | 2009-11-30 17:56:11 +0100 | [diff] [blame] | 123 | static const char *supply_names[] = { |
| 124 | "va", "vd", "vlc" |
| 125 | }; |
| 126 | |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 127 | /* Private data for the CS4270 */ |
| 128 | struct cs4270_private { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 129 | enum snd_soc_control_type control_type; |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 130 | unsigned int mclk; /* Input frequency of the MCLK pin */ |
| 131 | unsigned int mode; /* The mode (I2S or left-justified) */ |
Daniel Mack | 4eae080 | 2009-02-25 14:37:21 +0100 | [diff] [blame] | 132 | unsigned int slave_mode; |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 133 | unsigned int manual_mute; |
Daniel Mack | ffbfd33 | 2009-11-30 17:56:11 +0100 | [diff] [blame] | 134 | |
| 135 | /* power domain regulators */ |
| 136 | struct regulator_bulk_data supplies[ARRAY_SIZE(supply_names)]; |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 137 | }; |
| 138 | |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 139 | /** |
| 140 | * struct cs4270_mode_ratios - clock ratio tables |
| 141 | * @ratio: the ratio of MCLK to the sample rate |
| 142 | * @speed_mode: the Speed Mode bits to set in the Mode Control register for |
| 143 | * this ratio |
| 144 | * @mclk: the Ratio Select bits to set in the Mode Control register for this |
| 145 | * ratio |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 146 | * |
| 147 | * The data for this chart is taken from Table 5 of the CS4270 reference |
| 148 | * manual. |
| 149 | * |
| 150 | * This table is used to determine how to program the Mode Control register. |
| 151 | * It is also used by cs4270_set_dai_sysclk() to tell ALSA which sampling |
| 152 | * rates the CS4270 currently supports. |
| 153 | * |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 154 | * @speed_mode is the corresponding bit pattern to be written to the |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 155 | * MODE bits of the Mode Control Register |
| 156 | * |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 157 | * @mclk is the corresponding bit pattern to be wirten to the MCLK bits of |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 158 | * the Mode Control Register. |
| 159 | * |
| 160 | * In situations where a single ratio is represented by multiple speed |
| 161 | * modes, we favor the slowest speed. E.g, for a ratio of 128, we pick |
| 162 | * double-speed instead of quad-speed. However, the CS4270 errata states |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 163 | * that divide-By-1.5 can cause failures, so we avoid that mode where |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 164 | * possible. |
| 165 | * |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 166 | * Errata: There is an errata for the CS4270 where divide-by-1.5 does not |
| 167 | * work if Vd is 3.3V. If this effects you, select the |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 168 | * CONFIG_SND_SOC_CS4270_VD33_ERRATA Kconfig option, and the driver will |
| 169 | * never select any sample rates that require divide-by-1.5. |
| 170 | */ |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 171 | struct cs4270_mode_ratios { |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 172 | unsigned int ratio; |
| 173 | u8 speed_mode; |
| 174 | u8 mclk; |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 175 | }; |
| 176 | |
Timur Tabi | d9fb7fb | 2009-02-02 14:50:45 -0600 | [diff] [blame] | 177 | static struct cs4270_mode_ratios cs4270_mode_ratios[] = { |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 178 | {64, CS4270_MODE_4X, CS4270_MODE_DIV1}, |
| 179 | #ifndef CONFIG_SND_SOC_CS4270_VD33_ERRATA |
| 180 | {96, CS4270_MODE_4X, CS4270_MODE_DIV15}, |
| 181 | #endif |
| 182 | {128, CS4270_MODE_2X, CS4270_MODE_DIV1}, |
| 183 | {192, CS4270_MODE_4X, CS4270_MODE_DIV3}, |
| 184 | {256, CS4270_MODE_1X, CS4270_MODE_DIV1}, |
| 185 | {384, CS4270_MODE_2X, CS4270_MODE_DIV3}, |
| 186 | {512, CS4270_MODE_1X, CS4270_MODE_DIV2}, |
| 187 | {768, CS4270_MODE_1X, CS4270_MODE_DIV3}, |
| 188 | {1024, CS4270_MODE_1X, CS4270_MODE_DIV4} |
| 189 | }; |
| 190 | |
| 191 | /* The number of MCLK/LRCK ratios supported by the CS4270 */ |
| 192 | #define NUM_MCLK_RATIOS ARRAY_SIZE(cs4270_mode_ratios) |
| 193 | |
Dimitris Papastamos | d4754ec | 2011-01-13 12:20:37 +0000 | [diff] [blame] | 194 | static int cs4270_reg_is_readable(struct snd_soc_codec *codec, unsigned int reg) |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 195 | { |
| 196 | return (reg >= CS4270_FIRSTREG) && (reg <= CS4270_LASTREG); |
| 197 | } |
| 198 | |
Dimitris Papastamos | d4754ec | 2011-01-13 12:20:37 +0000 | [diff] [blame] | 199 | static int cs4270_reg_is_volatile(struct snd_soc_codec *codec, unsigned int reg) |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 200 | { |
| 201 | /* Unreadable registers are considered volatile */ |
| 202 | if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG)) |
| 203 | return 1; |
| 204 | |
| 205 | return reg == CS4270_CHIPID; |
| 206 | } |
| 207 | |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 208 | /** |
| 209 | * cs4270_set_dai_sysclk - determine the CS4270 samples rates. |
| 210 | * @codec_dai: the codec DAI |
| 211 | * @clk_id: the clock ID (ignored) |
| 212 | * @freq: the MCLK input frequency |
| 213 | * @dir: the clock direction (ignored) |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 214 | * |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 215 | * This function is used to tell the codec driver what the input MCLK |
| 216 | * frequency is. |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 217 | * |
| 218 | * The value of MCLK is used to determine which sample rates are supported |
| 219 | * by the CS4270. The ratio of MCLK / Fs must be equal to one of nine |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 220 | * supported values - 64, 96, 128, 192, 256, 384, 512, 768, and 1024. |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 221 | * |
| 222 | * This function calculates the nine ratios and determines which ones match |
| 223 | * a standard sample rate. If there's a match, then it is added to the list |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 224 | * of supported sample rates. |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 225 | * |
| 226 | * This function must be called by the machine driver's 'startup' function, |
| 227 | * otherwise the list of supported sample rates will not be available in |
| 228 | * time for ALSA. |
Daniel Mack | 6aababd | 2010-01-15 17:36:48 +0100 | [diff] [blame] | 229 | * |
| 230 | * For setups with variable MCLKs, pass 0 as 'freq' argument. This will cause |
| 231 | * theoretically possible sample rates to be enabled. Call it again with a |
| 232 | * proper value set one the external clock is set (most probably you would do |
| 233 | * that from a machine's driver 'hw_param' hook. |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 234 | */ |
Liam Girdwood | e550e17 | 2008-07-07 16:07:52 +0100 | [diff] [blame] | 235 | static int cs4270_set_dai_sysclk(struct snd_soc_dai *codec_dai, |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 236 | int clk_id, unsigned int freq, int dir) |
| 237 | { |
| 238 | struct snd_soc_codec *codec = codec_dai->codec; |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 239 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 240 | |
| 241 | cs4270->mclk = freq; |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 242 | return 0; |
| 243 | } |
| 244 | |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 245 | /** |
| 246 | * cs4270_set_dai_fmt - configure the codec for the selected audio format |
| 247 | * @codec_dai: the codec DAI |
| 248 | * @format: a SND_SOC_DAIFMT_x value indicating the data format |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 249 | * |
| 250 | * This function takes a bitmask of SND_SOC_DAIFMT_x bits and programs the |
| 251 | * codec accordingly. |
| 252 | * |
| 253 | * Currently, this function only supports SND_SOC_DAIFMT_I2S and |
| 254 | * SND_SOC_DAIFMT_LEFT_J. The CS4270 codec also supports right-justified |
| 255 | * data for playback only, but ASoC currently does not support different |
| 256 | * formats for playback vs. record. |
| 257 | */ |
Liam Girdwood | e550e17 | 2008-07-07 16:07:52 +0100 | [diff] [blame] | 258 | static int cs4270_set_dai_fmt(struct snd_soc_dai *codec_dai, |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 259 | unsigned int format) |
| 260 | { |
| 261 | struct snd_soc_codec *codec = codec_dai->codec; |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 262 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 263 | |
Daniel Mack | 4eae080 | 2009-02-25 14:37:21 +0100 | [diff] [blame] | 264 | /* set DAI format */ |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 265 | switch (format & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 266 | case SND_SOC_DAIFMT_I2S: |
| 267 | case SND_SOC_DAIFMT_LEFT_J: |
| 268 | cs4270->mode = format & SND_SOC_DAIFMT_FORMAT_MASK; |
| 269 | break; |
| 270 | default: |
Timur Tabi | a6c255e | 2009-02-02 15:08:29 -0600 | [diff] [blame] | 271 | dev_err(codec->dev, "invalid dai format\n"); |
Axel Lin | ac60155 | 2011-10-06 07:29:56 +0800 | [diff] [blame] | 272 | return -EINVAL; |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 273 | } |
| 274 | |
Daniel Mack | 4eae080 | 2009-02-25 14:37:21 +0100 | [diff] [blame] | 275 | /* set master/slave audio interface */ |
| 276 | switch (format & SND_SOC_DAIFMT_MASTER_MASK) { |
| 277 | case SND_SOC_DAIFMT_CBS_CFS: |
| 278 | cs4270->slave_mode = 1; |
| 279 | break; |
| 280 | case SND_SOC_DAIFMT_CBM_CFM: |
| 281 | cs4270->slave_mode = 0; |
| 282 | break; |
Daniel Mack | 4eae080 | 2009-02-25 14:37:21 +0100 | [diff] [blame] | 283 | default: |
Daniel Mack | ff09d49 | 2009-02-28 13:21:03 +0100 | [diff] [blame] | 284 | /* all other modes are unsupported by the hardware */ |
Axel Lin | ac60155 | 2011-10-06 07:29:56 +0800 | [diff] [blame] | 285 | dev_err(codec->dev, "Unknown master/slave configuration\n"); |
| 286 | return -EINVAL; |
Daniel Mack | 4eae080 | 2009-02-25 14:37:21 +0100 | [diff] [blame] | 287 | } |
| 288 | |
Axel Lin | ac60155 | 2011-10-06 07:29:56 +0800 | [diff] [blame] | 289 | return 0; |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 290 | } |
| 291 | |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 292 | /** |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 293 | * cs4270_hw_params - program the CS4270 with the given hardware parameters. |
| 294 | * @substream: the audio stream |
| 295 | * @params: the hardware parameters to set |
| 296 | * @dai: the SOC DAI (ignored) |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 297 | * |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 298 | * This function programs the hardware with the values provided. |
| 299 | * Specifically, the sample rate and the data format. |
| 300 | * |
| 301 | * The .ops functions are used to provide board-specific data, like input |
| 302 | * frequencies, to this driver. This function takes that information, |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 303 | * combines it with the hardware parameters provided, and programs the |
| 304 | * hardware accordingly. |
| 305 | */ |
| 306 | static int cs4270_hw_params(struct snd_pcm_substream *substream, |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 307 | struct snd_pcm_hw_params *params, |
| 308 | struct snd_soc_dai *dai) |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 309 | { |
| 310 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 311 | struct snd_soc_codec *codec = rtd->codec; |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 312 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Roel Kluin | e34ba21 | 2008-04-17 18:58:34 +0200 | [diff] [blame] | 313 | int ret; |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 314 | unsigned int i; |
| 315 | unsigned int rate; |
| 316 | unsigned int ratio; |
| 317 | int reg; |
| 318 | |
| 319 | /* Figure out which MCLK/LRCK ratio to use */ |
| 320 | |
| 321 | rate = params_rate(params); /* Sampling rate, in Hz */ |
| 322 | ratio = cs4270->mclk / rate; /* MCLK/LRCK ratio */ |
| 323 | |
Timur Tabi | 9dbd627 | 2007-08-01 12:22:07 +0200 | [diff] [blame] | 324 | for (i = 0; i < NUM_MCLK_RATIOS; i++) { |
Timur Tabi | 8432395 | 2007-12-18 15:42:53 +0100 | [diff] [blame] | 325 | if (cs4270_mode_ratios[i].ratio == ratio) |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 326 | break; |
| 327 | } |
| 328 | |
Timur Tabi | 9dbd627 | 2007-08-01 12:22:07 +0200 | [diff] [blame] | 329 | if (i == NUM_MCLK_RATIOS) { |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 330 | /* We did not find a matching ratio */ |
Timur Tabi | a6c255e | 2009-02-02 15:08:29 -0600 | [diff] [blame] | 331 | dev_err(codec->dev, "could not find matching ratio\n"); |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 332 | return -EINVAL; |
| 333 | } |
| 334 | |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 335 | /* Set the sample rate */ |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 336 | |
| 337 | reg = snd_soc_read(codec, CS4270_MODE); |
| 338 | reg &= ~(CS4270_MODE_SPEED_MASK | CS4270_MODE_DIV_MASK); |
Daniel Mack | 4eae080 | 2009-02-25 14:37:21 +0100 | [diff] [blame] | 339 | reg |= cs4270_mode_ratios[i].mclk; |
| 340 | |
| 341 | if (cs4270->slave_mode) |
| 342 | reg |= CS4270_MODE_SLAVE; |
| 343 | else |
| 344 | reg |= cs4270_mode_ratios[i].speed_mode; |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 345 | |
| 346 | ret = snd_soc_write(codec, CS4270_MODE, reg); |
| 347 | if (ret < 0) { |
Timur Tabi | a6c255e | 2009-02-02 15:08:29 -0600 | [diff] [blame] | 348 | dev_err(codec->dev, "i2c write failed\n"); |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 349 | return ret; |
| 350 | } |
| 351 | |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 352 | /* Set the DAI format */ |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 353 | |
| 354 | reg = snd_soc_read(codec, CS4270_FORMAT); |
| 355 | reg &= ~(CS4270_FORMAT_DAC_MASK | CS4270_FORMAT_ADC_MASK); |
| 356 | |
| 357 | switch (cs4270->mode) { |
| 358 | case SND_SOC_DAIFMT_I2S: |
| 359 | reg |= CS4270_FORMAT_DAC_I2S | CS4270_FORMAT_ADC_I2S; |
| 360 | break; |
| 361 | case SND_SOC_DAIFMT_LEFT_J: |
| 362 | reg |= CS4270_FORMAT_DAC_LJ | CS4270_FORMAT_ADC_LJ; |
| 363 | break; |
| 364 | default: |
Timur Tabi | a6c255e | 2009-02-02 15:08:29 -0600 | [diff] [blame] | 365 | dev_err(codec->dev, "unknown dai format\n"); |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 366 | return -EINVAL; |
| 367 | } |
| 368 | |
| 369 | ret = snd_soc_write(codec, CS4270_FORMAT, reg); |
| 370 | if (ret < 0) { |
Timur Tabi | a6c255e | 2009-02-02 15:08:29 -0600 | [diff] [blame] | 371 | dev_err(codec->dev, "i2c write failed\n"); |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 372 | return ret; |
| 373 | } |
| 374 | |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 375 | return ret; |
| 376 | } |
| 377 | |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 378 | /** |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 379 | * cs4270_dai_mute - enable/disable the CS4270 external mute |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 380 | * @dai: the SOC DAI |
| 381 | * @mute: 0 = disable mute, 1 = enable mute |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 382 | * |
| 383 | * This function toggles the mute bits in the MUTE register. The CS4270's |
| 384 | * mute capability is intended for external muting circuitry, so if the |
| 385 | * board does not have the MUTEA or MUTEB pins connected to such circuitry, |
| 386 | * then this function will do nothing. |
| 387 | */ |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 388 | static int cs4270_dai_mute(struct snd_soc_dai *dai, int mute) |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 389 | { |
| 390 | struct snd_soc_codec *codec = dai->codec; |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 391 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 392 | int reg6; |
| 393 | |
| 394 | reg6 = snd_soc_read(codec, CS4270_MUTE); |
| 395 | |
| 396 | if (mute) |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 397 | reg6 |= CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B; |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 398 | else { |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 399 | reg6 &= ~(CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B); |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 400 | reg6 |= cs4270->manual_mute; |
| 401 | } |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 402 | |
| 403 | return snd_soc_write(codec, CS4270_MUTE, reg6); |
| 404 | } |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 405 | |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 406 | /** |
| 407 | * cs4270_soc_put_mute - put callback for the 'Master Playback switch' |
| 408 | * alsa control. |
| 409 | * @kcontrol: mixer control |
| 410 | * @ucontrol: control element information |
| 411 | * |
| 412 | * This function basically passes the arguments on to the generic |
| 413 | * snd_soc_put_volsw() function and saves the mute information in |
| 414 | * our private data structure. This is because we want to prevent |
| 415 | * cs4270_dai_mute() neglecting the user's decision to manually |
| 416 | * mute the codec's output. |
| 417 | * |
| 418 | * Returns 0 for success. |
| 419 | */ |
| 420 | static int cs4270_soc_put_mute(struct snd_kcontrol *kcontrol, |
| 421 | struct snd_ctl_elem_value *ucontrol) |
| 422 | { |
| 423 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 424 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 425 | int left = !ucontrol->value.integer.value[0]; |
| 426 | int right = !ucontrol->value.integer.value[1]; |
| 427 | |
| 428 | cs4270->manual_mute = (left ? CS4270_MUTE_DAC_A : 0) | |
| 429 | (right ? CS4270_MUTE_DAC_B : 0); |
| 430 | |
| 431 | return snd_soc_put_volsw(kcontrol, ucontrol); |
| 432 | } |
| 433 | |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 434 | /* A list of non-DAPM controls that the CS4270 supports */ |
| 435 | static const struct snd_kcontrol_new cs4270_snd_controls[] = { |
| 436 | SOC_DOUBLE_R("Master Playback Volume", |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 437 | CS4270_VOLA, CS4270_VOLB, 0, 0xFF, 1), |
| 438 | SOC_SINGLE("Digital Sidetone Switch", CS4270_FORMAT, 5, 1, 0), |
| 439 | SOC_SINGLE("Soft Ramp Switch", CS4270_TRANS, 6, 1, 0), |
| 440 | SOC_SINGLE("Zero Cross Switch", CS4270_TRANS, 5, 1, 0), |
Daniel Mack | 7e1aa1d | 2009-10-29 02:24:32 +0100 | [diff] [blame] | 441 | SOC_SINGLE("De-emphasis filter", CS4270_TRANS, 0, 1, 0), |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 442 | SOC_SINGLE("Popguard Switch", CS4270_MODE, 0, 1, 1), |
| 443 | SOC_SINGLE("Auto-Mute Switch", CS4270_MUTE, 5, 1, 0), |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 444 | SOC_DOUBLE("Master Capture Switch", CS4270_MUTE, 3, 4, 1, 1), |
| 445 | SOC_DOUBLE_EXT("Master Playback Switch", CS4270_MUTE, 0, 1, 1, 1, |
| 446 | snd_soc_get_volsw, cs4270_soc_put_mute), |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 447 | }; |
| 448 | |
Lars-Peter Clausen | 85e7652 | 2011-11-23 11:40:40 +0100 | [diff] [blame] | 449 | static const struct snd_soc_dai_ops cs4270_dai_ops = { |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 450 | .hw_params = cs4270_hw_params, |
| 451 | .set_sysclk = cs4270_set_dai_sysclk, |
| 452 | .set_fmt = cs4270_set_dai_fmt, |
Daniel Mack | 1a4ba05 | 2009-04-24 16:37:45 +0200 | [diff] [blame] | 453 | .digital_mute = cs4270_dai_mute, |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 454 | }; |
| 455 | |
Mark Brown | 5c75848 | 2010-10-06 16:18:17 -0700 | [diff] [blame] | 456 | static struct snd_soc_dai_driver cs4270_dai = { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 457 | .name = "cs4270-hifi", |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 458 | .playback = { |
| 459 | .stream_name = "Playback", |
| 460 | .channels_min = 1, |
| 461 | .channels_max = 2, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 462 | .rates = SNDRV_PCM_RATE_CONTINUOUS, |
| 463 | .rate_min = 4000, |
| 464 | .rate_max = 216000, |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 465 | .formats = CS4270_FORMATS, |
| 466 | }, |
| 467 | .capture = { |
| 468 | .stream_name = "Capture", |
| 469 | .channels_min = 1, |
| 470 | .channels_max = 2, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 471 | .rates = SNDRV_PCM_RATE_CONTINUOUS, |
| 472 | .rate_min = 4000, |
| 473 | .rate_max = 216000, |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 474 | .formats = CS4270_FORMATS, |
| 475 | }, |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 476 | .ops = &cs4270_dai_ops, |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 477 | }; |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 478 | |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 479 | /** |
| 480 | * cs4270_probe - ASoC probe function |
| 481 | * @pdev: platform device |
| 482 | * |
| 483 | * This function is called when ASoC has all the pieces it needs to |
| 484 | * instantiate a sound driver. |
Timur Tabi | 04eb093 | 2009-01-29 14:28:37 -0600 | [diff] [blame] | 485 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 486 | static int cs4270_probe(struct snd_soc_codec *codec) |
Timur Tabi | 04eb093 | 2009-01-29 14:28:37 -0600 | [diff] [blame] | 487 | { |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 488 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 489 | int i, ret; |
Timur Tabi | 04eb093 | 2009-01-29 14:28:37 -0600 | [diff] [blame] | 490 | |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 491 | /* Tell ASoC what kind of I/O to use to read the registers. ASoC will |
| 492 | * then do the I2C transactions itself. |
| 493 | */ |
| 494 | ret = snd_soc_codec_set_cache_io(codec, 8, 8, cs4270->control_type); |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 495 | if (ret < 0) { |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 496 | dev_err(codec->dev, "failed to set cache I/O (ret=%i)\n", ret); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 497 | return ret; |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 498 | } |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 499 | |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 500 | /* Disable auto-mute. This feature appears to be buggy. In some |
| 501 | * situations, auto-mute will not deactivate when it should, so we want |
| 502 | * this feature disabled by default. An application (e.g. alsactl) can |
| 503 | * re-enabled it by using the controls. |
| 504 | */ |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 505 | ret = snd_soc_update_bits(codec, CS4270_MUTE, CS4270_MUTE_AUTO, 0); |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 506 | if (ret < 0) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 507 | dev_err(codec->dev, "i2c write failed\n"); |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 508 | return ret; |
| 509 | } |
| 510 | |
| 511 | /* Disable automatic volume control. The hardware enables, and it |
| 512 | * causes volume change commands to be delayed, sometimes until after |
| 513 | * playback has started. An application (e.g. alsactl) can |
| 514 | * re-enabled it by using the controls. |
| 515 | */ |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 516 | ret = snd_soc_update_bits(codec, CS4270_TRANS, |
| 517 | CS4270_TRANS_SOFT | CS4270_TRANS_ZERO, 0); |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 518 | if (ret < 0) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 519 | dev_err(codec->dev, "i2c write failed\n"); |
Timur Tabi | d5e9ba1 | 2009-02-03 11:09:32 -0600 | [diff] [blame] | 520 | return ret; |
| 521 | } |
| 522 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 523 | /* Add the non-DAPM controls */ |
Liam Girdwood | 022658b | 2012-02-03 17:43:09 +0000 | [diff] [blame] | 524 | ret = snd_soc_add_codec_controls(codec, cs4270_snd_controls, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 525 | ARRAY_SIZE(cs4270_snd_controls)); |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 526 | if (ret < 0) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 527 | dev_err(codec->dev, "failed to add controls\n"); |
| 528 | return ret; |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 529 | } |
| 530 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 531 | /* get the power supply regulators */ |
| 532 | for (i = 0; i < ARRAY_SIZE(supply_names); i++) |
| 533 | cs4270->supplies[i].supply = supply_names[i]; |
| 534 | |
| 535 | ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(cs4270->supplies), |
| 536 | cs4270->supplies); |
| 537 | if (ret < 0) |
| 538 | return ret; |
| 539 | |
| 540 | ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies), |
| 541 | cs4270->supplies); |
| 542 | if (ret < 0) |
| 543 | goto error_free_regulators; |
Jean Delvare | e3145df | 2008-09-30 11:40:37 +0200 | [diff] [blame] | 544 | |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 545 | return 0; |
Jean Delvare | e3145df | 2008-09-30 11:40:37 +0200 | [diff] [blame] | 546 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 547 | error_free_regulators: |
| 548 | regulator_bulk_free(ARRAY_SIZE(cs4270->supplies), |
| 549 | cs4270->supplies); |
Jean Delvare | e3145df | 2008-09-30 11:40:37 +0200 | [diff] [blame] | 550 | |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 551 | return ret; |
| 552 | } |
| 553 | |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 554 | /** |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 555 | * cs4270_remove - ASoC remove function |
| 556 | * @pdev: platform device |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 557 | * |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 558 | * This function is the counterpart to cs4270_probe(). |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 559 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 560 | static int cs4270_remove(struct snd_soc_codec *codec) |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 561 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 562 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 563 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 564 | regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies), cs4270->supplies); |
| 565 | regulator_bulk_free(ARRAY_SIZE(cs4270->supplies), cs4270->supplies); |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 566 | |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 567 | return 0; |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 568 | }; |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 569 | |
Daniel Mack | 5e7c034 | 2009-05-06 01:26:01 +0200 | [diff] [blame] | 570 | #ifdef CONFIG_PM |
| 571 | |
| 572 | /* This suspend/resume implementation can handle both - a simple standby |
| 573 | * where the codec remains powered, and a full suspend, where the voltage |
| 574 | * domain the codec is connected to is teared down and/or any other hardware |
| 575 | * reset condition is asserted. |
| 576 | * |
| 577 | * The codec's own power saving features are enabled in the suspend callback, |
| 578 | * and all registers are written back to the hardware when resuming. |
| 579 | */ |
| 580 | |
Lars-Peter Clausen | 84b315e | 2011-12-02 10:18:28 +0100 | [diff] [blame] | 581 | static int cs4270_soc_suspend(struct snd_soc_codec *codec) |
Daniel Mack | 15b5bda | 2009-08-05 20:50:43 +0200 | [diff] [blame] | 582 | { |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 583 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Daniel Mack | ffbfd33 | 2009-11-30 17:56:11 +0100 | [diff] [blame] | 584 | int reg, ret; |
Daniel Mack | 15b5bda | 2009-08-05 20:50:43 +0200 | [diff] [blame] | 585 | |
Daniel Mack | ffbfd33 | 2009-11-30 17:56:11 +0100 | [diff] [blame] | 586 | reg = snd_soc_read(codec, CS4270_PWRCTL) | CS4270_PWRCTL_PDN_ALL; |
| 587 | if (reg < 0) |
| 588 | return reg; |
| 589 | |
| 590 | ret = snd_soc_write(codec, CS4270_PWRCTL, reg); |
| 591 | if (ret < 0) |
| 592 | return ret; |
| 593 | |
| 594 | regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies), |
| 595 | cs4270->supplies); |
| 596 | |
| 597 | return 0; |
Daniel Mack | 15b5bda | 2009-08-05 20:50:43 +0200 | [diff] [blame] | 598 | } |
| 599 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 600 | static int cs4270_soc_resume(struct snd_soc_codec *codec) |
Daniel Mack | 15b5bda | 2009-08-05 20:50:43 +0200 | [diff] [blame] | 601 | { |
Mark Brown | b2c812e | 2010-04-14 15:35:19 +0900 | [diff] [blame] | 602 | struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec); |
Mark Brown | ab92d09 | 2012-03-19 16:15:43 +0000 | [diff] [blame^] | 603 | int reg, ret; |
Daniel Mack | 5e7c034 | 2009-05-06 01:26:01 +0200 | [diff] [blame] | 604 | |
Mark Brown | ab92d09 | 2012-03-19 16:15:43 +0000 | [diff] [blame^] | 605 | ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies), |
| 606 | cs4270->supplies); |
| 607 | if (ret != 0) |
| 608 | return ret; |
Daniel Mack | ffbfd33 | 2009-11-30 17:56:11 +0100 | [diff] [blame] | 609 | |
Daniel Mack | 5e7c034 | 2009-05-06 01:26:01 +0200 | [diff] [blame] | 610 | /* In case the device was put to hard reset during sleep, we need to |
| 611 | * wait 500ns here before any I2C communication. */ |
| 612 | ndelay(500); |
| 613 | |
| 614 | /* first restore the entire register cache ... */ |
Daniel Mack | d66b853 | 2011-11-22 17:17:23 +0100 | [diff] [blame] | 615 | snd_soc_cache_sync(codec); |
Daniel Mack | 5e7c034 | 2009-05-06 01:26:01 +0200 | [diff] [blame] | 616 | |
| 617 | /* ... then disable the power-down bits */ |
| 618 | reg = snd_soc_read(codec, CS4270_PWRCTL); |
| 619 | reg &= ~CS4270_PWRCTL_PDN_ALL; |
| 620 | |
| 621 | return snd_soc_write(codec, CS4270_PWRCTL, reg); |
| 622 | } |
| 623 | #else |
Daniel Mack | 15b5bda | 2009-08-05 20:50:43 +0200 | [diff] [blame] | 624 | #define cs4270_soc_suspend NULL |
| 625 | #define cs4270_soc_resume NULL |
Daniel Mack | 5e7c034 | 2009-05-06 01:26:01 +0200 | [diff] [blame] | 626 | #endif /* CONFIG_PM */ |
| 627 | |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 628 | /* |
Daniel Mack | b6f7d7c | 2011-05-25 09:53:12 +0200 | [diff] [blame] | 629 | * ASoC codec driver structure |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 630 | */ |
Timur Tabi | 11b8fca | 2011-01-10 13:28:32 -0600 | [diff] [blame] | 631 | static const struct snd_soc_codec_driver soc_codec_device_cs4270 = { |
| 632 | .probe = cs4270_probe, |
| 633 | .remove = cs4270_remove, |
| 634 | .suspend = cs4270_soc_suspend, |
| 635 | .resume = cs4270_soc_resume, |
| 636 | .volatile_register = cs4270_reg_is_volatile, |
| 637 | .readable_register = cs4270_reg_is_readable, |
| 638 | .reg_cache_size = CS4270_LASTREG + 1, |
| 639 | .reg_word_size = sizeof(u8), |
| 640 | .reg_cache_default = cs4270_default_reg_cache, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 641 | }; |
| 642 | |
| 643 | /** |
| 644 | * cs4270_i2c_probe - initialize the I2C interface of the CS4270 |
| 645 | * @i2c_client: the I2C client object |
| 646 | * @id: the I2C device ID (ignored) |
| 647 | * |
| 648 | * This function is called whenever the I2C subsystem finds a device that |
| 649 | * matches the device ID given via a prior call to i2c_add_driver(). |
| 650 | */ |
| 651 | static int cs4270_i2c_probe(struct i2c_client *i2c_client, |
| 652 | const struct i2c_device_id *id) |
| 653 | { |
| 654 | struct cs4270_private *cs4270; |
| 655 | int ret; |
| 656 | |
| 657 | /* Verify that we have a CS4270 */ |
| 658 | |
| 659 | ret = i2c_smbus_read_byte_data(i2c_client, CS4270_CHIPID); |
| 660 | if (ret < 0) { |
| 661 | dev_err(&i2c_client->dev, "failed to read i2c at addr %X\n", |
| 662 | i2c_client->addr); |
| 663 | return ret; |
| 664 | } |
| 665 | /* The top four bits of the chip ID should be 1100. */ |
| 666 | if ((ret & 0xF0) != 0xC0) { |
| 667 | dev_err(&i2c_client->dev, "device at addr %X is not a CS4270\n", |
| 668 | i2c_client->addr); |
| 669 | return -ENODEV; |
| 670 | } |
| 671 | |
| 672 | dev_info(&i2c_client->dev, "found device at i2c address %X\n", |
| 673 | i2c_client->addr); |
| 674 | dev_info(&i2c_client->dev, "hardware revision %X\n", ret & 0xF); |
| 675 | |
Axel Lin | 7fd8a67 | 2011-12-29 11:58:22 +0800 | [diff] [blame] | 676 | cs4270 = devm_kzalloc(&i2c_client->dev, sizeof(struct cs4270_private), |
| 677 | GFP_KERNEL); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 678 | if (!cs4270) { |
| 679 | dev_err(&i2c_client->dev, "could not allocate codec\n"); |
| 680 | return -ENOMEM; |
| 681 | } |
| 682 | |
| 683 | i2c_set_clientdata(i2c_client, cs4270); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 684 | cs4270->control_type = SND_SOC_I2C; |
| 685 | |
| 686 | ret = snd_soc_register_codec(&i2c_client->dev, |
| 687 | &soc_codec_device_cs4270, &cs4270_dai, 1); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 688 | return ret; |
| 689 | } |
| 690 | |
| 691 | /** |
| 692 | * cs4270_i2c_remove - remove an I2C device |
| 693 | * @i2c_client: the I2C client object |
| 694 | * |
| 695 | * This function is the counterpart to cs4270_i2c_probe(). |
| 696 | */ |
| 697 | static int cs4270_i2c_remove(struct i2c_client *i2c_client) |
| 698 | { |
| 699 | snd_soc_unregister_codec(&i2c_client->dev); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 700 | return 0; |
| 701 | } |
| 702 | |
| 703 | /* |
| 704 | * cs4270_id - I2C device IDs supported by this driver |
| 705 | */ |
Axel Lin | 79a54ea | 2011-03-04 15:22:03 +0800 | [diff] [blame] | 706 | static const struct i2c_device_id cs4270_id[] = { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 707 | {"cs4270", 0}, |
| 708 | {} |
| 709 | }; |
| 710 | MODULE_DEVICE_TABLE(i2c, cs4270_id); |
| 711 | |
| 712 | /* |
Timur Tabi | ff7bf02 | 2009-01-30 11:14:49 -0600 | [diff] [blame] | 713 | * cs4270_i2c_driver - I2C device identification |
| 714 | * |
| 715 | * This structure tells the I2C subsystem how to identify and support a |
| 716 | * given I2C device type. |
| 717 | */ |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 718 | static struct i2c_driver cs4270_i2c_driver = { |
| 719 | .driver = { |
Shawn Guo | 64902b2 | 2012-02-24 22:09:38 +0800 | [diff] [blame] | 720 | .name = "cs4270", |
Timur Tabi | 0db4d07 | 2009-01-23 16:31:19 -0600 | [diff] [blame] | 721 | .owner = THIS_MODULE, |
| 722 | }, |
| 723 | .id_table = cs4270_id, |
| 724 | .probe = cs4270_i2c_probe, |
| 725 | .remove = cs4270_i2c_remove, |
| 726 | }; |
| 727 | |
Takashi Iwai | c9b3a40 | 2008-12-10 07:47:22 +0100 | [diff] [blame] | 728 | static int __init cs4270_init(void) |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 729 | { |
Timur Tabi | 04eb093 | 2009-01-29 14:28:37 -0600 | [diff] [blame] | 730 | return i2c_add_driver(&cs4270_i2c_driver); |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 731 | } |
| 732 | module_init(cs4270_init); |
| 733 | |
| 734 | static void __exit cs4270_exit(void) |
| 735 | { |
Timur Tabi | 04eb093 | 2009-01-29 14:28:37 -0600 | [diff] [blame] | 736 | i2c_del_driver(&cs4270_i2c_driver); |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 737 | } |
| 738 | module_exit(cs4270_exit); |
| 739 | |
Timur Tabi | b0c813c | 2007-07-31 18:18:44 +0200 | [diff] [blame] | 740 | MODULE_AUTHOR("Timur Tabi <timur@freescale.com>"); |
| 741 | MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver"); |
| 742 | MODULE_LICENSE("GPL"); |