blob: 8e4779812b96c03d11f07ca6a4c47ca628b3295b [file] [log] [blame]
Timur Tabib0c813c2007-07-31 18:18:44 +02001/*
2 * CS4270 ALSA SoC (ASoC) codec driver
3 *
4 * Author: Timur Tabi <timur@freescale.com>
5 *
Timur Tabiff7bf022009-01-30 11:14:49 -06006 * 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 Tabib0c813c2007-07-31 18:18:44 +020010 *
11 * This is an ASoC device driver for the Cirrus Logic CS4270 codec.
12 *
13 * Current features/limitations:
14 *
Daniel Mackb191f632009-03-08 17:51:52 +010015 * - 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 Mack5e7c0342009-05-06 01:26:01 +020021 * - Power management is supported
Timur Tabib0c813c2007-07-31 18:18:44 +020022 */
23
24#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Timur Tabib0c813c2007-07-31 18:18:44 +020026#include <sound/core.h>
27#include <sound/soc.h>
28#include <sound/initval.h>
29#include <linux/i2c.h>
Daniel Mack5e7c0342009-05-06 01:26:01 +020030#include <linux/delay.h>
Daniel Mackffbfd332009-11-30 17:56:11 +010031#include <linux/regulator/consumer.h>
Daniel Mack85d07e42012-07-25 15:28:34 +020032#include <linux/of_device.h>
Daniel Mack02286192012-07-25 15:28:35 +020033#include <linux/of_gpio.h>
Timur Tabib0c813c2007-07-31 18:18:44 +020034
Timur Tabib0c813c2007-07-31 18:18:44 +020035/*
36 * The codec isn't really big-endian or little-endian, since the I2S
37 * interface requires data to be sent serially with the MSbit first.
38 * However, to support BE and LE I2S devices, we specify both here. That
39 * way, ALSA will always match the bit patterns.
40 */
41#define CS4270_FORMATS (SNDRV_PCM_FMTBIT_S8 | \
42 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE | \
43 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE | \
44 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE | \
45 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE | \
46 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE)
47
Timur Tabib0c813c2007-07-31 18:18:44 +020048/* CS4270 registers addresses */
49#define CS4270_CHIPID 0x01 /* Chip ID */
50#define CS4270_PWRCTL 0x02 /* Power Control */
51#define CS4270_MODE 0x03 /* Mode Control */
52#define CS4270_FORMAT 0x04 /* Serial Format, ADC/DAC Control */
53#define CS4270_TRANS 0x05 /* Transition Control */
54#define CS4270_MUTE 0x06 /* Mute Control */
55#define CS4270_VOLA 0x07 /* DAC Channel A Volume Control */
56#define CS4270_VOLB 0x08 /* DAC Channel B Volume Control */
57
58#define CS4270_FIRSTREG 0x01
59#define CS4270_LASTREG 0x08
60#define CS4270_NUMREGS (CS4270_LASTREG - CS4270_FIRSTREG + 1)
Daniel Mack80ab8812009-05-05 11:25:00 +020061#define CS4270_I2C_INCR 0x80
Timur Tabib0c813c2007-07-31 18:18:44 +020062
63/* Bit masks for the CS4270 registers */
64#define CS4270_CHIPID_ID 0xF0
65#define CS4270_CHIPID_REV 0x0F
66#define CS4270_PWRCTL_FREEZE 0x80
67#define CS4270_PWRCTL_PDN_ADC 0x20
68#define CS4270_PWRCTL_PDN_DAC 0x02
69#define CS4270_PWRCTL_PDN 0x01
Daniel Mack5e7c0342009-05-06 01:26:01 +020070#define CS4270_PWRCTL_PDN_ALL \
71 (CS4270_PWRCTL_PDN_ADC | CS4270_PWRCTL_PDN_DAC | CS4270_PWRCTL_PDN)
Timur Tabib0c813c2007-07-31 18:18:44 +020072#define CS4270_MODE_SPEED_MASK 0x30
73#define CS4270_MODE_1X 0x00
74#define CS4270_MODE_2X 0x10
75#define CS4270_MODE_4X 0x20
76#define CS4270_MODE_SLAVE 0x30
77#define CS4270_MODE_DIV_MASK 0x0E
78#define CS4270_MODE_DIV1 0x00
79#define CS4270_MODE_DIV15 0x02
80#define CS4270_MODE_DIV2 0x04
81#define CS4270_MODE_DIV3 0x06
82#define CS4270_MODE_DIV4 0x08
83#define CS4270_MODE_POPGUARD 0x01
84#define CS4270_FORMAT_FREEZE_A 0x80
85#define CS4270_FORMAT_FREEZE_B 0x40
86#define CS4270_FORMAT_LOOPBACK 0x20
87#define CS4270_FORMAT_DAC_MASK 0x18
88#define CS4270_FORMAT_DAC_LJ 0x00
89#define CS4270_FORMAT_DAC_I2S 0x08
90#define CS4270_FORMAT_DAC_RJ16 0x18
91#define CS4270_FORMAT_DAC_RJ24 0x10
92#define CS4270_FORMAT_ADC_MASK 0x01
93#define CS4270_FORMAT_ADC_LJ 0x00
94#define CS4270_FORMAT_ADC_I2S 0x01
95#define CS4270_TRANS_ONE_VOL 0x80
96#define CS4270_TRANS_SOFT 0x40
97#define CS4270_TRANS_ZERO 0x20
98#define CS4270_TRANS_INV_ADC_A 0x08
99#define CS4270_TRANS_INV_ADC_B 0x10
100#define CS4270_TRANS_INV_DAC_A 0x02
101#define CS4270_TRANS_INV_DAC_B 0x04
102#define CS4270_TRANS_DEEMPH 0x01
103#define CS4270_MUTE_AUTO 0x20
104#define CS4270_MUTE_ADC_A 0x08
105#define CS4270_MUTE_ADC_B 0x10
106#define CS4270_MUTE_POLARITY 0x04
107#define CS4270_MUTE_DAC_A 0x01
108#define CS4270_MUTE_DAC_B 0x02
109
Timur Tabi11b8fca2011-01-10 13:28:32 -0600110/* Power-on default values for the registers
111 *
112 * This array contains the power-on default values of the registers, with the
113 * exception of the "CHIPID" register (01h). The lower four bits of that
114 * register contain the hardware revision, so it is treated as volatile.
Timur Tabi11b8fca2011-01-10 13:28:32 -0600115 */
Mark Brown1ca65172012-09-10 12:57:03 +0800116static const struct reg_default cs4270_reg_defaults[] = {
117 { 2, 0x00 },
118 { 3, 0x30 },
119 { 4, 0x00 },
120 { 5, 0x60 },
121 { 6, 0x20 },
122 { 7, 0x00 },
123 { 8, 0x00 },
Timur Tabi11b8fca2011-01-10 13:28:32 -0600124};
125
Daniel Mackffbfd332009-11-30 17:56:11 +0100126static const char *supply_names[] = {
127 "va", "vd", "vlc"
128};
129
Timur Tabi0db4d072009-01-23 16:31:19 -0600130/* Private data for the CS4270 */
131struct cs4270_private {
Mark Brown1ca65172012-09-10 12:57:03 +0800132 struct regmap *regmap;
Timur Tabi0db4d072009-01-23 16:31:19 -0600133 unsigned int mclk; /* Input frequency of the MCLK pin */
134 unsigned int mode; /* The mode (I2S or left-justified) */
Daniel Mack4eae0802009-02-25 14:37:21 +0100135 unsigned int slave_mode;
Daniel Mack1a4ba052009-04-24 16:37:45 +0200136 unsigned int manual_mute;
Daniel Mackffbfd332009-11-30 17:56:11 +0100137
138 /* power domain regulators */
139 struct regulator_bulk_data supplies[ARRAY_SIZE(supply_names)];
Timur Tabi0db4d072009-01-23 16:31:19 -0600140};
141
Timur Tabiff7bf022009-01-30 11:14:49 -0600142/**
143 * struct cs4270_mode_ratios - clock ratio tables
144 * @ratio: the ratio of MCLK to the sample rate
145 * @speed_mode: the Speed Mode bits to set in the Mode Control register for
146 * this ratio
147 * @mclk: the Ratio Select bits to set in the Mode Control register for this
148 * ratio
Timur Tabi84323952007-12-18 15:42:53 +0100149 *
150 * The data for this chart is taken from Table 5 of the CS4270 reference
151 * manual.
152 *
153 * This table is used to determine how to program the Mode Control register.
154 * It is also used by cs4270_set_dai_sysclk() to tell ALSA which sampling
155 * rates the CS4270 currently supports.
156 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600157 * @speed_mode is the corresponding bit pattern to be written to the
Timur Tabi84323952007-12-18 15:42:53 +0100158 * MODE bits of the Mode Control Register
159 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600160 * @mclk is the corresponding bit pattern to be wirten to the MCLK bits of
Timur Tabi84323952007-12-18 15:42:53 +0100161 * the Mode Control Register.
162 *
163 * In situations where a single ratio is represented by multiple speed
164 * modes, we favor the slowest speed. E.g, for a ratio of 128, we pick
165 * double-speed instead of quad-speed. However, the CS4270 errata states
Timur Tabiff7bf022009-01-30 11:14:49 -0600166 * that divide-By-1.5 can cause failures, so we avoid that mode where
Timur Tabi84323952007-12-18 15:42:53 +0100167 * possible.
168 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600169 * Errata: There is an errata for the CS4270 where divide-by-1.5 does not
170 * work if Vd is 3.3V. If this effects you, select the
Timur Tabi84323952007-12-18 15:42:53 +0100171 * CONFIG_SND_SOC_CS4270_VD33_ERRATA Kconfig option, and the driver will
172 * never select any sample rates that require divide-by-1.5.
173 */
Timur Tabiff7bf022009-01-30 11:14:49 -0600174struct cs4270_mode_ratios {
Timur Tabi84323952007-12-18 15:42:53 +0100175 unsigned int ratio;
176 u8 speed_mode;
177 u8 mclk;
Timur Tabiff7bf022009-01-30 11:14:49 -0600178};
179
Timur Tabid9fb7fb2009-02-02 14:50:45 -0600180static struct cs4270_mode_ratios cs4270_mode_ratios[] = {
Timur Tabi84323952007-12-18 15:42:53 +0100181 {64, CS4270_MODE_4X, CS4270_MODE_DIV1},
182#ifndef CONFIG_SND_SOC_CS4270_VD33_ERRATA
183 {96, CS4270_MODE_4X, CS4270_MODE_DIV15},
184#endif
185 {128, CS4270_MODE_2X, CS4270_MODE_DIV1},
186 {192, CS4270_MODE_4X, CS4270_MODE_DIV3},
187 {256, CS4270_MODE_1X, CS4270_MODE_DIV1},
188 {384, CS4270_MODE_2X, CS4270_MODE_DIV3},
189 {512, CS4270_MODE_1X, CS4270_MODE_DIV2},
190 {768, CS4270_MODE_1X, CS4270_MODE_DIV3},
191 {1024, CS4270_MODE_1X, CS4270_MODE_DIV4}
192};
193
194/* The number of MCLK/LRCK ratios supported by the CS4270 */
195#define NUM_MCLK_RATIOS ARRAY_SIZE(cs4270_mode_ratios)
196
Mark Brown1ca65172012-09-10 12:57:03 +0800197static bool cs4270_reg_is_readable(struct device *dev, unsigned int reg)
Timur Tabi11b8fca2011-01-10 13:28:32 -0600198{
199 return (reg >= CS4270_FIRSTREG) && (reg <= CS4270_LASTREG);
200}
201
Mark Brown1ca65172012-09-10 12:57:03 +0800202static bool cs4270_reg_is_volatile(struct device *dev, unsigned int reg)
Timur Tabi11b8fca2011-01-10 13:28:32 -0600203{
204 /* Unreadable registers are considered volatile */
205 if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
206 return 1;
207
208 return reg == CS4270_CHIPID;
209}
210
Timur Tabiff7bf022009-01-30 11:14:49 -0600211/**
212 * cs4270_set_dai_sysclk - determine the CS4270 samples rates.
213 * @codec_dai: the codec DAI
214 * @clk_id: the clock ID (ignored)
215 * @freq: the MCLK input frequency
216 * @dir: the clock direction (ignored)
Timur Tabi84323952007-12-18 15:42:53 +0100217 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600218 * This function is used to tell the codec driver what the input MCLK
219 * frequency is.
Timur Tabi84323952007-12-18 15:42:53 +0100220 *
221 * The value of MCLK is used to determine which sample rates are supported
222 * by the CS4270. The ratio of MCLK / Fs must be equal to one of nine
Timur Tabiff7bf022009-01-30 11:14:49 -0600223 * supported values - 64, 96, 128, 192, 256, 384, 512, 768, and 1024.
Timur Tabi84323952007-12-18 15:42:53 +0100224 *
225 * This function calculates the nine ratios and determines which ones match
226 * a standard sample rate. If there's a match, then it is added to the list
Timur Tabiff7bf022009-01-30 11:14:49 -0600227 * of supported sample rates.
Timur Tabi84323952007-12-18 15:42:53 +0100228 *
229 * This function must be called by the machine driver's 'startup' function,
230 * otherwise the list of supported sample rates will not be available in
231 * time for ALSA.
Daniel Mack6aababd2010-01-15 17:36:48 +0100232 *
233 * For setups with variable MCLKs, pass 0 as 'freq' argument. This will cause
234 * theoretically possible sample rates to be enabled. Call it again with a
235 * proper value set one the external clock is set (most probably you would do
236 * that from a machine's driver 'hw_param' hook.
Timur Tabi84323952007-12-18 15:42:53 +0100237 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100238static int cs4270_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Timur Tabi84323952007-12-18 15:42:53 +0100239 int clk_id, unsigned int freq, int dir)
240{
241 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900242 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabi84323952007-12-18 15:42:53 +0100243
244 cs4270->mclk = freq;
Timur Tabi84323952007-12-18 15:42:53 +0100245 return 0;
246}
247
Timur Tabiff7bf022009-01-30 11:14:49 -0600248/**
249 * cs4270_set_dai_fmt - configure the codec for the selected audio format
250 * @codec_dai: the codec DAI
251 * @format: a SND_SOC_DAIFMT_x value indicating the data format
Timur Tabi84323952007-12-18 15:42:53 +0100252 *
253 * This function takes a bitmask of SND_SOC_DAIFMT_x bits and programs the
254 * codec accordingly.
255 *
256 * Currently, this function only supports SND_SOC_DAIFMT_I2S and
257 * SND_SOC_DAIFMT_LEFT_J. The CS4270 codec also supports right-justified
258 * data for playback only, but ASoC currently does not support different
259 * formats for playback vs. record.
260 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100261static int cs4270_set_dai_fmt(struct snd_soc_dai *codec_dai,
Timur Tabi84323952007-12-18 15:42:53 +0100262 unsigned int format)
263{
264 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900265 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabi84323952007-12-18 15:42:53 +0100266
Daniel Mack4eae0802009-02-25 14:37:21 +0100267 /* set DAI format */
Timur Tabi84323952007-12-18 15:42:53 +0100268 switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
269 case SND_SOC_DAIFMT_I2S:
270 case SND_SOC_DAIFMT_LEFT_J:
271 cs4270->mode = format & SND_SOC_DAIFMT_FORMAT_MASK;
272 break;
273 default:
Timur Tabia6c255e2009-02-02 15:08:29 -0600274 dev_err(codec->dev, "invalid dai format\n");
Axel Linac601552011-10-06 07:29:56 +0800275 return -EINVAL;
Timur Tabi84323952007-12-18 15:42:53 +0100276 }
277
Daniel Mack4eae0802009-02-25 14:37:21 +0100278 /* set master/slave audio interface */
279 switch (format & SND_SOC_DAIFMT_MASTER_MASK) {
280 case SND_SOC_DAIFMT_CBS_CFS:
281 cs4270->slave_mode = 1;
282 break;
283 case SND_SOC_DAIFMT_CBM_CFM:
284 cs4270->slave_mode = 0;
285 break;
Daniel Mack4eae0802009-02-25 14:37:21 +0100286 default:
Daniel Mackff09d492009-02-28 13:21:03 +0100287 /* all other modes are unsupported by the hardware */
Axel Linac601552011-10-06 07:29:56 +0800288 dev_err(codec->dev, "Unknown master/slave configuration\n");
289 return -EINVAL;
Daniel Mack4eae0802009-02-25 14:37:21 +0100290 }
291
Axel Linac601552011-10-06 07:29:56 +0800292 return 0;
Timur Tabi84323952007-12-18 15:42:53 +0100293}
294
Timur Tabiff7bf022009-01-30 11:14:49 -0600295/**
Timur Tabiff7bf022009-01-30 11:14:49 -0600296 * cs4270_hw_params - program the CS4270 with the given hardware parameters.
297 * @substream: the audio stream
298 * @params: the hardware parameters to set
299 * @dai: the SOC DAI (ignored)
Timur Tabib0c813c2007-07-31 18:18:44 +0200300 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600301 * This function programs the hardware with the values provided.
302 * Specifically, the sample rate and the data format.
303 *
304 * The .ops functions are used to provide board-specific data, like input
305 * frequencies, to this driver. This function takes that information,
Timur Tabib0c813c2007-07-31 18:18:44 +0200306 * combines it with the hardware parameters provided, and programs the
307 * hardware accordingly.
308 */
309static int cs4270_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000310 struct snd_pcm_hw_params *params,
311 struct snd_soc_dai *dai)
Timur Tabib0c813c2007-07-31 18:18:44 +0200312{
Mark Browne6968a12012-04-04 15:58:16 +0100313 struct snd_soc_codec *codec = dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900314 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Roel Kluine34ba212008-04-17 18:58:34 +0200315 int ret;
Timur Tabib0c813c2007-07-31 18:18:44 +0200316 unsigned int i;
317 unsigned int rate;
318 unsigned int ratio;
319 int reg;
320
321 /* Figure out which MCLK/LRCK ratio to use */
322
323 rate = params_rate(params); /* Sampling rate, in Hz */
324 ratio = cs4270->mclk / rate; /* MCLK/LRCK ratio */
325
Timur Tabi9dbd6272007-08-01 12:22:07 +0200326 for (i = 0; i < NUM_MCLK_RATIOS; i++) {
Timur Tabi84323952007-12-18 15:42:53 +0100327 if (cs4270_mode_ratios[i].ratio == ratio)
Timur Tabib0c813c2007-07-31 18:18:44 +0200328 break;
329 }
330
Timur Tabi9dbd6272007-08-01 12:22:07 +0200331 if (i == NUM_MCLK_RATIOS) {
Timur Tabib0c813c2007-07-31 18:18:44 +0200332 /* We did not find a matching ratio */
Timur Tabia6c255e2009-02-02 15:08:29 -0600333 dev_err(codec->dev, "could not find matching ratio\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200334 return -EINVAL;
335 }
336
Timur Tabid5e9ba12009-02-03 11:09:32 -0600337 /* Set the sample rate */
Timur Tabib0c813c2007-07-31 18:18:44 +0200338
339 reg = snd_soc_read(codec, CS4270_MODE);
340 reg &= ~(CS4270_MODE_SPEED_MASK | CS4270_MODE_DIV_MASK);
Daniel Mack4eae0802009-02-25 14:37:21 +0100341 reg |= cs4270_mode_ratios[i].mclk;
342
343 if (cs4270->slave_mode)
344 reg |= CS4270_MODE_SLAVE;
345 else
346 reg |= cs4270_mode_ratios[i].speed_mode;
Timur Tabib0c813c2007-07-31 18:18:44 +0200347
348 ret = snd_soc_write(codec, CS4270_MODE, reg);
349 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600350 dev_err(codec->dev, "i2c write failed\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200351 return ret;
352 }
353
Timur Tabid5e9ba12009-02-03 11:09:32 -0600354 /* Set the DAI format */
Timur Tabib0c813c2007-07-31 18:18:44 +0200355
356 reg = snd_soc_read(codec, CS4270_FORMAT);
357 reg &= ~(CS4270_FORMAT_DAC_MASK | CS4270_FORMAT_ADC_MASK);
358
359 switch (cs4270->mode) {
360 case SND_SOC_DAIFMT_I2S:
361 reg |= CS4270_FORMAT_DAC_I2S | CS4270_FORMAT_ADC_I2S;
362 break;
363 case SND_SOC_DAIFMT_LEFT_J:
364 reg |= CS4270_FORMAT_DAC_LJ | CS4270_FORMAT_ADC_LJ;
365 break;
366 default:
Timur Tabia6c255e2009-02-02 15:08:29 -0600367 dev_err(codec->dev, "unknown dai format\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200368 return -EINVAL;
369 }
370
371 ret = snd_soc_write(codec, CS4270_FORMAT, reg);
372 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600373 dev_err(codec->dev, "i2c write failed\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200374 return ret;
375 }
376
Timur Tabib0c813c2007-07-31 18:18:44 +0200377 return ret;
378}
379
Timur Tabiff7bf022009-01-30 11:14:49 -0600380/**
Daniel Mack1a4ba052009-04-24 16:37:45 +0200381 * cs4270_dai_mute - enable/disable the CS4270 external mute
Timur Tabiff7bf022009-01-30 11:14:49 -0600382 * @dai: the SOC DAI
383 * @mute: 0 = disable mute, 1 = enable mute
Timur Tabib0c813c2007-07-31 18:18:44 +0200384 *
385 * This function toggles the mute bits in the MUTE register. The CS4270's
386 * mute capability is intended for external muting circuitry, so if the
387 * board does not have the MUTEA or MUTEB pins connected to such circuitry,
388 * then this function will do nothing.
389 */
Daniel Mack1a4ba052009-04-24 16:37:45 +0200390static int cs4270_dai_mute(struct snd_soc_dai *dai, int mute)
Timur Tabib0c813c2007-07-31 18:18:44 +0200391{
392 struct snd_soc_codec *codec = dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900393 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabib0c813c2007-07-31 18:18:44 +0200394 int reg6;
395
396 reg6 = snd_soc_read(codec, CS4270_MUTE);
397
398 if (mute)
Timur Tabid5e9ba12009-02-03 11:09:32 -0600399 reg6 |= CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B;
Daniel Mack1a4ba052009-04-24 16:37:45 +0200400 else {
Timur Tabid5e9ba12009-02-03 11:09:32 -0600401 reg6 &= ~(CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B);
Daniel Mack1a4ba052009-04-24 16:37:45 +0200402 reg6 |= cs4270->manual_mute;
403 }
Timur Tabib0c813c2007-07-31 18:18:44 +0200404
405 return snd_soc_write(codec, CS4270_MUTE, reg6);
406}
Timur Tabib0c813c2007-07-31 18:18:44 +0200407
Daniel Mack1a4ba052009-04-24 16:37:45 +0200408/**
409 * cs4270_soc_put_mute - put callback for the 'Master Playback switch'
410 * alsa control.
411 * @kcontrol: mixer control
412 * @ucontrol: control element information
413 *
414 * This function basically passes the arguments on to the generic
415 * snd_soc_put_volsw() function and saves the mute information in
416 * our private data structure. This is because we want to prevent
417 * cs4270_dai_mute() neglecting the user's decision to manually
418 * mute the codec's output.
419 *
420 * Returns 0 for success.
421 */
422static int cs4270_soc_put_mute(struct snd_kcontrol *kcontrol,
423 struct snd_ctl_elem_value *ucontrol)
424{
425 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900426 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Daniel Mack1a4ba052009-04-24 16:37:45 +0200427 int left = !ucontrol->value.integer.value[0];
428 int right = !ucontrol->value.integer.value[1];
429
430 cs4270->manual_mute = (left ? CS4270_MUTE_DAC_A : 0) |
431 (right ? CS4270_MUTE_DAC_B : 0);
432
433 return snd_soc_put_volsw(kcontrol, ucontrol);
434}
435
Timur Tabib0c813c2007-07-31 18:18:44 +0200436/* A list of non-DAPM controls that the CS4270 supports */
437static const struct snd_kcontrol_new cs4270_snd_controls[] = {
438 SOC_DOUBLE_R("Master Playback Volume",
Timur Tabid5e9ba12009-02-03 11:09:32 -0600439 CS4270_VOLA, CS4270_VOLB, 0, 0xFF, 1),
440 SOC_SINGLE("Digital Sidetone Switch", CS4270_FORMAT, 5, 1, 0),
441 SOC_SINGLE("Soft Ramp Switch", CS4270_TRANS, 6, 1, 0),
442 SOC_SINGLE("Zero Cross Switch", CS4270_TRANS, 5, 1, 0),
Daniel Mack7e1aa1d2009-10-29 02:24:32 +0100443 SOC_SINGLE("De-emphasis filter", CS4270_TRANS, 0, 1, 0),
Timur Tabid5e9ba12009-02-03 11:09:32 -0600444 SOC_SINGLE("Popguard Switch", CS4270_MODE, 0, 1, 1),
445 SOC_SINGLE("Auto-Mute Switch", CS4270_MUTE, 5, 1, 0),
Daniel Mack1a4ba052009-04-24 16:37:45 +0200446 SOC_DOUBLE("Master Capture Switch", CS4270_MUTE, 3, 4, 1, 1),
447 SOC_DOUBLE_EXT("Master Playback Switch", CS4270_MUTE, 0, 1, 1, 1,
448 snd_soc_get_volsw, cs4270_soc_put_mute),
Timur Tabib0c813c2007-07-31 18:18:44 +0200449};
450
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100451static const struct snd_soc_dai_ops cs4270_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +0800452 .hw_params = cs4270_hw_params,
453 .set_sysclk = cs4270_set_dai_sysclk,
454 .set_fmt = cs4270_set_dai_fmt,
Daniel Mack1a4ba052009-04-24 16:37:45 +0200455 .digital_mute = cs4270_dai_mute,
Eric Miao6335d052009-03-03 09:41:00 +0800456};
457
Mark Brown5c758482010-10-06 16:18:17 -0700458static struct snd_soc_dai_driver cs4270_dai = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000459 .name = "cs4270-hifi",
Timur Tabib0c813c2007-07-31 18:18:44 +0200460 .playback = {
461 .stream_name = "Playback",
Fabio Estevamf76fe052012-09-18 13:03:54 -0300462 .channels_min = 2,
Timur Tabib0c813c2007-07-31 18:18:44 +0200463 .channels_max = 2,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000464 .rates = SNDRV_PCM_RATE_CONTINUOUS,
465 .rate_min = 4000,
466 .rate_max = 216000,
Timur Tabib0c813c2007-07-31 18:18:44 +0200467 .formats = CS4270_FORMATS,
468 },
469 .capture = {
470 .stream_name = "Capture",
Fabio Estevamf76fe052012-09-18 13:03:54 -0300471 .channels_min = 2,
Timur Tabib0c813c2007-07-31 18:18:44 +0200472 .channels_max = 2,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000473 .rates = SNDRV_PCM_RATE_CONTINUOUS,
474 .rate_min = 4000,
475 .rate_max = 216000,
Timur Tabib0c813c2007-07-31 18:18:44 +0200476 .formats = CS4270_FORMATS,
477 },
Eric Miao6335d052009-03-03 09:41:00 +0800478 .ops = &cs4270_dai_ops,
Timur Tabib0c813c2007-07-31 18:18:44 +0200479};
Timur Tabib0c813c2007-07-31 18:18:44 +0200480
Timur Tabiff7bf022009-01-30 11:14:49 -0600481/**
482 * cs4270_probe - ASoC probe function
483 * @pdev: platform device
484 *
485 * This function is called when ASoC has all the pieces it needs to
486 * instantiate a sound driver.
Timur Tabi04eb0932009-01-29 14:28:37 -0600487 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000488static int cs4270_probe(struct snd_soc_codec *codec)
Timur Tabi04eb0932009-01-29 14:28:37 -0600489{
Mark Brownb2c812e2010-04-14 15:35:19 +0900490 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Mark Brownb61d6d42012-09-10 12:53:12 +0800491 int ret;
Timur Tabi04eb0932009-01-29 14:28:37 -0600492
Timur Tabi11b8fca2011-01-10 13:28:32 -0600493 /* Tell ASoC what kind of I/O to use to read the registers. ASoC will
494 * then do the I2C transactions itself.
495 */
Mark Brown1ca65172012-09-10 12:57:03 +0800496 ret = snd_soc_codec_set_cache_io(codec, 8, 8, SND_SOC_REGMAP);
Timur Tabi0db4d072009-01-23 16:31:19 -0600497 if (ret < 0) {
Timur Tabi11b8fca2011-01-10 13:28:32 -0600498 dev_err(codec->dev, "failed to set cache I/O (ret=%i)\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000499 return ret;
Timur Tabi0db4d072009-01-23 16:31:19 -0600500 }
Timur Tabib0c813c2007-07-31 18:18:44 +0200501
Timur Tabid5e9ba12009-02-03 11:09:32 -0600502 /* Disable auto-mute. This feature appears to be buggy. In some
503 * situations, auto-mute will not deactivate when it should, so we want
504 * this feature disabled by default. An application (e.g. alsactl) can
505 * re-enabled it by using the controls.
506 */
Timur Tabi11b8fca2011-01-10 13:28:32 -0600507 ret = snd_soc_update_bits(codec, CS4270_MUTE, CS4270_MUTE_AUTO, 0);
Timur Tabid5e9ba12009-02-03 11:09:32 -0600508 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000509 dev_err(codec->dev, "i2c write failed\n");
Timur Tabid5e9ba12009-02-03 11:09:32 -0600510 return ret;
511 }
512
513 /* Disable automatic volume control. The hardware enables, and it
514 * causes volume change commands to be delayed, sometimes until after
515 * playback has started. An application (e.g. alsactl) can
516 * re-enabled it by using the controls.
517 */
Timur Tabi11b8fca2011-01-10 13:28:32 -0600518 ret = snd_soc_update_bits(codec, CS4270_TRANS,
519 CS4270_TRANS_SOFT | CS4270_TRANS_ZERO, 0);
Timur Tabid5e9ba12009-02-03 11:09:32 -0600520 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000521 dev_err(codec->dev, "i2c write failed\n");
Timur Tabid5e9ba12009-02-03 11:09:32 -0600522 return ret;
523 }
524
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000525 ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies),
526 cs4270->supplies);
Jean Delvaree3145df2008-09-30 11:40:37 +0200527
Timur Tabib0c813c2007-07-31 18:18:44 +0200528 return ret;
529}
530
Timur Tabiff7bf022009-01-30 11:14:49 -0600531/**
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000532 * cs4270_remove - ASoC remove function
533 * @pdev: platform device
Timur Tabiff7bf022009-01-30 11:14:49 -0600534 *
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000535 * This function is the counterpart to cs4270_probe().
Timur Tabiff7bf022009-01-30 11:14:49 -0600536 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000537static int cs4270_remove(struct snd_soc_codec *codec)
Timur Tabib0c813c2007-07-31 18:18:44 +0200538{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000539 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabib0c813c2007-07-31 18:18:44 +0200540
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000541 regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies), cs4270->supplies);
Timur Tabib0c813c2007-07-31 18:18:44 +0200542
Timur Tabi0db4d072009-01-23 16:31:19 -0600543 return 0;
Timur Tabi0db4d072009-01-23 16:31:19 -0600544};
Timur Tabi0db4d072009-01-23 16:31:19 -0600545
Daniel Mack5e7c0342009-05-06 01:26:01 +0200546#ifdef CONFIG_PM
547
548/* This suspend/resume implementation can handle both - a simple standby
549 * where the codec remains powered, and a full suspend, where the voltage
550 * domain the codec is connected to is teared down and/or any other hardware
551 * reset condition is asserted.
552 *
553 * The codec's own power saving features are enabled in the suspend callback,
554 * and all registers are written back to the hardware when resuming.
555 */
556
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100557static int cs4270_soc_suspend(struct snd_soc_codec *codec)
Daniel Mack15b5bda2009-08-05 20:50:43 +0200558{
Mark Brownb2c812e2010-04-14 15:35:19 +0900559 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Daniel Mackffbfd332009-11-30 17:56:11 +0100560 int reg, ret;
Daniel Mack15b5bda2009-08-05 20:50:43 +0200561
Daniel Mackffbfd332009-11-30 17:56:11 +0100562 reg = snd_soc_read(codec, CS4270_PWRCTL) | CS4270_PWRCTL_PDN_ALL;
563 if (reg < 0)
564 return reg;
565
566 ret = snd_soc_write(codec, CS4270_PWRCTL, reg);
567 if (ret < 0)
568 return ret;
569
570 regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies),
571 cs4270->supplies);
572
573 return 0;
Daniel Mack15b5bda2009-08-05 20:50:43 +0200574}
575
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000576static int cs4270_soc_resume(struct snd_soc_codec *codec)
Daniel Mack15b5bda2009-08-05 20:50:43 +0200577{
Mark Brownb2c812e2010-04-14 15:35:19 +0900578 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Mark Brownab92d092012-03-19 16:15:43 +0000579 int reg, ret;
Daniel Mack5e7c0342009-05-06 01:26:01 +0200580
Mark Brownab92d092012-03-19 16:15:43 +0000581 ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies),
582 cs4270->supplies);
583 if (ret != 0)
584 return ret;
Daniel Mackffbfd332009-11-30 17:56:11 +0100585
Daniel Mack5e7c0342009-05-06 01:26:01 +0200586 /* In case the device was put to hard reset during sleep, we need to
587 * wait 500ns here before any I2C communication. */
588 ndelay(500);
589
590 /* first restore the entire register cache ... */
Mark Brown1ca65172012-09-10 12:57:03 +0800591 regcache_sync(cs4270->regmap);
Daniel Mack5e7c0342009-05-06 01:26:01 +0200592
593 /* ... then disable the power-down bits */
594 reg = snd_soc_read(codec, CS4270_PWRCTL);
595 reg &= ~CS4270_PWRCTL_PDN_ALL;
596
597 return snd_soc_write(codec, CS4270_PWRCTL, reg);
598}
599#else
Daniel Mack15b5bda2009-08-05 20:50:43 +0200600#define cs4270_soc_suspend NULL
601#define cs4270_soc_resume NULL
Daniel Mack5e7c0342009-05-06 01:26:01 +0200602#endif /* CONFIG_PM */
603
Timur Tabiff7bf022009-01-30 11:14:49 -0600604/*
Daniel Mackb6f7d7c2011-05-25 09:53:12 +0200605 * ASoC codec driver structure
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000606 */
Timur Tabi11b8fca2011-01-10 13:28:32 -0600607static const struct snd_soc_codec_driver soc_codec_device_cs4270 = {
608 .probe = cs4270_probe,
609 .remove = cs4270_remove,
610 .suspend = cs4270_soc_suspend,
611 .resume = cs4270_soc_resume,
Mark Brown19ace0e2012-09-10 12:48:11 +0800612
613 .controls = cs4270_snd_controls,
614 .num_controls = ARRAY_SIZE(cs4270_snd_controls),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000615};
616
Daniel Mack85d07e42012-07-25 15:28:34 +0200617/*
618 * cs4270_of_match - the device tree bindings
619 */
620static const struct of_device_id cs4270_of_match[] = {
621 { .compatible = "cirrus,cs4270", },
622 { }
623};
624MODULE_DEVICE_TABLE(of, cs4270_of_match);
625
Mark Brown1ca65172012-09-10 12:57:03 +0800626static const struct regmap_config cs4270_regmap = {
627 .reg_bits = 8,
628 .val_bits = 8,
629 .max_register = CS4270_LASTREG,
630 .reg_defaults = cs4270_reg_defaults,
631 .num_reg_defaults = ARRAY_SIZE(cs4270_reg_defaults),
632 .cache_type = REGCACHE_RBTREE,
633
634 .readable_reg = cs4270_reg_is_readable,
635 .volatile_reg = cs4270_reg_is_volatile,
636};
637
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000638/**
639 * cs4270_i2c_probe - initialize the I2C interface of the CS4270
640 * @i2c_client: the I2C client object
641 * @id: the I2C device ID (ignored)
642 *
643 * This function is called whenever the I2C subsystem finds a device that
644 * matches the device ID given via a prior call to i2c_add_driver().
645 */
646static int cs4270_i2c_probe(struct i2c_client *i2c_client,
647 const struct i2c_device_id *id)
648{
Daniel Mack02286192012-07-25 15:28:35 +0200649 struct device_node *np = i2c_client->dev.of_node;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000650 struct cs4270_private *cs4270;
Mark Brown1ca65172012-09-10 12:57:03 +0800651 unsigned int val;
Mark Brownb61d6d42012-09-10 12:53:12 +0800652 int ret, i;
653
654 cs4270 = devm_kzalloc(&i2c_client->dev, sizeof(struct cs4270_private),
655 GFP_KERNEL);
656 if (!cs4270) {
657 dev_err(&i2c_client->dev, "could not allocate codec\n");
658 return -ENOMEM;
659 }
660
661 /* get the power supply regulators */
662 for (i = 0; i < ARRAY_SIZE(supply_names); i++)
663 cs4270->supplies[i].supply = supply_names[i];
664
665 ret = devm_regulator_bulk_get(&i2c_client->dev,
666 ARRAY_SIZE(cs4270->supplies),
667 cs4270->supplies);
668 if (ret < 0)
669 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000670
Daniel Mack02286192012-07-25 15:28:35 +0200671 /* See if we have a way to bring the codec out of reset */
672 if (np) {
673 enum of_gpio_flags flags;
674 int gpio = of_get_named_gpio_flags(np, "reset-gpio", 0, &flags);
675
676 if (gpio_is_valid(gpio)) {
677 ret = devm_gpio_request_one(&i2c_client->dev, gpio,
678 flags & OF_GPIO_ACTIVE_LOW ?
679 GPIOF_OUT_INIT_LOW : GPIOF_OUT_INIT_HIGH,
680 "cs4270 reset");
681 if (ret < 0)
682 return ret;
683 }
684 }
685
Mark Brown1ca65172012-09-10 12:57:03 +0800686 cs4270->regmap = devm_regmap_init_i2c(i2c_client, &cs4270_regmap);
687 if (IS_ERR(cs4270->regmap))
688 return PTR_ERR(cs4270->regmap);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000689
Mark Brown1ca65172012-09-10 12:57:03 +0800690 /* Verify that we have a CS4270 */
691 ret = regmap_read(cs4270->regmap, CS4270_CHIPID, &val);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000692 if (ret < 0) {
693 dev_err(&i2c_client->dev, "failed to read i2c at addr %X\n",
694 i2c_client->addr);
695 return ret;
696 }
697 /* The top four bits of the chip ID should be 1100. */
Mark Brown1ca65172012-09-10 12:57:03 +0800698 if ((val & 0xF0) != 0xC0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000699 dev_err(&i2c_client->dev, "device at addr %X is not a CS4270\n",
700 i2c_client->addr);
701 return -ENODEV;
702 }
703
704 dev_info(&i2c_client->dev, "found device at i2c address %X\n",
705 i2c_client->addr);
Mark Brown1ca65172012-09-10 12:57:03 +0800706 dev_info(&i2c_client->dev, "hardware revision %X\n", val & 0xF);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000707
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000708 i2c_set_clientdata(i2c_client, cs4270);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000709
710 ret = snd_soc_register_codec(&i2c_client->dev,
711 &soc_codec_device_cs4270, &cs4270_dai, 1);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000712 return ret;
713}
714
715/**
716 * cs4270_i2c_remove - remove an I2C device
717 * @i2c_client: the I2C client object
718 *
719 * This function is the counterpart to cs4270_i2c_probe().
720 */
721static int cs4270_i2c_remove(struct i2c_client *i2c_client)
722{
723 snd_soc_unregister_codec(&i2c_client->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000724 return 0;
725}
726
727/*
728 * cs4270_id - I2C device IDs supported by this driver
729 */
Axel Lin79a54ea2011-03-04 15:22:03 +0800730static const struct i2c_device_id cs4270_id[] = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000731 {"cs4270", 0},
732 {}
733};
734MODULE_DEVICE_TABLE(i2c, cs4270_id);
735
736/*
Timur Tabiff7bf022009-01-30 11:14:49 -0600737 * cs4270_i2c_driver - I2C device identification
738 *
739 * This structure tells the I2C subsystem how to identify and support a
740 * given I2C device type.
741 */
Timur Tabi0db4d072009-01-23 16:31:19 -0600742static struct i2c_driver cs4270_i2c_driver = {
743 .driver = {
Shawn Guo64902b22012-02-24 22:09:38 +0800744 .name = "cs4270",
Timur Tabi0db4d072009-01-23 16:31:19 -0600745 .owner = THIS_MODULE,
Daniel Mack85d07e42012-07-25 15:28:34 +0200746 .of_match_table = cs4270_of_match,
Timur Tabi0db4d072009-01-23 16:31:19 -0600747 },
748 .id_table = cs4270_id,
749 .probe = cs4270_i2c_probe,
750 .remove = cs4270_i2c_remove,
751};
752
Sachin Kamat5e383f52012-08-06 17:25:41 +0530753module_i2c_driver(cs4270_i2c_driver);
Mark Brown64089b82008-12-08 19:17:58 +0000754
Timur Tabib0c813c2007-07-31 18:18:44 +0200755MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
756MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver");
757MODULE_LICENSE("GPL");