1b0c813ceSTimur Tabi /* 2b0c813ceSTimur Tabi * CS4270 ALSA SoC (ASoC) codec driver 3b0c813ceSTimur Tabi * 4b0c813ceSTimur Tabi * Author: Timur Tabi <timur@freescale.com> 5b0c813ceSTimur Tabi * 6ff7bf02fSTimur Tabi * Copyright 2007-2009 Freescale Semiconductor, Inc. This file is licensed 7ff7bf02fSTimur Tabi * under the terms of the GNU General Public License version 2. This 8ff7bf02fSTimur Tabi * program is licensed "as is" without any warranty of any kind, whether 9ff7bf02fSTimur Tabi * express or implied. 10b0c813ceSTimur Tabi * 11b0c813ceSTimur Tabi * This is an ASoC device driver for the Cirrus Logic CS4270 codec. 12b0c813ceSTimur Tabi * 13b0c813ceSTimur Tabi * Current features/limitations: 14b0c813ceSTimur Tabi * 15b191f63cSDaniel Mack * - Software mode is supported. Stand-alone mode is not supported. 16b191f63cSDaniel Mack * - Only I2C is supported, not SPI 17b191f63cSDaniel Mack * - Support for master and slave mode 18b191f63cSDaniel Mack * - The machine driver's 'startup' function must call 19b0c813ceSTimur Tabi * cs4270_set_dai_sysclk() with the value of MCLK. 20b191f63cSDaniel Mack * - Only I2S and left-justified modes are supported 215e7c0344SDaniel Mack * - Power management is supported 22b0c813ceSTimur Tabi */ 23b0c813ceSTimur Tabi 24b0c813ceSTimur Tabi #include <linux/module.h> 255a0e3ad6STejun Heo #include <linux/slab.h> 26b0c813ceSTimur Tabi #include <sound/core.h> 27b0c813ceSTimur Tabi #include <sound/soc.h> 28b0c813ceSTimur Tabi #include <sound/initval.h> 29b0c813ceSTimur Tabi #include <linux/i2c.h> 305e7c0344SDaniel Mack #include <linux/delay.h> 31ffbfd336SDaniel Mack #include <linux/regulator/consumer.h> 32f98acd8aSDaniel Mack #include <linux/gpio/consumer.h> 3385d07e4dSDaniel Mack #include <linux/of_device.h> 34b0c813ceSTimur Tabi 35b0c813ceSTimur Tabi /* 36b0c813ceSTimur Tabi * The codec isn't really big-endian or little-endian, since the I2S 37b0c813ceSTimur Tabi * interface requires data to be sent serially with the MSbit first. 38b0c813ceSTimur Tabi * However, to support BE and LE I2S devices, we specify both here. That 39b0c813ceSTimur Tabi * way, ALSA will always match the bit patterns. 40b0c813ceSTimur Tabi */ 41b0c813ceSTimur Tabi #define CS4270_FORMATS (SNDRV_PCM_FMTBIT_S8 | \ 42b0c813ceSTimur Tabi SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE | \ 43b0c813ceSTimur Tabi SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE | \ 44b0c813ceSTimur Tabi SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE | \ 45b0c813ceSTimur Tabi SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE | \ 46b0c813ceSTimur Tabi SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE) 47b0c813ceSTimur Tabi 48b0c813ceSTimur Tabi /* CS4270 registers addresses */ 49b0c813ceSTimur Tabi #define CS4270_CHIPID 0x01 /* Chip ID */ 50b0c813ceSTimur Tabi #define CS4270_PWRCTL 0x02 /* Power Control */ 51b0c813ceSTimur Tabi #define CS4270_MODE 0x03 /* Mode Control */ 52b0c813ceSTimur Tabi #define CS4270_FORMAT 0x04 /* Serial Format, ADC/DAC Control */ 53b0c813ceSTimur Tabi #define CS4270_TRANS 0x05 /* Transition Control */ 54b0c813ceSTimur Tabi #define CS4270_MUTE 0x06 /* Mute Control */ 55b0c813ceSTimur Tabi #define CS4270_VOLA 0x07 /* DAC Channel A Volume Control */ 56b0c813ceSTimur Tabi #define CS4270_VOLB 0x08 /* DAC Channel B Volume Control */ 57b0c813ceSTimur Tabi 58b0c813ceSTimur Tabi #define CS4270_FIRSTREG 0x01 59b0c813ceSTimur Tabi #define CS4270_LASTREG 0x08 60b0c813ceSTimur Tabi #define CS4270_NUMREGS (CS4270_LASTREG - CS4270_FIRSTREG + 1) 6180ab8817SDaniel Mack #define CS4270_I2C_INCR 0x80 62b0c813ceSTimur Tabi 63b0c813ceSTimur Tabi /* Bit masks for the CS4270 registers */ 64b0c813ceSTimur Tabi #define CS4270_CHIPID_ID 0xF0 65b0c813ceSTimur Tabi #define CS4270_CHIPID_REV 0x0F 66b0c813ceSTimur Tabi #define CS4270_PWRCTL_FREEZE 0x80 67b0c813ceSTimur Tabi #define CS4270_PWRCTL_PDN_ADC 0x20 68b0c813ceSTimur Tabi #define CS4270_PWRCTL_PDN_DAC 0x02 69b0c813ceSTimur Tabi #define CS4270_PWRCTL_PDN 0x01 705e7c0344SDaniel Mack #define CS4270_PWRCTL_PDN_ALL \ 715e7c0344SDaniel Mack (CS4270_PWRCTL_PDN_ADC | CS4270_PWRCTL_PDN_DAC | CS4270_PWRCTL_PDN) 72b0c813ceSTimur Tabi #define CS4270_MODE_SPEED_MASK 0x30 73b0c813ceSTimur Tabi #define CS4270_MODE_1X 0x00 74b0c813ceSTimur Tabi #define CS4270_MODE_2X 0x10 75b0c813ceSTimur Tabi #define CS4270_MODE_4X 0x20 76b0c813ceSTimur Tabi #define CS4270_MODE_SLAVE 0x30 77b0c813ceSTimur Tabi #define CS4270_MODE_DIV_MASK 0x0E 78b0c813ceSTimur Tabi #define CS4270_MODE_DIV1 0x00 79b0c813ceSTimur Tabi #define CS4270_MODE_DIV15 0x02 80b0c813ceSTimur Tabi #define CS4270_MODE_DIV2 0x04 81b0c813ceSTimur Tabi #define CS4270_MODE_DIV3 0x06 82b0c813ceSTimur Tabi #define CS4270_MODE_DIV4 0x08 83b0c813ceSTimur Tabi #define CS4270_MODE_POPGUARD 0x01 84b0c813ceSTimur Tabi #define CS4270_FORMAT_FREEZE_A 0x80 85b0c813ceSTimur Tabi #define CS4270_FORMAT_FREEZE_B 0x40 86b0c813ceSTimur Tabi #define CS4270_FORMAT_LOOPBACK 0x20 87b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_MASK 0x18 88b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_LJ 0x00 89b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_I2S 0x08 90b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_RJ16 0x18 91b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_RJ24 0x10 92b0c813ceSTimur Tabi #define CS4270_FORMAT_ADC_MASK 0x01 93b0c813ceSTimur Tabi #define CS4270_FORMAT_ADC_LJ 0x00 94b0c813ceSTimur Tabi #define CS4270_FORMAT_ADC_I2S 0x01 95b0c813ceSTimur Tabi #define CS4270_TRANS_ONE_VOL 0x80 96b0c813ceSTimur Tabi #define CS4270_TRANS_SOFT 0x40 97b0c813ceSTimur Tabi #define CS4270_TRANS_ZERO 0x20 98b0c813ceSTimur Tabi #define CS4270_TRANS_INV_ADC_A 0x08 99b0c813ceSTimur Tabi #define CS4270_TRANS_INV_ADC_B 0x10 100b0c813ceSTimur Tabi #define CS4270_TRANS_INV_DAC_A 0x02 101b0c813ceSTimur Tabi #define CS4270_TRANS_INV_DAC_B 0x04 102b0c813ceSTimur Tabi #define CS4270_TRANS_DEEMPH 0x01 103b0c813ceSTimur Tabi #define CS4270_MUTE_AUTO 0x20 104b0c813ceSTimur Tabi #define CS4270_MUTE_ADC_A 0x08 105b0c813ceSTimur Tabi #define CS4270_MUTE_ADC_B 0x10 106b0c813ceSTimur Tabi #define CS4270_MUTE_POLARITY 0x04 107b0c813ceSTimur Tabi #define CS4270_MUTE_DAC_A 0x01 108b0c813ceSTimur Tabi #define CS4270_MUTE_DAC_B 0x02 109b0c813ceSTimur Tabi 11011b8fca5STimur Tabi /* Power-on default values for the registers 11111b8fca5STimur Tabi * 11211b8fca5STimur Tabi * This array contains the power-on default values of the registers, with the 11311b8fca5STimur Tabi * exception of the "CHIPID" register (01h). The lower four bits of that 11411b8fca5STimur Tabi * register contain the hardware revision, so it is treated as volatile. 11511b8fca5STimur Tabi */ 1161ca65175SMark Brown static const struct reg_default cs4270_reg_defaults[] = { 1171ca65175SMark Brown { 2, 0x00 }, 1181ca65175SMark Brown { 3, 0x30 }, 1191ca65175SMark Brown { 4, 0x00 }, 1201ca65175SMark Brown { 5, 0x60 }, 1211ca65175SMark Brown { 6, 0x20 }, 1221ca65175SMark Brown { 7, 0x00 }, 1231ca65175SMark Brown { 8, 0x00 }, 12411b8fca5STimur Tabi }; 12511b8fca5STimur Tabi 126ffbfd336SDaniel Mack static const char *supply_names[] = { 127ffbfd336SDaniel Mack "va", "vd", "vlc" 128ffbfd336SDaniel Mack }; 129ffbfd336SDaniel Mack 1300db4d070STimur Tabi /* Private data for the CS4270 */ 1310db4d070STimur Tabi struct cs4270_private { 1321ca65175SMark Brown struct regmap *regmap; 1330db4d070STimur Tabi unsigned int mclk; /* Input frequency of the MCLK pin */ 1340db4d070STimur Tabi unsigned int mode; /* The mode (I2S or left-justified) */ 1354eae080dSDaniel Mack unsigned int slave_mode; 1361a4ba05eSDaniel Mack unsigned int manual_mute; 137ffbfd336SDaniel Mack 138ffbfd336SDaniel Mack /* power domain regulators */ 139ffbfd336SDaniel Mack struct regulator_bulk_data supplies[ARRAY_SIZE(supply_names)]; 1400db4d070STimur Tabi }; 1410db4d070STimur Tabi 142782fbabaSMark Brown static const struct snd_soc_dapm_widget cs4270_dapm_widgets[] = { 143782fbabaSMark Brown SND_SOC_DAPM_INPUT("AINL"), 144782fbabaSMark Brown SND_SOC_DAPM_INPUT("AINR"), 145782fbabaSMark Brown 146782fbabaSMark Brown SND_SOC_DAPM_OUTPUT("AOUTL"), 147782fbabaSMark Brown SND_SOC_DAPM_OUTPUT("AOUTR"), 148782fbabaSMark Brown }; 149782fbabaSMark Brown 150782fbabaSMark Brown static const struct snd_soc_dapm_route cs4270_dapm_routes[] = { 151aa5f9209Smurray foster { "Capture", NULL, "AINL" }, 152aa5f9209Smurray foster { "Capture", NULL, "AINR" }, 153782fbabaSMark Brown 154aa5f9209Smurray foster { "AOUTL", NULL, "Playback" }, 155aa5f9209Smurray foster { "AOUTR", NULL, "Playback" }, 156782fbabaSMark Brown }; 157782fbabaSMark Brown 158ff7bf02fSTimur Tabi /** 159ff7bf02fSTimur Tabi * struct cs4270_mode_ratios - clock ratio tables 160ff7bf02fSTimur Tabi * @ratio: the ratio of MCLK to the sample rate 161ff7bf02fSTimur Tabi * @speed_mode: the Speed Mode bits to set in the Mode Control register for 162ff7bf02fSTimur Tabi * this ratio 163ff7bf02fSTimur Tabi * @mclk: the Ratio Select bits to set in the Mode Control register for this 164ff7bf02fSTimur Tabi * ratio 1658432395fSTimur Tabi * 1668432395fSTimur Tabi * The data for this chart is taken from Table 5 of the CS4270 reference 1678432395fSTimur Tabi * manual. 1688432395fSTimur Tabi * 1698432395fSTimur Tabi * This table is used to determine how to program the Mode Control register. 1708432395fSTimur Tabi * It is also used by cs4270_set_dai_sysclk() to tell ALSA which sampling 1718432395fSTimur Tabi * rates the CS4270 currently supports. 1728432395fSTimur Tabi * 173ff7bf02fSTimur Tabi * @speed_mode is the corresponding bit pattern to be written to the 1748432395fSTimur Tabi * MODE bits of the Mode Control Register 1758432395fSTimur Tabi * 176ff7bf02fSTimur Tabi * @mclk is the corresponding bit pattern to be wirten to the MCLK bits of 1778432395fSTimur Tabi * the Mode Control Register. 1788432395fSTimur Tabi * 1798432395fSTimur Tabi * In situations where a single ratio is represented by multiple speed 1808432395fSTimur Tabi * modes, we favor the slowest speed. E.g, for a ratio of 128, we pick 1818432395fSTimur Tabi * double-speed instead of quad-speed. However, the CS4270 errata states 182ff7bf02fSTimur Tabi * that divide-By-1.5 can cause failures, so we avoid that mode where 1838432395fSTimur Tabi * possible. 1848432395fSTimur Tabi * 185ff7bf02fSTimur Tabi * Errata: There is an errata for the CS4270 where divide-by-1.5 does not 186ff7bf02fSTimur Tabi * work if Vd is 3.3V. If this effects you, select the 1878432395fSTimur Tabi * CONFIG_SND_SOC_CS4270_VD33_ERRATA Kconfig option, and the driver will 1888432395fSTimur Tabi * never select any sample rates that require divide-by-1.5. 1898432395fSTimur Tabi */ 190ff7bf02fSTimur Tabi struct cs4270_mode_ratios { 1918432395fSTimur Tabi unsigned int ratio; 1928432395fSTimur Tabi u8 speed_mode; 1938432395fSTimur Tabi u8 mclk; 194ff7bf02fSTimur Tabi }; 195ff7bf02fSTimur Tabi 196d9fb7fbdSTimur Tabi static struct cs4270_mode_ratios cs4270_mode_ratios[] = { 1978432395fSTimur Tabi {64, CS4270_MODE_4X, CS4270_MODE_DIV1}, 1988432395fSTimur Tabi #ifndef CONFIG_SND_SOC_CS4270_VD33_ERRATA 1998432395fSTimur Tabi {96, CS4270_MODE_4X, CS4270_MODE_DIV15}, 2008432395fSTimur Tabi #endif 2018432395fSTimur Tabi {128, CS4270_MODE_2X, CS4270_MODE_DIV1}, 2028432395fSTimur Tabi {192, CS4270_MODE_4X, CS4270_MODE_DIV3}, 2038432395fSTimur Tabi {256, CS4270_MODE_1X, CS4270_MODE_DIV1}, 2048432395fSTimur Tabi {384, CS4270_MODE_2X, CS4270_MODE_DIV3}, 2058432395fSTimur Tabi {512, CS4270_MODE_1X, CS4270_MODE_DIV2}, 2068432395fSTimur Tabi {768, CS4270_MODE_1X, CS4270_MODE_DIV3}, 2078432395fSTimur Tabi {1024, CS4270_MODE_1X, CS4270_MODE_DIV4} 2088432395fSTimur Tabi }; 2098432395fSTimur Tabi 2108432395fSTimur Tabi /* The number of MCLK/LRCK ratios supported by the CS4270 */ 2118432395fSTimur Tabi #define NUM_MCLK_RATIOS ARRAY_SIZE(cs4270_mode_ratios) 2128432395fSTimur Tabi 2131ca65175SMark Brown static bool cs4270_reg_is_readable(struct device *dev, unsigned int reg) 21411b8fca5STimur Tabi { 21511b8fca5STimur Tabi return (reg >= CS4270_FIRSTREG) && (reg <= CS4270_LASTREG); 21611b8fca5STimur Tabi } 21711b8fca5STimur Tabi 2181ca65175SMark Brown static bool cs4270_reg_is_volatile(struct device *dev, unsigned int reg) 21911b8fca5STimur Tabi { 22011b8fca5STimur Tabi /* Unreadable registers are considered volatile */ 22111b8fca5STimur Tabi if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG)) 222c34c4515SGustavo A. R. Silva return true; 22311b8fca5STimur Tabi 22411b8fca5STimur Tabi return reg == CS4270_CHIPID; 22511b8fca5STimur Tabi } 22611b8fca5STimur Tabi 227ff7bf02fSTimur Tabi /** 228ff7bf02fSTimur Tabi * cs4270_set_dai_sysclk - determine the CS4270 samples rates. 229ff7bf02fSTimur Tabi * @codec_dai: the codec DAI 230ff7bf02fSTimur Tabi * @clk_id: the clock ID (ignored) 231ff7bf02fSTimur Tabi * @freq: the MCLK input frequency 232ff7bf02fSTimur Tabi * @dir: the clock direction (ignored) 2338432395fSTimur Tabi * 234ff7bf02fSTimur Tabi * This function is used to tell the codec driver what the input MCLK 235ff7bf02fSTimur Tabi * frequency is. 2368432395fSTimur Tabi * 2378432395fSTimur Tabi * The value of MCLK is used to determine which sample rates are supported 2388432395fSTimur Tabi * by the CS4270. The ratio of MCLK / Fs must be equal to one of nine 239ff7bf02fSTimur Tabi * supported values - 64, 96, 128, 192, 256, 384, 512, 768, and 1024. 2408432395fSTimur Tabi * 2418432395fSTimur Tabi * This function calculates the nine ratios and determines which ones match 2428432395fSTimur Tabi * a standard sample rate. If there's a match, then it is added to the list 243ff7bf02fSTimur Tabi * of supported sample rates. 2448432395fSTimur Tabi * 2458432395fSTimur Tabi * This function must be called by the machine driver's 'startup' function, 2468432395fSTimur Tabi * otherwise the list of supported sample rates will not be available in 2478432395fSTimur Tabi * time for ALSA. 2486aababdfSDaniel Mack * 2496aababdfSDaniel Mack * For setups with variable MCLKs, pass 0 as 'freq' argument. This will cause 2506aababdfSDaniel Mack * theoretically possible sample rates to be enabled. Call it again with a 2516aababdfSDaniel Mack * proper value set one the external clock is set (most probably you would do 2526aababdfSDaniel Mack * that from a machine's driver 'hw_param' hook. 2538432395fSTimur Tabi */ 254e550e17fSLiam Girdwood static int cs4270_set_dai_sysclk(struct snd_soc_dai *codec_dai, 2558432395fSTimur Tabi int clk_id, unsigned int freq, int dir) 2568432395fSTimur Tabi { 25770c9a803SKuninori Morimoto struct snd_soc_component *component = codec_dai->component; 25870c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 2598432395fSTimur Tabi 2608432395fSTimur Tabi cs4270->mclk = freq; 2618432395fSTimur Tabi return 0; 2628432395fSTimur Tabi } 2638432395fSTimur Tabi 264ff7bf02fSTimur Tabi /** 265ff7bf02fSTimur Tabi * cs4270_set_dai_fmt - configure the codec for the selected audio format 266ff7bf02fSTimur Tabi * @codec_dai: the codec DAI 267ff7bf02fSTimur Tabi * @format: a SND_SOC_DAIFMT_x value indicating the data format 2688432395fSTimur Tabi * 2698432395fSTimur Tabi * This function takes a bitmask of SND_SOC_DAIFMT_x bits and programs the 2708432395fSTimur Tabi * codec accordingly. 2718432395fSTimur Tabi * 2728432395fSTimur Tabi * Currently, this function only supports SND_SOC_DAIFMT_I2S and 2738432395fSTimur Tabi * SND_SOC_DAIFMT_LEFT_J. The CS4270 codec also supports right-justified 2748432395fSTimur Tabi * data for playback only, but ASoC currently does not support different 2758432395fSTimur Tabi * formats for playback vs. record. 2768432395fSTimur Tabi */ 277e550e17fSLiam Girdwood static int cs4270_set_dai_fmt(struct snd_soc_dai *codec_dai, 2788432395fSTimur Tabi unsigned int format) 2798432395fSTimur Tabi { 28070c9a803SKuninori Morimoto struct snd_soc_component *component = codec_dai->component; 28170c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 2828432395fSTimur Tabi 2834eae080dSDaniel Mack /* set DAI format */ 2848432395fSTimur Tabi switch (format & SND_SOC_DAIFMT_FORMAT_MASK) { 2858432395fSTimur Tabi case SND_SOC_DAIFMT_I2S: 2868432395fSTimur Tabi case SND_SOC_DAIFMT_LEFT_J: 2878432395fSTimur Tabi cs4270->mode = format & SND_SOC_DAIFMT_FORMAT_MASK; 2888432395fSTimur Tabi break; 2898432395fSTimur Tabi default: 29070c9a803SKuninori Morimoto dev_err(component->dev, "invalid dai format\n"); 291ac60155fSAxel Lin return -EINVAL; 2928432395fSTimur Tabi } 2938432395fSTimur Tabi 2944eae080dSDaniel Mack /* set master/slave audio interface */ 2954eae080dSDaniel Mack switch (format & SND_SOC_DAIFMT_MASTER_MASK) { 2964eae080dSDaniel Mack case SND_SOC_DAIFMT_CBS_CFS: 2974eae080dSDaniel Mack cs4270->slave_mode = 1; 2984eae080dSDaniel Mack break; 2994eae080dSDaniel Mack case SND_SOC_DAIFMT_CBM_CFM: 3004eae080dSDaniel Mack cs4270->slave_mode = 0; 3014eae080dSDaniel Mack break; 3024eae080dSDaniel Mack default: 303ff09d49aSDaniel Mack /* all other modes are unsupported by the hardware */ 30470c9a803SKuninori Morimoto dev_err(component->dev, "Unknown master/slave configuration\n"); 305ac60155fSAxel Lin return -EINVAL; 3064eae080dSDaniel Mack } 3074eae080dSDaniel Mack 308ac60155fSAxel Lin return 0; 3098432395fSTimur Tabi } 3108432395fSTimur Tabi 311ff7bf02fSTimur Tabi /** 312ff7bf02fSTimur Tabi * cs4270_hw_params - program the CS4270 with the given hardware parameters. 313ff7bf02fSTimur Tabi * @substream: the audio stream 314ff7bf02fSTimur Tabi * @params: the hardware parameters to set 315ff7bf02fSTimur Tabi * @dai: the SOC DAI (ignored) 316b0c813ceSTimur Tabi * 317ff7bf02fSTimur Tabi * This function programs the hardware with the values provided. 318ff7bf02fSTimur Tabi * Specifically, the sample rate and the data format. 319ff7bf02fSTimur Tabi * 320ff7bf02fSTimur Tabi * The .ops functions are used to provide board-specific data, like input 321ff7bf02fSTimur Tabi * frequencies, to this driver. This function takes that information, 322b0c813ceSTimur Tabi * combines it with the hardware parameters provided, and programs the 323b0c813ceSTimur Tabi * hardware accordingly. 324b0c813ceSTimur Tabi */ 325b0c813ceSTimur Tabi static int cs4270_hw_params(struct snd_pcm_substream *substream, 326dee89c4dSMark Brown struct snd_pcm_hw_params *params, 327dee89c4dSMark Brown struct snd_soc_dai *dai) 328b0c813ceSTimur Tabi { 32970c9a803SKuninori Morimoto struct snd_soc_component *component = dai->component; 33070c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 331e34ba212SRoel Kluin int ret; 332b0c813ceSTimur Tabi unsigned int i; 333b0c813ceSTimur Tabi unsigned int rate; 334b0c813ceSTimur Tabi unsigned int ratio; 335b0c813ceSTimur Tabi int reg; 336b0c813ceSTimur Tabi 337b0c813ceSTimur Tabi /* Figure out which MCLK/LRCK ratio to use */ 338b0c813ceSTimur Tabi 339b0c813ceSTimur Tabi rate = params_rate(params); /* Sampling rate, in Hz */ 340b0c813ceSTimur Tabi ratio = cs4270->mclk / rate; /* MCLK/LRCK ratio */ 341b0c813ceSTimur Tabi 3429dbd627bSTimur Tabi for (i = 0; i < NUM_MCLK_RATIOS; i++) { 3438432395fSTimur Tabi if (cs4270_mode_ratios[i].ratio == ratio) 344b0c813ceSTimur Tabi break; 345b0c813ceSTimur Tabi } 346b0c813ceSTimur Tabi 3479dbd627bSTimur Tabi if (i == NUM_MCLK_RATIOS) { 348b0c813ceSTimur Tabi /* We did not find a matching ratio */ 34970c9a803SKuninori Morimoto dev_err(component->dev, "could not find matching ratio\n"); 350b0c813ceSTimur Tabi return -EINVAL; 351b0c813ceSTimur Tabi } 352b0c813ceSTimur Tabi 353d5e9ba1dSTimur Tabi /* Set the sample rate */ 354b0c813ceSTimur Tabi 35570c9a803SKuninori Morimoto reg = snd_soc_component_read32(component, CS4270_MODE); 356b0c813ceSTimur Tabi reg &= ~(CS4270_MODE_SPEED_MASK | CS4270_MODE_DIV_MASK); 3574eae080dSDaniel Mack reg |= cs4270_mode_ratios[i].mclk; 3584eae080dSDaniel Mack 3594eae080dSDaniel Mack if (cs4270->slave_mode) 3604eae080dSDaniel Mack reg |= CS4270_MODE_SLAVE; 3614eae080dSDaniel Mack else 3624eae080dSDaniel Mack reg |= cs4270_mode_ratios[i].speed_mode; 363b0c813ceSTimur Tabi 36470c9a803SKuninori Morimoto ret = snd_soc_component_write(component, CS4270_MODE, reg); 365b0c813ceSTimur Tabi if (ret < 0) { 36670c9a803SKuninori Morimoto dev_err(component->dev, "i2c write failed\n"); 367b0c813ceSTimur Tabi return ret; 368b0c813ceSTimur Tabi } 369b0c813ceSTimur Tabi 370d5e9ba1dSTimur Tabi /* Set the DAI format */ 371b0c813ceSTimur Tabi 37270c9a803SKuninori Morimoto reg = snd_soc_component_read32(component, CS4270_FORMAT); 373b0c813ceSTimur Tabi reg &= ~(CS4270_FORMAT_DAC_MASK | CS4270_FORMAT_ADC_MASK); 374b0c813ceSTimur Tabi 375b0c813ceSTimur Tabi switch (cs4270->mode) { 376b0c813ceSTimur Tabi case SND_SOC_DAIFMT_I2S: 377b0c813ceSTimur Tabi reg |= CS4270_FORMAT_DAC_I2S | CS4270_FORMAT_ADC_I2S; 378b0c813ceSTimur Tabi break; 379b0c813ceSTimur Tabi case SND_SOC_DAIFMT_LEFT_J: 380b0c813ceSTimur Tabi reg |= CS4270_FORMAT_DAC_LJ | CS4270_FORMAT_ADC_LJ; 381b0c813ceSTimur Tabi break; 382b0c813ceSTimur Tabi default: 38370c9a803SKuninori Morimoto dev_err(component->dev, "unknown dai format\n"); 384b0c813ceSTimur Tabi return -EINVAL; 385b0c813ceSTimur Tabi } 386b0c813ceSTimur Tabi 38770c9a803SKuninori Morimoto ret = snd_soc_component_write(component, CS4270_FORMAT, reg); 388b0c813ceSTimur Tabi if (ret < 0) { 38970c9a803SKuninori Morimoto dev_err(component->dev, "i2c write failed\n"); 390b0c813ceSTimur Tabi return ret; 391b0c813ceSTimur Tabi } 392b0c813ceSTimur Tabi 393b0c813ceSTimur Tabi return ret; 394b0c813ceSTimur Tabi } 395b0c813ceSTimur Tabi 396ff7bf02fSTimur Tabi /** 3971a4ba05eSDaniel Mack * cs4270_dai_mute - enable/disable the CS4270 external mute 398ff7bf02fSTimur Tabi * @dai: the SOC DAI 399ff7bf02fSTimur Tabi * @mute: 0 = disable mute, 1 = enable mute 400b0c813ceSTimur Tabi * 401b0c813ceSTimur Tabi * This function toggles the mute bits in the MUTE register. The CS4270's 402b0c813ceSTimur Tabi * mute capability is intended for external muting circuitry, so if the 403b0c813ceSTimur Tabi * board does not have the MUTEA or MUTEB pins connected to such circuitry, 404b0c813ceSTimur Tabi * then this function will do nothing. 405b0c813ceSTimur Tabi */ 4061a4ba05eSDaniel Mack static int cs4270_dai_mute(struct snd_soc_dai *dai, int mute) 407b0c813ceSTimur Tabi { 40870c9a803SKuninori Morimoto struct snd_soc_component *component = dai->component; 40970c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 410b0c813ceSTimur Tabi int reg6; 411b0c813ceSTimur Tabi 41270c9a803SKuninori Morimoto reg6 = snd_soc_component_read32(component, CS4270_MUTE); 413b0c813ceSTimur Tabi 414b0c813ceSTimur Tabi if (mute) 415d5e9ba1dSTimur Tabi reg6 |= CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B; 4161a4ba05eSDaniel Mack else { 417d5e9ba1dSTimur Tabi reg6 &= ~(CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B); 4181a4ba05eSDaniel Mack reg6 |= cs4270->manual_mute; 4191a4ba05eSDaniel Mack } 420b0c813ceSTimur Tabi 42170c9a803SKuninori Morimoto return snd_soc_component_write(component, CS4270_MUTE, reg6); 422b0c813ceSTimur Tabi } 423b0c813ceSTimur Tabi 4241a4ba05eSDaniel Mack /** 4251a4ba05eSDaniel Mack * cs4270_soc_put_mute - put callback for the 'Master Playback switch' 4261a4ba05eSDaniel Mack * alsa control. 4271a4ba05eSDaniel Mack * @kcontrol: mixer control 4281a4ba05eSDaniel Mack * @ucontrol: control element information 4291a4ba05eSDaniel Mack * 4301a4ba05eSDaniel Mack * This function basically passes the arguments on to the generic 4311a4ba05eSDaniel Mack * snd_soc_put_volsw() function and saves the mute information in 4321a4ba05eSDaniel Mack * our private data structure. This is because we want to prevent 4331a4ba05eSDaniel Mack * cs4270_dai_mute() neglecting the user's decision to manually 4341a4ba05eSDaniel Mack * mute the codec's output. 4351a4ba05eSDaniel Mack * 4361a4ba05eSDaniel Mack * Returns 0 for success. 4371a4ba05eSDaniel Mack */ 4381a4ba05eSDaniel Mack static int cs4270_soc_put_mute(struct snd_kcontrol *kcontrol, 4391a4ba05eSDaniel Mack struct snd_ctl_elem_value *ucontrol) 4401a4ba05eSDaniel Mack { 44170c9a803SKuninori Morimoto struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol); 44270c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 4431a4ba05eSDaniel Mack int left = !ucontrol->value.integer.value[0]; 4441a4ba05eSDaniel Mack int right = !ucontrol->value.integer.value[1]; 4451a4ba05eSDaniel Mack 4461a4ba05eSDaniel Mack cs4270->manual_mute = (left ? CS4270_MUTE_DAC_A : 0) | 4471a4ba05eSDaniel Mack (right ? CS4270_MUTE_DAC_B : 0); 4481a4ba05eSDaniel Mack 4491a4ba05eSDaniel Mack return snd_soc_put_volsw(kcontrol, ucontrol); 4501a4ba05eSDaniel Mack } 4511a4ba05eSDaniel Mack 452b0c813ceSTimur Tabi /* A list of non-DAPM controls that the CS4270 supports */ 453b0c813ceSTimur Tabi static const struct snd_kcontrol_new cs4270_snd_controls[] = { 454b0c813ceSTimur Tabi SOC_DOUBLE_R("Master Playback Volume", 455d5e9ba1dSTimur Tabi CS4270_VOLA, CS4270_VOLB, 0, 0xFF, 1), 456d5e9ba1dSTimur Tabi SOC_SINGLE("Digital Sidetone Switch", CS4270_FORMAT, 5, 1, 0), 457d5e9ba1dSTimur Tabi SOC_SINGLE("Soft Ramp Switch", CS4270_TRANS, 6, 1, 0), 458d5e9ba1dSTimur Tabi SOC_SINGLE("Zero Cross Switch", CS4270_TRANS, 5, 1, 0), 4597e1aa1dcSDaniel Mack SOC_SINGLE("De-emphasis filter", CS4270_TRANS, 0, 1, 0), 460d5e9ba1dSTimur Tabi SOC_SINGLE("Popguard Switch", CS4270_MODE, 0, 1, 1), 461d5e9ba1dSTimur Tabi SOC_SINGLE("Auto-Mute Switch", CS4270_MUTE, 5, 1, 0), 4621a4ba05eSDaniel Mack SOC_DOUBLE("Master Capture Switch", CS4270_MUTE, 3, 4, 1, 1), 4631a4ba05eSDaniel Mack SOC_DOUBLE_EXT("Master Playback Switch", CS4270_MUTE, 0, 1, 1, 1, 4641a4ba05eSDaniel Mack snd_soc_get_volsw, cs4270_soc_put_mute), 465b0c813ceSTimur Tabi }; 466b0c813ceSTimur Tabi 46785e7652dSLars-Peter Clausen static const struct snd_soc_dai_ops cs4270_dai_ops = { 4686335d055SEric Miao .hw_params = cs4270_hw_params, 4696335d055SEric Miao .set_sysclk = cs4270_set_dai_sysclk, 4706335d055SEric Miao .set_fmt = cs4270_set_dai_fmt, 4711a4ba05eSDaniel Mack .digital_mute = cs4270_dai_mute, 4726335d055SEric Miao }; 4736335d055SEric Miao 4745c75848aSMark Brown static struct snd_soc_dai_driver cs4270_dai = { 475f0fba2adSLiam Girdwood .name = "cs4270-hifi", 476b0c813ceSTimur Tabi .playback = { 477b0c813ceSTimur Tabi .stream_name = "Playback", 478f76fe059SFabio Estevam .channels_min = 2, 479b0c813ceSTimur Tabi .channels_max = 2, 480f0fba2adSLiam Girdwood .rates = SNDRV_PCM_RATE_CONTINUOUS, 481f0fba2adSLiam Girdwood .rate_min = 4000, 482f0fba2adSLiam Girdwood .rate_max = 216000, 483b0c813ceSTimur Tabi .formats = CS4270_FORMATS, 484b0c813ceSTimur Tabi }, 485b0c813ceSTimur Tabi .capture = { 486b0c813ceSTimur Tabi .stream_name = "Capture", 487f76fe059SFabio Estevam .channels_min = 2, 488b0c813ceSTimur Tabi .channels_max = 2, 489f0fba2adSLiam Girdwood .rates = SNDRV_PCM_RATE_CONTINUOUS, 490f0fba2adSLiam Girdwood .rate_min = 4000, 491f0fba2adSLiam Girdwood .rate_max = 216000, 492b0c813ceSTimur Tabi .formats = CS4270_FORMATS, 493b0c813ceSTimur Tabi }, 4946335d055SEric Miao .ops = &cs4270_dai_ops, 495b0c813ceSTimur Tabi }; 496b0c813ceSTimur Tabi 497ff7bf02fSTimur Tabi /** 498ff7bf02fSTimur Tabi * cs4270_probe - ASoC probe function 499ff7bf02fSTimur Tabi * @pdev: platform device 500ff7bf02fSTimur Tabi * 501ff7bf02fSTimur Tabi * This function is called when ASoC has all the pieces it needs to 502ff7bf02fSTimur Tabi * instantiate a sound driver. 50304eb093cSTimur Tabi */ 50470c9a803SKuninori Morimoto static int cs4270_probe(struct snd_soc_component *component) 50504eb093cSTimur Tabi { 50670c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 507b61d6d40SMark Brown int ret; 50804eb093cSTimur Tabi 509d5e9ba1dSTimur Tabi /* Disable auto-mute. This feature appears to be buggy. In some 510d5e9ba1dSTimur Tabi * situations, auto-mute will not deactivate when it should, so we want 511d5e9ba1dSTimur Tabi * this feature disabled by default. An application (e.g. alsactl) can 512d5e9ba1dSTimur Tabi * re-enabled it by using the controls. 513d5e9ba1dSTimur Tabi */ 51470c9a803SKuninori Morimoto ret = snd_soc_component_update_bits(component, CS4270_MUTE, CS4270_MUTE_AUTO, 0); 515d5e9ba1dSTimur Tabi if (ret < 0) { 51670c9a803SKuninori Morimoto dev_err(component->dev, "i2c write failed\n"); 517d5e9ba1dSTimur Tabi return ret; 518d5e9ba1dSTimur Tabi } 519d5e9ba1dSTimur Tabi 520d5e9ba1dSTimur Tabi /* Disable automatic volume control. The hardware enables, and it 521d5e9ba1dSTimur Tabi * causes volume change commands to be delayed, sometimes until after 522d5e9ba1dSTimur Tabi * playback has started. An application (e.g. alsactl) can 523d5e9ba1dSTimur Tabi * re-enabled it by using the controls. 524d5e9ba1dSTimur Tabi */ 52570c9a803SKuninori Morimoto ret = snd_soc_component_update_bits(component, CS4270_TRANS, 52611b8fca5STimur Tabi CS4270_TRANS_SOFT | CS4270_TRANS_ZERO, 0); 527d5e9ba1dSTimur Tabi if (ret < 0) { 52870c9a803SKuninori Morimoto dev_err(component->dev, "i2c write failed\n"); 529d5e9ba1dSTimur Tabi return ret; 530d5e9ba1dSTimur Tabi } 531d5e9ba1dSTimur Tabi 532f0fba2adSLiam Girdwood ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies), 533f0fba2adSLiam Girdwood cs4270->supplies); 534e3145dfbSJean Delvare 535b0c813ceSTimur Tabi return ret; 536b0c813ceSTimur Tabi } 537b0c813ceSTimur Tabi 538ff7bf02fSTimur Tabi /** 539f0fba2adSLiam Girdwood * cs4270_remove - ASoC remove function 540f0fba2adSLiam Girdwood * @pdev: platform device 541ff7bf02fSTimur Tabi * 542f0fba2adSLiam Girdwood * This function is the counterpart to cs4270_probe(). 543ff7bf02fSTimur Tabi */ 54470c9a803SKuninori Morimoto static void cs4270_remove(struct snd_soc_component *component) 545b0c813ceSTimur Tabi { 54670c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 547b0c813ceSTimur Tabi 548f0fba2adSLiam Girdwood regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies), cs4270->supplies); 5490db4d070STimur Tabi }; 5500db4d070STimur Tabi 5515e7c0344SDaniel Mack #ifdef CONFIG_PM 5525e7c0344SDaniel Mack 5535e7c0344SDaniel Mack /* This suspend/resume implementation can handle both - a simple standby 5545e7c0344SDaniel Mack * where the codec remains powered, and a full suspend, where the voltage 5555e7c0344SDaniel Mack * domain the codec is connected to is teared down and/or any other hardware 5565e7c0344SDaniel Mack * reset condition is asserted. 5575e7c0344SDaniel Mack * 5585e7c0344SDaniel Mack * The codec's own power saving features are enabled in the suspend callback, 5595e7c0344SDaniel Mack * and all registers are written back to the hardware when resuming. 5605e7c0344SDaniel Mack */ 5615e7c0344SDaniel Mack 56270c9a803SKuninori Morimoto static int cs4270_soc_suspend(struct snd_soc_component *component) 56315b5bdaeSDaniel Mack { 56470c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 565ffbfd336SDaniel Mack int reg, ret; 56615b5bdaeSDaniel Mack 56770c9a803SKuninori Morimoto reg = snd_soc_component_read32(component, CS4270_PWRCTL) | CS4270_PWRCTL_PDN_ALL; 568ffbfd336SDaniel Mack if (reg < 0) 569ffbfd336SDaniel Mack return reg; 570ffbfd336SDaniel Mack 57170c9a803SKuninori Morimoto ret = snd_soc_component_write(component, CS4270_PWRCTL, reg); 572ffbfd336SDaniel Mack if (ret < 0) 573ffbfd336SDaniel Mack return ret; 574ffbfd336SDaniel Mack 575ffbfd336SDaniel Mack regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies), 576ffbfd336SDaniel Mack cs4270->supplies); 577ffbfd336SDaniel Mack 578ffbfd336SDaniel Mack return 0; 57915b5bdaeSDaniel Mack } 58015b5bdaeSDaniel Mack 58170c9a803SKuninori Morimoto static int cs4270_soc_resume(struct snd_soc_component *component) 58215b5bdaeSDaniel Mack { 58370c9a803SKuninori Morimoto struct cs4270_private *cs4270 = snd_soc_component_get_drvdata(component); 584ab92d09dSMark Brown int reg, ret; 5855e7c0344SDaniel Mack 586ab92d09dSMark Brown ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies), 587ffbfd336SDaniel Mack cs4270->supplies); 588ab92d09dSMark Brown if (ret != 0) 589ab92d09dSMark Brown return ret; 590ffbfd336SDaniel Mack 5915e7c0344SDaniel Mack /* In case the device was put to hard reset during sleep, we need to 5925e7c0344SDaniel Mack * wait 500ns here before any I2C communication. */ 5935e7c0344SDaniel Mack ndelay(500); 5945e7c0344SDaniel Mack 5955e7c0344SDaniel Mack /* first restore the entire register cache ... */ 5961ca65175SMark Brown regcache_sync(cs4270->regmap); 5975e7c0344SDaniel Mack 5985e7c0344SDaniel Mack /* ... then disable the power-down bits */ 59970c9a803SKuninori Morimoto reg = snd_soc_component_read32(component, CS4270_PWRCTL); 6005e7c0344SDaniel Mack reg &= ~CS4270_PWRCTL_PDN_ALL; 6015e7c0344SDaniel Mack 60270c9a803SKuninori Morimoto return snd_soc_component_write(component, CS4270_PWRCTL, reg); 6035e7c0344SDaniel Mack } 6045e7c0344SDaniel Mack #else 60515b5bdaeSDaniel Mack #define cs4270_soc_suspend NULL 60615b5bdaeSDaniel Mack #define cs4270_soc_resume NULL 6075e7c0344SDaniel Mack #endif /* CONFIG_PM */ 6085e7c0344SDaniel Mack 609ff7bf02fSTimur Tabi /* 610b6f7d7c8SDaniel Mack * ASoC codec driver structure 611f0fba2adSLiam Girdwood */ 61270c9a803SKuninori Morimoto static const struct snd_soc_component_driver soc_component_device_cs4270 = { 613f0fba2adSLiam Girdwood .probe = cs4270_probe, 614f0fba2adSLiam Girdwood .remove = cs4270_remove, 615f0fba2adSLiam Girdwood .suspend = cs4270_soc_suspend, 616f0fba2adSLiam Girdwood .resume = cs4270_soc_resume, 61719ace0e9SMark Brown .controls = cs4270_snd_controls, 61819ace0e9SMark Brown .num_controls = ARRAY_SIZE(cs4270_snd_controls), 619782fbabaSMark Brown .dapm_widgets = cs4270_dapm_widgets, 620782fbabaSMark Brown .num_dapm_widgets = ARRAY_SIZE(cs4270_dapm_widgets), 621782fbabaSMark Brown .dapm_routes = cs4270_dapm_routes, 622782fbabaSMark Brown .num_dapm_routes = ARRAY_SIZE(cs4270_dapm_routes), 62370c9a803SKuninori Morimoto .idle_bias_on = 1, 62470c9a803SKuninori Morimoto .use_pmdown_time = 1, 62570c9a803SKuninori Morimoto .endianness = 1, 62670c9a803SKuninori Morimoto .non_legacy_dai_naming = 1, 627f0fba2adSLiam Girdwood }; 628f0fba2adSLiam Girdwood 62985d07e4dSDaniel Mack /* 63085d07e4dSDaniel Mack * cs4270_of_match - the device tree bindings 63185d07e4dSDaniel Mack */ 63285d07e4dSDaniel Mack static const struct of_device_id cs4270_of_match[] = { 63385d07e4dSDaniel Mack { .compatible = "cirrus,cs4270", }, 63485d07e4dSDaniel Mack { } 63585d07e4dSDaniel Mack }; 63685d07e4dSDaniel Mack MODULE_DEVICE_TABLE(of, cs4270_of_match); 63785d07e4dSDaniel Mack 6381ca65175SMark Brown static const struct regmap_config cs4270_regmap = { 6391ca65175SMark Brown .reg_bits = 8, 6401ca65175SMark Brown .val_bits = 8, 6411ca65175SMark Brown .max_register = CS4270_LASTREG, 6421ca65175SMark Brown .reg_defaults = cs4270_reg_defaults, 6431ca65175SMark Brown .num_reg_defaults = ARRAY_SIZE(cs4270_reg_defaults), 6441ca65175SMark Brown .cache_type = REGCACHE_RBTREE, 645*f0f2338aSDaniel Mack .write_flag_mask = CS4270_I2C_INCR, 6461ca65175SMark Brown 6471ca65175SMark Brown .readable_reg = cs4270_reg_is_readable, 6481ca65175SMark Brown .volatile_reg = cs4270_reg_is_volatile, 6491ca65175SMark Brown }; 6501ca65175SMark Brown 651f0fba2adSLiam Girdwood /** 652f0fba2adSLiam Girdwood * cs4270_i2c_probe - initialize the I2C interface of the CS4270 653f0fba2adSLiam Girdwood * @i2c_client: the I2C client object 654f0fba2adSLiam Girdwood * @id: the I2C device ID (ignored) 655f0fba2adSLiam Girdwood * 656f0fba2adSLiam Girdwood * This function is called whenever the I2C subsystem finds a device that 657f0fba2adSLiam Girdwood * matches the device ID given via a prior call to i2c_add_driver(). 658f0fba2adSLiam Girdwood */ 659f0fba2adSLiam Girdwood static int cs4270_i2c_probe(struct i2c_client *i2c_client, 660f0fba2adSLiam Girdwood const struct i2c_device_id *id) 661f0fba2adSLiam Girdwood { 662f0fba2adSLiam Girdwood struct cs4270_private *cs4270; 663f98acd8aSDaniel Mack struct gpio_desc *reset_gpiod; 6641ca65175SMark Brown unsigned int val; 665b61d6d40SMark Brown int ret, i; 666b61d6d40SMark Brown 667b61d6d40SMark Brown cs4270 = devm_kzalloc(&i2c_client->dev, sizeof(struct cs4270_private), 668b61d6d40SMark Brown GFP_KERNEL); 6690e0327f2SSachin Kamat if (!cs4270) 670b61d6d40SMark Brown return -ENOMEM; 671b61d6d40SMark Brown 672b61d6d40SMark Brown /* get the power supply regulators */ 673b61d6d40SMark Brown for (i = 0; i < ARRAY_SIZE(supply_names); i++) 674b61d6d40SMark Brown cs4270->supplies[i].supply = supply_names[i]; 675b61d6d40SMark Brown 676b61d6d40SMark Brown ret = devm_regulator_bulk_get(&i2c_client->dev, 677b61d6d40SMark Brown ARRAY_SIZE(cs4270->supplies), 678b61d6d40SMark Brown cs4270->supplies); 679b61d6d40SMark Brown if (ret < 0) 680b61d6d40SMark Brown return ret; 681f0fba2adSLiam Girdwood 682f98acd8aSDaniel Mack reset_gpiod = devm_gpiod_get_optional(&i2c_client->dev, "reset", 683f98acd8aSDaniel Mack GPIOD_OUT_HIGH); 684f98acd8aSDaniel Mack if (IS_ERR(reset_gpiod) && 685f98acd8aSDaniel Mack PTR_ERR(reset_gpiod) == -EPROBE_DEFER) 686f98acd8aSDaniel Mack return -EPROBE_DEFER; 68702286190SDaniel Mack 6881ca65175SMark Brown cs4270->regmap = devm_regmap_init_i2c(i2c_client, &cs4270_regmap); 6891ca65175SMark Brown if (IS_ERR(cs4270->regmap)) 6901ca65175SMark Brown return PTR_ERR(cs4270->regmap); 691f0fba2adSLiam Girdwood 6921ca65175SMark Brown /* Verify that we have a CS4270 */ 6931ca65175SMark Brown ret = regmap_read(cs4270->regmap, CS4270_CHIPID, &val); 694f0fba2adSLiam Girdwood if (ret < 0) { 695f0fba2adSLiam Girdwood dev_err(&i2c_client->dev, "failed to read i2c at addr %X\n", 696f0fba2adSLiam Girdwood i2c_client->addr); 697f0fba2adSLiam Girdwood return ret; 698f0fba2adSLiam Girdwood } 699f0fba2adSLiam Girdwood /* The top four bits of the chip ID should be 1100. */ 7001ca65175SMark Brown if ((val & 0xF0) != 0xC0) { 701f0fba2adSLiam Girdwood dev_err(&i2c_client->dev, "device at addr %X is not a CS4270\n", 702f0fba2adSLiam Girdwood i2c_client->addr); 703f0fba2adSLiam Girdwood return -ENODEV; 704f0fba2adSLiam Girdwood } 705f0fba2adSLiam Girdwood 706f0fba2adSLiam Girdwood dev_info(&i2c_client->dev, "found device at i2c address %X\n", 707f0fba2adSLiam Girdwood i2c_client->addr); 7081ca65175SMark Brown dev_info(&i2c_client->dev, "hardware revision %X\n", val & 0xF); 709f0fba2adSLiam Girdwood 710f0fba2adSLiam Girdwood i2c_set_clientdata(i2c_client, cs4270); 711f0fba2adSLiam Girdwood 71270c9a803SKuninori Morimoto ret = devm_snd_soc_register_component(&i2c_client->dev, 71370c9a803SKuninori Morimoto &soc_component_device_cs4270, &cs4270_dai, 1); 714f0fba2adSLiam Girdwood return ret; 715f0fba2adSLiam Girdwood } 716f0fba2adSLiam Girdwood 717f0fba2adSLiam Girdwood /* 718f0fba2adSLiam Girdwood * cs4270_id - I2C device IDs supported by this driver 719f0fba2adSLiam Girdwood */ 72079a54ea1SAxel Lin static const struct i2c_device_id cs4270_id[] = { 721f0fba2adSLiam Girdwood {"cs4270", 0}, 722f0fba2adSLiam Girdwood {} 723f0fba2adSLiam Girdwood }; 724f0fba2adSLiam Girdwood MODULE_DEVICE_TABLE(i2c, cs4270_id); 725f0fba2adSLiam Girdwood 726f0fba2adSLiam Girdwood /* 727ff7bf02fSTimur Tabi * cs4270_i2c_driver - I2C device identification 728ff7bf02fSTimur Tabi * 729ff7bf02fSTimur Tabi * This structure tells the I2C subsystem how to identify and support a 730ff7bf02fSTimur Tabi * given I2C device type. 731ff7bf02fSTimur Tabi */ 7320db4d070STimur Tabi static struct i2c_driver cs4270_i2c_driver = { 7330db4d070STimur Tabi .driver = { 73464902b29SShawn Guo .name = "cs4270", 73585d07e4dSDaniel Mack .of_match_table = cs4270_of_match, 7360db4d070STimur Tabi }, 7370db4d070STimur Tabi .id_table = cs4270_id, 7380db4d070STimur Tabi .probe = cs4270_i2c_probe, 7390db4d070STimur Tabi }; 7400db4d070STimur Tabi 7415e383f53SSachin Kamat module_i2c_driver(cs4270_i2c_driver); 74264089b84SMark Brown 743b0c813ceSTimur Tabi MODULE_AUTHOR("Timur Tabi <timur@freescale.com>"); 744b0c813ceSTimur Tabi MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver"); 745b0c813ceSTimur Tabi MODULE_LICENSE("GPL"); 746