blob: 4b71b01ecbcd7f012b77145db3ba841c6d369225 [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>
Timur Tabib0c813c2007-07-31 18:18:44 +020033
Timur Tabib0c813c2007-07-31 18:18:44 +020034/*
35 * The codec isn't really big-endian or little-endian, since the I2S
36 * interface requires data to be sent serially with the MSbit first.
37 * However, to support BE and LE I2S devices, we specify both here. That
38 * way, ALSA will always match the bit patterns.
39 */
40#define CS4270_FORMATS (SNDRV_PCM_FMTBIT_S8 | \
41 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE | \
42 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE | \
43 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE | \
44 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE | \
45 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE)
46
Timur Tabib0c813c2007-07-31 18:18:44 +020047/* CS4270 registers addresses */
48#define CS4270_CHIPID 0x01 /* Chip ID */
49#define CS4270_PWRCTL 0x02 /* Power Control */
50#define CS4270_MODE 0x03 /* Mode Control */
51#define CS4270_FORMAT 0x04 /* Serial Format, ADC/DAC Control */
52#define CS4270_TRANS 0x05 /* Transition Control */
53#define CS4270_MUTE 0x06 /* Mute Control */
54#define CS4270_VOLA 0x07 /* DAC Channel A Volume Control */
55#define CS4270_VOLB 0x08 /* DAC Channel B Volume Control */
56
57#define CS4270_FIRSTREG 0x01
58#define CS4270_LASTREG 0x08
59#define CS4270_NUMREGS (CS4270_LASTREG - CS4270_FIRSTREG + 1)
Daniel Mack80ab8812009-05-05 11:25:00 +020060#define CS4270_I2C_INCR 0x80
Timur Tabib0c813c2007-07-31 18:18:44 +020061
62/* Bit masks for the CS4270 registers */
63#define CS4270_CHIPID_ID 0xF0
64#define CS4270_CHIPID_REV 0x0F
65#define CS4270_PWRCTL_FREEZE 0x80
66#define CS4270_PWRCTL_PDN_ADC 0x20
67#define CS4270_PWRCTL_PDN_DAC 0x02
68#define CS4270_PWRCTL_PDN 0x01
Daniel Mack5e7c0342009-05-06 01:26:01 +020069#define CS4270_PWRCTL_PDN_ALL \
70 (CS4270_PWRCTL_PDN_ADC | CS4270_PWRCTL_PDN_DAC | CS4270_PWRCTL_PDN)
Timur Tabib0c813c2007-07-31 18:18:44 +020071#define CS4270_MODE_SPEED_MASK 0x30
72#define CS4270_MODE_1X 0x00
73#define CS4270_MODE_2X 0x10
74#define CS4270_MODE_4X 0x20
75#define CS4270_MODE_SLAVE 0x30
76#define CS4270_MODE_DIV_MASK 0x0E
77#define CS4270_MODE_DIV1 0x00
78#define CS4270_MODE_DIV15 0x02
79#define CS4270_MODE_DIV2 0x04
80#define CS4270_MODE_DIV3 0x06
81#define CS4270_MODE_DIV4 0x08
82#define CS4270_MODE_POPGUARD 0x01
83#define CS4270_FORMAT_FREEZE_A 0x80
84#define CS4270_FORMAT_FREEZE_B 0x40
85#define CS4270_FORMAT_LOOPBACK 0x20
86#define CS4270_FORMAT_DAC_MASK 0x18
87#define CS4270_FORMAT_DAC_LJ 0x00
88#define CS4270_FORMAT_DAC_I2S 0x08
89#define CS4270_FORMAT_DAC_RJ16 0x18
90#define CS4270_FORMAT_DAC_RJ24 0x10
91#define CS4270_FORMAT_ADC_MASK 0x01
92#define CS4270_FORMAT_ADC_LJ 0x00
93#define CS4270_FORMAT_ADC_I2S 0x01
94#define CS4270_TRANS_ONE_VOL 0x80
95#define CS4270_TRANS_SOFT 0x40
96#define CS4270_TRANS_ZERO 0x20
97#define CS4270_TRANS_INV_ADC_A 0x08
98#define CS4270_TRANS_INV_ADC_B 0x10
99#define CS4270_TRANS_INV_DAC_A 0x02
100#define CS4270_TRANS_INV_DAC_B 0x04
101#define CS4270_TRANS_DEEMPH 0x01
102#define CS4270_MUTE_AUTO 0x20
103#define CS4270_MUTE_ADC_A 0x08
104#define CS4270_MUTE_ADC_B 0x10
105#define CS4270_MUTE_POLARITY 0x04
106#define CS4270_MUTE_DAC_A 0x01
107#define CS4270_MUTE_DAC_B 0x02
108
Timur Tabi11b8fca2011-01-10 13:28:32 -0600109/* Power-on default values for the registers
110 *
111 * This array contains the power-on default values of the registers, with the
112 * exception of the "CHIPID" register (01h). The lower four bits of that
113 * register contain the hardware revision, so it is treated as volatile.
114 *
115 * Also note that on the CS4270, the first readable register is 1, but ASoC
116 * assumes the first register is 0. Therfore, the array must have an entry for
117 * register 0, but we use cs4270_reg_is_readable() to tell ASoC that it can't
118 * be read.
119 */
120static const u8 cs4270_default_reg_cache[CS4270_LASTREG + 1] = {
121 0x00, 0x00, 0x00, 0x30, 0x00, 0x60, 0x20, 0x00, 0x00
122};
123
Daniel Mackffbfd332009-11-30 17:56:11 +0100124static const char *supply_names[] = {
125 "va", "vd", "vlc"
126};
127
Timur Tabi0db4d072009-01-23 16:31:19 -0600128/* Private data for the CS4270 */
129struct cs4270_private {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000130 enum snd_soc_control_type control_type;
Timur Tabi0db4d072009-01-23 16:31:19 -0600131 unsigned int mclk; /* Input frequency of the MCLK pin */
132 unsigned int mode; /* The mode (I2S or left-justified) */
Daniel Mack4eae0802009-02-25 14:37:21 +0100133 unsigned int slave_mode;
Daniel Mack1a4ba052009-04-24 16:37:45 +0200134 unsigned int manual_mute;
Daniel Mackffbfd332009-11-30 17:56:11 +0100135
136 /* power domain regulators */
137 struct regulator_bulk_data supplies[ARRAY_SIZE(supply_names)];
Timur Tabi0db4d072009-01-23 16:31:19 -0600138};
139
Timur Tabiff7bf022009-01-30 11:14:49 -0600140/**
141 * struct cs4270_mode_ratios - clock ratio tables
142 * @ratio: the ratio of MCLK to the sample rate
143 * @speed_mode: the Speed Mode bits to set in the Mode Control register for
144 * this ratio
145 * @mclk: the Ratio Select bits to set in the Mode Control register for this
146 * ratio
Timur Tabi84323952007-12-18 15:42:53 +0100147 *
148 * The data for this chart is taken from Table 5 of the CS4270 reference
149 * manual.
150 *
151 * This table is used to determine how to program the Mode Control register.
152 * It is also used by cs4270_set_dai_sysclk() to tell ALSA which sampling
153 * rates the CS4270 currently supports.
154 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600155 * @speed_mode is the corresponding bit pattern to be written to the
Timur Tabi84323952007-12-18 15:42:53 +0100156 * MODE bits of the Mode Control Register
157 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600158 * @mclk is the corresponding bit pattern to be wirten to the MCLK bits of
Timur Tabi84323952007-12-18 15:42:53 +0100159 * the Mode Control Register.
160 *
161 * In situations where a single ratio is represented by multiple speed
162 * modes, we favor the slowest speed. E.g, for a ratio of 128, we pick
163 * double-speed instead of quad-speed. However, the CS4270 errata states
Timur Tabiff7bf022009-01-30 11:14:49 -0600164 * that divide-By-1.5 can cause failures, so we avoid that mode where
Timur Tabi84323952007-12-18 15:42:53 +0100165 * possible.
166 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600167 * Errata: There is an errata for the CS4270 where divide-by-1.5 does not
168 * work if Vd is 3.3V. If this effects you, select the
Timur Tabi84323952007-12-18 15:42:53 +0100169 * CONFIG_SND_SOC_CS4270_VD33_ERRATA Kconfig option, and the driver will
170 * never select any sample rates that require divide-by-1.5.
171 */
Timur Tabiff7bf022009-01-30 11:14:49 -0600172struct cs4270_mode_ratios {
Timur Tabi84323952007-12-18 15:42:53 +0100173 unsigned int ratio;
174 u8 speed_mode;
175 u8 mclk;
Timur Tabiff7bf022009-01-30 11:14:49 -0600176};
177
Timur Tabid9fb7fb2009-02-02 14:50:45 -0600178static struct cs4270_mode_ratios cs4270_mode_ratios[] = {
Timur Tabi84323952007-12-18 15:42:53 +0100179 {64, CS4270_MODE_4X, CS4270_MODE_DIV1},
180#ifndef CONFIG_SND_SOC_CS4270_VD33_ERRATA
181 {96, CS4270_MODE_4X, CS4270_MODE_DIV15},
182#endif
183 {128, CS4270_MODE_2X, CS4270_MODE_DIV1},
184 {192, CS4270_MODE_4X, CS4270_MODE_DIV3},
185 {256, CS4270_MODE_1X, CS4270_MODE_DIV1},
186 {384, CS4270_MODE_2X, CS4270_MODE_DIV3},
187 {512, CS4270_MODE_1X, CS4270_MODE_DIV2},
188 {768, CS4270_MODE_1X, CS4270_MODE_DIV3},
189 {1024, CS4270_MODE_1X, CS4270_MODE_DIV4}
190};
191
192/* The number of MCLK/LRCK ratios supported by the CS4270 */
193#define NUM_MCLK_RATIOS ARRAY_SIZE(cs4270_mode_ratios)
194
Dimitris Papastamosd4754ec2011-01-13 12:20:37 +0000195static int cs4270_reg_is_readable(struct snd_soc_codec *codec, unsigned int reg)
Timur Tabi11b8fca2011-01-10 13:28:32 -0600196{
197 return (reg >= CS4270_FIRSTREG) && (reg <= CS4270_LASTREG);
198}
199
Dimitris Papastamosd4754ec2011-01-13 12:20:37 +0000200static int cs4270_reg_is_volatile(struct snd_soc_codec *codec, unsigned int reg)
Timur Tabi11b8fca2011-01-10 13:28:32 -0600201{
202 /* Unreadable registers are considered volatile */
203 if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
204 return 1;
205
206 return reg == CS4270_CHIPID;
207}
208
Timur Tabiff7bf022009-01-30 11:14:49 -0600209/**
210 * cs4270_set_dai_sysclk - determine the CS4270 samples rates.
211 * @codec_dai: the codec DAI
212 * @clk_id: the clock ID (ignored)
213 * @freq: the MCLK input frequency
214 * @dir: the clock direction (ignored)
Timur Tabi84323952007-12-18 15:42:53 +0100215 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600216 * This function is used to tell the codec driver what the input MCLK
217 * frequency is.
Timur Tabi84323952007-12-18 15:42:53 +0100218 *
219 * The value of MCLK is used to determine which sample rates are supported
220 * by the CS4270. The ratio of MCLK / Fs must be equal to one of nine
Timur Tabiff7bf022009-01-30 11:14:49 -0600221 * supported values - 64, 96, 128, 192, 256, 384, 512, 768, and 1024.
Timur Tabi84323952007-12-18 15:42:53 +0100222 *
223 * This function calculates the nine ratios and determines which ones match
224 * a standard sample rate. If there's a match, then it is added to the list
Timur Tabiff7bf022009-01-30 11:14:49 -0600225 * of supported sample rates.
Timur Tabi84323952007-12-18 15:42:53 +0100226 *
227 * This function must be called by the machine driver's 'startup' function,
228 * otherwise the list of supported sample rates will not be available in
229 * time for ALSA.
Daniel Mack6aababd2010-01-15 17:36:48 +0100230 *
231 * For setups with variable MCLKs, pass 0 as 'freq' argument. This will cause
232 * theoretically possible sample rates to be enabled. Call it again with a
233 * proper value set one the external clock is set (most probably you would do
234 * that from a machine's driver 'hw_param' hook.
Timur Tabi84323952007-12-18 15:42:53 +0100235 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100236static int cs4270_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Timur Tabi84323952007-12-18 15:42:53 +0100237 int clk_id, unsigned int freq, int dir)
238{
239 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900240 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabi84323952007-12-18 15:42:53 +0100241
242 cs4270->mclk = freq;
Timur Tabi84323952007-12-18 15:42:53 +0100243 return 0;
244}
245
Timur Tabiff7bf022009-01-30 11:14:49 -0600246/**
247 * cs4270_set_dai_fmt - configure the codec for the selected audio format
248 * @codec_dai: the codec DAI
249 * @format: a SND_SOC_DAIFMT_x value indicating the data format
Timur Tabi84323952007-12-18 15:42:53 +0100250 *
251 * This function takes a bitmask of SND_SOC_DAIFMT_x bits and programs the
252 * codec accordingly.
253 *
254 * Currently, this function only supports SND_SOC_DAIFMT_I2S and
255 * SND_SOC_DAIFMT_LEFT_J. The CS4270 codec also supports right-justified
256 * data for playback only, but ASoC currently does not support different
257 * formats for playback vs. record.
258 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100259static int cs4270_set_dai_fmt(struct snd_soc_dai *codec_dai,
Timur Tabi84323952007-12-18 15:42:53 +0100260 unsigned int format)
261{
262 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900263 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabi84323952007-12-18 15:42:53 +0100264
Daniel Mack4eae0802009-02-25 14:37:21 +0100265 /* set DAI format */
Timur Tabi84323952007-12-18 15:42:53 +0100266 switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
267 case SND_SOC_DAIFMT_I2S:
268 case SND_SOC_DAIFMT_LEFT_J:
269 cs4270->mode = format & SND_SOC_DAIFMT_FORMAT_MASK;
270 break;
271 default:
Timur Tabia6c255e2009-02-02 15:08:29 -0600272 dev_err(codec->dev, "invalid dai format\n");
Axel Linac601552011-10-06 07:29:56 +0800273 return -EINVAL;
Timur Tabi84323952007-12-18 15:42:53 +0100274 }
275
Daniel Mack4eae0802009-02-25 14:37:21 +0100276 /* set master/slave audio interface */
277 switch (format & SND_SOC_DAIFMT_MASTER_MASK) {
278 case SND_SOC_DAIFMT_CBS_CFS:
279 cs4270->slave_mode = 1;
280 break;
281 case SND_SOC_DAIFMT_CBM_CFM:
282 cs4270->slave_mode = 0;
283 break;
Daniel Mack4eae0802009-02-25 14:37:21 +0100284 default:
Daniel Mackff09d492009-02-28 13:21:03 +0100285 /* all other modes are unsupported by the hardware */
Axel Linac601552011-10-06 07:29:56 +0800286 dev_err(codec->dev, "Unknown master/slave configuration\n");
287 return -EINVAL;
Daniel Mack4eae0802009-02-25 14:37:21 +0100288 }
289
Axel Linac601552011-10-06 07:29:56 +0800290 return 0;
Timur Tabi84323952007-12-18 15:42:53 +0100291}
292
Timur Tabiff7bf022009-01-30 11:14:49 -0600293/**
Timur Tabiff7bf022009-01-30 11:14:49 -0600294 * cs4270_hw_params - program the CS4270 with the given hardware parameters.
295 * @substream: the audio stream
296 * @params: the hardware parameters to set
297 * @dai: the SOC DAI (ignored)
Timur Tabib0c813c2007-07-31 18:18:44 +0200298 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600299 * This function programs the hardware with the values provided.
300 * Specifically, the sample rate and the data format.
301 *
302 * The .ops functions are used to provide board-specific data, like input
303 * frequencies, to this driver. This function takes that information,
Timur Tabib0c813c2007-07-31 18:18:44 +0200304 * combines it with the hardware parameters provided, and programs the
305 * hardware accordingly.
306 */
307static int cs4270_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000308 struct snd_pcm_hw_params *params,
309 struct snd_soc_dai *dai)
Timur Tabib0c813c2007-07-31 18:18:44 +0200310{
Mark Browne6968a12012-04-04 15:58:16 +0100311 struct snd_soc_codec *codec = dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900312 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Roel Kluine34ba212008-04-17 18:58:34 +0200313 int ret;
Timur Tabib0c813c2007-07-31 18:18:44 +0200314 unsigned int i;
315 unsigned int rate;
316 unsigned int ratio;
317 int reg;
318
319 /* Figure out which MCLK/LRCK ratio to use */
320
321 rate = params_rate(params); /* Sampling rate, in Hz */
322 ratio = cs4270->mclk / rate; /* MCLK/LRCK ratio */
323
Timur Tabi9dbd6272007-08-01 12:22:07 +0200324 for (i = 0; i < NUM_MCLK_RATIOS; i++) {
Timur Tabi84323952007-12-18 15:42:53 +0100325 if (cs4270_mode_ratios[i].ratio == ratio)
Timur Tabib0c813c2007-07-31 18:18:44 +0200326 break;
327 }
328
Timur Tabi9dbd6272007-08-01 12:22:07 +0200329 if (i == NUM_MCLK_RATIOS) {
Timur Tabib0c813c2007-07-31 18:18:44 +0200330 /* We did not find a matching ratio */
Timur Tabia6c255e2009-02-02 15:08:29 -0600331 dev_err(codec->dev, "could not find matching ratio\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200332 return -EINVAL;
333 }
334
Timur Tabid5e9ba12009-02-03 11:09:32 -0600335 /* Set the sample rate */
Timur Tabib0c813c2007-07-31 18:18:44 +0200336
337 reg = snd_soc_read(codec, CS4270_MODE);
338 reg &= ~(CS4270_MODE_SPEED_MASK | CS4270_MODE_DIV_MASK);
Daniel Mack4eae0802009-02-25 14:37:21 +0100339 reg |= cs4270_mode_ratios[i].mclk;
340
341 if (cs4270->slave_mode)
342 reg |= CS4270_MODE_SLAVE;
343 else
344 reg |= cs4270_mode_ratios[i].speed_mode;
Timur Tabib0c813c2007-07-31 18:18:44 +0200345
346 ret = snd_soc_write(codec, CS4270_MODE, reg);
347 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600348 dev_err(codec->dev, "i2c write failed\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200349 return ret;
350 }
351
Timur Tabid5e9ba12009-02-03 11:09:32 -0600352 /* Set the DAI format */
Timur Tabib0c813c2007-07-31 18:18:44 +0200353
354 reg = snd_soc_read(codec, CS4270_FORMAT);
355 reg &= ~(CS4270_FORMAT_DAC_MASK | CS4270_FORMAT_ADC_MASK);
356
357 switch (cs4270->mode) {
358 case SND_SOC_DAIFMT_I2S:
359 reg |= CS4270_FORMAT_DAC_I2S | CS4270_FORMAT_ADC_I2S;
360 break;
361 case SND_SOC_DAIFMT_LEFT_J:
362 reg |= CS4270_FORMAT_DAC_LJ | CS4270_FORMAT_ADC_LJ;
363 break;
364 default:
Timur Tabia6c255e2009-02-02 15:08:29 -0600365 dev_err(codec->dev, "unknown dai format\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200366 return -EINVAL;
367 }
368
369 ret = snd_soc_write(codec, CS4270_FORMAT, reg);
370 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600371 dev_err(codec->dev, "i2c write failed\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200372 return ret;
373 }
374
Timur Tabib0c813c2007-07-31 18:18:44 +0200375 return ret;
376}
377
Timur Tabiff7bf022009-01-30 11:14:49 -0600378/**
Daniel Mack1a4ba052009-04-24 16:37:45 +0200379 * cs4270_dai_mute - enable/disable the CS4270 external mute
Timur Tabiff7bf022009-01-30 11:14:49 -0600380 * @dai: the SOC DAI
381 * @mute: 0 = disable mute, 1 = enable mute
Timur Tabib0c813c2007-07-31 18:18:44 +0200382 *
383 * This function toggles the mute bits in the MUTE register. The CS4270's
384 * mute capability is intended for external muting circuitry, so if the
385 * board does not have the MUTEA or MUTEB pins connected to such circuitry,
386 * then this function will do nothing.
387 */
Daniel Mack1a4ba052009-04-24 16:37:45 +0200388static int cs4270_dai_mute(struct snd_soc_dai *dai, int mute)
Timur Tabib0c813c2007-07-31 18:18:44 +0200389{
390 struct snd_soc_codec *codec = dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900391 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabib0c813c2007-07-31 18:18:44 +0200392 int reg6;
393
394 reg6 = snd_soc_read(codec, CS4270_MUTE);
395
396 if (mute)
Timur Tabid5e9ba12009-02-03 11:09:32 -0600397 reg6 |= CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B;
Daniel Mack1a4ba052009-04-24 16:37:45 +0200398 else {
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 reg6 |= cs4270->manual_mute;
401 }
Timur Tabib0c813c2007-07-31 18:18:44 +0200402
403 return snd_soc_write(codec, CS4270_MUTE, reg6);
404}
Timur Tabib0c813c2007-07-31 18:18:44 +0200405
Daniel Mack1a4ba052009-04-24 16:37:45 +0200406/**
407 * cs4270_soc_put_mute - put callback for the 'Master Playback switch'
408 * alsa control.
409 * @kcontrol: mixer control
410 * @ucontrol: control element information
411 *
412 * This function basically passes the arguments on to the generic
413 * snd_soc_put_volsw() function and saves the mute information in
414 * our private data structure. This is because we want to prevent
415 * cs4270_dai_mute() neglecting the user's decision to manually
416 * mute the codec's output.
417 *
418 * Returns 0 for success.
419 */
420static int cs4270_soc_put_mute(struct snd_kcontrol *kcontrol,
421 struct snd_ctl_elem_value *ucontrol)
422{
423 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownb2c812e2010-04-14 15:35:19 +0900424 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Daniel Mack1a4ba052009-04-24 16:37:45 +0200425 int left = !ucontrol->value.integer.value[0];
426 int right = !ucontrol->value.integer.value[1];
427
428 cs4270->manual_mute = (left ? CS4270_MUTE_DAC_A : 0) |
429 (right ? CS4270_MUTE_DAC_B : 0);
430
431 return snd_soc_put_volsw(kcontrol, ucontrol);
432}
433
Timur Tabib0c813c2007-07-31 18:18:44 +0200434/* A list of non-DAPM controls that the CS4270 supports */
435static const struct snd_kcontrol_new cs4270_snd_controls[] = {
436 SOC_DOUBLE_R("Master Playback Volume",
Timur Tabid5e9ba12009-02-03 11:09:32 -0600437 CS4270_VOLA, CS4270_VOLB, 0, 0xFF, 1),
438 SOC_SINGLE("Digital Sidetone Switch", CS4270_FORMAT, 5, 1, 0),
439 SOC_SINGLE("Soft Ramp Switch", CS4270_TRANS, 6, 1, 0),
440 SOC_SINGLE("Zero Cross Switch", CS4270_TRANS, 5, 1, 0),
Daniel Mack7e1aa1d2009-10-29 02:24:32 +0100441 SOC_SINGLE("De-emphasis filter", CS4270_TRANS, 0, 1, 0),
Timur Tabid5e9ba12009-02-03 11:09:32 -0600442 SOC_SINGLE("Popguard Switch", CS4270_MODE, 0, 1, 1),
443 SOC_SINGLE("Auto-Mute Switch", CS4270_MUTE, 5, 1, 0),
Daniel Mack1a4ba052009-04-24 16:37:45 +0200444 SOC_DOUBLE("Master Capture Switch", CS4270_MUTE, 3, 4, 1, 1),
445 SOC_DOUBLE_EXT("Master Playback Switch", CS4270_MUTE, 0, 1, 1, 1,
446 snd_soc_get_volsw, cs4270_soc_put_mute),
Timur Tabib0c813c2007-07-31 18:18:44 +0200447};
448
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100449static const struct snd_soc_dai_ops cs4270_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +0800450 .hw_params = cs4270_hw_params,
451 .set_sysclk = cs4270_set_dai_sysclk,
452 .set_fmt = cs4270_set_dai_fmt,
Daniel Mack1a4ba052009-04-24 16:37:45 +0200453 .digital_mute = cs4270_dai_mute,
Eric Miao6335d052009-03-03 09:41:00 +0800454};
455
Mark Brown5c758482010-10-06 16:18:17 -0700456static struct snd_soc_dai_driver cs4270_dai = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000457 .name = "cs4270-hifi",
Timur Tabib0c813c2007-07-31 18:18:44 +0200458 .playback = {
459 .stream_name = "Playback",
460 .channels_min = 1,
461 .channels_max = 2,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000462 .rates = SNDRV_PCM_RATE_CONTINUOUS,
463 .rate_min = 4000,
464 .rate_max = 216000,
Timur Tabib0c813c2007-07-31 18:18:44 +0200465 .formats = CS4270_FORMATS,
466 },
467 .capture = {
468 .stream_name = "Capture",
469 .channels_min = 1,
470 .channels_max = 2,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000471 .rates = SNDRV_PCM_RATE_CONTINUOUS,
472 .rate_min = 4000,
473 .rate_max = 216000,
Timur Tabib0c813c2007-07-31 18:18:44 +0200474 .formats = CS4270_FORMATS,
475 },
Eric Miao6335d052009-03-03 09:41:00 +0800476 .ops = &cs4270_dai_ops,
Timur Tabib0c813c2007-07-31 18:18:44 +0200477};
Timur Tabib0c813c2007-07-31 18:18:44 +0200478
Timur Tabiff7bf022009-01-30 11:14:49 -0600479/**
480 * cs4270_probe - ASoC probe function
481 * @pdev: platform device
482 *
483 * This function is called when ASoC has all the pieces it needs to
484 * instantiate a sound driver.
Timur Tabi04eb0932009-01-29 14:28:37 -0600485 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000486static int cs4270_probe(struct snd_soc_codec *codec)
Timur Tabi04eb0932009-01-29 14:28:37 -0600487{
Mark Brownb2c812e2010-04-14 15:35:19 +0900488 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabi11b8fca2011-01-10 13:28:32 -0600489 int i, ret;
Timur Tabi04eb0932009-01-29 14:28:37 -0600490
Timur Tabi11b8fca2011-01-10 13:28:32 -0600491 /* Tell ASoC what kind of I/O to use to read the registers. ASoC will
492 * then do the I2C transactions itself.
493 */
494 ret = snd_soc_codec_set_cache_io(codec, 8, 8, cs4270->control_type);
Timur Tabi0db4d072009-01-23 16:31:19 -0600495 if (ret < 0) {
Timur Tabi11b8fca2011-01-10 13:28:32 -0600496 dev_err(codec->dev, "failed to set cache I/O (ret=%i)\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000497 return ret;
Timur Tabi0db4d072009-01-23 16:31:19 -0600498 }
Timur Tabib0c813c2007-07-31 18:18:44 +0200499
Timur Tabid5e9ba12009-02-03 11:09:32 -0600500 /* Disable auto-mute. This feature appears to be buggy. In some
501 * situations, auto-mute will not deactivate when it should, so we want
502 * this feature disabled by default. An application (e.g. alsactl) can
503 * re-enabled it by using the controls.
504 */
Timur Tabi11b8fca2011-01-10 13:28:32 -0600505 ret = snd_soc_update_bits(codec, CS4270_MUTE, CS4270_MUTE_AUTO, 0);
Timur Tabid5e9ba12009-02-03 11:09:32 -0600506 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000507 dev_err(codec->dev, "i2c write failed\n");
Timur Tabid5e9ba12009-02-03 11:09:32 -0600508 return ret;
509 }
510
511 /* Disable automatic volume control. The hardware enables, and it
512 * causes volume change commands to be delayed, sometimes until after
513 * playback has started. An application (e.g. alsactl) can
514 * re-enabled it by using the controls.
515 */
Timur Tabi11b8fca2011-01-10 13:28:32 -0600516 ret = snd_soc_update_bits(codec, CS4270_TRANS,
517 CS4270_TRANS_SOFT | CS4270_TRANS_ZERO, 0);
Timur Tabid5e9ba12009-02-03 11:09:32 -0600518 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000519 dev_err(codec->dev, "i2c write failed\n");
Timur Tabid5e9ba12009-02-03 11:09:32 -0600520 return ret;
521 }
522
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000523 /* Add the non-DAPM controls */
Liam Girdwood022658b2012-02-03 17:43:09 +0000524 ret = snd_soc_add_codec_controls(codec, cs4270_snd_controls,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000525 ARRAY_SIZE(cs4270_snd_controls));
Timur Tabib0c813c2007-07-31 18:18:44 +0200526 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000527 dev_err(codec->dev, "failed to add controls\n");
528 return ret;
Timur Tabib0c813c2007-07-31 18:18:44 +0200529 }
530
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000531 /* get the power supply regulators */
532 for (i = 0; i < ARRAY_SIZE(supply_names); i++)
533 cs4270->supplies[i].supply = supply_names[i];
534
535 ret = regulator_bulk_get(codec->dev, ARRAY_SIZE(cs4270->supplies),
536 cs4270->supplies);
537 if (ret < 0)
538 return ret;
539
540 ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies),
541 cs4270->supplies);
542 if (ret < 0)
543 goto error_free_regulators;
Jean Delvaree3145df2008-09-30 11:40:37 +0200544
Timur Tabi0db4d072009-01-23 16:31:19 -0600545 return 0;
Jean Delvaree3145df2008-09-30 11:40:37 +0200546
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000547error_free_regulators:
548 regulator_bulk_free(ARRAY_SIZE(cs4270->supplies),
549 cs4270->supplies);
Jean Delvaree3145df2008-09-30 11:40:37 +0200550
Timur Tabib0c813c2007-07-31 18:18:44 +0200551 return ret;
552}
553
Timur Tabiff7bf022009-01-30 11:14:49 -0600554/**
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000555 * cs4270_remove - ASoC remove function
556 * @pdev: platform device
Timur Tabiff7bf022009-01-30 11:14:49 -0600557 *
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000558 * This function is the counterpart to cs4270_probe().
Timur Tabiff7bf022009-01-30 11:14:49 -0600559 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000560static int cs4270_remove(struct snd_soc_codec *codec)
Timur Tabib0c813c2007-07-31 18:18:44 +0200561{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000562 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Timur Tabib0c813c2007-07-31 18:18:44 +0200563
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000564 regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies), cs4270->supplies);
565 regulator_bulk_free(ARRAY_SIZE(cs4270->supplies), cs4270->supplies);
Timur Tabib0c813c2007-07-31 18:18:44 +0200566
Timur Tabi0db4d072009-01-23 16:31:19 -0600567 return 0;
Timur Tabi0db4d072009-01-23 16:31:19 -0600568};
Timur Tabi0db4d072009-01-23 16:31:19 -0600569
Daniel Mack5e7c0342009-05-06 01:26:01 +0200570#ifdef CONFIG_PM
571
572/* This suspend/resume implementation can handle both - a simple standby
573 * where the codec remains powered, and a full suspend, where the voltage
574 * domain the codec is connected to is teared down and/or any other hardware
575 * reset condition is asserted.
576 *
577 * The codec's own power saving features are enabled in the suspend callback,
578 * and all registers are written back to the hardware when resuming.
579 */
580
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100581static int cs4270_soc_suspend(struct snd_soc_codec *codec)
Daniel Mack15b5bda2009-08-05 20:50:43 +0200582{
Mark Brownb2c812e2010-04-14 15:35:19 +0900583 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Daniel Mackffbfd332009-11-30 17:56:11 +0100584 int reg, ret;
Daniel Mack15b5bda2009-08-05 20:50:43 +0200585
Daniel Mackffbfd332009-11-30 17:56:11 +0100586 reg = snd_soc_read(codec, CS4270_PWRCTL) | CS4270_PWRCTL_PDN_ALL;
587 if (reg < 0)
588 return reg;
589
590 ret = snd_soc_write(codec, CS4270_PWRCTL, reg);
591 if (ret < 0)
592 return ret;
593
594 regulator_bulk_disable(ARRAY_SIZE(cs4270->supplies),
595 cs4270->supplies);
596
597 return 0;
Daniel Mack15b5bda2009-08-05 20:50:43 +0200598}
599
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600static int cs4270_soc_resume(struct snd_soc_codec *codec)
Daniel Mack15b5bda2009-08-05 20:50:43 +0200601{
Mark Brownb2c812e2010-04-14 15:35:19 +0900602 struct cs4270_private *cs4270 = snd_soc_codec_get_drvdata(codec);
Mark Brownab92d092012-03-19 16:15:43 +0000603 int reg, ret;
Daniel Mack5e7c0342009-05-06 01:26:01 +0200604
Mark Brownab92d092012-03-19 16:15:43 +0000605 ret = regulator_bulk_enable(ARRAY_SIZE(cs4270->supplies),
606 cs4270->supplies);
607 if (ret != 0)
608 return ret;
Daniel Mackffbfd332009-11-30 17:56:11 +0100609
Daniel Mack5e7c0342009-05-06 01:26:01 +0200610 /* In case the device was put to hard reset during sleep, we need to
611 * wait 500ns here before any I2C communication. */
612 ndelay(500);
613
614 /* first restore the entire register cache ... */
Daniel Mackd66b8532011-11-22 17:17:23 +0100615 snd_soc_cache_sync(codec);
Daniel Mack5e7c0342009-05-06 01:26:01 +0200616
617 /* ... then disable the power-down bits */
618 reg = snd_soc_read(codec, CS4270_PWRCTL);
619 reg &= ~CS4270_PWRCTL_PDN_ALL;
620
621 return snd_soc_write(codec, CS4270_PWRCTL, reg);
622}
623#else
Daniel Mack15b5bda2009-08-05 20:50:43 +0200624#define cs4270_soc_suspend NULL
625#define cs4270_soc_resume NULL
Daniel Mack5e7c0342009-05-06 01:26:01 +0200626#endif /* CONFIG_PM */
627
Timur Tabiff7bf022009-01-30 11:14:49 -0600628/*
Daniel Mackb6f7d7c2011-05-25 09:53:12 +0200629 * ASoC codec driver structure
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000630 */
Timur Tabi11b8fca2011-01-10 13:28:32 -0600631static const struct snd_soc_codec_driver soc_codec_device_cs4270 = {
632 .probe = cs4270_probe,
633 .remove = cs4270_remove,
634 .suspend = cs4270_soc_suspend,
635 .resume = cs4270_soc_resume,
636 .volatile_register = cs4270_reg_is_volatile,
637 .readable_register = cs4270_reg_is_readable,
638 .reg_cache_size = CS4270_LASTREG + 1,
639 .reg_word_size = sizeof(u8),
640 .reg_cache_default = cs4270_default_reg_cache,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000641};
642
Daniel Mack85d07e42012-07-25 15:28:34 +0200643/*
644 * cs4270_of_match - the device tree bindings
645 */
646static const struct of_device_id cs4270_of_match[] = {
647 { .compatible = "cirrus,cs4270", },
648 { }
649};
650MODULE_DEVICE_TABLE(of, cs4270_of_match);
651
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000652/**
653 * cs4270_i2c_probe - initialize the I2C interface of the CS4270
654 * @i2c_client: the I2C client object
655 * @id: the I2C device ID (ignored)
656 *
657 * This function is called whenever the I2C subsystem finds a device that
658 * matches the device ID given via a prior call to i2c_add_driver().
659 */
660static int cs4270_i2c_probe(struct i2c_client *i2c_client,
661 const struct i2c_device_id *id)
662{
663 struct cs4270_private *cs4270;
664 int ret;
665
666 /* Verify that we have a CS4270 */
667
668 ret = i2c_smbus_read_byte_data(i2c_client, CS4270_CHIPID);
669 if (ret < 0) {
670 dev_err(&i2c_client->dev, "failed to read i2c at addr %X\n",
671 i2c_client->addr);
672 return ret;
673 }
674 /* The top four bits of the chip ID should be 1100. */
675 if ((ret & 0xF0) != 0xC0) {
676 dev_err(&i2c_client->dev, "device at addr %X is not a CS4270\n",
677 i2c_client->addr);
678 return -ENODEV;
679 }
680
681 dev_info(&i2c_client->dev, "found device at i2c address %X\n",
682 i2c_client->addr);
683 dev_info(&i2c_client->dev, "hardware revision %X\n", ret & 0xF);
684
Axel Lin7fd8a672011-12-29 11:58:22 +0800685 cs4270 = devm_kzalloc(&i2c_client->dev, sizeof(struct cs4270_private),
686 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000687 if (!cs4270) {
688 dev_err(&i2c_client->dev, "could not allocate codec\n");
689 return -ENOMEM;
690 }
691
692 i2c_set_clientdata(i2c_client, cs4270);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000693 cs4270->control_type = SND_SOC_I2C;
694
695 ret = snd_soc_register_codec(&i2c_client->dev,
696 &soc_codec_device_cs4270, &cs4270_dai, 1);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000697 return ret;
698}
699
700/**
701 * cs4270_i2c_remove - remove an I2C device
702 * @i2c_client: the I2C client object
703 *
704 * This function is the counterpart to cs4270_i2c_probe().
705 */
706static int cs4270_i2c_remove(struct i2c_client *i2c_client)
707{
708 snd_soc_unregister_codec(&i2c_client->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000709 return 0;
710}
711
712/*
713 * cs4270_id - I2C device IDs supported by this driver
714 */
Axel Lin79a54ea2011-03-04 15:22:03 +0800715static const struct i2c_device_id cs4270_id[] = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000716 {"cs4270", 0},
717 {}
718};
719MODULE_DEVICE_TABLE(i2c, cs4270_id);
720
721/*
Timur Tabiff7bf022009-01-30 11:14:49 -0600722 * cs4270_i2c_driver - I2C device identification
723 *
724 * This structure tells the I2C subsystem how to identify and support a
725 * given I2C device type.
726 */
Timur Tabi0db4d072009-01-23 16:31:19 -0600727static struct i2c_driver cs4270_i2c_driver = {
728 .driver = {
Shawn Guo64902b22012-02-24 22:09:38 +0800729 .name = "cs4270",
Timur Tabi0db4d072009-01-23 16:31:19 -0600730 .owner = THIS_MODULE,
Daniel Mack85d07e42012-07-25 15:28:34 +0200731 .of_match_table = cs4270_of_match,
Timur Tabi0db4d072009-01-23 16:31:19 -0600732 },
733 .id_table = cs4270_id,
734 .probe = cs4270_i2c_probe,
735 .remove = cs4270_i2c_remove,
736};
737
Takashi Iwaic9b3a402008-12-10 07:47:22 +0100738static int __init cs4270_init(void)
Mark Brown64089b82008-12-08 19:17:58 +0000739{
Timur Tabi04eb0932009-01-29 14:28:37 -0600740 return i2c_add_driver(&cs4270_i2c_driver);
Mark Brown64089b82008-12-08 19:17:58 +0000741}
742module_init(cs4270_init);
743
744static void __exit cs4270_exit(void)
745{
Timur Tabi04eb0932009-01-29 14:28:37 -0600746 i2c_del_driver(&cs4270_i2c_driver);
Mark Brown64089b82008-12-08 19:17:58 +0000747}
748module_exit(cs4270_exit);
749
Timur Tabib0c813c2007-07-31 18:18:44 +0200750MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
751MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver");
752MODULE_LICENSE("GPL");