Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * STM32 ALSA SoC Digital Audio Interface (SAI) driver.
  4 *
  5 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
  6 * Author(s): Olivier Moysan <olivier.moysan@st.com> for STMicroelectronics.
 
 
 
 
 
 
 
 
 
 
 
  7 */
  8
  9#include <linux/bitfield.h>
 10#include <linux/clk.h>
 11#include <linux/delay.h>
 12#include <linux/module.h>
 13#include <linux/of_platform.h>
 14#include <linux/pinctrl/consumer.h>
 15#include <linux/reset.h>
 16
 17#include <sound/dmaengine_pcm.h>
 18#include <sound/core.h>
 19
 20#include "stm32_sai.h"
 21
 22static const struct stm32_sai_conf stm32_sai_conf_f4 = {
 23	.version = STM_SAI_STM32F4,
 24	.fifo_size = 8,
 25	.has_spdif_pdm = false,
 26};
 27
 28/*
 29 * Default settings for stm32 H7 socs and next.
 30 * These default settings will be overridden if the soc provides
 31 * support of hardware configuration registers.
 32 */
 33static const struct stm32_sai_conf stm32_sai_conf_h7 = {
 34	.version = STM_SAI_STM32H7,
 35	.fifo_size = 8,
 36	.has_spdif_pdm = true,
 37};
 38
 39static const struct of_device_id stm32_sai_ids[] = {
 40	{ .compatible = "st,stm32f4-sai", .data = (void *)&stm32_sai_conf_f4 },
 41	{ .compatible = "st,stm32h7-sai", .data = (void *)&stm32_sai_conf_h7 },
 42	{}
 43};
 44
 45static int stm32_sai_pclk_disable(struct device *dev)
 46{
 47	struct stm32_sai_data *sai = dev_get_drvdata(dev);
 48
 49	clk_disable_unprepare(sai->pclk);
 50
 51	return 0;
 52}
 53
 54static int stm32_sai_pclk_enable(struct device *dev)
 55{
 56	struct stm32_sai_data *sai = dev_get_drvdata(dev);
 57	int ret;
 58
 
 59	ret = clk_prepare_enable(sai->pclk);
 60	if (ret) {
 61		dev_err(&sai->pdev->dev, "failed to enable clock: %d\n", ret);
 62		return ret;
 63	}
 64
 65	return 0;
 66}
 67
 68static int stm32_sai_sync_conf_client(struct stm32_sai_data *sai, int synci)
 69{
 70	int ret;
 71
 72	/* Enable peripheral clock to allow GCR register access */
 73	ret = stm32_sai_pclk_enable(&sai->pdev->dev);
 74	if (ret)
 75		return ret;
 76
 77	writel_relaxed(FIELD_PREP(SAI_GCR_SYNCIN_MASK, (synci - 1)), sai->base);
 78
 79	stm32_sai_pclk_disable(&sai->pdev->dev);
 80
 81	return 0;
 82}
 83
 84static int stm32_sai_sync_conf_provider(struct stm32_sai_data *sai, int synco)
 85{
 86	u32 prev_synco;
 87	int ret;
 88
 89	/* Enable peripheral clock to allow GCR register access */
 90	ret = stm32_sai_pclk_enable(&sai->pdev->dev);
 91	if (ret)
 
 92		return ret;
 
 93
 94	dev_dbg(&sai->pdev->dev, "Set %pOFn%s as synchro provider\n",
 95		sai->pdev->dev.of_node,
 96		synco == STM_SAI_SYNC_OUT_A ? "A" : "B");
 97
 98	prev_synco = FIELD_GET(SAI_GCR_SYNCOUT_MASK, readl_relaxed(sai->base));
 99	if (prev_synco != STM_SAI_SYNC_OUT_NONE && synco != prev_synco) {
100		dev_err(&sai->pdev->dev, "%pOFn%s already set as sync provider\n",
101			sai->pdev->dev.of_node,
102			prev_synco == STM_SAI_SYNC_OUT_A ? "A" : "B");
103		stm32_sai_pclk_disable(&sai->pdev->dev);
104		return -EINVAL;
105	}
106
107	writel_relaxed(FIELD_PREP(SAI_GCR_SYNCOUT_MASK, synco), sai->base);
108
109	stm32_sai_pclk_disable(&sai->pdev->dev);
110
111	return 0;
112}
113
114static int stm32_sai_set_sync(struct stm32_sai_data *sai_client,
115			      struct device_node *np_provider,
116			      int synco, int synci)
117{
118	struct platform_device *pdev = of_find_device_by_node(np_provider);
119	struct stm32_sai_data *sai_provider;
120	int ret;
121
122	if (!pdev) {
123		dev_err(&sai_client->pdev->dev,
124			"Device not found for node %pOFn\n", np_provider);
125		of_node_put(np_provider);
126		return -ENODEV;
127	}
128
129	sai_provider = platform_get_drvdata(pdev);
130	if (!sai_provider) {
131		dev_err(&sai_client->pdev->dev,
132			"SAI sync provider data not found\n");
133		ret = -EINVAL;
134		goto error;
135	}
136
137	/* Configure sync client */
138	ret = stm32_sai_sync_conf_client(sai_client, synci);
139	if (ret < 0)
140		goto error;
141
142	/* Configure sync provider */
143	ret = stm32_sai_sync_conf_provider(sai_provider, synco);
144
145error:
146	put_device(&pdev->dev);
147	of_node_put(np_provider);
148	return ret;
149}
150
151static int stm32_sai_probe(struct platform_device *pdev)
152{
153	struct stm32_sai_data *sai;
154	struct reset_control *rst;
 
155	const struct of_device_id *of_id;
156	u32 val;
157	int ret;
158
159	sai = devm_kzalloc(&pdev->dev, sizeof(*sai), GFP_KERNEL);
160	if (!sai)
161		return -ENOMEM;
162
163	sai->base = devm_platform_ioremap_resource(pdev, 0);
 
164	if (IS_ERR(sai->base))
165		return PTR_ERR(sai->base);
166
167	of_id = of_match_device(stm32_sai_ids, &pdev->dev);
168	if (of_id)
169		memcpy(&sai->conf, (const struct stm32_sai_conf *)of_id->data,
170		       sizeof(struct stm32_sai_conf));
171	else
172		return -EINVAL;
173
174	if (!STM_SAI_IS_F4(sai)) {
175		sai->pclk = devm_clk_get(&pdev->dev, "pclk");
176		if (IS_ERR(sai->pclk))
177			return dev_err_probe(&pdev->dev, PTR_ERR(sai->pclk),
178					     "missing bus clock pclk\n");
 
179	}
180
181	sai->clk_x8k = devm_clk_get(&pdev->dev, "x8k");
182	if (IS_ERR(sai->clk_x8k))
183		return dev_err_probe(&pdev->dev, PTR_ERR(sai->clk_x8k),
184				     "missing x8k parent clock\n");
 
185
186	sai->clk_x11k = devm_clk_get(&pdev->dev, "x11k");
187	if (IS_ERR(sai->clk_x11k))
188		return dev_err_probe(&pdev->dev, PTR_ERR(sai->clk_x11k),
189				     "missing x11k parent clock\n");
 
190
191	/* init irqs */
192	sai->irq = platform_get_irq(pdev, 0);
193	if (sai->irq < 0)
 
194		return sai->irq;
195
196	/* reset */
197	rst = devm_reset_control_get_optional_exclusive(&pdev->dev, NULL);
198	if (IS_ERR(rst))
199		return dev_err_probe(&pdev->dev, PTR_ERR(rst),
200				     "Reset controller error\n");
201
202	reset_control_assert(rst);
203	udelay(2);
204	reset_control_deassert(rst);
205
206	/* Enable peripheral clock to allow register access */
207	ret = clk_prepare_enable(sai->pclk);
208	if (ret) {
209		dev_err(&pdev->dev, "failed to enable clock: %d\n", ret);
210		return ret;
211	}
212
213	val = FIELD_GET(SAI_IDR_ID_MASK,
214			readl_relaxed(sai->base + STM_SAI_IDR));
215	if (val == SAI_IPIDR_NUMBER) {
216		val = readl_relaxed(sai->base + STM_SAI_HWCFGR);
217		sai->conf.fifo_size = FIELD_GET(SAI_HWCFGR_FIFO_SIZE, val);
218		sai->conf.has_spdif_pdm = !!FIELD_GET(SAI_HWCFGR_SPDIF_PDM,
219						      val);
220
221		val = readl_relaxed(sai->base + STM_SAI_VERR);
222		sai->conf.version = val;
223
224		dev_dbg(&pdev->dev, "SAI version: %lu.%lu registered\n",
225			FIELD_GET(SAI_VERR_MAJ_MASK, val),
226			FIELD_GET(SAI_VERR_MIN_MASK, val));
227	}
228	clk_disable_unprepare(sai->pclk);
229
230	sai->pdev = pdev;
231	sai->set_sync = &stm32_sai_set_sync;
232	platform_set_drvdata(pdev, sai);
233
234	return devm_of_platform_populate(&pdev->dev);
235}
236
237#ifdef CONFIG_PM_SLEEP
238/*
239 * When pins are shared by two sai sub instances, pins have to be defined
240 * in sai parent node. In this case, pins state is not managed by alsa fw.
241 * These pins are managed in suspend/resume callbacks.
242 */
243static int stm32_sai_suspend(struct device *dev)
244{
245	struct stm32_sai_data *sai = dev_get_drvdata(dev);
246	int ret;
247
248	ret = stm32_sai_pclk_enable(dev);
249	if (ret)
250		return ret;
251
252	sai->gcr = readl_relaxed(sai->base);
253	stm32_sai_pclk_disable(dev);
254
255	return pinctrl_pm_select_sleep_state(dev);
256}
257
258static int stm32_sai_resume(struct device *dev)
259{
260	struct stm32_sai_data *sai = dev_get_drvdata(dev);
261	int ret;
262
263	ret = stm32_sai_pclk_enable(dev);
264	if (ret)
265		return ret;
266
267	writel_relaxed(sai->gcr, sai->base);
268	stm32_sai_pclk_disable(dev);
269
270	return pinctrl_pm_select_default_state(dev);
271}
272#endif /* CONFIG_PM_SLEEP */
273
274static const struct dev_pm_ops stm32_sai_pm_ops = {
275	SET_SYSTEM_SLEEP_PM_OPS(stm32_sai_suspend, stm32_sai_resume)
276};
277
278MODULE_DEVICE_TABLE(of, stm32_sai_ids);
279
280static struct platform_driver stm32_sai_driver = {
281	.driver = {
282		.name = "st,stm32-sai",
283		.of_match_table = stm32_sai_ids,
284		.pm = &stm32_sai_pm_ops,
285	},
286	.probe = stm32_sai_probe,
287};
288
289module_platform_driver(stm32_sai_driver);
290
291MODULE_DESCRIPTION("STM32 Soc SAI Interface");
292MODULE_AUTHOR("Olivier Moysan <olivier.moysan@st.com>");
293MODULE_ALIAS("platform:st,stm32-sai");
294MODULE_LICENSE("GPL v2");
v4.17
 
  1/*
  2 * STM32 ALSA SoC Digital Audio Interface (SAI) driver.
  3 *
  4 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
  5 * Author(s): Olivier Moysan <olivier.moysan@st.com> for STMicroelectronics.
  6 *
  7 * License terms: GPL V2.0.
  8 *
  9 * This program is free software; you can redistribute it and/or modify it
 10 * under the terms of the GNU General Public License version 2 as published by
 11 * the Free Software Foundation.
 12 *
 13 * This program is distributed in the hope that it will be useful, but
 14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 16 * details.
 17 */
 18
 19#include <linux/bitfield.h>
 20#include <linux/clk.h>
 21#include <linux/delay.h>
 22#include <linux/module.h>
 23#include <linux/of_platform.h>
 
 24#include <linux/reset.h>
 25
 26#include <sound/dmaengine_pcm.h>
 27#include <sound/core.h>
 28
 29#include "stm32_sai.h"
 30
 31static const struct stm32_sai_conf stm32_sai_conf_f4 = {
 32	.version = SAI_STM32F4,
 33	.has_spdif = false,
 
 34};
 35
 
 
 
 
 
 36static const struct stm32_sai_conf stm32_sai_conf_h7 = {
 37	.version = SAI_STM32H7,
 38	.has_spdif = true,
 
 39};
 40
 41static const struct of_device_id stm32_sai_ids[] = {
 42	{ .compatible = "st,stm32f4-sai", .data = (void *)&stm32_sai_conf_f4 },
 43	{ .compatible = "st,stm32h7-sai", .data = (void *)&stm32_sai_conf_h7 },
 44	{}
 45};
 46
 47static int stm32_sai_sync_conf_client(struct stm32_sai_data *sai, int synci)
 
 
 
 
 
 
 
 
 
 48{
 
 49	int ret;
 50
 51	/* Enable peripheral clock to allow GCR register access */
 52	ret = clk_prepare_enable(sai->pclk);
 53	if (ret) {
 54		dev_err(&sai->pdev->dev, "failed to enable clock: %d\n", ret);
 55		return ret;
 56	}
 57
 
 
 
 
 
 
 
 
 
 
 
 
 58	writel_relaxed(FIELD_PREP(SAI_GCR_SYNCIN_MASK, (synci - 1)), sai->base);
 59
 60	clk_disable_unprepare(sai->pclk);
 61
 62	return 0;
 63}
 64
 65static int stm32_sai_sync_conf_provider(struct stm32_sai_data *sai, int synco)
 66{
 67	u32 prev_synco;
 68	int ret;
 69
 70	/* Enable peripheral clock to allow GCR register access */
 71	ret = clk_prepare_enable(sai->pclk);
 72	if (ret) {
 73		dev_err(&sai->pdev->dev, "failed to enable clock: %d\n", ret);
 74		return ret;
 75	}
 76
 77	dev_dbg(&sai->pdev->dev, "Set %s%s as synchro provider\n",
 78		sai->pdev->dev.of_node->name,
 79		synco == STM_SAI_SYNC_OUT_A ? "A" : "B");
 80
 81	prev_synco = FIELD_GET(SAI_GCR_SYNCOUT_MASK, readl_relaxed(sai->base));
 82	if (prev_synco != STM_SAI_SYNC_OUT_NONE && synco != prev_synco) {
 83		dev_err(&sai->pdev->dev, "%s%s already set as sync provider\n",
 84			sai->pdev->dev.of_node->name,
 85			prev_synco == STM_SAI_SYNC_OUT_A ? "A" : "B");
 86		clk_disable_unprepare(sai->pclk);
 87		return -EINVAL;
 88	}
 89
 90	writel_relaxed(FIELD_PREP(SAI_GCR_SYNCOUT_MASK, synco), sai->base);
 91
 92	clk_disable_unprepare(sai->pclk);
 93
 94	return 0;
 95}
 96
 97static int stm32_sai_set_sync(struct stm32_sai_data *sai_client,
 98			      struct device_node *np_provider,
 99			      int synco, int synci)
