3 * Asahi Kasei AK5386 Single-ended 24-Bit 192kHz delta-sigma ADC
5 * (c) 2013 Daniel Mack <zonque@gmail.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/module.h>
13 #include <linux/slab.h>
15 #include <linux/of_gpio.h>
16 #include <linux/of_device.h>
17 #include <linux/regulator/consumer.h>
18 #include <sound/soc.h>
19 #include <sound/pcm.h>
20 #include <sound/initval.h>
22 static const char * const supply_names
[] = {
28 struct regulator_bulk_data supplies
[ARRAY_SIZE(supply_names
)];
31 static const struct snd_soc_dapm_widget ak5386_dapm_widgets
[] = {
32 SND_SOC_DAPM_INPUT("AINL"),
33 SND_SOC_DAPM_INPUT("AINR"),
36 static const struct snd_soc_dapm_route ak5386_dapm_routes
[] = {
37 { "Capture", NULL
, "AINL" },
38 { "Capture", NULL
, "AINR" },
41 static int ak5386_soc_probe(struct snd_soc_codec
*codec
)
43 struct ak5386_priv
*priv
= snd_soc_codec_get_drvdata(codec
);
44 return regulator_bulk_enable(ARRAY_SIZE(priv
->supplies
), priv
->supplies
);
47 static int ak5386_soc_remove(struct snd_soc_codec
*codec
)
49 struct ak5386_priv
*priv
= snd_soc_codec_get_drvdata(codec
);
50 regulator_bulk_disable(ARRAY_SIZE(priv
->supplies
), priv
->supplies
);
55 static int ak5386_soc_suspend(struct snd_soc_codec
*codec
)
57 struct ak5386_priv
*priv
= snd_soc_codec_get_drvdata(codec
);
58 regulator_bulk_disable(ARRAY_SIZE(priv
->supplies
), priv
->supplies
);
62 static int ak5386_soc_resume(struct snd_soc_codec
*codec
)
64 struct ak5386_priv
*priv
= snd_soc_codec_get_drvdata(codec
);
65 return regulator_bulk_enable(ARRAY_SIZE(priv
->supplies
), priv
->supplies
);
68 #define ak5386_soc_suspend NULL
69 #define ak5386_soc_resume NULL
70 #endif /* CONFIG_PM */
72 static struct snd_soc_codec_driver soc_codec_ak5386
= {
73 .probe
= ak5386_soc_probe
,
74 .remove
= ak5386_soc_remove
,
75 .suspend
= ak5386_soc_suspend
,
76 .resume
= ak5386_soc_resume
,
77 .dapm_widgets
= ak5386_dapm_widgets
,
78 .num_dapm_widgets
= ARRAY_SIZE(ak5386_dapm_widgets
),
79 .dapm_routes
= ak5386_dapm_routes
,
80 .num_dapm_routes
= ARRAY_SIZE(ak5386_dapm_routes
),
83 static int ak5386_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
86 struct snd_soc_codec
*codec
= codec_dai
->codec
;
88 format
&= SND_SOC_DAIFMT_FORMAT_MASK
;
89 if (format
!= SND_SOC_DAIFMT_LEFT_J
&&
90 format
!= SND_SOC_DAIFMT_I2S
) {
91 dev_err(codec
->dev
, "Invalid DAI format\n");
98 static int ak5386_hw_params(struct snd_pcm_substream
*substream
,
99 struct snd_pcm_hw_params
*params
,
100 struct snd_soc_dai
*dai
)
102 struct snd_soc_codec
*codec
= dai
->codec
;
103 struct ak5386_priv
*priv
= snd_soc_codec_get_drvdata(codec
);
106 * From the datasheet:
108 * All external clocks (MCLK, SCLK and LRCK) must be present unless
109 * PDN pin = āLā. If these clocks are not provided, the AK5386 may
110 * draw excess current due to its use of internal dynamically
111 * refreshed logic. If the external clocks are not present, place
112 * the AK5386 in power-down mode (PDN pin = āLā).
115 if (gpio_is_valid(priv
->reset_gpio
))
116 gpio_set_value(priv
->reset_gpio
, 1);
121 static int ak5386_hw_free(struct snd_pcm_substream
*substream
,
122 struct snd_soc_dai
*dai
)
124 struct snd_soc_codec
*codec
= dai
->codec
;
125 struct ak5386_priv
*priv
= snd_soc_codec_get_drvdata(codec
);
127 if (gpio_is_valid(priv
->reset_gpio
))
128 gpio_set_value(priv
->reset_gpio
, 0);
133 static const struct snd_soc_dai_ops ak5386_dai_ops
= {
134 .set_fmt
= ak5386_set_dai_fmt
,
135 .hw_params
= ak5386_hw_params
,
136 .hw_free
= ak5386_hw_free
,
139 static struct snd_soc_dai_driver ak5386_dai
= {
140 .name
= "ak5386-hifi",
142 .stream_name
= "Capture",
145 .rates
= SNDRV_PCM_RATE_8000_192000
,
146 .formats
= SNDRV_PCM_FMTBIT_S8
|
147 SNDRV_PCM_FMTBIT_S16_LE
|
148 SNDRV_PCM_FMTBIT_S24_LE
|
149 SNDRV_PCM_FMTBIT_S24_3LE
,
151 .ops
= &ak5386_dai_ops
,
155 static const struct of_device_id ak5386_dt_ids
[] = {
156 { .compatible
= "asahi-kasei,ak5386", },
159 MODULE_DEVICE_TABLE(of
, ak5386_dt_ids
);
162 static int ak5386_probe(struct platform_device
*pdev
)
164 struct device
*dev
= &pdev
->dev
;
165 struct ak5386_priv
*priv
;
168 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
172 priv
->reset_gpio
= -EINVAL
;
173 dev_set_drvdata(dev
, priv
);
175 for (i
= 0; i
< ARRAY_SIZE(supply_names
); i
++)
176 priv
->supplies
[i
].supply
= supply_names
[i
];
178 ret
= devm_regulator_bulk_get(dev
, ARRAY_SIZE(priv
->supplies
),
183 if (of_match_device(of_match_ptr(ak5386_dt_ids
), dev
))
184 priv
->reset_gpio
= of_get_named_gpio(dev
->of_node
,
187 if (gpio_is_valid(priv
->reset_gpio
))
188 if (devm_gpio_request_one(dev
, priv
->reset_gpio
,
191 priv
->reset_gpio
= -EINVAL
;
193 return snd_soc_register_codec(dev
, &soc_codec_ak5386
,
197 static int ak5386_remove(struct platform_device
*pdev
)
199 snd_soc_unregister_codec(&pdev
->dev
);
203 static struct platform_driver ak5386_driver
= {
204 .probe
= ak5386_probe
,
205 .remove
= ak5386_remove
,
208 .owner
= THIS_MODULE
,
209 .of_match_table
= of_match_ptr(ak5386_dt_ids
),
213 module_platform_driver(ak5386_driver
);
215 MODULE_DESCRIPTION("ASoC driver for AK5386 ADC");
216 MODULE_AUTHOR("Daniel Mack <zonque@gmail.com>");
217 MODULE_LICENSE("GPL");