blob: 34a840c5d2b79de186bc48d95a6988546d0f8f49 [file] [log] [blame]
Daniel Macka3819342009-03-09 02:13:17 +01001/*
2 * AK4104 ALSA SoC (ASoC) driver
3 *
4 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
5 *
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.
10 */
11
12#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Daniel Macka3819342009-03-09 02:13:17 +010014#include <sound/core.h>
15#include <sound/soc.h>
16#include <sound/initval.h>
17#include <linux/spi/spi.h>
18#include <sound/asoundef.h>
19
Daniel Macka3819342009-03-09 02:13:17 +010020/* AK4104 registers addresses */
21#define AK4104_REG_CONTROL1 0x00
22#define AK4104_REG_RESERVED 0x01
23#define AK4104_REG_CONTROL2 0x02
24#define AK4104_REG_TX 0x03
25#define AK4104_REG_CHN_STATUS(x) ((x) + 0x04)
26#define AK4104_NUM_REGS 10
27
28#define AK4104_REG_MASK 0x1f
29#define AK4104_READ 0xc0
30#define AK4104_WRITE 0xe0
31#define AK4104_RESERVED_VAL 0x5b
32
33/* Bit masks for AK4104 registers */
34#define AK4104_CONTROL1_RSTN (1 << 0)
35#define AK4104_CONTROL1_PW (1 << 1)
36#define AK4104_CONTROL1_DIF0 (1 << 2)
37#define AK4104_CONTROL1_DIF1 (1 << 3)
38
39#define AK4104_CONTROL2_SEL0 (1 << 0)
40#define AK4104_CONTROL2_SEL1 (1 << 1)
41#define AK4104_CONTROL2_MODE (1 << 2)
42
43#define AK4104_TX_TXE (1 << 0)
44#define AK4104_TX_V (1 << 1)
45
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000046#define DRV_NAME "ak4104-codec"
Daniel Macka3819342009-03-09 02:13:17 +010047
48struct ak4104_private {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000049 enum snd_soc_control_type control_type;
50 void *control_data;
Daniel Macka3819342009-03-09 02:13:17 +010051};
52
53static int ak4104_fill_cache(struct snd_soc_codec *codec)
54{
55 int i;
56 u8 *reg_cache = codec->reg_cache;
57 struct spi_device *spi = codec->control_data;
58
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000059 for (i = 0; i < codec->driver->reg_cache_size; i++) {
Daniel Macka3819342009-03-09 02:13:17 +010060 int ret = spi_w8r8(spi, i | AK4104_READ);
61 if (ret < 0) {
62 dev_err(&spi->dev, "SPI write failure\n");
63 return ret;
64 }
65
66 reg_cache[i] = ret;
67 }
68
69 return 0;
70}
71
72static unsigned int ak4104_read_reg_cache(struct snd_soc_codec *codec,
73 unsigned int reg)
74{
75 u8 *reg_cache = codec->reg_cache;
76
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000077 if (reg >= codec->driver->reg_cache_size)
Daniel Macka3819342009-03-09 02:13:17 +010078 return -EINVAL;
79
80 return reg_cache[reg];
81}
82
83static int ak4104_spi_write(struct snd_soc_codec *codec, unsigned int reg,
84 unsigned int value)
85{
86 u8 *cache = codec->reg_cache;
87 struct spi_device *spi = codec->control_data;
88
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000089 if (reg >= codec->driver->reg_cache_size)
Daniel Macka3819342009-03-09 02:13:17 +010090 return -EINVAL;
91
Daniel Macka3819342009-03-09 02:13:17 +010092 /* only write to the hardware if value has changed */
93 if (cache[reg] != value) {
Daniel Macke5553172010-02-26 14:36:54 +080094 u8 tmp[2] = { (reg & AK4104_REG_MASK) | AK4104_WRITE, value };
95
Daniel Macka3819342009-03-09 02:13:17 +010096 if (spi_write(spi, tmp, sizeof(tmp))) {
97 dev_err(&spi->dev, "SPI write failed\n");
98 return -EIO;
99 }
100
101 cache[reg] = value;
102 }
103
104 return 0;
105}
106
107static int ak4104_set_dai_fmt(struct snd_soc_dai *codec_dai,
108 unsigned int format)
109{
110 struct snd_soc_codec *codec = codec_dai->codec;
111 int val = 0;
112
Daniel Macka3819342009-03-09 02:13:17 +0100113 /* set DAI format */
114 switch (format & SND_SOC_DAIFMT_FORMAT_MASK) {
115 case SND_SOC_DAIFMT_RIGHT_J:
116 break;
117 case SND_SOC_DAIFMT_LEFT_J:
118 val |= AK4104_CONTROL1_DIF0;
119 break;
120 case SND_SOC_DAIFMT_I2S:
121 val |= AK4104_CONTROL1_DIF0 | AK4104_CONTROL1_DIF1;
122 break;
123 default:
124 dev_err(codec->dev, "invalid dai format\n");
125 return -EINVAL;
126 }
127
128 /* This device can only be slave */
129 if ((format & SND_SOC_DAIFMT_MASTER_MASK) != SND_SOC_DAIFMT_CBS_CFS)
130 return -EINVAL;
131
Mark Brownafad95f2012-02-17 12:04:41 -0800132 ret = snd_soc_update_bits(codec, AK4104_REG_CONTROL1,
133 AK4104_CONTROL1_DIF0 | AK4104_CONTROL1_DIF1,
134 val);
135 if (ret < 0)
136 return ret;
137
138 return 0;
Daniel Macka3819342009-03-09 02:13:17 +0100139}
140
141static int ak4104_hw_params(struct snd_pcm_substream *substream,
142 struct snd_pcm_hw_params *params,
143 struct snd_soc_dai *dai)
144{
145 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000146 struct snd_soc_codec *codec = rtd->codec;
Daniel Macka3819342009-03-09 02:13:17 +0100147 int val = 0;
148
149 /* set the IEC958 bits: consumer mode, no copyright bit */
150 val |= IEC958_AES0_CON_NOT_COPYRIGHT;
Mark Brown34baf222012-02-17 12:05:51 -0800151 snd_soc_write(codec, AK4104_REG_CHN_STATUS(0), val);
Daniel Macka3819342009-03-09 02:13:17 +0100152
153 val = 0;
154
155 switch (params_rate(params)) {
156 case 44100:
157 val |= IEC958_AES3_CON_FS_44100;
158 break;
159 case 48000:
160 val |= IEC958_AES3_CON_FS_48000;
161 break;
162 case 32000:
163 val |= IEC958_AES3_CON_FS_32000;
164 break;
165 default:
166 dev_err(codec->dev, "unsupported sampling rate\n");
167 return -EINVAL;
168 }
169
Mark Brown34baf222012-02-17 12:05:51 -0800170 return snd_soc_write(codec, AK4104_REG_CHN_STATUS(3), val);
Daniel Macka3819342009-03-09 02:13:17 +0100171}
172
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100173static const struct snd_soc_dai_ops ak4101_dai_ops = {
Mark Brown65ec1cd2009-03-11 16:51:31 +0000174 .hw_params = ak4104_hw_params,
175 .set_fmt = ak4104_set_dai_fmt,
176};
177
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000178static struct snd_soc_dai_driver ak4104_dai = {
179 .name = "ak4104-hifi",
Daniel Macka3819342009-03-09 02:13:17 +0100180 .playback = {
181 .stream_name = "Playback",
182 .channels_min = 2,
183 .channels_max = 2,
Daniel Mack617b14c2010-01-13 11:25:05 +0100184 .rates = SNDRV_PCM_RATE_8000_192000,
Daniel Macka3819342009-03-09 02:13:17 +0100185 .formats = SNDRV_PCM_FMTBIT_S16_LE |
186 SNDRV_PCM_FMTBIT_S24_3LE |
187 SNDRV_PCM_FMTBIT_S24_LE
188 },
Mark Brown65ec1cd2009-03-11 16:51:31 +0000189 .ops = &ak4101_dai_ops,
Daniel Macka3819342009-03-09 02:13:17 +0100190};
191
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000192static int ak4104_probe(struct snd_soc_codec *codec)
193{
194 struct ak4104_private *ak4104 = snd_soc_codec_get_drvdata(codec);
195 int ret, val;
196
197 codec->control_data = ak4104->control_data;
198
199 /* read all regs and fill the cache */
200 ret = ak4104_fill_cache(codec);
201 if (ret < 0) {
202 dev_err(codec->dev, "failed to fill register cache\n");
203 return ret;
204 }
205
206 /* read the 'reserved' register - according to the datasheet, it
207 * should contain 0x5b. Not a good way to verify the presence of
208 * the device, but there is no hardware ID register. */
209 if (ak4104_read_reg_cache(codec, AK4104_REG_RESERVED) !=
210 AK4104_RESERVED_VAL)
211 return -ENODEV;
212
213 /* set power-up and non-reset bits */
Mark Brownafad95f2012-02-17 12:04:41 -0800214 ret = snd_soc_update_bits(codec, AK4104_REG_CONTROL1,
215 AK4104_CONTROL1_PW | AK4104_CONTROL1_RSTN,
216 AK4104_CONTROL1_PW | AK4104_CONTROL1_RSTN);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000217 if (ret < 0)
218 return ret;
219
220 /* enable transmitter */
Mark Brownafad95f2012-02-17 12:04:41 -0800221 ret = snd_soc_update_bits(codec, AK4104_REG_TX,
222 AK4104_TX_TXE, AK4104_TX_TXE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000223 if (ret < 0)
224 return ret;
225
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000226 return 0;
227}
228
229static int ak4104_remove(struct snd_soc_codec *codec)
230{
Mark Brownafad95f2012-02-17 12:04:41 -0800231 snd_soc_update_bits(codec, AK4104_REG_CONTROL1,
232 AK4104_CONTROL1_PW | AK4104_CONTROL1_RSTN, 0);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000233
Mark Brownafad95f2012-02-17 12:04:41 -0800234 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000235}
236
237static struct snd_soc_codec_driver soc_codec_device_ak4104 = {
238 .probe = ak4104_probe,
239 .remove = ak4104_remove,
240 .reg_cache_size = AK4104_NUM_REGS,
Axel Lincf0feaf2011-10-20 10:50:03 +0800241 .reg_word_size = sizeof(u8),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000242};
Daniel Macka3819342009-03-09 02:13:17 +0100243
244static int ak4104_spi_probe(struct spi_device *spi)
245{
Daniel Macka3819342009-03-09 02:13:17 +0100246 struct ak4104_private *ak4104;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000247 int ret;
Daniel Macka3819342009-03-09 02:13:17 +0100248
249 spi->bits_per_word = 8;
250 spi->mode = SPI_MODE_0;
251 ret = spi_setup(spi);
252 if (ret < 0)
253 return ret;
254
Axel Lin3922d512011-12-20 14:37:12 +0800255 ak4104 = devm_kzalloc(&spi->dev, sizeof(struct ak4104_private),
256 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000257 if (ak4104 == NULL)
Daniel Macka3819342009-03-09 02:13:17 +0100258 return -ENOMEM;
Daniel Macka3819342009-03-09 02:13:17 +0100259
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000260 ak4104->control_data = spi;
261 ak4104->control_type = SND_SOC_SPI;
Daniel Macka3819342009-03-09 02:13:17 +0100262 spi_set_drvdata(spi, ak4104);
Daniel Macka3819342009-03-09 02:13:17 +0100263
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000264 ret = snd_soc_register_codec(&spi->dev,
265 &soc_codec_device_ak4104, &ak4104_dai, 1);
Daniel Macka3819342009-03-09 02:13:17 +0100266 return ret;
267}
268
269static int __devexit ak4104_spi_remove(struct spi_device *spi)
270{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000271 snd_soc_unregister_codec(&spi->dev);
Daniel Macka3819342009-03-09 02:13:17 +0100272 return 0;
273}
274
Daniel Macka3819342009-03-09 02:13:17 +0100275static struct spi_driver ak4104_spi_driver = {
276 .driver = {
277 .name = DRV_NAME,
278 .owner = THIS_MODULE,
279 },
280 .probe = ak4104_spi_probe,
281 .remove = __devexit_p(ak4104_spi_remove),
282};
283
Mark Brown38d78ba2012-02-16 22:50:35 -0800284module_spi_driver(ak4104_spi_driver);
Daniel Macka3819342009-03-09 02:13:17 +0100285
286MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>");
287MODULE_DESCRIPTION("Asahi Kasei AK4104 ALSA SoC driver");
288MODULE_LICENSE("GPL");
289