xref: /linux/sound/soc/codecs/dmic.c (revision eea84a7f0cdb693c261a7cf84bd4b3d81479c9a6)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * dmic.c  --  SoC audio for Generic Digital MICs
4  *
5  * Author: Liam Girdwood <lrg@slimlogic.co.uk>
6  */
7 
8 #include <linux/delay.h>
9 #include <linux/gpio.h>
10 #include <linux/gpio/consumer.h>
11 #include <linux/platform_device.h>
12 #include <linux/slab.h>
13 #include <linux/module.h>
14 #include <sound/core.h>
15 #include <sound/pcm.h>
16 #include <sound/soc.h>
17 #include <sound/soc-dapm.h>
18 
19 #define MAX_MODESWITCH_DELAY 70
20 static int modeswitch_delay;
21 module_param(modeswitch_delay, uint, 0644);
22 
23 static int wakeup_delay;
24 module_param(wakeup_delay, uint, 0644);
25 
26 struct dmic {
27 	struct gpio_desc *gpio_en;
28 	int wakeup_delay;
29 	/* Delay after DMIC mode switch */
30 	int modeswitch_delay;
31 };
32 
33 static int dmic_daiops_trigger(struct snd_pcm_substream *substream,
34 			       int cmd, struct snd_soc_dai *dai)
35 {
36 	struct snd_soc_component *component = dai->component;
37 	struct dmic *dmic = snd_soc_component_get_drvdata(component);
38 
39 	switch (cmd) {
40 	case SNDRV_PCM_TRIGGER_STOP:
41 		if (dmic->modeswitch_delay)
42 			mdelay(dmic->modeswitch_delay);
43 
44 		break;
45 	}
46 
47 	return 0;
48 }
49 
50 static const struct snd_soc_dai_ops dmic_dai_ops = {
51 	.trigger	= dmic_daiops_trigger,
52 };
53 
54 static int dmic_aif_event(struct snd_soc_dapm_widget *w,
55 			  struct snd_kcontrol *kcontrol, int event) {
56 	struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
57 	struct dmic *dmic = snd_soc_component_get_drvdata(component);
58 
59 	switch (event) {
60 	case SND_SOC_DAPM_POST_PMU:
61 		if (dmic->gpio_en)
62 			gpiod_set_value_cansleep(dmic->gpio_en, 1);
63 
64 		if (dmic->wakeup_delay)
65 			msleep(dmic->wakeup_delay);
66 		break;
67 	case SND_SOC_DAPM_POST_PMD:
68 		if (dmic->gpio_en)
69 			gpiod_set_value_cansleep(dmic->gpio_en, 0);
70 		break;
71 	}
72 
73 	return 0;
74 }
75 
76 static struct snd_soc_dai_driver dmic_dai = {
77 	.name = "dmic-hifi",
78 	.capture = {
79 		.stream_name = "Capture",
80 		.channels_min = 1,
81 		.channels_max = 8,
82 		.rates = SNDRV_PCM_RATE_CONTINUOUS,
83 		.formats = SNDRV_PCM_FMTBIT_S32_LE
84 			| SNDRV_PCM_FMTBIT_S24_LE
85 			| SNDRV_PCM_FMTBIT_S16_LE
86 			| SNDRV_PCM_FMTBIT_DSD_U8
87 			| SNDRV_PCM_FMTBIT_DSD_U16_LE
88 			| SNDRV_PCM_FMTBIT_DSD_U32_LE
89 			| SNDRV_PCM_FMTBIT_DSD_U16_BE
90 			| SNDRV_PCM_FMTBIT_DSD_U32_BE,
91 	},
92 	.ops    = &dmic_dai_ops,
93 };
94 
95 static int dmic_component_probe(struct snd_soc_component *component)
96 {
97 	struct dmic *dmic;
98 
99 	dmic = devm_kzalloc(component->dev, sizeof(*dmic), GFP_KERNEL);
100 	if (!dmic)
101 		return -ENOMEM;
102 
103 	dmic->gpio_en = devm_gpiod_get_optional(component->dev,
104 						"dmicen", GPIOD_OUT_LOW);
105 	if (IS_ERR(dmic->gpio_en))
106 		return PTR_ERR(dmic->gpio_en);
107 
108 	device_property_read_u32(component->dev, "wakeup-delay-ms",
109 				 &dmic->wakeup_delay);
110 	device_property_read_u32(component->dev, "modeswitch-delay-ms",
111 				 &dmic->modeswitch_delay);
112 	if (wakeup_delay)
113 		dmic->wakeup_delay  = wakeup_delay;
114 	if (modeswitch_delay)
115 		dmic->modeswitch_delay  = modeswitch_delay;
116 
117 	if (dmic->modeswitch_delay > MAX_MODESWITCH_DELAY)
118 		dmic->modeswitch_delay = MAX_MODESWITCH_DELAY;
119 
120 	snd_soc_component_set_drvdata(component, dmic);
121 
122 	return 0;
123 }
124 
125 static const struct snd_soc_dapm_widget dmic_dapm_widgets[] = {
126 	SND_SOC_DAPM_AIF_OUT_E("DMIC AIF", "Capture", 0,
127 			       SND_SOC_NOPM, 0, 0, dmic_aif_event,
128 			       SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
129 	SND_SOC_DAPM_INPUT("DMic"),
130 };
131 
132 static const struct snd_soc_dapm_route intercon[] = {
133 	{"DMIC AIF", NULL, "DMic"},
134 };
135 
136 static const struct snd_soc_component_driver soc_dmic = {
137 	.probe			= dmic_component_probe,
138 	.dapm_widgets		= dmic_dapm_widgets,
139 	.num_dapm_widgets	= ARRAY_SIZE(dmic_dapm_widgets),
140 	.dapm_routes		= intercon,
141 	.num_dapm_routes	= ARRAY_SIZE(intercon),
142 	.idle_bias_on		= 1,
143 	.use_pmdown_time	= 1,
144 	.endianness		= 1,
145 };
146 
147 static int dmic_dev_probe(struct platform_device *pdev)
148 {
149 	int err;
150 	u32 chans;
151 	struct snd_soc_dai_driver *dai_drv = &dmic_dai;
152 
153 	if (pdev->dev.of_node) {
154 		err = of_property_read_u32(pdev->dev.of_node, "num-channels", &chans);
155 		if (err && (err != -EINVAL))
156 			return err;
157 
158 		if (!err) {
159 			if (chans < 1 || chans > 8)
160 				return -EINVAL;
161 
162 			dai_drv = devm_kzalloc(&pdev->dev, sizeof(*dai_drv), GFP_KERNEL);
163 			if (!dai_drv)
164 				return -ENOMEM;
165 
166 			memcpy(dai_drv, &dmic_dai, sizeof(*dai_drv));
167 			dai_drv->capture.channels_max = chans;
168 		}
169 	}
170 
171 	return devm_snd_soc_register_component(&pdev->dev,
172 			&soc_dmic, dai_drv, 1);
173 }
174 
175 MODULE_ALIAS("platform:dmic-codec");
176 
177 static const struct of_device_id dmic_dev_match[] = {
178 	{.compatible = "dmic-codec"},
179 	{}
180 };
181 MODULE_DEVICE_TABLE(of, dmic_dev_match);
182 
183 static struct platform_driver dmic_driver = {
184 	.driver = {
185 		.name = "dmic-codec",
186 		.of_match_table = dmic_dev_match,
187 	},
188 	.probe = dmic_dev_probe,
189 };
190 
191 module_platform_driver(dmic_driver);
192 
193 MODULE_DESCRIPTION("Generic DMIC driver");
194 MODULE_AUTHOR("Liam Girdwood <lrg@slimlogic.co.uk>");
195 MODULE_LICENSE("GPL");
196