blob: 339e0f6b0fe271a392750a825a2af00bde18aba0 [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 *
Timur Tabiff637d382009-01-22 18:23:39 -060015 * 1) Software mode is supported. Stand-alone mode is not supported.
Timur Tabib0c813c2007-07-31 18:18:44 +020016 * 2) Only I2C is supported, not SPI
17 * 3) Only Master mode is supported, not Slave.
18 * 4) The machine driver's 'startup' function must call
19 * cs4270_set_dai_sysclk() with the value of MCLK.
20 * 5) Only I2S and left-justified modes are supported
21 * 6) Power management is not supported
22 * 7) The only supported control is volume and hardware mute (if enabled)
23 */
24
25#include <linux/module.h>
26#include <linux/platform_device.h>
Timur Tabib0c813c2007-07-31 18:18:44 +020027#include <sound/core.h>
28#include <sound/soc.h>
29#include <sound/initval.h>
30#include <linux/i2c.h>
31
Mark Brown01e097d2009-01-23 15:07:45 +000032#include "cs4270.h"
33
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)
60
61/* Bit masks for the CS4270 registers */
62#define CS4270_CHIPID_ID 0xF0
63#define CS4270_CHIPID_REV 0x0F
64#define CS4270_PWRCTL_FREEZE 0x80
65#define CS4270_PWRCTL_PDN_ADC 0x20
66#define CS4270_PWRCTL_PDN_DAC 0x02
67#define CS4270_PWRCTL_PDN 0x01
68#define CS4270_MODE_SPEED_MASK 0x30
69#define CS4270_MODE_1X 0x00
70#define CS4270_MODE_2X 0x10
71#define CS4270_MODE_4X 0x20
72#define CS4270_MODE_SLAVE 0x30
73#define CS4270_MODE_DIV_MASK 0x0E
74#define CS4270_MODE_DIV1 0x00
75#define CS4270_MODE_DIV15 0x02
76#define CS4270_MODE_DIV2 0x04
77#define CS4270_MODE_DIV3 0x06
78#define CS4270_MODE_DIV4 0x08
79#define CS4270_MODE_POPGUARD 0x01
80#define CS4270_FORMAT_FREEZE_A 0x80
81#define CS4270_FORMAT_FREEZE_B 0x40
82#define CS4270_FORMAT_LOOPBACK 0x20
83#define CS4270_FORMAT_DAC_MASK 0x18
84#define CS4270_FORMAT_DAC_LJ 0x00
85#define CS4270_FORMAT_DAC_I2S 0x08
86#define CS4270_FORMAT_DAC_RJ16 0x18
87#define CS4270_FORMAT_DAC_RJ24 0x10
88#define CS4270_FORMAT_ADC_MASK 0x01
89#define CS4270_FORMAT_ADC_LJ 0x00
90#define CS4270_FORMAT_ADC_I2S 0x01
91#define CS4270_TRANS_ONE_VOL 0x80
92#define CS4270_TRANS_SOFT 0x40
93#define CS4270_TRANS_ZERO 0x20
94#define CS4270_TRANS_INV_ADC_A 0x08
95#define CS4270_TRANS_INV_ADC_B 0x10
96#define CS4270_TRANS_INV_DAC_A 0x02
97#define CS4270_TRANS_INV_DAC_B 0x04
98#define CS4270_TRANS_DEEMPH 0x01
99#define CS4270_MUTE_AUTO 0x20
100#define CS4270_MUTE_ADC_A 0x08
101#define CS4270_MUTE_ADC_B 0x10
102#define CS4270_MUTE_POLARITY 0x04
103#define CS4270_MUTE_DAC_A 0x01
104#define CS4270_MUTE_DAC_B 0x02
105
Timur Tabi0db4d072009-01-23 16:31:19 -0600106/* Private data for the CS4270 */
107struct cs4270_private {
108 struct snd_soc_codec codec;
109 u8 reg_cache[CS4270_NUMREGS];
110 unsigned int mclk; /* Input frequency of the MCLK pin */
111 unsigned int mode; /* The mode (I2S or left-justified) */
Daniel Mack4eae0802009-02-25 14:37:21 +0100112 unsigned int slave_mode;
Timur Tabi0db4d072009-01-23 16:31:19 -0600113};
114
Timur Tabiff7bf022009-01-30 11:14:49 -0600115/**
116 * struct cs4270_mode_ratios - clock ratio tables
117 * @ratio: the ratio of MCLK to the sample rate
118 * @speed_mode: the Speed Mode bits to set in the Mode Control register for
119 * this ratio
120 * @mclk: the Ratio Select bits to set in the Mode Control register for this
121 * ratio
Timur Tabi84323952007-12-18 15:42:53 +0100122 *
123 * The data for this chart is taken from Table 5 of the CS4270 reference
124 * manual.
125 *
126 * This table is used to determine how to program the Mode Control register.
127 * It is also used by cs4270_set_dai_sysclk() to tell ALSA which sampling
128 * rates the CS4270 currently supports.
129 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600130 * @speed_mode is the corresponding bit pattern to be written to the
Timur Tabi84323952007-12-18 15:42:53 +0100131 * MODE bits of the Mode Control Register
132 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600133 * @mclk is the corresponding bit pattern to be wirten to the MCLK bits of
Timur Tabi84323952007-12-18 15:42:53 +0100134 * the Mode Control Register.
135 *
136 * In situations where a single ratio is represented by multiple speed
137 * modes, we favor the slowest speed. E.g, for a ratio of 128, we pick
138 * double-speed instead of quad-speed. However, the CS4270 errata states
Timur Tabiff7bf022009-01-30 11:14:49 -0600139 * that divide-By-1.5 can cause failures, so we avoid that mode where
Timur Tabi84323952007-12-18 15:42:53 +0100140 * possible.
141 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600142 * Errata: There is an errata for the CS4270 where divide-by-1.5 does not
143 * work if Vd is 3.3V. If this effects you, select the
Timur Tabi84323952007-12-18 15:42:53 +0100144 * CONFIG_SND_SOC_CS4270_VD33_ERRATA Kconfig option, and the driver will
145 * never select any sample rates that require divide-by-1.5.
146 */
Timur Tabiff7bf022009-01-30 11:14:49 -0600147struct cs4270_mode_ratios {
Timur Tabi84323952007-12-18 15:42:53 +0100148 unsigned int ratio;
149 u8 speed_mode;
150 u8 mclk;
Timur Tabiff7bf022009-01-30 11:14:49 -0600151};
152
Timur Tabid9fb7fb2009-02-02 14:50:45 -0600153static struct cs4270_mode_ratios cs4270_mode_ratios[] = {
Timur Tabi84323952007-12-18 15:42:53 +0100154 {64, CS4270_MODE_4X, CS4270_MODE_DIV1},
155#ifndef CONFIG_SND_SOC_CS4270_VD33_ERRATA
156 {96, CS4270_MODE_4X, CS4270_MODE_DIV15},
157#endif
158 {128, CS4270_MODE_2X, CS4270_MODE_DIV1},
159 {192, CS4270_MODE_4X, CS4270_MODE_DIV3},
160 {256, CS4270_MODE_1X, CS4270_MODE_DIV1},
161 {384, CS4270_MODE_2X, CS4270_MODE_DIV3},
162 {512, CS4270_MODE_1X, CS4270_MODE_DIV2},
163 {768, CS4270_MODE_1X, CS4270_MODE_DIV3},
164 {1024, CS4270_MODE_1X, CS4270_MODE_DIV4}
165};
166
167/* The number of MCLK/LRCK ratios supported by the CS4270 */
168#define NUM_MCLK_RATIOS ARRAY_SIZE(cs4270_mode_ratios)
169
Timur Tabiff7bf022009-01-30 11:14:49 -0600170/**
171 * cs4270_set_dai_sysclk - determine the CS4270 samples rates.
172 * @codec_dai: the codec DAI
173 * @clk_id: the clock ID (ignored)
174 * @freq: the MCLK input frequency
175 * @dir: the clock direction (ignored)
Timur Tabi84323952007-12-18 15:42:53 +0100176 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600177 * This function is used to tell the codec driver what the input MCLK
178 * frequency is.
Timur Tabi84323952007-12-18 15:42:53 +0100179 *
180 * The value of MCLK is used to determine which sample rates are supported
181 * by the CS4270. The ratio of MCLK / Fs must be equal to one of nine
Timur Tabiff7bf022009-01-30 11:14:49 -0600182 * supported values - 64, 96, 128, 192, 256, 384, 512, 768, and 1024.
Timur Tabi84323952007-12-18 15:42:53 +0100183 *
184 * This function calculates the nine ratios and determines which ones match
185 * a standard sample rate. If there's a match, then it is added to the list
Timur Tabiff7bf022009-01-30 11:14:49 -0600186 * of supported sample rates.
Timur Tabi84323952007-12-18 15:42:53 +0100187 *
188 * This function must be called by the machine driver's 'startup' function,
189 * otherwise the list of supported sample rates will not be available in
190 * time for ALSA.
Timur Tabi84323952007-12-18 15:42:53 +0100191 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100192static int cs4270_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Timur Tabi84323952007-12-18 15:42:53 +0100193 int clk_id, unsigned int freq, int dir)
194{
195 struct snd_soc_codec *codec = codec_dai->codec;
196 struct cs4270_private *cs4270 = codec->private_data;
197 unsigned int rates = 0;
198 unsigned int rate_min = -1;
199 unsigned int rate_max = 0;
200 unsigned int i;
201
202 cs4270->mclk = freq;
203
204 for (i = 0; i < NUM_MCLK_RATIOS; i++) {
205 unsigned int rate = freq / cs4270_mode_ratios[i].ratio;
206 rates |= snd_pcm_rate_to_rate_bit(rate);
207 if (rate < rate_min)
208 rate_min = rate;
209 if (rate > rate_max)
210 rate_max = rate;
211 }
212 /* FIXME: soc should support a rate list */
213 rates &= ~SNDRV_PCM_RATE_KNOT;
214
215 if (!rates) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600216 dev_err(codec->dev, "could not find a valid sample rate\n");
Timur Tabi84323952007-12-18 15:42:53 +0100217 return -EINVAL;
218 }
219
220 codec_dai->playback.rates = rates;
221 codec_dai->playback.rate_min = rate_min;
222 codec_dai->playback.rate_max = rate_max;
223
224 codec_dai->capture.rates = rates;
225 codec_dai->capture.rate_min = rate_min;
226 codec_dai->capture.rate_max = rate_max;
227
228 return 0;
229}
230
Timur Tabiff7bf022009-01-30 11:14:49 -0600231/**
232 * cs4270_set_dai_fmt - configure the codec for the selected audio format
233 * @codec_dai: the codec DAI
234 * @format: a SND_SOC_DAIFMT_x value indicating the data format
Timur Tabi84323952007-12-18 15:42:53 +0100235 *
236 * This function takes a bitmask of SND_SOC_DAIFMT_x bits and programs the
237 * codec accordingly.
238 *
239 * Currently, this function only supports SND_SOC_DAIFMT_I2S and
240 * SND_SOC_DAIFMT_LEFT_J. The CS4270 codec also supports right-justified
241 * data for playback only, but ASoC currently does not support different
242 * formats for playback vs. record.
243 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100244static int cs4270_set_dai_fmt(struct snd_soc_dai *codec_dai,
Timur Tabi84323952007-12-18 15:42:53 +0100245 unsigned int format)
246{
247 struct snd_soc_codec *codec = codec_dai->codec;
248 struct cs4270_private *cs4270 = codec->private_data;
249 int ret = 0;
250
Daniel Mack4eae0802009-02-25 14:37:21 +0100251 /* set DAI format */
Timur Tabi84323952007-12-18 15:42:53 +0100252 switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
253 case SND_SOC_DAIFMT_I2S:
254 case SND_SOC_DAIFMT_LEFT_J:
255 cs4270->mode = format & SND_SOC_DAIFMT_FORMAT_MASK;
256 break;
257 default:
Timur Tabia6c255e2009-02-02 15:08:29 -0600258 dev_err(codec->dev, "invalid dai format\n");
Timur Tabi84323952007-12-18 15:42:53 +0100259 ret = -EINVAL;
260 }
261
Daniel Mack4eae0802009-02-25 14:37:21 +0100262 /* set master/slave audio interface */
263 switch (format & SND_SOC_DAIFMT_MASTER_MASK) {
264 case SND_SOC_DAIFMT_CBS_CFS:
265 cs4270->slave_mode = 1;
266 break;
267 case SND_SOC_DAIFMT_CBM_CFM:
268 cs4270->slave_mode = 0;
269 break;
270 case SND_SOC_DAIFMT_CBM_CFS:
271 /* unsupported - cs4270 can eigther be slave or master to
272 * both the bitclk and the lrclk. */
273 default:
274 ret = -EINVAL;
275 }
276
Timur Tabi84323952007-12-18 15:42:53 +0100277 return ret;
278}
279
Timur Tabiff7bf022009-01-30 11:14:49 -0600280/**
281 * cs4270_fill_cache - pre-fill the CS4270 register cache.
282 * @codec: the codec for this CS4270
283 *
284 * This function fills in the CS4270 register cache by reading the register
285 * values from the hardware.
286 *
287 * This CS4270 registers are cached to avoid excessive I2C I/O operations.
288 * After the initial read to pre-fill the cache, the CS4270 never updates
289 * the register values, so we won't have a cache coherency problem.
Timur Tabib0c813c2007-07-31 18:18:44 +0200290 *
291 * We use the auto-increment feature of the CS4270 to read all registers in
292 * one shot.
293 */
294static int cs4270_fill_cache(struct snd_soc_codec *codec)
295{
296 u8 *cache = codec->reg_cache;
297 struct i2c_client *i2c_client = codec->control_data;
298 s32 length;
299
300 length = i2c_smbus_read_i2c_block_data(i2c_client,
301 CS4270_FIRSTREG | 0x80, CS4270_NUMREGS, cache);
302
303 if (length != CS4270_NUMREGS) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600304 dev_err(codec->dev, "i2c read failure, addr=0x%x\n",
Timur Tabib0c813c2007-07-31 18:18:44 +0200305 i2c_client->addr);
306 return -EIO;
307 }
308
309 return 0;
310}
311
Timur Tabiff7bf022009-01-30 11:14:49 -0600312/**
313 * cs4270_read_reg_cache - read from the CS4270 register cache.
314 * @codec: the codec for this CS4270
315 * @reg: the register to read
316 *
317 * This function returns the value for a given register. It reads only from
318 * the register cache, not the hardware itself.
Timur Tabib0c813c2007-07-31 18:18:44 +0200319 *
320 * This CS4270 registers are cached to avoid excessive I2C I/O operations.
321 * After the initial read to pre-fill the cache, the CS4270 never updates
Timur Tabiff7bf022009-01-30 11:14:49 -0600322 * the register values, so we won't have a cache coherency problem.
Timur Tabib0c813c2007-07-31 18:18:44 +0200323 */
324static unsigned int cs4270_read_reg_cache(struct snd_soc_codec *codec,
325 unsigned int reg)
326{
327 u8 *cache = codec->reg_cache;
328
329 if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
330 return -EIO;
331
332 return cache[reg - CS4270_FIRSTREG];
333}
334
Timur Tabiff7bf022009-01-30 11:14:49 -0600335/**
336 * cs4270_i2c_write - write to a CS4270 register via the I2C bus.
337 * @codec: the codec for this CS4270
338 * @reg: the register to write
339 * @value: the value to write to the register
Timur Tabib0c813c2007-07-31 18:18:44 +0200340 *
341 * This function writes the given value to the given CS4270 register, and
342 * also updates the register cache.
343 *
344 * Note that we don't use the hw_write function pointer of snd_soc_codec.
345 * That's because it's too clunky: the hw_write_t prototype does not match
346 * i2c_smbus_write_byte_data(), and it's just another layer of overhead.
347 */
348static int cs4270_i2c_write(struct snd_soc_codec *codec, unsigned int reg,
349 unsigned int value)
350{
Timur Tabibfc4e862007-09-11 00:45:50 +0200351 u8 *cache = codec->reg_cache;
352
Timur Tabib0c813c2007-07-31 18:18:44 +0200353 if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
354 return -EIO;
355
Timur Tabibfc4e862007-09-11 00:45:50 +0200356 /* Only perform an I2C operation if the new value is different */
357 if (cache[reg - CS4270_FIRSTREG] != value) {
358 struct i2c_client *client = codec->control_data;
359 if (i2c_smbus_write_byte_data(client, reg, value)) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600360 dev_err(codec->dev, "i2c write failed\n");
Timur Tabibfc4e862007-09-11 00:45:50 +0200361 return -EIO;
362 }
363
Timur Tabib0c813c2007-07-31 18:18:44 +0200364 /* We've written to the hardware, so update the cache */
Timur Tabib0c813c2007-07-31 18:18:44 +0200365 cache[reg - CS4270_FIRSTREG] = value;
Timur Tabib0c813c2007-07-31 18:18:44 +0200366 }
Timur Tabibfc4e862007-09-11 00:45:50 +0200367
368 return 0;
Timur Tabib0c813c2007-07-31 18:18:44 +0200369}
370
Timur Tabiff7bf022009-01-30 11:14:49 -0600371/**
372 * cs4270_hw_params - program the CS4270 with the given hardware parameters.
373 * @substream: the audio stream
374 * @params: the hardware parameters to set
375 * @dai: the SOC DAI (ignored)
Timur Tabib0c813c2007-07-31 18:18:44 +0200376 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600377 * This function programs the hardware with the values provided.
378 * Specifically, the sample rate and the data format.
379 *
380 * The .ops functions are used to provide board-specific data, like input
381 * frequencies, to this driver. This function takes that information,
Timur Tabib0c813c2007-07-31 18:18:44 +0200382 * combines it with the hardware parameters provided, and programs the
383 * hardware accordingly.
384 */
385static int cs4270_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000386 struct snd_pcm_hw_params *params,
387 struct snd_soc_dai *dai)
Timur Tabib0c813c2007-07-31 18:18:44 +0200388{
389 struct snd_soc_pcm_runtime *rtd = substream->private_data;
390 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown6627a652009-01-23 22:55:23 +0000391 struct snd_soc_codec *codec = socdev->card->codec;
Timur Tabib0c813c2007-07-31 18:18:44 +0200392 struct cs4270_private *cs4270 = codec->private_data;
Roel Kluine34ba212008-04-17 18:58:34 +0200393 int ret;
Timur Tabib0c813c2007-07-31 18:18:44 +0200394 unsigned int i;
395 unsigned int rate;
396 unsigned int ratio;
397 int reg;
398
399 /* Figure out which MCLK/LRCK ratio to use */
400
401 rate = params_rate(params); /* Sampling rate, in Hz */
402 ratio = cs4270->mclk / rate; /* MCLK/LRCK ratio */
403
Timur Tabi9dbd6272007-08-01 12:22:07 +0200404 for (i = 0; i < NUM_MCLK_RATIOS; i++) {
Timur Tabi84323952007-12-18 15:42:53 +0100405 if (cs4270_mode_ratios[i].ratio == ratio)
Timur Tabib0c813c2007-07-31 18:18:44 +0200406 break;
407 }
408
Timur Tabi9dbd6272007-08-01 12:22:07 +0200409 if (i == NUM_MCLK_RATIOS) {
Timur Tabib0c813c2007-07-31 18:18:44 +0200410 /* We did not find a matching ratio */
Timur Tabia6c255e2009-02-02 15:08:29 -0600411 dev_err(codec->dev, "could not find matching ratio\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200412 return -EINVAL;
413 }
414
Timur Tabid5e9ba12009-02-03 11:09:32 -0600415 /* Set the sample rate */
Timur Tabib0c813c2007-07-31 18:18:44 +0200416
417 reg = snd_soc_read(codec, CS4270_MODE);
418 reg &= ~(CS4270_MODE_SPEED_MASK | CS4270_MODE_DIV_MASK);
Daniel Mack4eae0802009-02-25 14:37:21 +0100419 reg |= cs4270_mode_ratios[i].mclk;
420
421 if (cs4270->slave_mode)
422 reg |= CS4270_MODE_SLAVE;
423 else
424 reg |= cs4270_mode_ratios[i].speed_mode;
Timur Tabib0c813c2007-07-31 18:18:44 +0200425
426 ret = snd_soc_write(codec, CS4270_MODE, reg);
427 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600428 dev_err(codec->dev, "i2c write failed\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200429 return ret;
430 }
431
Timur Tabid5e9ba12009-02-03 11:09:32 -0600432 /* Set the DAI format */
Timur Tabib0c813c2007-07-31 18:18:44 +0200433
434 reg = snd_soc_read(codec, CS4270_FORMAT);
435 reg &= ~(CS4270_FORMAT_DAC_MASK | CS4270_FORMAT_ADC_MASK);
436
437 switch (cs4270->mode) {
438 case SND_SOC_DAIFMT_I2S:
439 reg |= CS4270_FORMAT_DAC_I2S | CS4270_FORMAT_ADC_I2S;
440 break;
441 case SND_SOC_DAIFMT_LEFT_J:
442 reg |= CS4270_FORMAT_DAC_LJ | CS4270_FORMAT_ADC_LJ;
443 break;
444 default:
Timur Tabia6c255e2009-02-02 15:08:29 -0600445 dev_err(codec->dev, "unknown dai format\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200446 return -EINVAL;
447 }
448
449 ret = snd_soc_write(codec, CS4270_FORMAT, reg);
450 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600451 dev_err(codec->dev, "i2c write failed\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200452 return ret;
453 }
454
Timur Tabib0c813c2007-07-31 18:18:44 +0200455 return ret;
456}
457
Timur Tabiff7bf022009-01-30 11:14:49 -0600458/**
459 * cs4270_mute - enable/disable the CS4270 external mute
460 * @dai: the SOC DAI
461 * @mute: 0 = disable mute, 1 = enable mute
Timur Tabib0c813c2007-07-31 18:18:44 +0200462 *
463 * This function toggles the mute bits in the MUTE register. The CS4270's
464 * mute capability is intended for external muting circuitry, so if the
465 * board does not have the MUTEA or MUTEB pins connected to such circuitry,
466 * then this function will do nothing.
467 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100468static int cs4270_mute(struct snd_soc_dai *dai, int mute)
Timur Tabib0c813c2007-07-31 18:18:44 +0200469{
470 struct snd_soc_codec *codec = dai->codec;
471 int reg6;
472
473 reg6 = snd_soc_read(codec, CS4270_MUTE);
474
475 if (mute)
Timur Tabid5e9ba12009-02-03 11:09:32 -0600476 reg6 |= CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B;
Timur Tabib0c813c2007-07-31 18:18:44 +0200477 else
Timur Tabid5e9ba12009-02-03 11:09:32 -0600478 reg6 &= ~(CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B);
Timur Tabib0c813c2007-07-31 18:18:44 +0200479
480 return snd_soc_write(codec, CS4270_MUTE, reg6);
481}
Timur Tabib0c813c2007-07-31 18:18:44 +0200482
Timur Tabib0c813c2007-07-31 18:18:44 +0200483/* A list of non-DAPM controls that the CS4270 supports */
484static const struct snd_kcontrol_new cs4270_snd_controls[] = {
485 SOC_DOUBLE_R("Master Playback Volume",
Timur Tabid5e9ba12009-02-03 11:09:32 -0600486 CS4270_VOLA, CS4270_VOLB, 0, 0xFF, 1),
487 SOC_SINGLE("Digital Sidetone Switch", CS4270_FORMAT, 5, 1, 0),
488 SOC_SINGLE("Soft Ramp Switch", CS4270_TRANS, 6, 1, 0),
489 SOC_SINGLE("Zero Cross Switch", CS4270_TRANS, 5, 1, 0),
490 SOC_SINGLE("Popguard Switch", CS4270_MODE, 0, 1, 1),
491 SOC_SINGLE("Auto-Mute Switch", CS4270_MUTE, 5, 1, 0),
492 SOC_DOUBLE("Master Capture Switch", CS4270_MUTE, 3, 4, 1, 0)
Timur Tabib0c813c2007-07-31 18:18:44 +0200493};
494
Timur Tabib0c813c2007-07-31 18:18:44 +0200495/*
Timur Tabiff7bf022009-01-30 11:14:49 -0600496 * cs4270_codec - global variable to store codec for the ASoC probe function
Timur Tabib0c813c2007-07-31 18:18:44 +0200497 *
498 * If struct i2c_driver had a private_data field, we wouldn't need to use
Timur Tabi04eb0932009-01-29 14:28:37 -0600499 * cs4270_codec. This is the only way to pass the codec structure from
500 * cs4270_i2c_probe() to cs4270_probe(). Unfortunately, there is no good
501 * way to synchronize these two functions. cs4270_i2c_probe() can be called
502 * multiple times before cs4270_probe() is called even once. So for now, we
503 * also only allow cs4270_i2c_probe() to be run once. That means that we do
504 * not support more than one cs4270 device in the system, at least for now.
Timur Tabib0c813c2007-07-31 18:18:44 +0200505 */
Timur Tabi04eb0932009-01-29 14:28:37 -0600506static struct snd_soc_codec *cs4270_codec;
Timur Tabib0c813c2007-07-31 18:18:44 +0200507
Liam Girdwoode550e172008-07-07 16:07:52 +0100508struct snd_soc_dai cs4270_dai = {
Timur Tabi0db4d072009-01-23 16:31:19 -0600509 .name = "cs4270",
Timur Tabib0c813c2007-07-31 18:18:44 +0200510 .playback = {
511 .stream_name = "Playback",
512 .channels_min = 1,
513 .channels_max = 2,
514 .rates = 0,
515 .formats = CS4270_FORMATS,
516 },
517 .capture = {
518 .stream_name = "Capture",
519 .channels_min = 1,
520 .channels_max = 2,
521 .rates = 0,
522 .formats = CS4270_FORMATS,
523 },
Timur Tabi0db4d072009-01-23 16:31:19 -0600524 .ops = {
525 .hw_params = cs4270_hw_params,
526 .set_sysclk = cs4270_set_dai_sysclk,
527 .set_fmt = cs4270_set_dai_fmt,
528 .digital_mute = cs4270_mute,
529 },
Timur Tabib0c813c2007-07-31 18:18:44 +0200530};
531EXPORT_SYMBOL_GPL(cs4270_dai);
532
Timur Tabiff7bf022009-01-30 11:14:49 -0600533/**
534 * cs4270_probe - ASoC probe function
535 * @pdev: platform device
536 *
537 * This function is called when ASoC has all the pieces it needs to
538 * instantiate a sound driver.
Timur Tabi04eb0932009-01-29 14:28:37 -0600539 */
540static int cs4270_probe(struct platform_device *pdev)
541{
542 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
543 struct snd_soc_codec *codec = cs4270_codec;
544 unsigned int i;
545 int ret;
546
547 /* Connect the codec to the socdev. snd_soc_new_pcms() needs this. */
548 socdev->card->codec = codec;
549
550 /* Register PCMs */
551 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
552 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600553 dev_err(codec->dev, "failed to create pcms\n");
Timur Tabi04eb0932009-01-29 14:28:37 -0600554 return ret;
555 }
556
557 /* Add the non-DAPM controls */
558 for (i = 0; i < ARRAY_SIZE(cs4270_snd_controls); i++) {
559 struct snd_kcontrol *kctrl;
560
561 kctrl = snd_soc_cnew(&cs4270_snd_controls[i], codec, NULL);
562 if (!kctrl) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600563 dev_err(codec->dev, "error creating control '%s'\n",
Timur Tabi04eb0932009-01-29 14:28:37 -0600564 cs4270_snd_controls[i].name);
565 ret = -ENOMEM;
566 goto error_free_pcms;
567 }
568
569 ret = snd_ctl_add(codec->card, kctrl);
570 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600571 dev_err(codec->dev, "error adding control '%s'\n",
Timur Tabi04eb0932009-01-29 14:28:37 -0600572 cs4270_snd_controls[i].name);
573 goto error_free_pcms;
574 }
575 }
576
577 /* And finally, register the socdev */
578 ret = snd_soc_init_card(socdev);
579 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600580 dev_err(codec->dev, "failed to register card\n");
Timur Tabi04eb0932009-01-29 14:28:37 -0600581 goto error_free_pcms;
582 }
583
584 return 0;
585
586error_free_pcms:
587 snd_soc_free_pcms(socdev);
588
589 return ret;
590}
591
Timur Tabiff7bf022009-01-30 11:14:49 -0600592/**
593 * cs4270_remove - ASoC remove function
594 * @pdev: platform device
595 *
596 * This function is the counterpart to cs4270_probe().
597 */
Timur Tabi04eb0932009-01-29 14:28:37 -0600598static int cs4270_remove(struct platform_device *pdev)
599{
600 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
601
602 snd_soc_free_pcms(socdev);
603
604 return 0;
605};
606
Timur Tabiff7bf022009-01-30 11:14:49 -0600607/**
608 * cs4270_i2c_probe - initialize the I2C interface of the CS4270
609 * @i2c_client: the I2C client object
610 * @id: the I2C device ID (ignored)
Timur Tabib0c813c2007-07-31 18:18:44 +0200611 *
Timur Tabiff7bf022009-01-30 11:14:49 -0600612 * This function is called whenever the I2C subsystem finds a device that
613 * matches the device ID given via a prior call to i2c_add_driver().
Timur Tabib0c813c2007-07-31 18:18:44 +0200614 */
Timur Tabi0db4d072009-01-23 16:31:19 -0600615static int cs4270_i2c_probe(struct i2c_client *i2c_client,
616 const struct i2c_device_id *id)
Timur Tabib0c813c2007-07-31 18:18:44 +0200617{
Timur Tabib0c813c2007-07-31 18:18:44 +0200618 struct snd_soc_codec *codec;
Timur Tabi0db4d072009-01-23 16:31:19 -0600619 struct cs4270_private *cs4270;
Timur Tabid5e9ba12009-02-03 11:09:32 -0600620 unsigned int reg;
Timur Tabi04eb0932009-01-29 14:28:37 -0600621 int ret;
622
623 /* For now, we only support one cs4270 device in the system. See the
624 * comment for cs4270_codec.
625 */
626 if (cs4270_codec) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600627 dev_err(&i2c_client->dev, "ignoring CS4270 at addr %X\n",
Timur Tabi04eb0932009-01-29 14:28:37 -0600628 i2c_client->addr);
Timur Tabia6c255e2009-02-02 15:08:29 -0600629 dev_err(&i2c_client->dev, "only one per board allowed\n");
Timur Tabi04eb0932009-01-29 14:28:37 -0600630 /* Should we return something other than ENODEV here? */
631 return -ENODEV;
632 }
Timur Tabib0c813c2007-07-31 18:18:44 +0200633
Timur Tabi0db4d072009-01-23 16:31:19 -0600634 /* Verify that we have a CS4270 */
635
636 ret = i2c_smbus_read_byte_data(i2c_client, CS4270_CHIPID);
637 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600638 dev_err(&i2c_client->dev, "failed to read i2c at addr %X\n",
Timur Tabi04eb0932009-01-29 14:28:37 -0600639 i2c_client->addr);
Timur Tabi0db4d072009-01-23 16:31:19 -0600640 return ret;
641 }
642 /* The top four bits of the chip ID should be 1100. */
643 if ((ret & 0xF0) != 0xC0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600644 dev_err(&i2c_client->dev, "device at addr %X is not a CS4270\n",
Timur Tabi0db4d072009-01-23 16:31:19 -0600645 i2c_client->addr);
646 return -ENODEV;
647 }
648
Timur Tabia6c255e2009-02-02 15:08:29 -0600649 dev_info(&i2c_client->dev, "found device at i2c address %X\n",
Timur Tabi0db4d072009-01-23 16:31:19 -0600650 i2c_client->addr);
Timur Tabia6c255e2009-02-02 15:08:29 -0600651 dev_info(&i2c_client->dev, "hardware revision %X\n", ret & 0xF);
Timur Tabib0c813c2007-07-31 18:18:44 +0200652
653 /* Allocate enough space for the snd_soc_codec structure
654 and our private data together. */
Timur Tabi0db4d072009-01-23 16:31:19 -0600655 cs4270 = kzalloc(sizeof(struct cs4270_private), GFP_KERNEL);
656 if (!cs4270) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600657 dev_err(&i2c_client->dev, "could not allocate codec\n");
Timur Tabib0c813c2007-07-31 18:18:44 +0200658 return -ENOMEM;
659 }
Timur Tabi0db4d072009-01-23 16:31:19 -0600660 codec = &cs4270->codec;
Timur Tabib0c813c2007-07-31 18:18:44 +0200661
662 mutex_init(&codec->mutex);
663 INIT_LIST_HEAD(&codec->dapm_widgets);
664 INIT_LIST_HEAD(&codec->dapm_paths);
665
Timur Tabia6c255e2009-02-02 15:08:29 -0600666 codec->dev = &i2c_client->dev;
Timur Tabib0c813c2007-07-31 18:18:44 +0200667 codec->name = "CS4270";
668 codec->owner = THIS_MODULE;
669 codec->dai = &cs4270_dai;
670 codec->num_dai = 1;
Timur Tabi0db4d072009-01-23 16:31:19 -0600671 codec->private_data = cs4270;
672 codec->control_data = i2c_client;
673 codec->read = cs4270_read_reg_cache;
674 codec->write = cs4270_i2c_write;
675 codec->reg_cache = cs4270->reg_cache;
676 codec->reg_cache_size = CS4270_NUMREGS;
Timur Tabib0c813c2007-07-31 18:18:44 +0200677
Timur Tabi0db4d072009-01-23 16:31:19 -0600678 /* The I2C interface is set up, so pre-fill our register cache */
679
680 ret = cs4270_fill_cache(codec);
681 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600682 dev_err(&i2c_client->dev, "failed to fill register cache\n");
Timur Tabi0db4d072009-01-23 16:31:19 -0600683 goto error_free_codec;
684 }
Timur Tabib0c813c2007-07-31 18:18:44 +0200685
Timur Tabid5e9ba12009-02-03 11:09:32 -0600686 /* Disable auto-mute. This feature appears to be buggy. In some
687 * situations, auto-mute will not deactivate when it should, so we want
688 * this feature disabled by default. An application (e.g. alsactl) can
689 * re-enabled it by using the controls.
690 */
691
692 reg = cs4270_read_reg_cache(codec, CS4270_MUTE);
693 reg &= ~CS4270_MUTE_AUTO;
694 ret = cs4270_i2c_write(codec, CS4270_MUTE, reg);
695 if (ret < 0) {
696 dev_err(&i2c_client->dev, "i2c write failed\n");
697 return ret;
698 }
699
700 /* Disable automatic volume control. The hardware enables, and it
701 * causes volume change commands to be delayed, sometimes until after
702 * playback has started. An application (e.g. alsactl) can
703 * re-enabled it by using the controls.
704 */
705
706 reg = cs4270_read_reg_cache(codec, CS4270_TRANS);
707 reg &= ~(CS4270_TRANS_SOFT | CS4270_TRANS_ZERO);
708 ret = cs4270_i2c_write(codec, CS4270_TRANS, reg);
709 if (ret < 0) {
710 dev_err(&i2c_client->dev, "i2c write failed\n");
711 return ret;
712 }
713
Timur Tabia6c255e2009-02-02 15:08:29 -0600714 /* Initialize the DAI. Normally, we'd prefer to have a kmalloc'd DAI
715 * structure for each CS4270 device, but the machine driver needs to
716 * have a pointer to the DAI structure, so for now it must be a global
717 * variable.
718 */
719 cs4270_dai.dev = &i2c_client->dev;
720
Timur Tabi04eb0932009-01-29 14:28:37 -0600721 /* Register the DAI. If all the other ASoC driver have already
722 * registered, then this will call our probe function, so
723 * cs4270_codec needs to be ready.
724 */
Timur Tabia6c255e2009-02-02 15:08:29 -0600725 cs4270_codec = codec;
Timur Tabi04eb0932009-01-29 14:28:37 -0600726 ret = snd_soc_register_dai(&cs4270_dai);
Timur Tabib0c813c2007-07-31 18:18:44 +0200727 if (ret < 0) {
Timur Tabia6c255e2009-02-02 15:08:29 -0600728 dev_err(&i2c_client->dev, "failed to register DAIe\n");
Jean Delvaree3145df2008-09-30 11:40:37 +0200729 goto error_free_codec;
Timur Tabib0c813c2007-07-31 18:18:44 +0200730 }
731
Timur Tabi04eb0932009-01-29 14:28:37 -0600732 i2c_set_clientdata(i2c_client, cs4270);
Jean Delvaree3145df2008-09-30 11:40:37 +0200733
Timur Tabi0db4d072009-01-23 16:31:19 -0600734 return 0;
Jean Delvaree3145df2008-09-30 11:40:37 +0200735
Jean Delvaree3145df2008-09-30 11:40:37 +0200736error_free_codec:
Timur Tabi0db4d072009-01-23 16:31:19 -0600737 kfree(cs4270);
Timur Tabia6c255e2009-02-02 15:08:29 -0600738 cs4270_codec = NULL;
739 cs4270_dai.dev = NULL;
Jean Delvaree3145df2008-09-30 11:40:37 +0200740
Timur Tabib0c813c2007-07-31 18:18:44 +0200741 return ret;
742}
743
Timur Tabiff7bf022009-01-30 11:14:49 -0600744/**
745 * cs4270_i2c_remove - remove an I2C device
746 * @i2c_client: the I2C client object
747 *
748 * This function is the counterpart to cs4270_i2c_probe().
749 */
Timur Tabi0db4d072009-01-23 16:31:19 -0600750static int cs4270_i2c_remove(struct i2c_client *i2c_client)
Timur Tabib0c813c2007-07-31 18:18:44 +0200751{
Timur Tabi04eb0932009-01-29 14:28:37 -0600752 struct cs4270_private *cs4270 = i2c_get_clientdata(i2c_client);
Timur Tabib0c813c2007-07-31 18:18:44 +0200753
Timur Tabi0db4d072009-01-23 16:31:19 -0600754 kfree(cs4270);
Timur Tabia6c255e2009-02-02 15:08:29 -0600755 cs4270_codec = NULL;
756 cs4270_dai.dev = NULL;
Timur Tabib0c813c2007-07-31 18:18:44 +0200757
Timur Tabi0db4d072009-01-23 16:31:19 -0600758 return 0;
759}
760
Timur Tabiff7bf022009-01-30 11:14:49 -0600761/*
762 * cs4270_id - I2C device IDs supported by this driver
763 */
Timur Tabi0db4d072009-01-23 16:31:19 -0600764static struct i2c_device_id cs4270_id[] = {
765 {"cs4270", 0},
766 {}
767};
768MODULE_DEVICE_TABLE(i2c, cs4270_id);
769
Timur Tabiff7bf022009-01-30 11:14:49 -0600770/*
771 * cs4270_i2c_driver - I2C device identification
772 *
773 * This structure tells the I2C subsystem how to identify and support a
774 * given I2C device type.
775 */
Timur Tabi0db4d072009-01-23 16:31:19 -0600776static struct i2c_driver cs4270_i2c_driver = {
777 .driver = {
778 .name = "cs4270",
779 .owner = THIS_MODULE,
780 },
781 .id_table = cs4270_id,
782 .probe = cs4270_i2c_probe,
783 .remove = cs4270_i2c_remove,
784};
785
786/*
Timur Tabib0c813c2007-07-31 18:18:44 +0200787 * ASoC codec device structure
788 *
789 * Assign this variable to the codec_dev field of the machine driver's
790 * snd_soc_device structure.
791 */
792struct snd_soc_codec_device soc_codec_device_cs4270 = {
793 .probe = cs4270_probe,
794 .remove = cs4270_remove
795};
796EXPORT_SYMBOL_GPL(soc_codec_device_cs4270);
797
Takashi Iwaic9b3a402008-12-10 07:47:22 +0100798static int __init cs4270_init(void)
Mark Brown64089b82008-12-08 19:17:58 +0000799{
Timur Tabia6c255e2009-02-02 15:08:29 -0600800 pr_info("Cirrus Logic CS4270 ALSA SoC Codec Driver\n");
Timur Tabi0db4d072009-01-23 16:31:19 -0600801
Timur Tabi04eb0932009-01-29 14:28:37 -0600802 return i2c_add_driver(&cs4270_i2c_driver);
Mark Brown64089b82008-12-08 19:17:58 +0000803}
804module_init(cs4270_init);
805
806static void __exit cs4270_exit(void)
807{
Timur Tabi04eb0932009-01-29 14:28:37 -0600808 i2c_del_driver(&cs4270_i2c_driver);
Mark Brown64089b82008-12-08 19:17:58 +0000809}
810module_exit(cs4270_exit);
811
Timur Tabib0c813c2007-07-31 18:18:44 +0200812MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
813MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver");
814MODULE_LICENSE("GPL");