xref: /linux/sound/soc/codecs/cs4270.c (revision ab92d09d1306c738b751b839d81e867af1039d14)
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>
32b0c813ceSTimur Tabi 
33b0c813ceSTimur Tabi /*
34b0c813ceSTimur Tabi  * The codec isn't really big-endian or little-endian, since the I2S
35b0c813ceSTimur Tabi  * interface requires data to be sent serially with the MSbit first.
36b0c813ceSTimur Tabi  * However, to support BE and LE I2S devices, we specify both here.  That
37b0c813ceSTimur Tabi  * way, ALSA will always match the bit patterns.
38b0c813ceSTimur Tabi  */
39b0c813ceSTimur Tabi #define CS4270_FORMATS (SNDRV_PCM_FMTBIT_S8      | \
40b0c813ceSTimur Tabi 			SNDRV_PCM_FMTBIT_S16_LE  | SNDRV_PCM_FMTBIT_S16_BE  | \
41b0c813ceSTimur Tabi 			SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE | \
42b0c813ceSTimur Tabi 			SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE | \
43b0c813ceSTimur Tabi 			SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE | \
44b0c813ceSTimur Tabi 			SNDRV_PCM_FMTBIT_S24_LE  | SNDRV_PCM_FMTBIT_S24_BE)
45b0c813ceSTimur Tabi 
46b0c813ceSTimur Tabi /* CS4270 registers addresses */
47b0c813ceSTimur Tabi #define CS4270_CHIPID	0x01	/* Chip ID */
48b0c813ceSTimur Tabi #define CS4270_PWRCTL	0x02	/* Power Control */
49b0c813ceSTimur Tabi #define CS4270_MODE	0x03	/* Mode Control */
50b0c813ceSTimur Tabi #define CS4270_FORMAT	0x04	/* Serial Format, ADC/DAC Control */
51b0c813ceSTimur Tabi #define CS4270_TRANS	0x05	/* Transition Control */
52b0c813ceSTimur Tabi #define CS4270_MUTE	0x06	/* Mute Control */
53b0c813ceSTimur Tabi #define CS4270_VOLA	0x07	/* DAC Channel A Volume Control */
54b0c813ceSTimur Tabi #define CS4270_VOLB	0x08	/* DAC Channel B Volume Control */
55b0c813ceSTimur Tabi 
56b0c813ceSTimur Tabi #define CS4270_FIRSTREG	0x01
57b0c813ceSTimur Tabi #define CS4270_LASTREG	0x08
58b0c813ceSTimur Tabi #define CS4270_NUMREGS	(CS4270_LASTREG - CS4270_FIRSTREG + 1)
5980ab8817SDaniel Mack #define CS4270_I2C_INCR	0x80
60b0c813ceSTimur Tabi 
61b0c813ceSTimur Tabi /* Bit masks for the CS4270 registers */
62b0c813ceSTimur Tabi #define CS4270_CHIPID_ID	0xF0
63b0c813ceSTimur Tabi #define CS4270_CHIPID_REV	0x0F
64b0c813ceSTimur Tabi #define CS4270_PWRCTL_FREEZE	0x80
65b0c813ceSTimur Tabi #define CS4270_PWRCTL_PDN_ADC	0x20
66b0c813ceSTimur Tabi #define CS4270_PWRCTL_PDN_DAC	0x02
67b0c813ceSTimur Tabi #define CS4270_PWRCTL_PDN	0x01
685e7c0344SDaniel Mack #define CS4270_PWRCTL_PDN_ALL	\
695e7c0344SDaniel Mack 	(CS4270_PWRCTL_PDN_ADC | CS4270_PWRCTL_PDN_DAC | CS4270_PWRCTL_PDN)
70b0c813ceSTimur Tabi #define CS4270_MODE_SPEED_MASK	0x30
71b0c813ceSTimur Tabi #define CS4270_MODE_1X		0x00
72b0c813ceSTimur Tabi #define CS4270_MODE_2X		0x10
73b0c813ceSTimur Tabi #define CS4270_MODE_4X		0x20
74b0c813ceSTimur Tabi #define CS4270_MODE_SLAVE	0x30
75b0c813ceSTimur Tabi #define CS4270_MODE_DIV_MASK	0x0E
76b0c813ceSTimur Tabi #define CS4270_MODE_DIV1	0x00
77b0c813ceSTimur Tabi #define CS4270_MODE_DIV15	0x02
78b0c813ceSTimur Tabi #define CS4270_MODE_DIV2	0x04
79b0c813ceSTimur Tabi #define CS4270_MODE_DIV3	0x06
80b0c813ceSTimur Tabi #define CS4270_MODE_DIV4	0x08
81b0c813ceSTimur Tabi #define CS4270_MODE_POPGUARD	0x01
82b0c813ceSTimur Tabi #define CS4270_FORMAT_FREEZE_A	0x80
83b0c813ceSTimur Tabi #define CS4270_FORMAT_FREEZE_B	0x40
84b0c813ceSTimur Tabi #define CS4270_FORMAT_LOOPBACK	0x20
85b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_MASK	0x18
86b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_LJ	0x00
87b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_I2S	0x08
88b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_RJ16	0x18
89b0c813ceSTimur Tabi #define CS4270_FORMAT_DAC_RJ24	0x10
90b0c813ceSTimur Tabi #define CS4270_FORMAT_ADC_MASK	0x01
91b0c813ceSTimur Tabi #define CS4270_FORMAT_ADC_LJ	0x00
92b0c813ceSTimur Tabi #define CS4270_FORMAT_ADC_I2S	0x01
93b0c813ceSTimur Tabi #define CS4270_TRANS_ONE_VOL	0x80
94b0c813ceSTimur Tabi #define CS4270_TRANS_SOFT	0x40
95b0c813ceSTimur Tabi #define CS4270_TRANS_ZERO	0x20
96b0c813ceSTimur Tabi #define CS4270_TRANS_INV_ADC_A	0x08
97b0c813ceSTimur Tabi #define CS4270_TRANS_INV_ADC_B	0x10
98b0c813ceSTimur Tabi #define CS4270_TRANS_INV_DAC_A	0x02
99b0c813ceSTimur Tabi #define CS4270_TRANS_INV_DAC_B	0x04
100b0c813ceSTimur Tabi #define CS4270_TRANS_DEEMPH	0x01
101b0c813ceSTimur Tabi #define CS4270_MUTE_AUTO	0x20
102b0c813ceSTimur Tabi #define CS4270_MUTE_ADC_A	0x08
103b0c813ceSTimur Tabi #define CS4270_MUTE_ADC_B	0x10
104b0c813ceSTimur Tabi #define CS4270_MUTE_POLARITY	0x04
105b0c813ceSTimur Tabi #define CS4270_MUTE_DAC_A	0x01
106b0c813ceSTimur Tabi #define CS4270_MUTE_DAC_B	0x02
107b0c813ceSTimur Tabi 
10811b8fca5STimur Tabi /* Power-on default values for the registers
10911b8fca5STimur Tabi  *
11011b8fca5STimur Tabi  * This array contains the power-on default values of the registers, with the
11111b8fca5STimur Tabi  * exception of the "CHIPID" register (01h).  The lower four bits of that
11211b8fca5STimur Tabi  * register contain the hardware revision, so it is treated as volatile.
11311b8fca5STimur Tabi  *
11411b8fca5STimur Tabi  * Also note that on the CS4270, the first readable register is 1, but ASoC
11511b8fca5STimur Tabi  * assumes the first register is 0.  Therfore, the array must have an entry for
11611b8fca5STimur Tabi  * register 0, but we use cs4270_reg_is_readable() to tell ASoC that it can't
11711b8fca5STimur Tabi  * be read.
11811b8fca5STimur Tabi  */
11911b8fca5STimur Tabi static const u8 cs4270_default_reg_cache[CS4270_LASTREG + 1] = {
12011b8fca5STimur Tabi 	0x00, 0x00, 0x00, 0x30, 0x00, 0x60, 0x20, 0x00, 0x00
12111b8fca5STimur Tabi };
12211b8fca5STimur Tabi 
123ffbfd336SDaniel Mack static const char *supply_names[] = {
124ffbfd336SDaniel Mack 	"va", "vd", "vlc"
125ffbfd336SDaniel Mack };
126ffbfd336SDaniel Mack 
1270db4d070STimur Tabi /* Private data for the CS4270 */
1280db4d070STimur Tabi struct cs4270_private {
129f0fba2adSLiam Girdwood 	enum snd_soc_control_type control_type;
1300db4d070STimur Tabi 	unsigned int mclk; /* Input frequency of the MCLK pin */
1310db4d070STimur Tabi 	unsigned int mode; /* The mode (I2S or left-justified) */
1324eae080dSDaniel Mack 	unsigned int slave_mode;
1331a4ba05eSDaniel Mack 	unsigned int manual_mute;
134ffbfd336SDaniel Mack 
135ffbfd336SDaniel Mack 	/* power domain regulators */
136ffbfd336SDaniel Mack 	struct regulator_bulk_data supplies[ARRAY_SIZE(supply_names)];
1370db4d070STimur Tabi };
1380db4d070STimur Tabi 
139ff7bf02fSTimur Tabi /**
140ff7bf02fSTimur Tabi  * struct cs4270_mode_ratios - clock ratio tables
141ff7bf02fSTimur Tabi  * @ratio: the ratio of MCLK to the sample rate
142ff7bf02fSTimur Tabi  * @speed_mode: the Speed Mode bits to set in the Mode Control register for
143ff7bf02fSTimur Tabi  *              this ratio
144ff7bf02fSTimur Tabi  * @mclk: the Ratio Select bits to set in the Mode Control register for this
145ff7bf02fSTimur Tabi  *        ratio
1468432395fSTimur Tabi  *
1478432395fSTimur Tabi  * The data for this chart is taken from Table 5 of the CS4270 reference
1488432395fSTimur Tabi  * manual.
1498432395fSTimur Tabi  *
1508432395fSTimur Tabi  * This table is used to determine how to program the Mode Control register.
1518432395fSTimur Tabi  * It is also used by cs4270_set_dai_sysclk() to tell ALSA which sampling
1528432395fSTimur Tabi  * rates the CS4270 currently supports.
1538432395fSTimur Tabi  *
154ff7bf02fSTimur Tabi  * @speed_mode is the corresponding bit pattern to be written to the
1558432395fSTimur Tabi  * MODE bits of the Mode Control Register
1568432395fSTimur Tabi  *
157ff7bf02fSTimur Tabi  * @mclk is the corresponding bit pattern to be wirten to the MCLK bits of
1588432395fSTimur Tabi  * the Mode Control Register.
1598432395fSTimur Tabi  *
1608432395fSTimur Tabi  * In situations where a single ratio is represented by multiple speed
1618432395fSTimur Tabi  * modes, we favor the slowest speed.  E.g, for a ratio of 128, we pick
1628432395fSTimur Tabi  * double-speed instead of quad-speed.  However, the CS4270 errata states
163ff7bf02fSTimur Tabi  * that divide-By-1.5 can cause failures, so we avoid that mode where
1648432395fSTimur Tabi  * possible.
1658432395fSTimur Tabi  *
166ff7bf02fSTimur Tabi  * Errata: There is an errata for the CS4270 where divide-by-1.5 does not
167ff7bf02fSTimur Tabi  * work if Vd is 3.3V.  If this effects you, select the
1688432395fSTimur Tabi  * CONFIG_SND_SOC_CS4270_VD33_ERRATA Kconfig option, and the driver will
1698432395fSTimur Tabi  * never select any sample rates that require divide-by-1.5.
1708432395fSTimur Tabi  */
171ff7bf02fSTimur Tabi struct cs4270_mode_ratios {
1728432395fSTimur Tabi 	unsigned int ratio;
1738432395fSTimur Tabi 	u8 speed_mode;
1748432395fSTimur Tabi 	u8 mclk;
175ff7bf02fSTimur Tabi };
176ff7bf02fSTimur Tabi 
177d9fb7fbdSTimur Tabi static struct cs4270_mode_ratios cs4270_mode_ratios[] = {
1788432395fSTimur Tabi 	{64, CS4270_MODE_4X, CS4270_MODE_DIV1},
1798432395fSTimur Tabi #ifndef CONFIG_SND_SOC_CS4270_VD33_ERRATA
1808432395fSTimur Tabi 	{96, CS4270_MODE_4X, CS4270_MODE_DIV15},
1818432395fSTimur Tabi #endif
1828432395fSTimur Tabi 	{128, CS4270_MODE_2X, CS4270_MODE_DIV1},
1838432395fSTimur Tabi 	{192, CS4270_MODE_4X, CS4270_MODE_DIV3},
1848432395fSTimur Tabi 	{256, CS4270_MODE_1X, CS4270_MODE_DIV1},
1858432395fSTimur Tabi 	{384, CS4270_MODE_2X, CS4270_MODE_DIV3},
1868432395fSTimur Tabi 	{512, CS4270_MODE_1X, CS4270_MODE_DIV2},
1878432395fSTimur Tabi 	{768, CS4270_MODE_1X, CS4270_MODE_DIV3},
1888432395fSTimur Tabi 	{1024, CS4270_MODE_1X, CS4270_MODE_DIV4}
1898432395fSTimur Tabi };
1908432395fSTimur Tabi 
1918432395fSTimur Tabi /* The number of MCLK/LRCK ratios supported by the CS4270 */
1928432395fSTimur Tabi #define NUM_MCLK_RATIOS		ARRAY_SIZE(cs4270_mode_ratios)
1938432395fSTimur Tabi 
194d4754ec9SDimitris Papastamos static int cs4270_reg_is_readable(struct snd_soc_codec *codec, unsigned int reg)
19511b8fca5STimur Tabi {
19611b8fca5STimur Tabi 	return (reg >= CS4270_FIRSTREG) && (reg <= CS4270_LASTREG);
19711b8fca5STimur Tabi }
19811b8fca5STimur Tabi 
199d4754ec9SDimitris Papastamos static int cs4270_reg_is_volatile(struct snd_soc_codec *codec, unsigned int reg)
20011b8fca5STimur Tabi {
20111b8fca5STimur Tabi 	/* Unreadable registers are considered volatile */
20211b8fca5STimur Tabi 	if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
20311b8fca5STimur Tabi 		return 1;
20411b8fca5STimur Tabi 
20511b8fca5STimur Tabi 	return reg == CS4270_CHIPID;
20611b8fca5STimur Tabi }
20711b8fca5STimur Tabi 
208ff7bf02fSTimur Tabi /**
209ff7bf02fSTimur Tabi  * cs4270_set_dai_sysclk - determine the CS4270 samples rates.
210ff7bf02fSTimur Tabi  * @codec_dai: the codec DAI
211ff7bf02fSTimur Tabi  * @clk_id: the clock ID (ignored)
212ff7bf02fSTimur Tabi  * @freq: the MCLK input frequency
213ff7bf02fSTimur Tabi  * @dir: the clock direction (ignored)
2148432395fSTimur Tabi  *
215ff7bf02fSTimur Tabi  * This function is used to tell the codec driver what the input MCLK
216ff7bf02fSTimur Tabi  * frequency is.
2178432395fSTimur Tabi  *
2188432395fSTimur Tabi  * The value of MCLK is used to determine which sample rates are supported
2198432395fSTimur Tabi  * by the CS4270.  The ratio of MCLK / Fs must be equal to one of nine
220ff7bf02fSTimur Tabi  * supported values - 64, 96, 128, 192, 256, 384, 512, 768, and 1024.
2218432395fSTimur Tabi  *
2228432395fSTimur Tabi  * This function calculates the nine ratios and determines which ones match
2238432395fSTimur Tabi  * a standard sample rate.  If there's a match, then it is added to the list
224ff7bf02fSTimur Tabi  * of supported sample rates.
2258432395fSTimur Tabi  *
2268432395fSTimur Tabi  * This function must be called by the machine driver's 'startup' function,
2278432395fSTimur Tabi  * otherwise the list of supported sample rates will not be available in
2288432395fSTimur Tabi  * time for ALSA.
2296aababdfSDaniel Mack  *
2306aababdfSDaniel Mack  * For setups with variable MCLKs, pass 0 as 'freq' argument. This will cause
2316aababdfSDaniel Mack  * theoretically possible sample rates to be enabled. Call it again with a
2326aababdfSDaniel Mack  * proper value set one the external clock is set (most probably you would do
2336aababdfSDaniel Mack  * that from a machine's driver 'hw_param' hook.
2348432395fSTimur Tabi  */
235e550e17fSLiam Girdwood static int cs4270_set_dai_sysclk(struct snd_soc_dai *codec_dai,
2368432395fSTimur Tabi 				 int clk_id, unsigned int freq, int dir)
2378432395fSTimur Tabi {
2388432395fSTimur Tabi 	struct snd_soc_codec *codec = codec_dai->codec;
239b2c812e2SMark Brown 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
2408432395fSTimur Tabi 
2418432395fSTimur Tabi 	cs4270->mclk = freq;
2428432395fSTimur Tabi 	return 0;
2438432395fSTimur Tabi }
2448432395fSTimur Tabi 
245ff7bf02fSTimur Tabi /**
246ff7bf02fSTimur Tabi  * cs4270_set_dai_fmt - configure the codec for the selected audio format
247ff7bf02fSTimur Tabi  * @codec_dai: the codec DAI
248ff7bf02fSTimur Tabi  * @format: a SND_SOC_DAIFMT_x value indicating the data format
2498432395fSTimur Tabi  *
2508432395fSTimur Tabi  * This function takes a bitmask of SND_SOC_DAIFMT_x bits and programs the
2518432395fSTimur Tabi  * codec accordingly.
2528432395fSTimur Tabi  *
2538432395fSTimur Tabi  * Currently, this function only supports SND_SOC_DAIFMT_I2S and
2548432395fSTimur Tabi  * SND_SOC_DAIFMT_LEFT_J.  The CS4270 codec also supports right-justified
2558432395fSTimur Tabi  * data for playback only, but ASoC currently does not support different
2568432395fSTimur Tabi  * formats for playback vs. record.
2578432395fSTimur Tabi  */
258e550e17fSLiam Girdwood static int cs4270_set_dai_fmt(struct snd_soc_dai *codec_dai,
2598432395fSTimur Tabi 			      unsigned int format)
2608432395fSTimur Tabi {
2618432395fSTimur Tabi 	struct snd_soc_codec *codec = codec_dai->codec;
262b2c812e2SMark Brown 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
2638432395fSTimur Tabi 
2644eae080dSDaniel Mack 	/* set DAI format */
2658432395fSTimur Tabi 	switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
2668432395fSTimur Tabi 	case SND_SOC_DAIFMT_I2S:
2678432395fSTimur Tabi 	case SND_SOC_DAIFMT_LEFT_J:
2688432395fSTimur Tabi 		cs4270->mode = format & SND_SOC_DAIFMT_FORMAT_MASK;
2698432395fSTimur Tabi 		break;
2708432395fSTimur Tabi 	default:
271a6c255e0STimur Tabi 		dev_err(codec->dev, "invalid dai format\n");
272ac60155fSAxel Lin 		return -EINVAL;
2738432395fSTimur Tabi 	}
2748432395fSTimur Tabi 
2754eae080dSDaniel Mack 	/* set master/slave audio interface */
2764eae080dSDaniel Mack 	switch (format & SND_SOC_DAIFMT_MASTER_MASK) {
2774eae080dSDaniel Mack 	case SND_SOC_DAIFMT_CBS_CFS:
2784eae080dSDaniel Mack 		cs4270->slave_mode = 1;
2794eae080dSDaniel Mack 		break;
2804eae080dSDaniel Mack 	case SND_SOC_DAIFMT_CBM_CFM:
2814eae080dSDaniel Mack 		cs4270->slave_mode = 0;
2824eae080dSDaniel Mack 		break;
2834eae080dSDaniel Mack 	default:
284ff09d49aSDaniel Mack 		/* all other modes are unsupported by the hardware */
285ac60155fSAxel Lin 		dev_err(codec->dev, "Unknown master/slave configuration\n");
286ac60155fSAxel Lin 		return -EINVAL;
2874eae080dSDaniel Mack 	}
2884eae080dSDaniel Mack 
289ac60155fSAxel Lin 	return 0;
2908432395fSTimur Tabi }
2918432395fSTimur Tabi 
292ff7bf02fSTimur Tabi /**
293ff7bf02fSTimur Tabi  * cs4270_hw_params - program the CS4270 with the given hardware parameters.
294ff7bf02fSTimur Tabi  * @substream: the audio stream
295ff7bf02fSTimur Tabi  * @params: the hardware parameters to set
296ff7bf02fSTimur Tabi  * @dai: the SOC DAI (ignored)
297b0c813ceSTimur Tabi  *
298ff7bf02fSTimur Tabi  * This function programs the hardware with the values provided.
299ff7bf02fSTimur Tabi  * Specifically, the sample rate and the data format.
300ff7bf02fSTimur Tabi  *
301ff7bf02fSTimur Tabi  * The .ops functions are used to provide board-specific data, like input
302ff7bf02fSTimur Tabi  * frequencies, to this driver.  This function takes that information,
303b0c813ceSTimur Tabi  * combines it with the hardware parameters provided, and programs the
304b0c813ceSTimur Tabi  * hardware accordingly.
305b0c813ceSTimur Tabi  */
306b0c813ceSTimur Tabi static int cs4270_hw_params(struct snd_pcm_substream *substream,
307dee89c4dSMark Brown 			    struct snd_pcm_hw_params *params,
308dee89c4dSMark Brown 			    struct snd_soc_dai *dai)
309b0c813ceSTimur Tabi {
310b0c813ceSTimur Tabi 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
311f0fba2adSLiam Girdwood 	struct snd_soc_codec *codec = rtd->codec;
312b2c812e2SMark Brown 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
313e34ba212SRoel Kluin 	int ret;
314b0c813ceSTimur Tabi 	unsigned int i;
315b0c813ceSTimur Tabi 	unsigned int rate;
316b0c813ceSTimur Tabi 	unsigned int ratio;
317b0c813ceSTimur Tabi 	int reg;
318b0c813ceSTimur Tabi 
319b0c813ceSTimur Tabi 	/* Figure out which MCLK/LRCK ratio to use */
320b0c813ceSTimur Tabi 
321b0c813ceSTimur Tabi 	rate = params_rate(params);	/* Sampling rate, in Hz */
322b0c813ceSTimur Tabi 	ratio = cs4270->mclk / rate;	/* MCLK/LRCK ratio */
323b0c813ceSTimur Tabi 
3249dbd627bSTimur Tabi 	for (i = 0; i < NUM_MCLK_RATIOS; i++) {
3258432395fSTimur Tabi 		if (cs4270_mode_ratios[i].ratio == ratio)
326b0c813ceSTimur Tabi 			break;
327b0c813ceSTimur Tabi 	}
328b0c813ceSTimur Tabi 
3299dbd627bSTimur Tabi 	if (i == NUM_MCLK_RATIOS) {
330b0c813ceSTimur Tabi 		/* We did not find a matching ratio */
331a6c255e0STimur Tabi 		dev_err(codec->dev, "could not find matching ratio\n");
332b0c813ceSTimur Tabi 		return -EINVAL;
333b0c813ceSTimur Tabi 	}
334b0c813ceSTimur Tabi 
335d5e9ba1dSTimur Tabi 	/* Set the sample rate */
336b0c813ceSTimur Tabi 
337b0c813ceSTimur Tabi 	reg = snd_soc_read(codec, CS4270_MODE);
338b0c813ceSTimur Tabi 	reg &= ~(CS4270_MODE_SPEED_MASK | CS4270_MODE_DIV_MASK);
3394eae080dSDaniel Mack 	reg |= cs4270_mode_ratios[i].mclk;
3404eae080dSDaniel Mack 
3414eae080dSDaniel Mack 	if (cs4270->slave_mode)
3424eae080dSDaniel Mack 		reg |= CS4270_MODE_SLAVE;
3434eae080dSDaniel Mack 	else
3444eae080dSDaniel Mack 		reg |= cs4270_mode_ratios[i].speed_mode;
345b0c813ceSTimur Tabi 
346b0c813ceSTimur Tabi 	ret = snd_soc_write(codec, CS4270_MODE, reg);
347b0c813ceSTimur Tabi 	if (ret < 0) {
348a6c255e0STimur Tabi 		dev_err(codec->dev, "i2c write failed\n");
349b0c813ceSTimur Tabi 		return ret;
350b0c813ceSTimur Tabi 	}
351b0c813ceSTimur Tabi 
352d5e9ba1dSTimur Tabi 	/* Set the DAI format */
353b0c813ceSTimur Tabi 
354b0c813ceSTimur Tabi 	reg = snd_soc_read(codec, CS4270_FORMAT);
355b0c813ceSTimur Tabi 	reg &= ~(CS4270_FORMAT_DAC_MASK | CS4270_FORMAT_ADC_MASK);
356b0c813ceSTimur Tabi 
357b0c813ceSTimur Tabi 	switch (cs4270->mode) {
358b0c813ceSTimur Tabi 	case SND_SOC_DAIFMT_I2S:
359b0c813ceSTimur Tabi 		reg |= CS4270_FORMAT_DAC_I2S | CS4270_FORMAT_ADC_I2S;
360b0c813ceSTimur Tabi 		break;
361b0c813ceSTimur Tabi 	case SND_SOC_DAIFMT_LEFT_J:
362b0c813ceSTimur Tabi 		reg |= CS4270_FORMAT_DAC_LJ | CS4270_FORMAT_ADC_LJ;
363b0c813ceSTimur Tabi 		break;
364b0c813ceSTimur Tabi 	default:
365a6c255e0STimur Tabi 		dev_err(codec->dev, "unknown dai format\n");
366b0c813ceSTimur Tabi 		return -EINVAL;
367b0c813ceSTimur Tabi 	}
368b0c813ceSTimur Tabi 
369b0c813ceSTimur Tabi 	ret = snd_soc_write(codec, CS4270_FORMAT, reg);
370b0c813ceSTimur Tabi 	if (ret < 0) {
371a6c255e0STimur Tabi 		dev_err(codec->dev, "i2c write failed\n");
372b0c813ceSTimur Tabi 		return ret;
373b0c813ceSTimur Tabi 	}
374b0c813ceSTimur Tabi 
375b0c813ceSTimur Tabi 	return ret;
376b0c813ceSTimur Tabi }
377b0c813ceSTimur Tabi 
378ff7bf02fSTimur Tabi /**
3791a4ba05eSDaniel Mack  * cs4270_dai_mute - enable/disable the CS4270 external mute
380ff7bf02fSTimur Tabi  * @dai: the SOC DAI
381ff7bf02fSTimur Tabi  * @mute: 0 = disable mute, 1 = enable mute
382b0c813ceSTimur Tabi  *
383b0c813ceSTimur Tabi  * This function toggles the mute bits in the MUTE register.  The CS4270's
384b0c813ceSTimur Tabi  * mute capability is intended for external muting circuitry, so if the
385b0c813ceSTimur Tabi  * board does not have the MUTEA or MUTEB pins connected to such circuitry,
386b0c813ceSTimur Tabi  * then this function will do nothing.
387b0c813ceSTimur Tabi  */
3881a4ba05eSDaniel Mack static int cs4270_dai_mute(struct snd_soc_dai *dai, int mute)
389b0c813ceSTimur Tabi {
390b0c813ceSTimur Tabi 	struct snd_soc_codec *codec = dai->codec;
391b2c812e2SMark Brown 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
392b0c813ceSTimur Tabi 	int reg6;
393b0c813ceSTimur Tabi 
394b0c813ceSTimur Tabi 	reg6 = snd_soc_read(codec, CS4270_MUTE);
395b0c813ceSTimur Tabi 
396b0c813ceSTimur Tabi 	if (mute)
397d5e9ba1dSTimur Tabi 		reg6 |= CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B;
3981a4ba05eSDaniel Mack 	else {
399d5e9ba1dSTimur Tabi 		reg6 &= ~(CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B);
4001a4ba05eSDaniel Mack 		reg6 |= cs4270->manual_mute;
4011a4ba05eSDaniel Mack 	}
402b0c813ceSTimur Tabi 
403b0c813ceSTimur Tabi 	return snd_soc_write(codec, CS4270_MUTE, reg6);
404b0c813ceSTimur Tabi }
405b0c813ceSTimur Tabi 
4061a4ba05eSDaniel Mack /**
4071a4ba05eSDaniel Mack  * cs4270_soc_put_mute - put callback for the 'Master Playback switch'
4081a4ba05eSDaniel Mack  * 			 alsa control.
4091a4ba05eSDaniel Mack  * @kcontrol: mixer control
4101a4ba05eSDaniel Mack  * @ucontrol: control element information
4111a4ba05eSDaniel Mack  *
4121a4ba05eSDaniel Mack  * This function basically passes the arguments on to the generic
4131a4ba05eSDaniel Mack  * snd_soc_put_volsw() function and saves the mute information in
4141a4ba05eSDaniel Mack  * our private data structure. This is because we want to prevent
4151a4ba05eSDaniel Mack  * cs4270_dai_mute() neglecting the user's decision to manually
4161a4ba05eSDaniel Mack  * mute the codec's output.
4171a4ba05eSDaniel Mack  *
4181a4ba05eSDaniel Mack  * Returns 0 for success.
4191a4ba05eSDaniel Mack  */
4201a4ba05eSDaniel Mack static int cs4270_soc_put_mute(struct snd_kcontrol *kcontrol,
4211a4ba05eSDaniel Mack 				struct snd_ctl_elem_value *ucontrol)
4221a4ba05eSDaniel Mack {
4231a4ba05eSDaniel Mack 	struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
424b2c812e2SMark Brown 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
4251a4ba05eSDaniel Mack 	int left = !ucontrol->value.integer.value[0];
4261a4ba05eSDaniel Mack 	int right = !ucontrol->value.integer.value[1];
4271a4ba05eSDaniel Mack 
4281a4ba05eSDaniel Mack 	cs4270->manual_mute = (left ? CS4270_MUTE_DAC_A : 0) |
4291a4ba05eSDaniel Mack 			      (right ? CS4270_MUTE_DAC_B : 0);
4301a4ba05eSDaniel Mack 
4311a4ba05eSDaniel Mack 	return snd_soc_put_volsw(kcontrol, ucontrol);
4321a4ba05eSDaniel Mack }
4331a4ba05eSDaniel Mack 
434b0c813ceSTimur Tabi /* A list of non-DAPM controls that the CS4270 supports */
435b0c813ceSTimur Tabi static const struct snd_kcontrol_new cs4270_snd_controls[] = {
436b0c813ceSTimur Tabi 	SOC_DOUBLE_R("Master Playback Volume",
437d5e9ba1dSTimur Tabi 		CS4270_VOLA, CS4270_VOLB, 0, 0xFF, 1),
438d5e9ba1dSTimur Tabi 	SOC_SINGLE("Digital Sidetone Switch", CS4270_FORMAT, 5, 1, 0),
439d5e9ba1dSTimur Tabi 	SOC_SINGLE("Soft Ramp Switch", CS4270_TRANS, 6, 1, 0),
440d5e9ba1dSTimur Tabi 	SOC_SINGLE("Zero Cross Switch", CS4270_TRANS, 5, 1, 0),
4417e1aa1dcSDaniel Mack 	SOC_SINGLE("De-emphasis filter", CS4270_TRANS, 0, 1, 0),
442d5e9ba1dSTimur Tabi 	SOC_SINGLE("Popguard Switch", CS4270_MODE, 0, 1, 1),
443d5e9ba1dSTimur Tabi 	SOC_SINGLE("Auto-Mute Switch", CS4270_MUTE, 5, 1, 0),
4441a4ba05eSDaniel Mack 	SOC_DOUBLE("Master Capture Switch", CS4270_MUTE, 3, 4, 1, 1),
4451a4ba05eSDaniel Mack 	SOC_DOUBLE_EXT("Master Playback Switch", CS4270_MUTE, 0, 1, 1, 1,
4461a4ba05eSDaniel Mack 		snd_soc_get_volsw, cs4270_soc_put_mute),
447b0c813ceSTimur Tabi };
448b0c813ceSTimur Tabi 
44985e7652dSLars-Peter Clausen static const struct snd_soc_dai_ops cs4270_dai_ops = {
4506335d055SEric Miao 	.hw_params	= cs4270_hw_params,
4516335d055SEric Miao 	.set_sysclk	= cs4270_set_dai_sysclk,
4526335d055SEric Miao 	.set_fmt	= cs4270_set_dai_fmt,
4531a4ba05eSDaniel Mack 	.digital_mute	= cs4270_dai_mute,
4546335d055SEric Miao };
4556335d055SEric Miao 
4565c75848aSMark Brown static struct snd_soc_dai_driver cs4270_dai = {
457f0fba2adSLiam Girdwood 	.name = "cs4270-hifi",
458b0c813ceSTimur Tabi 	.playback = {
459b0c813ceSTimur Tabi 		.stream_name = "Playback",
460b0c813ceSTimur Tabi 		.channels_min = 1,
461b0c813ceSTimur Tabi 		.channels_max = 2,
462f0fba2adSLiam Girdwood 		.rates = SNDRV_PCM_RATE_CONTINUOUS,
463f0fba2adSLiam Girdwood 		.rate_min = 4000,
464f0fba2adSLiam Girdwood 		.rate_max = 216000,
465b0c813ceSTimur Tabi 		.formats = CS4270_FORMATS,
466b0c813ceSTimur Tabi 	},
467b0c813ceSTimur Tabi 	.capture = {
468b0c813ceSTimur Tabi 		.stream_name = "Capture",
469b0c813ceSTimur Tabi 		.channels_min = 1,
470b0c813ceSTimur Tabi 		.channels_max = 2,
471f0fba2adSLiam Girdwood 		.rates = SNDRV_PCM_RATE_CONTINUOUS,
472f0fba2adSLiam Girdwood 		.rate_min = 4000,
473f0fba2adSLiam Girdwood 		.rate_max = 216000,
474b0c813ceSTimur Tabi 		.formats = CS4270_FORMATS,
475b0c813ceSTimur Tabi 	},
4766335d055SEric Miao 	.ops = &cs4270_dai_ops,
477b0c813ceSTimur Tabi };
478b0c813ceSTimur Tabi 
479ff7bf02fSTimur Tabi /**
480ff7bf02fSTimur Tabi  * cs4270_probe - ASoC probe function
481ff7bf02fSTimur Tabi  * @pdev: platform device
482ff7bf02fSTimur Tabi  *
483ff7bf02fSTimur Tabi  * This function is called when ASoC has all the pieces it needs to
484ff7bf02fSTimur Tabi  * instantiate a sound driver.
48504eb093cSTimur Tabi  */
486f0fba2adSLiam Girdwood static int cs4270_probe(struct snd_soc_codec *codec)
48704eb093cSTimur Tabi {
488b2c812e2SMark Brown 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
48911b8fca5STimur Tabi 	int i, ret;
49004eb093cSTimur Tabi 
49111b8fca5STimur Tabi 	/* Tell ASoC what kind of I/O to use to read the registers.  ASoC will
49211b8fca5STimur Tabi 	 * then do the I2C transactions itself.
49311b8fca5STimur Tabi 	 */
49411b8fca5STimur Tabi 	ret = snd_soc_codec_set_cache_io(codec, 8, 8, cs4270->control_type);
4950db4d070STimur Tabi 	if (ret < 0) {
49611b8fca5STimur Tabi 		dev_err(codec->dev, "failed to set cache I/O (ret=%i)\n", ret);
497f0fba2adSLiam Girdwood 		return ret;
4980db4d070STimur Tabi 	}
499b0c813ceSTimur Tabi 
500d5e9ba1dSTimur Tabi 	/* Disable auto-mute.  This feature appears to be buggy.  In some
501d5e9ba1dSTimur Tabi 	 * situations, auto-mute will not deactivate when it should, so we want
502d5e9ba1dSTimur Tabi 	 * this feature disabled by default.  An application (e.g. alsactl) can
503d5e9ba1dSTimur Tabi 	 * re-enabled it by using the controls.
504d5e9ba1dSTimur Tabi 	 */
50511b8fca5STimur Tabi 	ret = snd_soc_update_bits(codec, CS4270_MUTE, CS4270_MUTE_AUTO, 0);
506d5e9ba1dSTimur Tabi 	if (ret < 0) {
507f0fba2adSLiam Girdwood 		dev_err(codec->dev, "i2c write failed\n");
508d5e9ba1dSTimur Tabi 		return ret;
509d5e9ba1dSTimur Tabi 	}
510d5e9ba1dSTimur Tabi 
511d5e9ba1dSTimur Tabi 	/* Disable automatic volume control.  The hardware enables, and it
512d5e9ba1dSTimur Tabi 	 * causes volume change commands to be delayed, sometimes until after
513d5e9ba1dSTimur Tabi 	 * playback has started.  An application (e.g. alsactl) can
514d5e9ba1dSTimur Tabi 	 * re-enabled it by using the controls.
515d5e9ba1dSTimur Tabi 	 */
51611b8fca5STimur Tabi 	ret = snd_soc_update_bits(codec, CS4270_TRANS,
51711b8fca5STimur Tabi 		CS4270_TRANS_SOFT | CS4270_TRANS_ZERO, 0);
518d5e9ba1dSTimur Tabi 	if (ret < 0) {
519f0fba2adSLiam Girdwood 		dev_err(codec->dev, "i2c write failed\n");
520d5e9ba1dSTimur Tabi 		return ret;
521d5e9ba1dSTimur Tabi 	}
522d5e9ba1dSTimur Tabi 
523f0fba2adSLiam Girdwood 	/* Add the non-DAPM controls */
524022658beSLiam Girdwood 	ret = snd_soc_add_codec_controls(codec, cs4270_snd_controls,
525f0fba2adSLiam Girdwood 				ARRAY_SIZE(cs4270_snd_controls));
526b0c813ceSTimur Tabi 	if (ret < 0) {
527f0fba2adSLiam Girdwood 		dev_err(codec->dev, "failed to add controls\n");
528f0fba2adSLiam Girdwood 		return ret;
529b0c813ceSTimur Tabi 	}
530b0c813ceSTimur Tabi 
531f0fba2adSLiam Girdwood 	/* get the power supply regulators */
532f0fba2adSLiam Girdwood 	for (i = 0; i < ARRAY_SIZE(supply_names); i++)
533f0fba2adSLiam Girdwood 		cs4270->supplies[i].supply = supply_names[i];
534f0fba2adSLiam Girdwood 
535f0fba2adSLiam Girdwood 	ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(cs4270->supplies),
536f0fba2adSLiam Girdwood 				 cs4270->supplies);
537f0fba2adSLiam Girdwood 	if (ret < 0)
538f0fba2adSLiam Girdwood 		return ret;
539f0fba2adSLiam Girdwood 
540f0fba2adSLiam Girdwood 	ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies),
541f0fba2adSLiam Girdwood 				    cs4270->supplies);
542f0fba2adSLiam Girdwood 	if (ret < 0)
543f0fba2adSLiam Girdwood 		goto error_free_regulators;
544e3145dfbSJean Delvare 
5450db4d070STimur Tabi 	return 0;
546e3145dfbSJean Delvare 
547f0fba2adSLiam Girdwood error_free_regulators:
548f0fba2adSLiam Girdwood 	regulator_bulk_free(ARRAY_SIZE(cs4270->supplies),
549f0fba2adSLiam Girdwood 			    cs4270->supplies);
550e3145dfbSJean Delvare 
551b0c813ceSTimur Tabi 	return ret;
552b0c813ceSTimur Tabi }
553b0c813ceSTimur Tabi 
554ff7bf02fSTimur Tabi /**
555f0fba2adSLiam Girdwood  * cs4270_remove - ASoC remove function
556f0fba2adSLiam Girdwood  * @pdev: platform device
557ff7bf02fSTimur Tabi  *
558f0fba2adSLiam Girdwood  * This function is the counterpart to cs4270_probe().
559ff7bf02fSTimur Tabi  */
560f0fba2adSLiam Girdwood static int cs4270_remove(struct snd_soc_codec *codec)
561b0c813ceSTimur Tabi {
562f0fba2adSLiam Girdwood 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
563b0c813ceSTimur Tabi 
564f0fba2adSLiam Girdwood 	regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies), cs4270->supplies);
565f0fba2adSLiam Girdwood 	regulator_bulk_free(ARRAY_SIZE(cs4270->supplies), cs4270->supplies);
566b0c813ceSTimur Tabi 
5670db4d070STimur Tabi 	return 0;
5680db4d070STimur Tabi };
5690db4d070STimur Tabi 
5705e7c0344SDaniel Mack #ifdef CONFIG_PM
5715e7c0344SDaniel Mack 
5725e7c0344SDaniel Mack /* This suspend/resume implementation can handle both - a simple standby
5735e7c0344SDaniel Mack  * where the codec remains powered, and a full suspend, where the voltage
5745e7c0344SDaniel Mack  * domain the codec is connected to is teared down and/or any other hardware
5755e7c0344SDaniel Mack  * reset condition is asserted.
5765e7c0344SDaniel Mack  *
5775e7c0344SDaniel Mack  * The codec's own power saving features are enabled in the suspend callback,
5785e7c0344SDaniel Mack  * and all registers are written back to the hardware when resuming.
5795e7c0344SDaniel Mack  */
5805e7c0344SDaniel Mack 
58184b315eeSLars-Peter Clausen static int cs4270_soc_suspend(struct snd_soc_codec *codec)
58215b5bdaeSDaniel Mack {
583b2c812e2SMark Brown 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
584ffbfd336SDaniel Mack 	int reg, ret;
58515b5bdaeSDaniel Mack 
586ffbfd336SDaniel Mack 	reg = snd_soc_read(codec, CS4270_PWRCTL) | CS4270_PWRCTL_PDN_ALL;
587ffbfd336SDaniel Mack 	if (reg < 0)
588ffbfd336SDaniel Mack 		return reg;
589ffbfd336SDaniel Mack 
590ffbfd336SDaniel Mack 	ret = snd_soc_write(codec, CS4270_PWRCTL, reg);
591ffbfd336SDaniel Mack 	if (ret < 0)
592ffbfd336SDaniel Mack 		return ret;
593ffbfd336SDaniel Mack 
594ffbfd336SDaniel Mack 	regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies),
595ffbfd336SDaniel Mack 			       cs4270->supplies);
596ffbfd336SDaniel Mack 
597ffbfd336SDaniel Mack 	return 0;
59815b5bdaeSDaniel Mack }
59915b5bdaeSDaniel Mack 
600f0fba2adSLiam Girdwood static int cs4270_soc_resume(struct snd_soc_codec *codec)
60115b5bdaeSDaniel Mack {
602b2c812e2SMark Brown 	struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
603*ab92d09dSMark Brown 	int reg, ret;
6045e7c0344SDaniel Mack 
605*ab92d09dSMark Brown 	ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies),
606ffbfd336SDaniel Mack 				    cs4270->supplies);
607*ab92d09dSMark Brown 	if (ret != 0)
608*ab92d09dSMark Brown 		return ret;
609ffbfd336SDaniel Mack 
6105e7c0344SDaniel Mack 	/* In case the device was put to hard reset during sleep, we need to
6115e7c0344SDaniel Mack 	 * wait 500ns here before any I2C communication. */
6125e7c0344SDaniel Mack 	ndelay(500);
6135e7c0344SDaniel Mack 
6145e7c0344SDaniel Mack 	/* first restore the entire register cache ... */
615d66b8537SDaniel Mack 	snd_soc_cache_sync(codec);
6165e7c0344SDaniel Mack 
6175e7c0344SDaniel Mack 	/* ... then disable the power-down bits */
6185e7c0344SDaniel Mack 	reg = snd_soc_read(codec, CS4270_PWRCTL);
6195e7c0344SDaniel Mack 	reg &= ~CS4270_PWRCTL_PDN_ALL;
6205e7c0344SDaniel Mack 
6215e7c0344SDaniel Mack 	return snd_soc_write(codec, CS4270_PWRCTL, reg);
6225e7c0344SDaniel Mack }
6235e7c0344SDaniel Mack #else
62415b5bdaeSDaniel Mack #define cs4270_soc_suspend	NULL
62515b5bdaeSDaniel Mack #define cs4270_soc_resume	NULL
6265e7c0344SDaniel Mack #endif /* CONFIG_PM */
6275e7c0344SDaniel Mack 
628ff7bf02fSTimur Tabi /*
629b6f7d7c8SDaniel Mack  * ASoC codec driver structure
630f0fba2adSLiam Girdwood  */
63111b8fca5STimur Tabi static const struct snd_soc_codec_driver soc_codec_device_cs4270 = {
632f0fba2adSLiam Girdwood 	.probe =		cs4270_probe,
633f0fba2adSLiam Girdwood 	.remove =		cs4270_remove,
634f0fba2adSLiam Girdwood 	.suspend =		cs4270_soc_suspend,
635f0fba2adSLiam Girdwood 	.resume =		cs4270_soc_resume,
63611b8fca5STimur Tabi 	.volatile_register =	cs4270_reg_is_volatile,
63711b8fca5STimur Tabi 	.readable_register =	cs4270_reg_is_readable,
63811b8fca5STimur Tabi 	.reg_cache_size =	CS4270_LASTREG + 1,
639f0fba2adSLiam Girdwood 	.reg_word_size =	sizeof(u8),
64011b8fca5STimur Tabi 	.reg_cache_default =	cs4270_default_reg_cache,
641f0fba2adSLiam Girdwood };
642f0fba2adSLiam Girdwood 
643f0fba2adSLiam Girdwood /**
644f0fba2adSLiam Girdwood  * cs4270_i2c_probe - initialize the I2C interface of the CS4270
645f0fba2adSLiam Girdwood  * @i2c_client: the I2C client object
646f0fba2adSLiam Girdwood  * @id: the I2C device ID (ignored)
647f0fba2adSLiam Girdwood  *
648f0fba2adSLiam Girdwood  * This function is called whenever the I2C subsystem finds a device that
649f0fba2adSLiam Girdwood  * matches the device ID given via a prior call to i2c_add_driver().
650f0fba2adSLiam Girdwood  */
651f0fba2adSLiam Girdwood static int cs4270_i2c_probe(struct i2c_client *i2c_client,
652f0fba2adSLiam Girdwood 	const struct i2c_device_id *id)
653f0fba2adSLiam Girdwood {
654f0fba2adSLiam Girdwood 	struct cs4270_private *cs4270;
655f0fba2adSLiam Girdwood 	int ret;
656f0fba2adSLiam Girdwood 
657f0fba2adSLiam Girdwood 	/* Verify that we have a CS4270 */
658f0fba2adSLiam Girdwood 
659f0fba2adSLiam Girdwood 	ret = i2c_smbus_read_byte_data(i2c_client, CS4270_CHIPID);
660f0fba2adSLiam Girdwood 	if (ret < 0) {
661f0fba2adSLiam Girdwood 		dev_err(&i2c_client->dev, "failed to read i2c at addr %X\n",
662f0fba2adSLiam Girdwood 		       i2c_client->addr);
663f0fba2adSLiam Girdwood 		return ret;
664f0fba2adSLiam Girdwood 	}
665f0fba2adSLiam Girdwood 	/* The top four bits of the chip ID should be 1100. */
666f0fba2adSLiam Girdwood 	if ((ret & 0xF0) != 0xC0) {
667f0fba2adSLiam Girdwood 		dev_err(&i2c_client->dev, "device at addr %X is not a CS4270\n",
668f0fba2adSLiam Girdwood 		       i2c_client->addr);
669f0fba2adSLiam Girdwood 		return -ENODEV;
670f0fba2adSLiam Girdwood 	}
671f0fba2adSLiam Girdwood 
672f0fba2adSLiam Girdwood 	dev_info(&i2c_client->dev, "found device at i2c address %X\n",
673f0fba2adSLiam Girdwood 		i2c_client->addr);
674f0fba2adSLiam Girdwood 	dev_info(&i2c_client->dev, "hardware revision %X\n", ret & 0xF);
675f0fba2adSLiam Girdwood 
6767fd8a674SAxel Lin 	cs4270 = devm_kzalloc(&i2c_client->dev, sizeof(struct cs4270_private),
6777fd8a674SAxel Lin 			      GFP_KERNEL);
678f0fba2adSLiam Girdwood 	if (!cs4270) {
679f0fba2adSLiam Girdwood 		dev_err(&i2c_client->dev, "could not allocate codec\n");
680f0fba2adSLiam Girdwood 		return -ENOMEM;
681f0fba2adSLiam Girdwood 	}
682f0fba2adSLiam Girdwood 
683f0fba2adSLiam Girdwood 	i2c_set_clientdata(i2c_client, cs4270);
684f0fba2adSLiam Girdwood 	cs4270->control_type = SND_SOC_I2C;
685f0fba2adSLiam Girdwood 
686f0fba2adSLiam Girdwood 	ret = snd_soc_register_codec(&i2c_client->dev,
687f0fba2adSLiam Girdwood 			&soc_codec_device_cs4270, &cs4270_dai, 1);
688f0fba2adSLiam Girdwood 	return ret;
689f0fba2adSLiam Girdwood }
690f0fba2adSLiam Girdwood 
691f0fba2adSLiam Girdwood /**
692f0fba2adSLiam Girdwood  * cs4270_i2c_remove - remove an I2C device
693f0fba2adSLiam Girdwood  * @i2c_client: the I2C client object
694f0fba2adSLiam Girdwood  *
695f0fba2adSLiam Girdwood  * This function is the counterpart to cs4270_i2c_probe().
696f0fba2adSLiam Girdwood  */
697f0fba2adSLiam Girdwood static int cs4270_i2c_remove(struct i2c_client *i2c_client)
698f0fba2adSLiam Girdwood {
699f0fba2adSLiam Girdwood 	snd_soc_unregister_codec(&i2c_client->dev);
700f0fba2adSLiam Girdwood 	return 0;
701f0fba2adSLiam Girdwood }
702f0fba2adSLiam Girdwood 
703f0fba2adSLiam Girdwood /*
704f0fba2adSLiam Girdwood  * cs4270_id - I2C device IDs supported by this driver
705f0fba2adSLiam Girdwood  */
70679a54ea1SAxel Lin static const struct i2c_device_id cs4270_id[] = {
707f0fba2adSLiam Girdwood 	{"cs4270", 0},
708f0fba2adSLiam Girdwood 	{}
709f0fba2adSLiam Girdwood };
710f0fba2adSLiam Girdwood MODULE_DEVICE_TABLE(i2c, cs4270_id);
711f0fba2adSLiam Girdwood 
712f0fba2adSLiam Girdwood /*
713ff7bf02fSTimur Tabi  * cs4270_i2c_driver - I2C device identification
714ff7bf02fSTimur Tabi  *
715ff7bf02fSTimur Tabi  * This structure tells the I2C subsystem how to identify and support a
716ff7bf02fSTimur Tabi  * given I2C device type.
717ff7bf02fSTimur Tabi  */
7180db4d070STimur Tabi static struct i2c_driver cs4270_i2c_driver = {
7190db4d070STimur Tabi 	.driver = {
72064902b29SShawn Guo 		.name = "cs4270",
7210db4d070STimur Tabi 		.owner = THIS_MODULE,
7220db4d070STimur Tabi 	},
7230db4d070STimur Tabi 	.id_table = cs4270_id,
7240db4d070STimur Tabi 	.probe = cs4270_i2c_probe,
7250db4d070STimur Tabi 	.remove = cs4270_i2c_remove,
7260db4d070STimur Tabi };
7270db4d070STimur Tabi 
728c9b3a40fSTakashi Iwai static int __init cs4270_init(void)
72964089b84SMark Brown {
73004eb093cSTimur Tabi 	return i2c_add_driver(&cs4270_i2c_driver);
73164089b84SMark Brown }
73264089b84SMark Brown module_init(cs4270_init);
73364089b84SMark Brown 
73464089b84SMark Brown static void __exit cs4270_exit(void)
73564089b84SMark Brown {
73604eb093cSTimur Tabi 	i2c_del_driver(&cs4270_i2c_driver);
73764089b84SMark Brown }
73864089b84SMark Brown module_exit(cs4270_exit);
73964089b84SMark Brown 
740b0c813ceSTimur Tabi MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
741b0c813ceSTimur Tabi MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver");
742b0c813ceSTimur Tabi MODULE_LICENSE("GPL");
743