100{
101	struct platform_device *pdev = of_find_device_by_node(np_provider);
102	struct stm32_sai_data *sai_provider;
103	int ret;
104
105	if (!pdev) {
106		dev_err(&sai_client->pdev->dev,
107			"Device not found for node %s\n", np_provider->name);
 
108		return -ENODEV;
109	}
110
111	sai_provider = platform_get_drvdata(pdev);
112	if (!sai_provider) {
113		dev_err(&sai_client->pdev->dev,
114			"SAI sync provider data not found\n");
115		return -EINVAL;
 
116	}
117
118	/* Configure sync client */
119	ret = stm32_sai_sync_conf_client(sai_client, synci);
120	if (ret < 0)
121		return ret;
122
123	/* Configure sync provider */
124	return stm32_sai_sync_conf_provider(sai_provider, synco);
 
 
 
 
 
125}
126
127static int stm32_sai_probe(struct platform_device *pdev)
128{
129	struct stm32_sai_data *sai;
130	struct reset_control *rst;
131	struct resource *res;
132	const struct of_device_id *of_id;
 
 
133
134	sai = devm_kzalloc(&pdev->dev, sizeof(*sai), GFP_KERNEL);
135	if (!sai)
136		return -ENOMEM;
137
138	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
139	sai->base = devm_ioremap_resource(&pdev->dev, res);
140	if (IS_ERR(sai->base))
141		return PTR_ERR(sai->base);
142
143	of_id = of_match_device(stm32_sai_ids, &pdev->dev);
144	if (of_id)
145		sai->conf = (struct stm32_sai_conf *)of_id->data;
 
146	else
147		return -EINVAL;
148
149	if (!STM_SAI_IS_F4(sai)) {
150		sai->pclk = devm_clk_get(&pdev->dev, "pclk");
151		if (IS_ERR(sai->pclk)) {
152			dev_err(&pdev->dev, "missing bus clock pclk\n");
153			return PTR_ERR(sai->pclk);
154		}
155	}
156
157	sai->clk_x8k = devm_clk_get(&pdev->dev, "x8k");
158	if (IS_ERR(sai->clk_x8k)) {
159		dev_err(&pdev->dev, "missing x8k parent clock\n");
160		return PTR_ERR(sai->clk_x8k);
161	}
162
163	sai->clk_x11k = devm_clk_get(&pdev->dev, "x11k");
164	if (IS_ERR(sai->clk_x11k)) {
165		dev_err(&pdev->dev, "missing x11k parent clock\n");
166		return PTR_ERR(sai->clk_x11k);
167	}
168
169	/* init irqs */
170	sai->irq = platform_get_irq(pdev, 0);
171	if (sai->irq < 0) {
172		dev_err(&pdev->dev, "no irq for node %s\n", pdev->name);
173		return sai->irq;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174	}
175
176	/* reset */
177	rst = devm_reset_control_get_exclusive(&pdev->dev, NULL);
178	if (!IS_ERR(rst)) {
179		reset_control_assert(rst);
180		udelay(2);
181		reset_control_deassert(rst);
 
 
 
 
 
 
 
 
182	}
 
183
184	sai->pdev = pdev;
185	sai->set_sync = &stm32_sai_set_sync;
186	platform_set_drvdata(pdev, sai);
187
188	return devm_of_platform_populate(&pdev->dev);
189}
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191MODULE_DEVICE_TABLE(of, stm32_sai_ids);
192
193static struct platform_driver stm32_sai_driver = {
194	.driver = {
195		.name = "st,stm32-sai",
196		.of_match_table = stm32_sai_ids,
 
197	},
198	.probe = stm32_sai_probe,
199};
200
201module_platform_driver(stm32_sai_driver);
202
203MODULE_DESCRIPTION("STM32 Soc SAI Interface");
204MODULE_AUTHOR("Olivier Moysan <olivier.moysan@st.com>");
205MODULE_ALIAS("platform:st,stm32-sai");
206MODULE_LICENSE("GPL v2");