diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2018-02-26 20:24:49 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-02-27 05:40:08 -0500 |
commit | 790d631dcfec6b073b04bb6809bce4c09baf198a (patch) | |
tree | 729e73e20e8b363e1b6e7f8b3962a89679020aba /sound/soc/fsl | |
parent | 7928b2cbe55b2a410a0f5c1f154610059c57b1b2 (diff) |
ASoC: imx-wm8962: Remove machine driver
fsl-asoc-card machine driver also handles wm8962, so there is
really no need for keeping the dedicated imx-wm8962 driver anymore.
Remove the imx-wm8962 machine driver.
Suggested-by: Nicolin Chen <nicoleotsuka@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r-- | sound/soc/fsl/Kconfig | 11 | ||||
-rw-r--r-- | sound/soc/fsl/Makefile | 2 | ||||
-rw-r--r-- | sound/soc/fsl/imx-wm8962.c | 312 |
3 files changed, 0 insertions, 325 deletions
diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig index 37f9b6201918..6ec19fb4a934 100644 --- a/sound/soc/fsl/Kconfig +++ b/sound/soc/fsl/Kconfig | |||
@@ -231,17 +231,6 @@ config SND_SOC_EUKREA_TLV320 | |||
231 | Enable I2S based access to the TLV320AIC23B codec attached | 231 | Enable I2S based access to the TLV320AIC23B codec attached |
232 | to the SSI interface | 232 | to the SSI interface |
233 | 233 | ||
234 | config SND_SOC_IMX_WM8962 | ||
235 | tristate "SoC Audio support for i.MX boards with wm8962" | ||
236 | depends on OF && I2C && INPUT | ||
237 | select SND_SOC_WM8962 | ||
238 | select SND_SOC_IMX_PCM_DMA | ||
239 | select SND_SOC_IMX_AUDMUX | ||
240 | select SND_SOC_FSL_SSI | ||
241 | help | ||
242 | Say Y if you want to add support for SoC audio on an i.MX board with | ||
243 | a wm8962 codec. | ||
244 | |||
245 | config SND_SOC_IMX_ES8328 | 234 | config SND_SOC_IMX_ES8328 |
246 | tristate "SoC Audio support for i.MX boards with the ES8328 codec" | 235 | tristate "SoC Audio support for i.MX boards with the ES8328 codec" |
247 | depends on OF && (I2C || SPI) | 236 | depends on OF && (I2C || SPI) |
diff --git a/sound/soc/fsl/Makefile b/sound/soc/fsl/Makefile index c67bf1139e1e..de94fa057e24 100644 --- a/sound/soc/fsl/Makefile +++ b/sound/soc/fsl/Makefile | |||
@@ -55,7 +55,6 @@ snd-soc-mx27vis-aic32x4-objs := mx27vis-aic32x4.o | |||
55 | snd-soc-wm1133-ev1-objs := wm1133-ev1.o | 55 | snd-soc-wm1133-ev1-objs := wm1133-ev1.o |
56 | snd-soc-imx-es8328-objs := imx-es8328.o | 56 | snd-soc-imx-es8328-objs := imx-es8328.o |
57 | snd-soc-imx-sgtl5000-objs := imx-sgtl5000.o | 57 | snd-soc-imx-sgtl5000-objs := imx-sgtl5000.o |
58 | snd-soc-imx-wm8962-objs := imx-wm8962.o | ||
59 | snd-soc-imx-spdif-objs := imx-spdif.o | 58 | snd-soc-imx-spdif-objs := imx-spdif.o |
60 | snd-soc-imx-mc13783-objs := imx-mc13783.o | 59 | snd-soc-imx-mc13783-objs := imx-mc13783.o |
61 | 60 | ||
@@ -65,6 +64,5 @@ obj-$(CONFIG_SND_SOC_MX27VIS_AIC32X4) += snd-soc-mx27vis-aic32x4.o | |||
65 | obj-$(CONFIG_SND_MXC_SOC_WM1133_EV1) += snd-soc-wm1133-ev1.o | 64 | obj-$(CONFIG_SND_MXC_SOC_WM1133_EV1) += snd-soc-wm1133-ev1.o |
66 | obj-$(CONFIG_SND_SOC_IMX_ES8328) += snd-soc-imx-es8328.o | 65 | obj-$(CONFIG_SND_SOC_IMX_ES8328) += snd-soc-imx-es8328.o |
67 | obj-$(CONFIG_SND_SOC_IMX_SGTL5000) += snd-soc-imx-sgtl5000.o | 66 | obj-$(CONFIG_SND_SOC_IMX_SGTL5000) += snd-soc-imx-sgtl5000.o |
68 | obj-$(CONFIG_SND_SOC_IMX_WM8962) += snd-soc-imx-wm8962.o | ||
69 | obj-$(CONFIG_SND_SOC_IMX_SPDIF) += snd-soc-imx-spdif.o | 67 | obj-$(CONFIG_SND_SOC_IMX_SPDIF) += snd-soc-imx-spdif.o |
70 | obj-$(CONFIG_SND_SOC_IMX_MC13783) += snd-soc-imx-mc13783.o | 68 | obj-$(CONFIG_SND_SOC_IMX_MC13783) += snd-soc-imx-mc13783.o |
diff --git a/sound/soc/fsl/imx-wm8962.c b/sound/soc/fsl/imx-wm8962.c deleted file mode 100644 index 206b898e554c..000000000000 --- a/sound/soc/fsl/imx-wm8962.c +++ /dev/null | |||
@@ -1,312 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2013 Freescale Semiconductor, Inc. | ||
3 | * | ||
4 | * Based on imx-sgtl5000.c | ||
5 | * Copyright 2012 Freescale Semiconductor, Inc. | ||
6 | * Copyright 2012 Linaro Ltd. | ||
7 | * | ||
8 | * The code contained herein is licensed under the GNU General Public | ||
9 | * License. You may obtain a copy of the GNU General Public License | ||
10 | * Version 2 or later at the following locations: | ||
11 | * | ||
12 | * http://www.opensource.org/licenses/gpl-license.html | ||
13 | * http://www.gnu.org/copyleft/gpl.html | ||
14 | */ | ||
15 | |||
16 | #include <linux/module.h> | ||
17 | #include <linux/of_platform.h> | ||
18 | #include <linux/i2c.h> | ||
19 | #include <linux/slab.h> | ||
20 | #include <linux/clk.h> | ||
21 | #include <sound/soc.h> | ||
22 | #include <sound/pcm_params.h> | ||
23 | #include <sound/soc-dapm.h> | ||
24 | #include <linux/pinctrl/consumer.h> | ||
25 | |||
26 | #include "../codecs/wm8962.h" | ||
27 | #include "imx-audmux.h" | ||
28 | |||
29 | #define DAI_NAME_SIZE 32 | ||
30 | |||
31 | struct imx_wm8962_data { | ||
32 | struct snd_soc_dai_link dai; | ||
33 | struct snd_soc_card card; | ||
34 | char codec_dai_name[DAI_NAME_SIZE]; | ||
35 | char platform_name[DAI_NAME_SIZE]; | ||
36 | unsigned int clk_frequency; | ||
37 | }; | ||
38 | |||
39 | struct imx_priv { | ||
40 | struct platform_device *pdev; | ||
41 | int sample_rate; | ||
42 | snd_pcm_format_t sample_format; | ||
43 | }; | ||
44 | |||
45 | static const struct snd_soc_dapm_widget imx_wm8962_dapm_widgets[] = { | ||
46 | SND_SOC_DAPM_HP("Headphone Jack", NULL), | ||
47 | SND_SOC_DAPM_SPK("Ext Spk", NULL), | ||
48 | SND_SOC_DAPM_MIC("AMIC", NULL), | ||
49 | SND_SOC_DAPM_MIC("DMIC", NULL), | ||
50 | }; | ||
51 | |||
52 | static int imx_hifi_hw_params(struct snd_pcm_substream *substream, | ||
53 | struct snd_pcm_hw_params *params) | ||
54 | { | ||
55 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | ||
56 | struct imx_priv *priv = snd_soc_card_get_drvdata(rtd->card); | ||
57 | |||
58 | priv->sample_rate = params_rate(params); | ||
59 | priv->sample_format = params_format(params); | ||
60 | |||
61 | return 0; | ||
62 | } | ||
63 | |||
64 | static const struct snd_soc_ops imx_hifi_ops = { | ||
65 | .hw_params = imx_hifi_hw_params, | ||
66 | }; | ||
67 | |||
68 | static int imx_wm8962_set_bias_level(struct snd_soc_card *card, | ||
69 | struct snd_soc_dapm_context *dapm, | ||
70 | enum snd_soc_bias_level level) | ||
71 | { | ||
72 | struct snd_soc_pcm_runtime *rtd; | ||
73 | struct snd_soc_dai *codec_dai; | ||
74 | struct imx_priv *priv = snd_soc_card_get_drvdata(card); | ||
75 | struct imx_wm8962_data *data = snd_soc_card_get_drvdata(card); | ||
76 | struct device *dev = &priv->pdev->dev; | ||
77 | unsigned int pll_out; | ||
78 | int ret; | ||
79 | |||
80 | rtd = snd_soc_get_pcm_runtime(card, card->dai_link[0].name); | ||
81 | codec_dai = rtd->codec_dai; | ||
82 | if (dapm->dev != codec_dai->dev) | ||
83 | return 0; | ||
84 | |||
85 | switch (level) { | ||
86 | case SND_SOC_BIAS_PREPARE: | ||
87 | if (dapm->bias_level == SND_SOC_BIAS_STANDBY) { | ||
88 | if (priv->sample_format == SNDRV_PCM_FORMAT_S24_LE) | ||
89 | pll_out = priv->sample_rate * 384; | ||
90 | else | ||
91 | pll_out = priv->sample_rate * 256; | ||
92 | |||
93 | ret = snd_soc_dai_set_pll(codec_dai, WM8962_FLL, | ||
94 | WM8962_FLL_MCLK, data->clk_frequency, | ||
95 | pll_out); | ||
96 | if (ret < 0) { | ||
97 | dev_err(dev, "failed to start FLL: %d\n", ret); | ||
98 | return ret; | ||
99 | } | ||
100 | |||
101 | ret = snd_soc_dai_set_sysclk(codec_dai, | ||
102 | WM8962_SYSCLK_FLL, pll_out, | ||
103 | SND_SOC_CLOCK_IN); | ||
104 | if (ret < 0) { | ||
105 | dev_err(dev, "failed to set SYSCLK: %d\n", ret); | ||
106 | return ret; | ||
107 | } | ||
108 | } | ||
109 | break; | ||
110 | |||
111 | case SND_SOC_BIAS_STANDBY: | ||
112 | if (dapm->bias_level == SND_SOC_BIAS_PREPARE) { | ||
113 | ret = snd_soc_dai_set_sysclk(codec_dai, | ||
114 | WM8962_SYSCLK_MCLK, data->clk_frequency, | ||
115 | SND_SOC_CLOCK_IN); | ||
116 | if (ret < 0) { | ||
117 | dev_err(dev, | ||
118 | "failed to switch away from FLL: %d\n", | ||
119 | ret); | ||
120 | return ret; | ||
121 | } | ||
122 | |||
123 | ret = snd_soc_dai_set_pll(codec_dai, WM8962_FLL, | ||
124 | 0, 0, 0); | ||
125 | if (ret < 0) { | ||
126 | dev_err(dev, "failed to stop FLL: %d\n", ret); | ||
127 | return ret; | ||
128 | } | ||
129 | } | ||
130 | break; | ||
131 | |||
132 | default: | ||
133 | break; | ||
134 | } | ||
135 | |||
136 | return 0; | ||
137 | } | ||
138 | |||
139 | static int imx_wm8962_late_probe(struct snd_soc_card *card) | ||
140 | { | ||
141 | struct snd_soc_pcm_runtime *rtd; | ||
142 | struct snd_soc_dai *codec_dai; | ||
143 | struct imx_priv *priv = snd_soc_card_get_drvdata(card); | ||
144 | struct imx_wm8962_data *data = snd_soc_card_get_drvdata(card); | ||
145 | struct device *dev = &priv->pdev->dev; | ||
146 | int ret; | ||
147 | |||
148 | rtd = snd_soc_get_pcm_runtime(card, card->dai_link[0].name); | ||
149 | codec_dai = rtd->codec_dai; | ||
150 | ret = snd_soc_dai_set_sysclk(codec_dai, WM8962_SYSCLK_MCLK, | ||
151 | data->clk_frequency, SND_SOC_CLOCK_IN); | ||
152 | if (ret < 0) | ||
153 | dev_err(dev, "failed to set sysclk in %s\n", __func__); | ||
154 | |||
155 | return ret; | ||
156 | } | ||
157 | |||
158 | static int imx_wm8962_probe(struct platform_device *pdev) | ||
159 | { | ||
160 | struct device_node *np = pdev->dev.of_node; | ||
161 | struct device_node *ssi_np, *codec_np; | ||
162 | struct platform_device *ssi_pdev; | ||
163 | struct i2c_client *codec_dev; | ||
164 | struct imx_wm8962_data *data; | ||
165 | struct imx_priv *priv; | ||
166 | struct clk *codec_clk; | ||
167 | int int_port, ext_port; | ||
168 | int ret; | ||
169 | |||
170 | priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL); | ||
171 | if (!priv) | ||
172 | return -ENOMEM; | ||
173 | |||
174 | priv->pdev = pdev; | ||
175 | priv->sample_rate = 44100; | ||
176 | priv->sample_format = SNDRV_PCM_FORMAT_S16_LE; | ||
177 | |||
178 | ret = of_property_read_u32(np, "mux-int-port", &int_port); | ||
179 | if (ret) { | ||
180 | dev_err(&pdev->dev, "mux-int-port missing or invalid\n"); | ||
181 | return ret; | ||
182 | } | ||
183 | ret = of_property_read_u32(np, "mux-ext-port", &ext_port); | ||
184 | if (ret) { | ||
185 | dev_err(&pdev->dev, "mux-ext-port missing or invalid\n"); | ||
186 | return ret; | ||
187 | } | ||
188 | |||
189 | /* | ||
190 | * The port numbering in the hardware manual starts at 1, while | ||
191 | * the audmux API expects it starts at 0. | ||
192 | */ | ||
193 | int_port--; | ||
194 | ext_port--; | ||
195 | ret = imx_audmux_v2_configure_port(int_port, | ||
196 | IMX_AUDMUX_V2_PTCR_SYN | | ||
197 | IMX_AUDMUX_V2_PTCR_TFSEL(ext_port) | | ||
198 | IMX_AUDMUX_V2_PTCR_TCSEL(ext_port) | | ||
199 | IMX_AUDMUX_V2_PTCR_TFSDIR | | ||
200 | IMX_AUDMUX_V2_PTCR_TCLKDIR, | ||
201 | IMX_AUDMUX_V2_PDCR_RXDSEL(ext_port)); | ||
202 | if (ret) { | ||
203 | dev_err(&pdev->dev, "audmux internal port setup failed\n"); | ||
204 | return ret; | ||
205 | } | ||
206 | ret = imx_audmux_v2_configure_port(ext_port, | ||
207 | IMX_AUDMUX_V2_PTCR_SYN, | ||
208 | IMX_AUDMUX_V2_PDCR_RXDSEL(int_port)); | ||
209 | if (ret) { | ||
210 | dev_err(&pdev->dev, "audmux external port setup failed\n"); | ||
211 | return ret; | ||
212 | } | ||
213 | |||
214 | ssi_np = of_parse_phandle(pdev->dev.of_node, "ssi-controller", 0); | ||
215 | codec_np = of_parse_phandle(pdev->dev.of_node, "audio-codec", 0); | ||
216 | if (!ssi_np || !codec_np) { | ||
217 | dev_err(&pdev->dev, "phandle missing or invalid\n"); | ||
218 | ret = -EINVAL; | ||
219 | goto fail; | ||
220 | } | ||
221 | |||
222 | ssi_pdev = of_find_device_by_node(ssi_np); | ||
223 | if (!ssi_pdev) { | ||
224 | dev_err(&pdev->dev, "failed to find SSI platform device\n"); | ||
225 | ret = -EINVAL; | ||
226 | goto fail; | ||
227 | } | ||
228 | codec_dev = of_find_i2c_device_by_node(codec_np); | ||
229 | if (!codec_dev || !codec_dev->dev.driver) { | ||
230 | dev_err(&pdev->dev, "failed to find codec platform device\n"); | ||
231 | ret = -EINVAL; | ||
232 | goto fail; | ||
233 | } | ||
234 | |||
235 | data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); | ||
236 | if (!data) { | ||
237 | ret = -ENOMEM; | ||
238 | goto fail; | ||
239 | } | ||
240 | |||
241 | codec_clk = clk_get(&codec_dev->dev, NULL); | ||
242 | if (IS_ERR(codec_clk)) { | ||
243 | ret = PTR_ERR(codec_clk); | ||
244 | dev_err(&codec_dev->dev, "failed to get codec clk: %d\n", ret); | ||
245 | goto fail; | ||
246 | } | ||
247 | |||
248 | data->clk_frequency = clk_get_rate(codec_clk); | ||
249 | clk_put(codec_clk); | ||
250 | |||
251 | data->dai.name = "HiFi"; | ||
252 | data->dai.stream_name = "HiFi"; | ||
253 | data->dai.codec_dai_name = "wm8962"; | ||
254 | data->dai.codec_of_node = codec_np; | ||
255 | data->dai.cpu_dai_name = dev_name(&ssi_pdev->dev); | ||
256 | data->dai.platform_of_node = ssi_np; | ||
257 | data->dai.ops = &imx_hifi_ops; | ||
258 | data->dai.dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF | | ||
259 | SND_SOC_DAIFMT_CBM_CFM; | ||
260 | |||
261 | data->card.dev = &pdev->dev; | ||
262 | ret = snd_soc_of_parse_card_name(&data->card, "model"); | ||
263 | if (ret) | ||
264 | goto fail; | ||
265 | ret = snd_soc_of_parse_audio_routing(&data->card, "audio-routing"); | ||
266 | if (ret) | ||
267 | goto fail; | ||
268 | data->card.num_links = 1; | ||
269 | data->card.owner = THIS_MODULE; | ||
270 | data->card.dai_link = &data->dai; | ||
271 | data->card.dapm_widgets = imx_wm8962_dapm_widgets; | ||
272 | data->card.num_dapm_widgets = ARRAY_SIZE(imx_wm8962_dapm_widgets); | ||
273 | |||
274 | data->card.late_probe = imx_wm8962_late_probe; | ||
275 | data->card.set_bias_level = imx_wm8962_set_bias_level; | ||
276 | |||
277 | platform_set_drvdata(pdev, &data->card); | ||
278 | snd_soc_card_set_drvdata(&data->card, data); | ||
279 | |||
280 | ret = devm_snd_soc_register_card(&pdev->dev, &data->card); | ||
281 | if (ret) { | ||
282 | dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret); | ||
283 | goto fail; | ||
284 | } | ||
285 | |||
286 | fail: | ||
287 | of_node_put(ssi_np); | ||
288 | of_node_put(codec_np); | ||
289 | |||
290 | return ret; | ||
291 | } | ||
292 | |||
293 | static const struct of_device_id imx_wm8962_dt_ids[] = { | ||
294 | { .compatible = "fsl,imx-audio-wm8962", }, | ||
295 | { /* sentinel */ } | ||
296 | }; | ||
297 | MODULE_DEVICE_TABLE(of, imx_wm8962_dt_ids); | ||
298 | |||
299 | static struct platform_driver imx_wm8962_driver = { | ||
300 | .driver = { | ||
301 | .name = "imx-wm8962", | ||
302 | .pm = &snd_soc_pm_ops, | ||
303 | .of_match_table = imx_wm8962_dt_ids, | ||
304 | }, | ||
305 | .probe = imx_wm8962_probe, | ||
306 | }; | ||
307 | module_platform_driver(imx_wm8962_driver); | ||
308 | |||
309 | MODULE_AUTHOR("Freescale Semiconductor, Inc."); | ||
310 | MODULE_DESCRIPTION("Freescale i.MX WM8962 ASoC machine driver"); | ||
311 | MODULE_LICENSE("GPL v2"); | ||
312 | MODULE_ALIAS("platform:imx-wm8962"); | ||