ALSA: make the CS4270 driver a new-style I2C driver
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / sound / soc / codecs / cs4270.c
blob82d94f00aa456e50826b744b5bad5b429eda946e
1 /*
2 * CS4270 ALSA SoC (ASoC) codec driver
4 * Author: Timur Tabi <timur@freescale.com>
6 * Copyright 2007 Freescale Semiconductor, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
11 * This is an ASoC device driver for the Cirrus Logic CS4270 codec.
13 * Current features/limitations:
15 * 1) Software mode is supported. Stand-alone mode is automatically
16 * selected if I2C is disabled or if a CS4270 is not found on the I2C
17 * bus. However, stand-alone mode is only partially implemented because
18 * there is no mechanism yet for this driver and the machine driver to
19 * communicate the values of the M0, M1, MCLK1, and MCLK2 pins.
20 * 2) Only I2C is supported, not SPI
21 * 3) Only Master mode is supported, not Slave.
22 * 4) The machine driver's 'startup' function must call
23 * cs4270_set_dai_sysclk() with the value of MCLK.
24 * 5) Only I2S and left-justified modes are supported
25 * 6) Power management is not supported
26 * 7) The only supported control is volume and hardware mute (if enabled)
29 #include <linux/module.h>
30 #include <linux/platform_device.h>
31 #include <sound/core.h>
32 #include <sound/soc.h>
33 #include <sound/initval.h>
34 #include <linux/i2c.h>
36 #include "cs4270.h"
38 /* If I2C is defined, then we support software mode. However, if we're
39 not compiled as module but I2C is, then we can't use I2C calls. */
40 #if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
41 #define USE_I2C
42 #endif
44 /* Private data for the CS4270 */
45 struct cs4270_private {
46 unsigned int mclk; /* Input frequency of the MCLK pin */
47 unsigned int mode; /* The mode (I2S or left-justified) */
51 * The codec isn't really big-endian or little-endian, since the I2S
52 * interface requires data to be sent serially with the MSbit first.
53 * However, to support BE and LE I2S devices, we specify both here. That
54 * way, ALSA will always match the bit patterns.
56 #define CS4270_FORMATS (SNDRV_PCM_FMTBIT_S8 | \
57 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE | \
58 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE | \
59 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE | \
60 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE | \
61 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE)
63 #ifdef USE_I2C
65 /* CS4270 registers addresses */
66 #define CS4270_CHIPID 0x01 /* Chip ID */
67 #define CS4270_PWRCTL 0x02 /* Power Control */
68 #define CS4270_MODE 0x03 /* Mode Control */
69 #define CS4270_FORMAT 0x04 /* Serial Format, ADC/DAC Control */
70 #define CS4270_TRANS 0x05 /* Transition Control */
71 #define CS4270_MUTE 0x06 /* Mute Control */
72 #define CS4270_VOLA 0x07 /* DAC Channel A Volume Control */
73 #define CS4270_VOLB 0x08 /* DAC Channel B Volume Control */
75 #define CS4270_FIRSTREG 0x01
76 #define CS4270_LASTREG 0x08
77 #define CS4270_NUMREGS (CS4270_LASTREG - CS4270_FIRSTREG + 1)
79 /* Bit masks for the CS4270 registers */
80 #define CS4270_CHIPID_ID 0xF0
81 #define CS4270_CHIPID_REV 0x0F
82 #define CS4270_PWRCTL_FREEZE 0x80
83 #define CS4270_PWRCTL_PDN_ADC 0x20
84 #define CS4270_PWRCTL_PDN_DAC 0x02
85 #define CS4270_PWRCTL_PDN 0x01
86 #define CS4270_MODE_SPEED_MASK 0x30
87 #define CS4270_MODE_1X 0x00
88 #define CS4270_MODE_2X 0x10
89 #define CS4270_MODE_4X 0x20
90 #define CS4270_MODE_SLAVE 0x30
91 #define CS4270_MODE_DIV_MASK 0x0E
92 #define CS4270_MODE_DIV1 0x00
93 #define CS4270_MODE_DIV15 0x02
94 #define CS4270_MODE_DIV2 0x04
95 #define CS4270_MODE_DIV3 0x06
96 #define CS4270_MODE_DIV4 0x08
97 #define CS4270_MODE_POPGUARD 0x01
98 #define CS4270_FORMAT_FREEZE_A 0x80
99 #define CS4270_FORMAT_FREEZE_B 0x40
100 #define CS4270_FORMAT_LOOPBACK 0x20
101 #define CS4270_FORMAT_DAC_MASK 0x18
102 #define CS4270_FORMAT_DAC_LJ 0x00
103 #define CS4270_FORMAT_DAC_I2S 0x08
104 #define CS4270_FORMAT_DAC_RJ16 0x18
105 #define CS4270_FORMAT_DAC_RJ24 0x10
106 #define CS4270_FORMAT_ADC_MASK 0x01
107 #define CS4270_FORMAT_ADC_LJ 0x00
108 #define CS4270_FORMAT_ADC_I2S 0x01
109 #define CS4270_TRANS_ONE_VOL 0x80
110 #define CS4270_TRANS_SOFT 0x40
111 #define CS4270_TRANS_ZERO 0x20
112 #define CS4270_TRANS_INV_ADC_A 0x08
113 #define CS4270_TRANS_INV_ADC_B 0x10
114 #define CS4270_TRANS_INV_DAC_A 0x02
115 #define CS4270_TRANS_INV_DAC_B 0x04
116 #define CS4270_TRANS_DEEMPH 0x01
117 #define CS4270_MUTE_AUTO 0x20
118 #define CS4270_MUTE_ADC_A 0x08
119 #define CS4270_MUTE_ADC_B 0x10
120 #define CS4270_MUTE_POLARITY 0x04
121 #define CS4270_MUTE_DAC_A 0x01
122 #define CS4270_MUTE_DAC_B 0x02
125 * Clock Ratio Selection for Master Mode with I2C enabled
127 * The data for this chart is taken from Table 5 of the CS4270 reference
128 * manual.
130 * This table is used to determine how to program the Mode Control register.
131 * It is also used by cs4270_set_dai_sysclk() to tell ALSA which sampling
132 * rates the CS4270 currently supports.
134 * Each element in this array corresponds to the ratios in mclk_ratios[].
135 * These two arrays need to be in sync.
137 * 'speed_mode' is the corresponding bit pattern to be written to the
138 * MODE bits of the Mode Control Register
140 * 'mclk' is the corresponding bit pattern to be wirten to the MCLK bits of
141 * the Mode Control Register.
143 * In situations where a single ratio is represented by multiple speed
144 * modes, we favor the slowest speed. E.g, for a ratio of 128, we pick
145 * double-speed instead of quad-speed. However, the CS4270 errata states
146 * that Divide-By-1.5 can cause failures, so we avoid that mode where
147 * possible.
149 * ERRATA: There is an errata for the CS4270 where divide-by-1.5 does not
150 * work if VD = 3.3V. If this effects you, select the
151 * CONFIG_SND_SOC_CS4270_VD33_ERRATA Kconfig option, and the driver will
152 * never select any sample rates that require divide-by-1.5.
154 static struct {
155 unsigned int ratio;
156 u8 speed_mode;
157 u8 mclk;
158 } cs4270_mode_ratios[] = {
159 {64, CS4270_MODE_4X, CS4270_MODE_DIV1},
160 #ifndef CONFIG_SND_SOC_CS4270_VD33_ERRATA
161 {96, CS4270_MODE_4X, CS4270_MODE_DIV15},
162 #endif
163 {128, CS4270_MODE_2X, CS4270_MODE_DIV1},
164 {192, CS4270_MODE_4X, CS4270_MODE_DIV3},
165 {256, CS4270_MODE_1X, CS4270_MODE_DIV1},
166 {384, CS4270_MODE_2X, CS4270_MODE_DIV3},
167 {512, CS4270_MODE_1X, CS4270_MODE_DIV2},
168 {768, CS4270_MODE_1X, CS4270_MODE_DIV3},
169 {1024, CS4270_MODE_1X, CS4270_MODE_DIV4}
172 /* The number of MCLK/LRCK ratios supported by the CS4270 */
173 #define NUM_MCLK_RATIOS ARRAY_SIZE(cs4270_mode_ratios)
176 * Determine the CS4270 samples rates.
178 * 'freq' is the input frequency to MCLK. The other parameters are ignored.
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
182 * support values: 64, 96, 128, 192, 256, 384, 512, 768, and 1024.
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
186 * of support sample rates.
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.
192 * Note that in stand-alone mode, the sample rate is determined by input
193 * pins M0, M1, MDIV1, and MDIV2. Also in stand-alone mode, divide-by-3
194 * is not a programmable option. However, divide-by-3 is not an available
195 * option in stand-alone mode. This cases two problems: a ratio of 768 is
196 * not available (it requires divide-by-3) and B) ratios 192 and 384 can
197 * only be selected with divide-by-1.5, but there is an errate that make
198 * this selection difficult.
200 * In addition, there is no mechanism for communicating with the machine
201 * driver what the input settings can be. This would need to be implemented
202 * for stand-alone mode to work.
204 static int cs4270_set_dai_sysclk(struct snd_soc_dai *codec_dai,
205 int clk_id, unsigned int freq, int dir)
207 struct snd_soc_codec *codec = codec_dai->codec;
208 struct cs4270_private *cs4270 = codec->private_data;
209 unsigned int rates = 0;
210 unsigned int rate_min = -1;
211 unsigned int rate_max = 0;
212 unsigned int i;
214 cs4270->mclk = freq;
216 for (i = 0; i < NUM_MCLK_RATIOS; i++) {
217 unsigned int rate = freq / cs4270_mode_ratios[i].ratio;
218 rates |= snd_pcm_rate_to_rate_bit(rate);
219 if (rate < rate_min)
220 rate_min = rate;
221 if (rate > rate_max)
222 rate_max = rate;
224 /* FIXME: soc should support a rate list */
225 rates &= ~SNDRV_PCM_RATE_KNOT;
227 if (!rates) {
228 printk(KERN_ERR "cs4270: could not find a valid sample rate\n");
229 return -EINVAL;
232 codec_dai->playback.rates = rates;
233 codec_dai->playback.rate_min = rate_min;
234 codec_dai->playback.rate_max = rate_max;
236 codec_dai->capture.rates = rates;
237 codec_dai->capture.rate_min = rate_min;
238 codec_dai->capture.rate_max = rate_max;
240 return 0;
244 * Configure the codec for the selected audio format
246 * This function takes a bitmask of SND_SOC_DAIFMT_x bits and programs the
247 * codec accordingly.
249 * Currently, this function only supports SND_SOC_DAIFMT_I2S and
250 * SND_SOC_DAIFMT_LEFT_J. The CS4270 codec also supports right-justified
251 * data for playback only, but ASoC currently does not support different
252 * formats for playback vs. record.
254 static int cs4270_set_dai_fmt(struct snd_soc_dai *codec_dai,
255 unsigned int format)
257 struct snd_soc_codec *codec = codec_dai->codec;
258 struct cs4270_private *cs4270 = codec->private_data;
259 int ret = 0;
261 switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
262 case SND_SOC_DAIFMT_I2S:
263 case SND_SOC_DAIFMT_LEFT_J:
264 cs4270->mode = format & SND_SOC_DAIFMT_FORMAT_MASK;
265 break;
266 default:
267 printk(KERN_ERR "cs4270: invalid DAI format\n");
268 ret = -EINVAL;
271 return ret;
275 * A list of addresses on which this CS4270 could use. I2C addresses are
276 * 7 bits. For the CS4270, the upper four bits are always 1001, and the
277 * lower three bits are determined via the AD2, AD1, and AD0 pins
278 * (respectively).
280 static const unsigned short normal_i2c[] = {
281 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F, I2C_CLIENT_END
283 I2C_CLIENT_INSMOD;
286 * Pre-fill the CS4270 register cache.
288 * We use the auto-increment feature of the CS4270 to read all registers in
289 * one shot.
291 static int cs4270_fill_cache(struct snd_soc_codec *codec)
293 u8 *cache = codec->reg_cache;
294 struct i2c_client *i2c_client = codec->control_data;
295 s32 length;
297 length = i2c_smbus_read_i2c_block_data(i2c_client,
298 CS4270_FIRSTREG | 0x80, CS4270_NUMREGS, cache);
300 if (length != CS4270_NUMREGS) {
301 printk(KERN_ERR "cs4270: I2C read failure, addr=0x%x\n",
302 i2c_client->addr);
303 return -EIO;
306 return 0;
310 * Read from the CS4270 register cache.
312 * This CS4270 registers are cached to avoid excessive I2C I/O operations.
313 * After the initial read to pre-fill the cache, the CS4270 never updates
314 * the register values, so we won't have a cache coherncy problem.
316 static unsigned int cs4270_read_reg_cache(struct snd_soc_codec *codec,
317 unsigned int reg)
319 u8 *cache = codec->reg_cache;
321 if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
322 return -EIO;
324 return cache[reg - CS4270_FIRSTREG];
328 * Write to a CS4270 register via the I2C bus.
330 * This function writes the given value to the given CS4270 register, and
331 * also updates the register cache.
333 * Note that we don't use the hw_write function pointer of snd_soc_codec.
334 * That's because it's too clunky: the hw_write_t prototype does not match
335 * i2c_smbus_write_byte_data(), and it's just another layer of overhead.
337 static int cs4270_i2c_write(struct snd_soc_codec *codec, unsigned int reg,
338 unsigned int value)
340 u8 *cache = codec->reg_cache;
342 if ((reg < CS4270_FIRSTREG) || (reg > CS4270_LASTREG))
343 return -EIO;
345 /* Only perform an I2C operation if the new value is different */
346 if (cache[reg - CS4270_FIRSTREG] != value) {
347 struct i2c_client *client = codec->control_data;
348 if (i2c_smbus_write_byte_data(client, reg, value)) {
349 printk(KERN_ERR "cs4270: I2C write failed\n");
350 return -EIO;
353 /* We've written to the hardware, so update the cache */
354 cache[reg - CS4270_FIRSTREG] = value;
357 return 0;
361 * Program the CS4270 with the given hardware parameters.
363 * The .dai_ops functions are used to provide board-specific data, like
364 * input frequencies, to this driver. This function takes that information,
365 * combines it with the hardware parameters provided, and programs the
366 * hardware accordingly.
368 static int cs4270_hw_params(struct snd_pcm_substream *substream,
369 struct snd_pcm_hw_params *params)
371 struct snd_soc_pcm_runtime *rtd = substream->private_data;
372 struct snd_soc_device *socdev = rtd->socdev;
373 struct snd_soc_codec *codec = socdev->codec;
374 struct cs4270_private *cs4270 = codec->private_data;
375 int ret;
376 unsigned int i;
377 unsigned int rate;
378 unsigned int ratio;
379 int reg;
381 /* Figure out which MCLK/LRCK ratio to use */
383 rate = params_rate(params); /* Sampling rate, in Hz */
384 ratio = cs4270->mclk / rate; /* MCLK/LRCK ratio */
386 for (i = 0; i < NUM_MCLK_RATIOS; i++) {
387 if (cs4270_mode_ratios[i].ratio == ratio)
388 break;
391 if (i == NUM_MCLK_RATIOS) {
392 /* We did not find a matching ratio */
393 printk(KERN_ERR "cs4270: could not find matching ratio\n");
394 return -EINVAL;
397 /* Freeze and power-down the codec */
399 ret = snd_soc_write(codec, CS4270_PWRCTL, CS4270_PWRCTL_FREEZE |
400 CS4270_PWRCTL_PDN_ADC | CS4270_PWRCTL_PDN_DAC |
401 CS4270_PWRCTL_PDN);
402 if (ret < 0) {
403 printk(KERN_ERR "cs4270: I2C write failed\n");
404 return ret;
407 /* Program the mode control register */
409 reg = snd_soc_read(codec, CS4270_MODE);
410 reg &= ~(CS4270_MODE_SPEED_MASK | CS4270_MODE_DIV_MASK);
411 reg |= cs4270_mode_ratios[i].speed_mode | cs4270_mode_ratios[i].mclk;
413 ret = snd_soc_write(codec, CS4270_MODE, reg);
414 if (ret < 0) {
415 printk(KERN_ERR "cs4270: I2C write failed\n");
416 return ret;
419 /* Program the format register */
421 reg = snd_soc_read(codec, CS4270_FORMAT);
422 reg &= ~(CS4270_FORMAT_DAC_MASK | CS4270_FORMAT_ADC_MASK);
424 switch (cs4270->mode) {
425 case SND_SOC_DAIFMT_I2S:
426 reg |= CS4270_FORMAT_DAC_I2S | CS4270_FORMAT_ADC_I2S;
427 break;
428 case SND_SOC_DAIFMT_LEFT_J:
429 reg |= CS4270_FORMAT_DAC_LJ | CS4270_FORMAT_ADC_LJ;
430 break;
431 default:
432 printk(KERN_ERR "cs4270: unknown format\n");
433 return -EINVAL;
436 ret = snd_soc_write(codec, CS4270_FORMAT, reg);
437 if (ret < 0) {
438 printk(KERN_ERR "cs4270: I2C write failed\n");
439 return ret;
442 /* Disable auto-mute. This feature appears to be buggy, because in
443 some situations, auto-mute will not deactivate when it should. */
445 reg = snd_soc_read(codec, CS4270_MUTE);
446 reg &= ~CS4270_MUTE_AUTO;
447 ret = snd_soc_write(codec, CS4270_MUTE, reg);
448 if (ret < 0) {
449 printk(KERN_ERR "cs4270: I2C write failed\n");
450 return ret;
453 /* Thaw and power-up the codec */
455 ret = snd_soc_write(codec, CS4270_PWRCTL, 0);
456 if (ret < 0) {
457 printk(KERN_ERR "cs4270: I2C write failed\n");
458 return ret;
461 return ret;
464 #ifdef CONFIG_SND_SOC_CS4270_HWMUTE
467 * Set the CS4270 external mute
469 * This function toggles the mute bits in the MUTE register. The CS4270's
470 * mute capability is intended for external muting circuitry, so if the
471 * board does not have the MUTEA or MUTEB pins connected to such circuitry,
472 * then this function will do nothing.
474 static int cs4270_mute(struct snd_soc_dai *dai, int mute)
476 struct snd_soc_codec *codec = dai->codec;
477 int reg6;
479 reg6 = snd_soc_read(codec, CS4270_MUTE);
481 if (mute)
482 reg6 |= CS4270_MUTE_ADC_A | CS4270_MUTE_ADC_B |
483 CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B;
484 else
485 reg6 &= ~(CS4270_MUTE_ADC_A | CS4270_MUTE_ADC_B |
486 CS4270_MUTE_DAC_A | CS4270_MUTE_DAC_B);
488 return snd_soc_write(codec, CS4270_MUTE, reg6);
491 #endif
493 static int cs4270_i2c_probe(struct i2c_client *, const struct i2c_device_id *);
495 /* A list of non-DAPM controls that the CS4270 supports */
496 static const struct snd_kcontrol_new cs4270_snd_controls[] = {
497 SOC_DOUBLE_R("Master Playback Volume",
498 CS4270_VOLA, CS4270_VOLB, 0, 0xFF, 1)
501 static const struct i2c_device_id cs4270_id[] = {
502 {"cs4270", 0},
505 MODULE_DEVICE_TABLE(i2c, cs4270_id);
507 static struct i2c_driver cs4270_i2c_driver = {
508 .driver = {
509 .name = "CS4270 I2C",
510 .owner = THIS_MODULE,
512 .id_table = cs4270_id,
513 .probe = cs4270_i2c_probe,
517 * Global variable to store socdev for i2c probe function.
519 * If struct i2c_driver had a private_data field, we wouldn't need to use
520 * cs4270_socdec. This is the only way to pass the socdev structure to
521 * cs4270_i2c_probe().
523 * The real solution to cs4270_socdev is to create a mechanism
524 * that maps I2C addresses to snd_soc_device structures. Perhaps the
525 * creation of the snd_soc_device object should be moved out of
526 * cs4270_probe() and into cs4270_i2c_probe(), but that would make this
527 * driver dependent on I2C. The CS4270 supports "stand-alone" mode, whereby
528 * the chip is *not* connected to the I2C bus, but is instead configured via
529 * input pins.
531 static struct snd_soc_device *cs4270_socdev;
534 * Initialize the I2C interface of the CS4270
536 * This function is called for whenever the I2C subsystem finds a device
537 * at a particular address.
539 * Note: snd_soc_new_pcms() must be called before this function can be called,
540 * because of snd_ctl_add().
542 static int cs4270_i2c_probe(struct i2c_client *i2c_client,
543 const struct i2c_device_id *id)
545 struct snd_soc_device *socdev = cs4270_socdev;
546 struct snd_soc_codec *codec = socdev->codec;
547 int i;
548 int ret = 0;
550 /* Probing all possible addresses has one drawback: if there are
551 multiple CS4270s on the bus, then you cannot specify which
552 socdev is matched with which CS4270. For now, we just reject
553 this I2C device if the socdev already has one attached. */
554 if (codec->control_data)
555 return -ENODEV;
557 /* Note: codec_dai->codec is NULL here */
559 codec->reg_cache = kzalloc(CS4270_NUMREGS, GFP_KERNEL);
560 if (!codec->reg_cache) {
561 printk(KERN_ERR "cs4270: could not allocate register cache\n");
562 ret = -ENOMEM;
563 goto error;
566 /* Verify that we have a CS4270 */
568 ret = i2c_smbus_read_byte_data(i2c_client, CS4270_CHIPID);
569 if (ret < 0) {
570 printk(KERN_ERR "cs4270: failed to read I2C\n");
571 goto error;
573 /* The top four bits of the chip ID should be 1100. */
574 if ((ret & 0xF0) != 0xC0) {
575 /* The device at this address is not a CS4270 codec */
576 ret = -ENODEV;
577 goto error;
580 printk(KERN_INFO "cs4270: found device at I2C address %X\n",
581 i2c_client->addr);
582 printk(KERN_INFO "cs4270: hardware revision %X\n", ret & 0xF);
584 codec->control_data = i2c_client;
585 codec->read = cs4270_read_reg_cache;
586 codec->write = cs4270_i2c_write;
587 codec->reg_cache_size = CS4270_NUMREGS;
589 /* The I2C interface is set up, so pre-fill our register cache */
591 ret = cs4270_fill_cache(codec);
592 if (ret < 0) {
593 printk(KERN_ERR "cs4270: failed to fill register cache\n");
594 goto error;
597 /* Add the non-DAPM controls */
599 for (i = 0; i < ARRAY_SIZE(cs4270_snd_controls); i++) {
600 struct snd_kcontrol *kctrl =
601 snd_soc_cnew(&cs4270_snd_controls[i], codec, NULL);
603 ret = snd_ctl_add(codec->card, kctrl);
604 if (ret < 0)
605 goto error;
608 i2c_set_clientdata(i2c_client, codec);
610 return 0;
612 error:
613 if (codec->control_data) {
614 i2c_detach_client(i2c_client);
615 codec->control_data = NULL;
618 kfree(codec->reg_cache);
619 codec->reg_cache = NULL;
620 codec->reg_cache_size = 0;
622 kfree(i2c_client);
624 return ret;
627 #endif /* USE_I2C*/
629 struct snd_soc_dai cs4270_dai = {
630 .name = "CS4270",
631 .playback = {
632 .stream_name = "Playback",
633 .channels_min = 1,
634 .channels_max = 2,
635 .rates = 0,
636 .formats = CS4270_FORMATS,
638 .capture = {
639 .stream_name = "Capture",
640 .channels_min = 1,
641 .channels_max = 2,
642 .rates = 0,
643 .formats = CS4270_FORMATS,
646 EXPORT_SYMBOL_GPL(cs4270_dai);
649 * ASoC probe function
651 * This function is called when the machine driver calls
652 * platform_device_add().
654 static int cs4270_probe(struct platform_device *pdev)
656 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
657 struct snd_soc_codec *codec;
658 int ret = 0;
660 printk(KERN_INFO "CS4270 ALSA SoC Codec\n");
662 /* Allocate enough space for the snd_soc_codec structure
663 and our private data together. */
664 codec = kzalloc(ALIGN(sizeof(struct snd_soc_codec), 4) +
665 sizeof(struct cs4270_private), GFP_KERNEL);
666 if (!codec) {
667 printk(KERN_ERR "cs4270: Could not allocate codec structure\n");
668 return -ENOMEM;
671 mutex_init(&codec->mutex);
672 INIT_LIST_HEAD(&codec->dapm_widgets);
673 INIT_LIST_HEAD(&codec->dapm_paths);
675 codec->name = "CS4270";
676 codec->owner = THIS_MODULE;
677 codec->dai = &cs4270_dai;
678 codec->num_dai = 1;
679 codec->private_data = (void *) codec +
680 ALIGN(sizeof(struct snd_soc_codec), 4);
682 socdev->codec = codec;
684 /* Register PCMs */
686 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
687 if (ret < 0) {
688 printk(KERN_ERR "cs4270: failed to create PCMs\n");
689 return ret;
692 #ifdef USE_I2C
693 cs4270_socdev = socdev;
695 ret = i2c_add_driver(&cs4270_i2c_driver);
696 if (ret) {
697 printk(KERN_ERR "cs4270: failed to attach driver");
698 snd_soc_free_pcms(socdev);
699 return ret;
702 /* Did we find a CS4270 on the I2C bus? */
703 if (codec->control_data) {
704 /* Initialize codec ops */
705 cs4270_dai.ops.hw_params = cs4270_hw_params;
706 cs4270_dai.dai_ops.set_sysclk = cs4270_set_dai_sysclk;
707 cs4270_dai.dai_ops.set_fmt = cs4270_set_dai_fmt;
708 #ifdef CONFIG_SND_SOC_CS4270_HWMUTE
709 cs4270_dai.dai_ops.digital_mute = cs4270_mute;
710 #endif
711 } else
712 printk(KERN_INFO "cs4270: no I2C device found, "
713 "using stand-alone mode\n");
714 #else
715 printk(KERN_INFO "cs4270: I2C disabled, using stand-alone mode\n");
716 #endif
718 ret = snd_soc_register_card(socdev);
719 if (ret < 0) {
720 printk(KERN_ERR "cs4270: failed to register card\n");
721 snd_soc_free_pcms(socdev);
722 return ret;
725 return ret;
728 static int cs4270_remove(struct platform_device *pdev)
730 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
732 snd_soc_free_pcms(socdev);
734 #ifdef USE_I2C
735 if (socdev->codec->control_data)
736 i2c_del_driver(&cs4270_i2c_driver);
737 #endif
739 kfree(socdev->codec);
740 socdev->codec = NULL;
742 return 0;
746 * ASoC codec device structure
748 * Assign this variable to the codec_dev field of the machine driver's
749 * snd_soc_device structure.
751 struct snd_soc_codec_device soc_codec_device_cs4270 = {
752 .probe = cs4270_probe,
753 .remove = cs4270_remove
755 EXPORT_SYMBOL_GPL(soc_codec_device_cs4270);
757 MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
758 MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver");
759 MODULE_LICENSE("GPL");