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 <linux/slab.h>
14 #include <sound/core.h>
15 #include <sound/soc.h>
16 #include <sound/initval.h>
17 #include <linux/spi/spi.h>
18 #include <linux/of_device.h>
19 #include <linux/of_gpio.h>
20 #include <sound/asoundef.h>
22 /* AK4104 registers addresses */
23 #define AK4104_REG_CONTROL1 0x00
24 #define AK4104_REG_RESERVED 0x01
25 #define AK4104_REG_CONTROL2 0x02
26 #define AK4104_REG_TX 0x03
27 #define AK4104_REG_CHN_STATUS(x) ((x) + 0x04)
28 #define AK4104_NUM_REGS 10
30 #define AK4104_REG_MASK 0x1f
31 #define AK4104_READ 0xc0
32 #define AK4104_WRITE 0xe0
33 #define AK4104_RESERVED_VAL 0x5b
35 /* Bit masks for AK4104 registers */
36 #define AK4104_CONTROL1_RSTN (1 << 0)
37 #define AK4104_CONTROL1_PW (1 << 1)
38 #define AK4104_CONTROL1_DIF0 (1 << 2)
39 #define AK4104_CONTROL1_DIF1 (1 << 3)
41 #define AK4104_CONTROL2_SEL0 (1 << 0)
42 #define AK4104_CONTROL2_SEL1 (1 << 1)
43 #define AK4104_CONTROL2_MODE (1 << 2)
45 #define AK4104_TX_TXE (1 << 0)
46 #define AK4104_TX_V (1 << 1)
48 #define DRV_NAME "ak4104-codec"
50 struct ak4104_private
{
51 struct regmap
*regmap
;
54 static int ak4104_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
57 struct snd_soc_codec
*codec
= codec_dai
->codec
;
62 switch (format
& SND_SOC_DAIFMT_FORMAT_MASK
) {
63 case SND_SOC_DAIFMT_RIGHT_J
:
65 case SND_SOC_DAIFMT_LEFT_J
:
66 val
|= AK4104_CONTROL1_DIF0
;
68 case SND_SOC_DAIFMT_I2S
:
69 val
|= AK4104_CONTROL1_DIF0
| AK4104_CONTROL1_DIF1
;
72 dev_err(codec
->dev
, "invalid dai format\n");
76 /* This device can only be slave */
77 if ((format
& SND_SOC_DAIFMT_MASTER_MASK
) != SND_SOC_DAIFMT_CBS_CFS
)
80 ret
= snd_soc_update_bits(codec
, AK4104_REG_CONTROL1
,
81 AK4104_CONTROL1_DIF0
| AK4104_CONTROL1_DIF1
,
89 static int ak4104_hw_params(struct snd_pcm_substream
*substream
,
90 struct snd_pcm_hw_params
*params
,
91 struct snd_soc_dai
*dai
)
93 struct snd_soc_codec
*codec
= dai
->codec
;
96 /* set the IEC958 bits: consumer mode, no copyright bit */
97 val
|= IEC958_AES0_CON_NOT_COPYRIGHT
;
98 snd_soc_write(codec
, AK4104_REG_CHN_STATUS(0), val
);
102 switch (params_rate(params
)) {
104 val
|= IEC958_AES3_CON_FS_22050
;
107 val
|= IEC958_AES3_CON_FS_24000
;
110 val
|= IEC958_AES3_CON_FS_32000
;
113 val
|= IEC958_AES3_CON_FS_44100
;
116 val
|= IEC958_AES3_CON_FS_48000
;
119 val
|= IEC958_AES3_CON_FS_88200
;
122 val
|= IEC958_AES3_CON_FS_96000
;
125 val
|= IEC958_AES3_CON_FS_176400
;
128 val
|= IEC958_AES3_CON_FS_192000
;
131 dev_err(codec
->dev
, "unsupported sampling rate\n");
135 return snd_soc_write(codec
, AK4104_REG_CHN_STATUS(3), val
);
138 static const struct snd_soc_dai_ops ak4101_dai_ops
= {
139 .hw_params
= ak4104_hw_params
,
140 .set_fmt
= ak4104_set_dai_fmt
,
143 static struct snd_soc_dai_driver ak4104_dai
= {
144 .name
= "ak4104-hifi",
146 .stream_name
= "Playback",
149 .rates
= SNDRV_PCM_RATE_8000_192000
,
150 .formats
= SNDRV_PCM_FMTBIT_S16_LE
|
151 SNDRV_PCM_FMTBIT_S24_3LE
|
152 SNDRV_PCM_FMTBIT_S24_LE
154 .ops
= &ak4101_dai_ops
,
157 static int ak4104_probe(struct snd_soc_codec
*codec
)
159 struct ak4104_private
*ak4104
= snd_soc_codec_get_drvdata(codec
);
162 codec
->control_data
= ak4104
->regmap
;
163 ret
= snd_soc_codec_set_cache_io(codec
, 8, 8, SND_SOC_REGMAP
);
167 /* set power-up and non-reset bits */
168 ret
= snd_soc_update_bits(codec
, AK4104_REG_CONTROL1
,
169 AK4104_CONTROL1_PW
| AK4104_CONTROL1_RSTN
,
170 AK4104_CONTROL1_PW
| AK4104_CONTROL1_RSTN
);
174 /* enable transmitter */
175 ret
= snd_soc_update_bits(codec
, AK4104_REG_TX
,
176 AK4104_TX_TXE
, AK4104_TX_TXE
);
183 static int ak4104_remove(struct snd_soc_codec
*codec
)
185 snd_soc_update_bits(codec
, AK4104_REG_CONTROL1
,
186 AK4104_CONTROL1_PW
| AK4104_CONTROL1_RSTN
, 0);
191 static struct snd_soc_codec_driver soc_codec_device_ak4104
= {
192 .probe
= ak4104_probe
,
193 .remove
= ak4104_remove
,
196 static const struct regmap_config ak4104_regmap
= {
200 .max_register
= AK4104_NUM_REGS
- 1,
201 .read_flag_mask
= AK4104_READ
,
202 .write_flag_mask
= AK4104_WRITE
,
204 .cache_type
= REGCACHE_RBTREE
,
207 static int ak4104_spi_probe(struct spi_device
*spi
)
209 struct device_node
*np
= spi
->dev
.of_node
;
210 struct ak4104_private
*ak4104
;
214 spi
->bits_per_word
= 8;
215 spi
->mode
= SPI_MODE_0
;
216 ret
= spi_setup(spi
);
220 ak4104
= devm_kzalloc(&spi
->dev
, sizeof(struct ak4104_private
),
225 ak4104
->regmap
= devm_regmap_init_spi(spi
, &ak4104_regmap
);
226 if (IS_ERR(ak4104
->regmap
)) {
227 ret
= PTR_ERR(ak4104
->regmap
);
232 enum of_gpio_flags flags
;
233 int gpio
= of_get_named_gpio_flags(np
, "reset-gpio", 0, &flags
);
235 if (gpio_is_valid(gpio
)) {
236 ret
= devm_gpio_request_one(&spi
->dev
, gpio
,
237 flags
& OF_GPIO_ACTIVE_LOW
?
238 GPIOF_OUT_INIT_LOW
: GPIOF_OUT_INIT_HIGH
,
245 /* read the 'reserved' register - according to the datasheet, it
246 * should contain 0x5b. Not a good way to verify the presence of
247 * the device, but there is no hardware ID register. */
248 ret
= regmap_read(ak4104
->regmap
, AK4104_REG_RESERVED
, &val
);
251 if (val
!= AK4104_RESERVED_VAL
)
254 spi_set_drvdata(spi
, ak4104
);
256 ret
= snd_soc_register_codec(&spi
->dev
,
257 &soc_codec_device_ak4104
, &ak4104_dai
, 1);
261 static int ak4104_spi_remove(struct spi_device
*spi
)
263 snd_soc_unregister_codec(&spi
->dev
);
267 static const struct of_device_id ak4104_of_match
[] = {
268 { .compatible
= "asahi-kasei,ak4104", },
271 MODULE_DEVICE_TABLE(of
, ak4104_of_match
);
273 static struct spi_driver ak4104_spi_driver
= {
276 .owner
= THIS_MODULE
,
277 .of_match_table
= ak4104_of_match
,
279 .probe
= ak4104_spi_probe
,
280 .remove
= ak4104_spi_remove
,
283 module_spi_driver(ak4104_spi_driver
);
285 MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>");
286 MODULE_DESCRIPTION("Asahi Kasei AK4104 ALSA SoC driver");
287 MODULE_LICENSE("GPL");