2 * AK4104 ALSA SoC (ASoC) driver
4 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <linux/module.h>
13 #include <sound/core.h>
14 #include <sound/soc.h>
15 #include <sound/initval.h>
16 #include <linux/spi/spi.h>
17 #include <sound/asoundef.h>
21 /* AK4104 registers addresses */
22 #define AK4104_REG_CONTROL1 0x00
23 #define AK4104_REG_RESERVED 0x01
24 #define AK4104_REG_CONTROL2 0x02
25 #define AK4104_REG_TX 0x03
26 #define AK4104_REG_CHN_STATUS(x) ((x) + 0x04)
27 #define AK4104_NUM_REGS 10
29 #define AK4104_REG_MASK 0x1f
30 #define AK4104_READ 0xc0
31 #define AK4104_WRITE 0xe0
32 #define AK4104_RESERVED_VAL 0x5b
34 /* Bit masks for AK4104 registers */
35 #define AK4104_CONTROL1_RSTN (1 << 0)
36 #define AK4104_CONTROL1_PW (1 << 1)
37 #define AK4104_CONTROL1_DIF0 (1 << 2)
38 #define AK4104_CONTROL1_DIF1 (1 << 3)
40 #define AK4104_CONTROL2_SEL0 (1 << 0)
41 #define AK4104_CONTROL2_SEL1 (1 << 1)
42 #define AK4104_CONTROL2_MODE (1 << 2)
44 #define AK4104_TX_TXE (1 << 0)
45 #define AK4104_TX_V (1 << 1)
47 #define DRV_NAME "ak4104"
49 struct ak4104_private {
50 struct snd_soc_codec codec;
51 u8 reg_cache[AK4104_NUM_REGS];
54 static int ak4104_fill_cache(struct snd_soc_codec *codec)
57 u8 *reg_cache = codec->reg_cache;
58 struct spi_device *spi = codec->control_data;
60 for (i = 0; i < codec->reg_cache_size; i++) {
61 int ret = spi_w8r8(spi, i | AK4104_READ);
63 dev_err(&spi->dev, "SPI write failure\n");
73 static unsigned int ak4104_read_reg_cache(struct snd_soc_codec *codec,
76 u8 *reg_cache = codec->reg_cache;
78 if (reg >= codec->reg_cache_size)
81 return reg_cache[reg];
84 static int ak4104_spi_write(struct snd_soc_codec *codec, unsigned int reg,
87 u8 *cache = codec->reg_cache;
88 struct spi_device *spi = codec->control_data;
90 if (reg >= codec->reg_cache_size)
93 reg &= AK4104_REG_MASK;
96 /* only write to the hardware if value has changed */
97 if (cache[reg] != value) {
98 u8 tmp[2] = { reg, value };
99 if (spi_write(spi, tmp, sizeof(tmp))) {
100 dev_err(&spi->dev, "SPI write failed\n");
110 static int ak4104_set_dai_fmt(struct snd_soc_dai *codec_dai,
113 struct snd_soc_codec *codec = codec_dai->codec;
116 val = ak4104_read_reg_cache(codec, AK4104_REG_CONTROL1);
120 val &= ~(AK4104_CONTROL1_DIF0 | AK4104_CONTROL1_DIF1);
123 switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
124 case SND_SOC_DAIFMT_RIGHT_J:
126 case SND_SOC_DAIFMT_LEFT_J:
127 val |= AK4104_CONTROL1_DIF0;
129 case SND_SOC_DAIFMT_I2S:
130 val |= AK4104_CONTROL1_DIF0 | AK4104_CONTROL1_DIF1;
133 dev_err(codec->dev, "invalid dai format\n");
137 /* This device can only be slave */
138 if ((format & SND_SOC_DAIFMT_MASTER_MASK) != SND_SOC_DAIFMT_CBS_CFS)
141 return ak4104_spi_write(codec, AK4104_REG_CONTROL1, val);
144 static int ak4104_hw_params(struct snd_pcm_substream *substream,
145 struct snd_pcm_hw_params *params,
146 struct snd_soc_dai *dai)
148 struct snd_soc_pcm_runtime *rtd = substream->private_data;
149 struct snd_soc_device *socdev = rtd->socdev;
150 struct snd_soc_codec *codec = socdev->card->codec;
153 /* set the IEC958 bits: consumer mode, no copyright bit */
154 val |= IEC958_AES0_CON_NOT_COPYRIGHT;
155 ak4104_spi_write(codec, AK4104_REG_CHN_STATUS(0), val);
159 switch (params_rate(params)) {
161 val |= IEC958_AES3_CON_FS_44100;
164 val |= IEC958_AES3_CON_FS_48000;
167 val |= IEC958_AES3_CON_FS_32000;
170 dev_err(codec->dev, "unsupported sampling rate\n");
174 return ak4104_spi_write(codec, AK4104_REG_CHN_STATUS(3), val);
177 static struct snd_soc_dai_ops ak4101_dai_ops = {
178 .hw_params = ak4104_hw_params,
179 .set_fmt = ak4104_set_dai_fmt,
182 struct snd_soc_dai ak4104_dai = {
185 .stream_name = "Playback",
188 .rates = SNDRV_PCM_RATE_44100 |
189 SNDRV_PCM_RATE_48000 |
190 SNDRV_PCM_RATE_32000,
191 .formats = SNDRV_PCM_FMTBIT_S16_LE |
192 SNDRV_PCM_FMTBIT_S24_3LE |
193 SNDRV_PCM_FMTBIT_S24_LE
195 .ops = &ak4101_dai_ops,
198 static struct snd_soc_codec *ak4104_codec;
200 static int ak4104_spi_probe(struct spi_device *spi)
202 struct snd_soc_codec *codec;
203 struct ak4104_private *ak4104;
206 spi->bits_per_word = 8;
207 spi->mode = SPI_MODE_0;
208 ret = spi_setup(spi);
212 ak4104 = kzalloc(sizeof(struct ak4104_private), GFP_KERNEL);
214 dev_err(&spi->dev, "could not allocate codec\n");
218 codec = &ak4104->codec;
219 mutex_init(&codec->mutex);
220 INIT_LIST_HEAD(&codec->dapm_widgets);
221 INIT_LIST_HEAD(&codec->dapm_paths);
223 codec->dev = &spi->dev;
224 codec->name = DRV_NAME;
225 codec->owner = THIS_MODULE;
226 codec->dai = &ak4104_dai;
228 codec->private_data = ak4104;
229 codec->control_data = spi;
230 codec->reg_cache = ak4104->reg_cache;
231 codec->reg_cache_size = AK4104_NUM_REGS;
233 /* read all regs and fill the cache */
234 ret = ak4104_fill_cache(codec);
236 dev_err(&spi->dev, "failed to fill register cache\n");
240 /* read the 'reserved' register - according to the datasheet, it
241 * should contain 0x5b. Not a good way to verify the presence of
242 * the device, but there is no hardware ID register. */
243 if (ak4104_read_reg_cache(codec, AK4104_REG_RESERVED) !=
244 AK4104_RESERVED_VAL) {
246 goto error_free_codec;
249 /* set power-up and non-reset bits */
250 val = ak4104_read_reg_cache(codec, AK4104_REG_CONTROL1);
251 val |= AK4104_CONTROL1_PW | AK4104_CONTROL1_RSTN;
252 ret = ak4104_spi_write(codec, AK4104_REG_CONTROL1, val);
254 goto error_free_codec;
256 /* enable transmitter */
257 val = ak4104_read_reg_cache(codec, AK4104_REG_TX);
258 val |= AK4104_TX_TXE;
259 ret = ak4104_spi_write(codec, AK4104_REG_TX, val);
261 goto error_free_codec;
263 ak4104_codec = codec;
264 ret = snd_soc_register_dai(&ak4104_dai);
266 dev_err(&spi->dev, "failed to register DAI\n");
267 goto error_free_codec;
270 spi_set_drvdata(spi, ak4104);
271 dev_info(&spi->dev, "SPI device initialized\n");
276 ak4104_dai.dev = NULL;
280 static int __devexit ak4104_spi_remove(struct spi_device *spi)
283 struct ak4104_private *ak4104 = spi_get_drvdata(spi);
285 val = ak4104_read_reg_cache(&ak4104->codec, AK4104_REG_CONTROL1);
289 /* clear power-up and non-reset bits */
290 val &= ~(AK4104_CONTROL1_PW | AK4104_CONTROL1_RSTN);
291 ret = ak4104_spi_write(&ak4104->codec, AK4104_REG_CONTROL1, val);
300 static int ak4104_probe(struct platform_device *pdev)
302 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
303 struct snd_soc_codec *codec = ak4104_codec;
306 /* Connect the codec to the socdev. snd_soc_new_pcms() needs this. */
307 socdev->card->codec = codec;
310 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
312 dev_err(codec->dev, "failed to create pcms\n");
316 /* Register the socdev */
317 ret = snd_soc_init_card(socdev);
319 dev_err(codec->dev, "failed to register card\n");
320 snd_soc_free_pcms(socdev);
327 static int ak4104_remove(struct platform_device *pdev)
329 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
330 snd_soc_free_pcms(socdev);
334 struct snd_soc_codec_device soc_codec_device_ak4104 = {
335 .probe = ak4104_probe,
336 .remove = ak4104_remove
338 EXPORT_SYMBOL_GPL(soc_codec_device_ak4104);
340 static struct spi_driver ak4104_spi_driver = {
343 .owner = THIS_MODULE,
345 .probe = ak4104_spi_probe,
346 .remove = __devexit_p(ak4104_spi_remove),
349 static int __init ak4104_init(void)
351 pr_info("Asahi Kasei AK4104 ALSA SoC Codec Driver\n");
352 return spi_register_driver(&ak4104_spi_driver);
354 module_init(ak4104_init);
356 static void __exit ak4104_exit(void)
358 spi_unregister_driver(&ak4104_spi_driver);
360 module_exit(ak4104_exit);
362 MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>");
363 MODULE_DESCRIPTION("Asahi Kasei AK4104 ALSA SoC driver");
364 MODULE_LICENSE("GPL");