ASoC: Improve pause/unpause performance in Freescale 8610 drivers
[deliverable/linux.git] / sound / soc / codecs / cs4270.c
CommitLineData
b0c813ce
TT
1/*
2 * CS4270 ALSA SoC (ASoC) codec driver
3 *
4 * Author: Timur Tabi <timur@freescale.com>
5 *
ff7bf02f
TT
6 * 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.
b0c813ce
TT
10 *
11 * This is an ASoC device driver for the Cirrus Logic CS4270 codec.
12 *
13 * Current features/limitations:
14 *
ff637d38 15 * 1) Software mode is supported. Stand-alone mode is not supported.
b0c813ce
TT
16 * 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>
b0c813ce
TT
27#include <sound/core.h>
28#include <sound/soc.h>
29#include <sound/initval.h>
30#include <linux/i2c.h>
31
01e097d6
MB
32#include "cs4270.h"
33
8432395f
TT
34/*
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
8432395f
TT
47/* 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)
9dbd627b 60
8432395f
TT
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
0db4d070
TT
106/* 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) */
4eae080d 112 unsigned int slave_mode;
0db4d070
TT
113};
114
ff7bf02f
TT
115/**
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
8432395f
TT
122 *
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 *
ff7bf02f 130 * @speed_mode is the corresponding bit pattern to be written to the
8432395f
TT
131 * MODE bits of the Mode Control Register
132 *
ff7bf02f 133 * @mclk is the corresponding bit pattern to be wirten to the MCLK bits of
8432395f
TT
134 * 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
ff7bf02f 139 * that divide-By-1.5 can cause failures, so we avoid that mode where
8432395f
TT
140 * possible.
141 *
ff7bf02f
TT
142 * 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
8432395f
TT
144 * 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 */
ff7bf02f 147struct cs4270_mode_ratios {
8432395f
TT
148 unsigned int ratio;
149 u8 speed_mode;
150 u8 mclk;
ff7bf02f
TT
151};
152
d9fb7fbd 153static struct cs4270_mode_ratios cs4270_mode_ratios[] = {
8432395f
TT
154 {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)
9dbd627b 169
ff7bf02f
TT
170/**
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)
9dbd627b 176 *
ff7bf02f
TT
177 * This function is used to tell the codec driver what the input MCLK
178 * frequency is.
9dbd627b
TT
179 *
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
ff7bf02f 182 * supported values - 64, 96, 128, 192, 256, 384, 512, 768, and 1024.
9dbd627b
TT
183 *
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
ff7bf02f 186 * of supported sample rates.
9dbd627b
TT
187 *
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.
9dbd627b 191 */
e550e17f 192static int cs4270_set_dai_sysclk(struct snd_soc_dai *codec_dai,
9dbd627b
TT
193 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++) {
8432395f 205 unsigned int rate = freq / cs4270_mode_ratios[i].ratio;
918f3a0e
CL
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;
9dbd627b 211 }
918f3a0e
CL
212 /* FIXME: soc should support a rate list */
213 rates &= ~SNDRV_PCM_RATE_KNOT;
9dbd627b
TT
214
215 if (!rates) {
a6c255e0 216 dev_err(codec->dev, "could not find a valid sample rate\n");
9dbd627b
TT
217 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
ff7bf02f
TT
231/**
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
9dbd627b
TT
235 *
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 */
e550e17f 244static int cs4270_set_dai_fmt(struct snd_soc_dai *codec_dai,
9dbd627b
TT
245 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
4eae080d 251 /* set DAI format */
9dbd627b
TT
252 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:
a6c255e0 258 dev_err(codec->dev, "invalid dai format\n");
9dbd627b
TT
259 ret = -EINVAL;
260 }
261
4eae080d
DM
262 /* 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;
4eae080d 270 default:
ff09d49a 271 /* all other modes are unsupported by the hardware */
4eae080d
DM
272 ret = -EINVAL;
273 }
274
9dbd627b
TT
275 return ret;
276}
277
ff7bf02f
TT
278/**
279 * cs4270_fill_cache - pre-fill the CS4270 register cache.
280 * @codec: the codec for this CS4270
281 *
282 * This function fills in the CS4270 register cache by reading the register
283 * values from the hardware.
284 *
285 * This CS4270 registers are cached to avoid excessive I2C I/O operations.
286 * After the initial read to pre-fill the cache, the CS4270 never updates
287 * the register values, so we won't have a cache coherency problem.
b0c813ce
TT
288 *
289 * We use the auto-increment feature of the CS4270 to read all registers in
290 * one shot.
291 */
292static int cs4270_fill_cache(struct snd_soc_codec *codec)
293{
294 u8 *cache = codec->reg_cache;
295 struct i2c_client *i2c_client = codec->control_data;
296 s32 length;
297
298 length = i2c_smbus_read_i2c_block_data(i2c_client,
299 CS4270_FIRSTREG | 0x80, CS4270_NUMREGS, cache);
300
301 if (length != CS4270_NUMREGS) {
a6c255e0 302 dev_err(codec->dev, "i2c read failure, addr=0x%x\n",
b0c813ce
TT
303 i2c_client->addr);
304 return -EIO;
305 }
306
307 return 0;
308}
309
ff7bf02f
TT
310/**
311 * cs4270_read_reg_cache - read from the CS4270 register cache.
312 * @codec: the codec for this CS4270
313 * @reg: the register to read
314 *
315 * This function returns the value for a given register. It reads only from
316 * the register cache, not the hardware itself.
b0c813ce
TT
317 *
318 * This CS4270 registers are cached to avoid excessive I2C I/O operations.
319 * After the initial read to pre-fill the cache, the CS4270 never updates
ff7bf02f 320 * the register values, so we won't have a cache coherency problem.
b0c813ce
TT
321 */
322static unsigned int cs4270_read_reg_cache(struct snd_soc_codec *codec,
323 unsigned int reg)
324{
325 u8 *cache = codec->reg_cache;
326
327 if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
328 return -EIO;
329
330 return cache[reg - CS4270_FIRSTREG];
331}
332
ff7bf02f
TT
333/**
334 * cs4270_i2c_write - write to a CS4270 register via the I2C bus.
335 * @codec: the codec for this CS4270
336 * @reg: the register to write
337 * @value: the value to write to the register
b0c813ce
TT
338 *
339 * This function writes the given value to the given CS4270 register, and
340 * also updates the register cache.
341 *
342 * Note that we don't use the hw_write function pointer of snd_soc_codec.
343 * That's because it's too clunky: the hw_write_t prototype does not match
344 * i2c_smbus_write_byte_data(), and it's just another layer of overhead.
345 */
346static int cs4270_i2c_write(struct snd_soc_codec *codec, unsigned int reg,
347 unsigned int value)
348{
bfc4e861
TT
349 u8 *cache = codec->reg_cache;
350
b0c813ce
TT
351 if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
352 return -EIO;
353
bfc4e861
TT
354 /* Only perform an I2C operation if the new value is different */
355 if (cache[reg - CS4270_FIRSTREG] != value) {
356 struct i2c_client *client = codec->control_data;
357 if (i2c_smbus_write_byte_data(client, reg, value)) {
a6c255e0 358 dev_err(codec->dev, "i2c write failed\n");
bfc4e861
TT
359 return -EIO;
360 }
361
b0c813ce 362 /* We've written to the hardware, so update the cache */
b0c813ce 363 cache[reg - CS4270_FIRSTREG] = value;
b0c813ce 364 }
bfc4e861
TT
365
366 return 0;
b0c813ce
TT
367}
368
ff7bf02f
TT
369/**
370 * cs4270_hw_params - program the CS4270 with the given hardware parameters.
371 * @substream: the audio stream
372 * @params: the hardware parameters to set
373 * @dai: the SOC DAI (ignored)
b0c813ce 374 *
ff7bf02f
TT
375 * This function programs the hardware with the values provided.
376 * Specifically, the sample rate and the data format.
377 *
378 * The .ops functions are used to provide board-specific data, like input
379 * frequencies, to this driver. This function takes that information,
b0c813ce
TT
380 * combines it with the hardware parameters provided, and programs the
381 * hardware accordingly.
382 */
383static int cs4270_hw_params(struct snd_pcm_substream *substream,
dee89c4d
MB
384 struct snd_pcm_hw_params *params,
385 struct snd_soc_dai *dai)
b0c813ce
TT
386{
387 struct snd_soc_pcm_runtime *rtd = substream->private_data;
388 struct snd_soc_device *socdev = rtd->socdev;
6627a653 389 struct snd_soc_codec *codec = socdev->card->codec;
b0c813ce 390 struct cs4270_private *cs4270 = codec->private_data;
e34ba212 391 int ret;
b0c813ce
TT
392 unsigned int i;
393 unsigned int rate;
394 unsigned int ratio;
395 int reg;
396
397 /* Figure out which MCLK/LRCK ratio to use */
398
399 rate = params_rate(params); /* Sampling rate, in Hz */
400 ratio = cs4270->mclk / rate; /* MCLK/LRCK ratio */
401
9dbd627b 402 for (i = 0; i < NUM_MCLK_RATIOS; i++) {
8432395f 403 if (cs4270_mode_ratios[i].ratio == ratio)
b0c813ce
TT
404 break;
405 }
406
9dbd627b 407 if (i == NUM_MCLK_RATIOS) {
b0c813ce 408 /* We did not find a matching ratio */
a6c255e0 409 dev_err(codec->dev, "could not find matching ratio\n");
b0c813ce
TT
410 return -EINVAL;
411 }
412
d5e9ba1d 413 /* Set the sample rate */
b0c813ce
TT
414
415 reg = snd_soc_read(codec, CS4270_MODE);
416 reg &= ~(CS4270_MODE_SPEED_MASK | CS4270_MODE_DIV_MASK);
4eae080d
DM
417 reg |= cs4270_mode_ratios[i].mclk;
418
419 if (cs4270->slave_mode)
420 reg |= CS4270_MODE_SLAVE;
421 else
422 reg |= cs4270_mode_ratios[i].speed_mode;
b0c813ce
TT
423
424 ret = snd_soc_write(codec, CS4270_MODE, reg);
425 if (ret < 0) {
a6c255e0 426 dev_err(codec->dev, "i2c write failed\n");
b0c813ce
TT
427 return ret;
428 }
429
d5e9ba1d 430 /* Set the DAI format */
b0c813ce
TT
431
432 reg = snd_soc_read(codec, CS4270_FORMAT);
433 reg &= ~(CS4270_FORMAT_DAC_MASK | CS4270_FORMAT_ADC_MASK);
434
435 switch (cs4270->mode) {
436 case SND_SOC_DAIFMT_I2S:
437 reg |= CS4270_FORMAT_DAC_I2S | CS4270_FORMAT_ADC_I2S;
438 break;
439 case SND_SOC_DAIFMT_LEFT_J:
440 reg |= CS4270_FORMAT_DAC_LJ | CS4270_FORMAT_ADC_LJ;
441 break;
442 default:
a6c255e0 443 dev_err(codec->dev, "unknown dai format\n");
b0c813ce
TT
444 return -EINVAL;
445 }
446
447 ret = snd_soc_write(codec, CS4270_FORMAT, reg);
448 if (ret < 0) {
a6c255e0 449 dev_err(codec->dev, "i2c write failed\n");
b0c813ce
TT
450 return ret;
451 }
452
b0c813ce
TT
453 return ret;
454}
455
ff7bf02f
TT
456/**
457 * cs4270_mute - enable/disable the CS4270 external mute
458 * @dai: the SOC DAI
459 * @mute: 0 = disable mute, 1 = enable mute
b0c813ce
TT
460 *
461 * This function toggles the mute bits in the MUTE register. The CS4270's
462 * mute capability is intended for external muting circuitry, so if the
463 * board does not have the MUTEA or MUTEB pins connected to such circuitry,
464 * then this function will do nothing.
465 */
e550e17f 466static int cs4270_mute(struct snd_soc_dai *dai, int mute)
b0c813ce
TT
467{
468 struct snd_soc_codec *codec = dai->codec;
469 int reg6;
470
471 reg6 = snd_soc_read(codec, CS4270_MUTE);
472
473 if (mute)
d5e9ba1d 474 reg6 |= CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B;
b0c813ce 475 else
d5e9ba1d 476 reg6 &= ~(CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B);
b0c813ce
TT
477
478 return snd_soc_write(codec, CS4270_MUTE, reg6);
479}
b0c813ce 480
b0c813ce
TT
481/* A list of non-DAPM controls that the CS4270 supports */
482static const struct snd_kcontrol_new cs4270_snd_controls[] = {
483 SOC_DOUBLE_R("Master Playback Volume",
d5e9ba1d
TT
484 CS4270_VOLA, CS4270_VOLB, 0, 0xFF, 1),
485 SOC_SINGLE("Digital Sidetone Switch", CS4270_FORMAT, 5, 1, 0),
486 SOC_SINGLE("Soft Ramp Switch", CS4270_TRANS, 6, 1, 0),
487 SOC_SINGLE("Zero Cross Switch", CS4270_TRANS, 5, 1, 0),
488 SOC_SINGLE("Popguard Switch", CS4270_MODE, 0, 1, 1),
489 SOC_SINGLE("Auto-Mute Switch", CS4270_MUTE, 5, 1, 0),
490 SOC_DOUBLE("Master Capture Switch", CS4270_MUTE, 3, 4, 1, 0)
b0c813ce
TT
491};
492
b0c813ce 493/*
ff7bf02f 494 * cs4270_codec - global variable to store codec for the ASoC probe function
b0c813ce
TT
495 *
496 * If struct i2c_driver had a private_data field, we wouldn't need to use
04eb093c
TT
497 * cs4270_codec. This is the only way to pass the codec structure from
498 * cs4270_i2c_probe() to cs4270_probe(). Unfortunately, there is no good
499 * way to synchronize these two functions. cs4270_i2c_probe() can be called
500 * multiple times before cs4270_probe() is called even once. So for now, we
501 * also only allow cs4270_i2c_probe() to be run once. That means that we do
502 * not support more than one cs4270 device in the system, at least for now.
b0c813ce 503 */
04eb093c 504static struct snd_soc_codec *cs4270_codec;
b0c813ce 505
0db4d070
TT
506struct snd_soc_dai cs4270_dai = {
507 .name = "cs4270",
508 .playback = {
509 .stream_name = "Playback",
510 .channels_min = 1,
511 .channels_max = 2,
512 .rates = 0,
513 .formats = CS4270_FORMATS,
514 },
515 .capture = {
516 .stream_name = "Capture",
517 .channels_min = 1,
518 .channels_max = 2,
519 .rates = 0,
520 .formats = CS4270_FORMATS,
521 },
522 .ops = {
523 .hw_params = cs4270_hw_params,
524 .set_sysclk = cs4270_set_dai_sysclk,
525 .set_fmt = cs4270_set_dai_fmt,
526 .digital_mute = cs4270_mute,
527 },
528};
529EXPORT_SYMBOL_GPL(cs4270_dai);
530
ff7bf02f
TT
531/**
532 * cs4270_probe - ASoC probe function
533 * @pdev: platform device
534 *
535 * This function is called when ASoC has all the pieces it needs to
536 * instantiate a sound driver.
04eb093c
TT
537 */
538static int cs4270_probe(struct platform_device *pdev)
539{
540 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
541 struct snd_soc_codec *codec = cs4270_codec;
542 unsigned int i;
543 int ret;
544
545 /* Connect the codec to the socdev. snd_soc_new_pcms() needs this. */
546 socdev->card->codec = codec;
547
548 /* Register PCMs */
549 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
550 if (ret < 0) {
a6c255e0 551 dev_err(codec->dev, "failed to create pcms\n");
04eb093c
TT
552 return ret;
553 }
554
555 /* Add the non-DAPM controls */
556 for (i = 0; i < ARRAY_SIZE(cs4270_snd_controls); i++) {
557 struct snd_kcontrol *kctrl;
558
559 kctrl = snd_soc_cnew(&cs4270_snd_controls[i], codec, NULL);
560 if (!kctrl) {
a6c255e0 561 dev_err(codec->dev, "error creating control '%s'\n",
04eb093c
TT
562 cs4270_snd_controls[i].name);
563 ret = -ENOMEM;
564 goto error_free_pcms;
565 }
566
567 ret = snd_ctl_add(codec->card, kctrl);
568 if (ret < 0) {
a6c255e0 569 dev_err(codec->dev, "error adding control '%s'\n",
04eb093c
TT
570 cs4270_snd_controls[i].name);
571 goto error_free_pcms;
572 }
573 }
574
575 /* And finally, register the socdev */
576 ret = snd_soc_init_card(socdev);
577 if (ret < 0) {
a6c255e0 578 dev_err(codec->dev, "failed to register card\n");
04eb093c
TT
579 goto error_free_pcms;
580 }
581
582 return 0;
583
584error_free_pcms:
585 snd_soc_free_pcms(socdev);
586
587 return ret;
588}
589
ff7bf02f
TT
590/**
591 * cs4270_remove - ASoC remove function
592 * @pdev: platform device
593 *
594 * This function is the counterpart to cs4270_probe().
595 */
04eb093c
TT
596static int cs4270_remove(struct platform_device *pdev)
597{
598 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
599
600 snd_soc_free_pcms(socdev);
601
602 return 0;
603};
604
ff7bf02f
TT
605/**
606 * cs4270_i2c_probe - initialize the I2C interface of the CS4270
607 * @i2c_client: the I2C client object
608 * @id: the I2C device ID (ignored)
b0c813ce 609 *
ff7bf02f
TT
610 * This function is called whenever the I2C subsystem finds a device that
611 * matches the device ID given via a prior call to i2c_add_driver().
b0c813ce 612 */
ec2cd95f
TT
613static int cs4270_i2c_probe(struct i2c_client *i2c_client,
614 const struct i2c_device_id *id)
b0c813ce 615{
0db4d070
TT
616 struct snd_soc_codec *codec;
617 struct cs4270_private *cs4270;
d5e9ba1d 618 unsigned int reg;
04eb093c
TT
619 int ret;
620
621 /* For now, we only support one cs4270 device in the system. See the
622 * comment for cs4270_codec.
623 */
624 if (cs4270_codec) {
a6c255e0 625 dev_err(&i2c_client->dev, "ignoring CS4270 at addr %X\n",
04eb093c 626 i2c_client->addr);
a6c255e0 627 dev_err(&i2c_client->dev, "only one per board allowed\n");
04eb093c
TT
628 /* Should we return something other than ENODEV here? */
629 return -ENODEV;
630 }
b0c813ce 631
b0c813ce
TT
632 /* Verify that we have a CS4270 */
633
634 ret = i2c_smbus_read_byte_data(i2c_client, CS4270_CHIPID);
635 if (ret < 0) {
a6c255e0 636 dev_err(&i2c_client->dev, "failed to read i2c at addr %X\n",
04eb093c 637 i2c_client->addr);
0db4d070 638 return ret;
b0c813ce
TT
639 }
640 /* The top four bits of the chip ID should be 1100. */
641 if ((ret & 0xF0) != 0xC0) {
a6c255e0 642 dev_err(&i2c_client->dev, "device at addr %X is not a CS4270\n",
0db4d070
TT
643 i2c_client->addr);
644 return -ENODEV;
b0c813ce
TT
645 }
646
a6c255e0 647 dev_info(&i2c_client->dev, "found device at i2c address %X\n",
ec2cd95f 648 i2c_client->addr);
a6c255e0 649 dev_info(&i2c_client->dev, "hardware revision %X\n", ret & 0xF);
b0c813ce 650
0db4d070
TT
651 /* Allocate enough space for the snd_soc_codec structure
652 and our private data together. */
653 cs4270 = kzalloc(sizeof(struct cs4270_private), GFP_KERNEL);
654 if (!cs4270) {
a6c255e0 655 dev_err(&i2c_client->dev, "could not allocate codec\n");
0db4d070
TT
656 return -ENOMEM;
657 }
658 codec = &cs4270->codec;
0db4d070
TT
659
660 mutex_init(&codec->mutex);
661 INIT_LIST_HEAD(&codec->dapm_widgets);
662 INIT_LIST_HEAD(&codec->dapm_paths);
663
a6c255e0 664 codec->dev = &i2c_client->dev;
0db4d070
TT
665 codec->name = "CS4270";
666 codec->owner = THIS_MODULE;
667 codec->dai = &cs4270_dai;
668 codec->num_dai = 1;
669 codec->private_data = cs4270;
b0c813ce
TT
670 codec->control_data = i2c_client;
671 codec->read = cs4270_read_reg_cache;
672 codec->write = cs4270_i2c_write;
0db4d070 673 codec->reg_cache = cs4270->reg_cache;
b0c813ce
TT
674 codec->reg_cache_size = CS4270_NUMREGS;
675
676 /* The I2C interface is set up, so pre-fill our register cache */
677
678 ret = cs4270_fill_cache(codec);
679 if (ret < 0) {
a6c255e0 680 dev_err(&i2c_client->dev, "failed to fill register cache\n");
0db4d070
TT
681 goto error_free_codec;
682 }
683
d5e9ba1d
TT
684 /* Disable auto-mute. This feature appears to be buggy. In some
685 * situations, auto-mute will not deactivate when it should, so we want
686 * this feature disabled by default. An application (e.g. alsactl) can
687 * re-enabled it by using the controls.
688 */
689
690 reg = cs4270_read_reg_cache(codec, CS4270_MUTE);
691 reg &= ~CS4270_MUTE_AUTO;
692 ret = cs4270_i2c_write(codec, CS4270_MUTE, reg);
693 if (ret < 0) {
694 dev_err(&i2c_client->dev, "i2c write failed\n");
695 return ret;
696 }
697
698 /* Disable automatic volume control. The hardware enables, and it
699 * causes volume change commands to be delayed, sometimes until after
700 * playback has started. An application (e.g. alsactl) can
701 * re-enabled it by using the controls.
702 */
703
704 reg = cs4270_read_reg_cache(codec, CS4270_TRANS);
705 reg &= ~(CS4270_TRANS_SOFT | CS4270_TRANS_ZERO);
706 ret = cs4270_i2c_write(codec, CS4270_TRANS, reg);
707 if (ret < 0) {
708 dev_err(&i2c_client->dev, "i2c write failed\n");
709 return ret;
710 }
711
a6c255e0
TT
712 /* Initialize the DAI. Normally, we'd prefer to have a kmalloc'd DAI
713 * structure for each CS4270 device, but the machine driver needs to
714 * have a pointer to the DAI structure, so for now it must be a global
715 * variable.
716 */
717 cs4270_dai.dev = &i2c_client->dev;
718
04eb093c
TT
719 /* Register the DAI. If all the other ASoC driver have already
720 * registered, then this will call our probe function, so
721 * cs4270_codec needs to be ready.
722 */
a6c255e0 723 cs4270_codec = codec;
04eb093c 724 ret = snd_soc_register_dai(&cs4270_dai);
0db4d070 725 if (ret < 0) {
a6c255e0 726 dev_err(&i2c_client->dev, "failed to register DAIe\n");
0db4d070 727 goto error_free_codec;
b0c813ce
TT
728 }
729
04eb093c 730 i2c_set_clientdata(i2c_client, cs4270);
ec2cd95f 731
b0c813ce
TT
732 return 0;
733
0db4d070
TT
734error_free_codec:
735 kfree(cs4270);
a6c255e0
TT
736 cs4270_codec = NULL;
737 cs4270_dai.dev = NULL;
b0c813ce 738
b0c813ce
TT
739 return ret;
740}
741
ff7bf02f
TT
742/**
743 * cs4270_i2c_remove - remove an I2C device
744 * @i2c_client: the I2C client object
745 *
746 * This function is the counterpart to cs4270_i2c_probe().
747 */
0db4d070
TT
748static int cs4270_i2c_remove(struct i2c_client *i2c_client)
749{
04eb093c 750 struct cs4270_private *cs4270 = i2c_get_clientdata(i2c_client);
0db4d070 751
0db4d070 752 kfree(cs4270);
a6c255e0
TT
753 cs4270_codec = NULL;
754 cs4270_dai.dev = NULL;
0db4d070
TT
755
756 return 0;
757}
758
ff7bf02f
TT
759/*
760 * cs4270_id - I2C device IDs supported by this driver
761 */
0db4d070 762static struct i2c_device_id cs4270_id[] = {
ff637d38
TT
763 {"cs4270", 0},
764 {}
765};
766MODULE_DEVICE_TABLE(i2c, cs4270_id);
767
ff7bf02f
TT
768/*
769 * cs4270_i2c_driver - I2C device identification
770 *
771 * This structure tells the I2C subsystem how to identify and support a
772 * given I2C device type.
773 */
ff637d38
TT
774static struct i2c_driver cs4270_i2c_driver = {
775 .driver = {
776 .name = "cs4270",
777 .owner = THIS_MODULE,
778 },
779 .id_table = cs4270_id,
780 .probe = cs4270_i2c_probe,
0db4d070 781 .remove = cs4270_i2c_remove,
ff637d38 782};
b0c813ce 783
b0c813ce
TT
784/*
785 * ASoC codec device structure
786 *
787 * Assign this variable to the codec_dev field of the machine driver's
788 * snd_soc_device structure.
789 */
790struct snd_soc_codec_device soc_codec_device_cs4270 = {
791 .probe = cs4270_probe,
792 .remove = cs4270_remove
793};
794EXPORT_SYMBOL_GPL(soc_codec_device_cs4270);
795
c9b3a40f 796static int __init cs4270_init(void)
64089b84 797{
a6c255e0 798 pr_info("Cirrus Logic CS4270 ALSA SoC Codec Driver\n");
0db4d070 799
04eb093c 800 return i2c_add_driver(&cs4270_i2c_driver);
64089b84
MB
801}
802module_init(cs4270_init);
803
804static void __exit cs4270_exit(void)
805{
04eb093c 806 i2c_del_driver(&cs4270_i2c_driver);
64089b84
MB
807}
808module_exit(cs4270_exit);
809
b0c813ce
TT
810MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
811MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver");
812MODULE_LICENSE("GPL");
This page took 0.197353 seconds and 5 git commands to generate.