1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012-2013, Analog Devices Inc.
4 * Author: Lars-Peter Clausen <lars@metafoo.de>
8 #include <linux/init.h>
9 #include <linux/kernel.h>
10 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/regmap.h>
14 #include <linux/slab.h>
16 #include <sound/core.h>
17 #include <sound/pcm.h>
18 #include <sound/pcm_params.h>
19 #include <sound/soc.h>
20 #include <sound/dmaengine_pcm.h>
22 #define AXI_I2S_REG_RESET 0x00
23 #define AXI_I2S_REG_CTRL 0x04
24 #define AXI_I2S_REG_CLK_CTRL 0x08
25 #define AXI_I2S_REG_STATUS 0x10
27 #define AXI_I2S_REG_RX_FIFO 0x28
28 #define AXI_I2S_REG_TX_FIFO 0x2C
30 #define AXI_I2S_RESET_GLOBAL BIT(0)
31 #define AXI_I2S_RESET_TX_FIFO BIT(1)
32 #define AXI_I2S_RESET_RX_FIFO BIT(2)
34 #define AXI_I2S_CTRL_TX_EN BIT(0)
35 #define AXI_I2S_CTRL_RX_EN BIT(1)
37 /* The frame size is configurable, but for now we always set it 64 bit */
38 #define AXI_I2S_BITS_PER_FRAME 64
41 struct regmap
*regmap
;
48 struct snd_soc_dai_driver dai_driver
;
50 struct snd_dmaengine_dai_dma_data capture_dma_data
;
51 struct snd_dmaengine_dai_dma_data playback_dma_data
;
53 struct snd_ratnum ratnum
;
54 struct snd_pcm_hw_constraint_ratnums rate_constraints
;
57 static int axi_i2s_trigger(struct snd_pcm_substream
*substream
, int cmd
,
58 struct snd_soc_dai
*dai
)
60 struct axi_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
61 unsigned int mask
, val
;
63 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
64 mask
= AXI_I2S_CTRL_RX_EN
;
66 mask
= AXI_I2S_CTRL_TX_EN
;
69 case SNDRV_PCM_TRIGGER_START
:
70 case SNDRV_PCM_TRIGGER_RESUME
:
71 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
74 case SNDRV_PCM_TRIGGER_STOP
:
75 case SNDRV_PCM_TRIGGER_SUSPEND
:
76 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
83 regmap_update_bits(i2s
->regmap
, AXI_I2S_REG_CTRL
, mask
, val
);
88 static int axi_i2s_hw_params(struct snd_pcm_substream
*substream
,
89 struct snd_pcm_hw_params
*params
, struct snd_soc_dai
*dai
)
91 struct axi_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
92 unsigned int bclk_div
, word_size
;
93 unsigned int bclk_rate
;
95 bclk_rate
= params_rate(params
) * AXI_I2S_BITS_PER_FRAME
;
97 word_size
= AXI_I2S_BITS_PER_FRAME
/ 2 - 1;
98 bclk_div
= DIV_ROUND_UP(clk_get_rate(i2s
->clk_ref
), bclk_rate
) / 2 - 1;
100 regmap_write(i2s
->regmap
, AXI_I2S_REG_CLK_CTRL
, (word_size
<< 16) |
106 static int axi_i2s_startup(struct snd_pcm_substream
*substream
,
107 struct snd_soc_dai
*dai
)
109 struct axi_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
113 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
114 mask
= AXI_I2S_RESET_RX_FIFO
;
116 mask
= AXI_I2S_RESET_TX_FIFO
;
118 regmap_write(i2s
->regmap
, AXI_I2S_REG_RESET
, mask
);
120 ret
= snd_pcm_hw_constraint_ratnums(substream
->runtime
, 0,
121 SNDRV_PCM_HW_PARAM_RATE
,
122 &i2s
->rate_constraints
);
126 return clk_prepare_enable(i2s
->clk_ref
);
129 static void axi_i2s_shutdown(struct snd_pcm_substream
*substream
,
130 struct snd_soc_dai
*dai
)
132 struct axi_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
134 clk_disable_unprepare(i2s
->clk_ref
);
137 static int axi_i2s_dai_probe(struct snd_soc_dai
*dai
)
139 struct axi_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
141 snd_soc_dai_init_dma_data(
143 i2s
->has_playback
? &i2s
->playback_dma_data
: NULL
,
144 i2s
->has_capture
? &i2s
->capture_dma_data
: NULL
);
149 static const struct snd_soc_dai_ops axi_i2s_dai_ops
= {
150 .startup
= axi_i2s_startup
,
151 .shutdown
= axi_i2s_shutdown
,
152 .trigger
= axi_i2s_trigger
,
153 .hw_params
= axi_i2s_hw_params
,
156 static struct snd_soc_dai_driver axi_i2s_dai
= {
157 .probe
= axi_i2s_dai_probe
,
158 .ops
= &axi_i2s_dai_ops
,
159 .symmetric_rates
= 1,
162 static const struct snd_soc_component_driver axi_i2s_component
= {
166 static const struct regmap_config axi_i2s_regmap_config
= {
170 .max_register
= AXI_I2S_REG_STATUS
,
173 static void axi_i2s_parse_of(struct axi_i2s
*i2s
, const struct device_node
*np
)
175 struct property
*dma_names
;
176 const char *dma_name
;
178 of_property_for_each_string(np
, "dma-names", dma_names
, dma_name
) {
179 if (strcmp(dma_name
, "rx") == 0)
180 i2s
->has_capture
= true;
181 if (strcmp(dma_name
, "tx") == 0)
182 i2s
->has_playback
= true;
186 static int axi_i2s_probe(struct platform_device
*pdev
)
188 struct resource
*res
;
193 i2s
= devm_kzalloc(&pdev
->dev
, sizeof(*i2s
), GFP_KERNEL
);
197 platform_set_drvdata(pdev
, i2s
);
199 axi_i2s_parse_of(i2s
, pdev
->dev
.of_node
);
201 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
202 base
= devm_ioremap_resource(&pdev
->dev
, res
);
204 return PTR_ERR(base
);
206 i2s
->regmap
= devm_regmap_init_mmio(&pdev
->dev
, base
,
207 &axi_i2s_regmap_config
);
208 if (IS_ERR(i2s
->regmap
))
209 return PTR_ERR(i2s
->regmap
);
211 i2s
->clk
= devm_clk_get(&pdev
->dev
, "axi");
212 if (IS_ERR(i2s
->clk
))
213 return PTR_ERR(i2s
->clk
);
215 i2s
->clk_ref
= devm_clk_get(&pdev
->dev
, "ref");
216 if (IS_ERR(i2s
->clk_ref
))
217 return PTR_ERR(i2s
->clk_ref
);
219 ret
= clk_prepare_enable(i2s
->clk
);
223 if (i2s
->has_playback
) {
224 axi_i2s_dai
.playback
.channels_min
= 2;
225 axi_i2s_dai
.playback
.channels_max
= 2;
226 axi_i2s_dai
.playback
.rates
= SNDRV_PCM_RATE_KNOT
;
227 axi_i2s_dai
.playback
.formats
=
228 SNDRV_PCM_FMTBIT_S32_LE
| SNDRV_PCM_FMTBIT_U32_LE
;
230 i2s
->playback_dma_data
.addr
= res
->start
+ AXI_I2S_REG_TX_FIFO
;
231 i2s
->playback_dma_data
.addr_width
= 4;
232 i2s
->playback_dma_data
.maxburst
= 1;
235 if (i2s
->has_capture
) {
236 axi_i2s_dai
.capture
.channels_min
= 2;
237 axi_i2s_dai
.capture
.channels_max
= 2;
238 axi_i2s_dai
.capture
.rates
= SNDRV_PCM_RATE_KNOT
;
239 axi_i2s_dai
.capture
.formats
=
240 SNDRV_PCM_FMTBIT_S32_LE
| SNDRV_PCM_FMTBIT_U32_LE
;
242 i2s
->capture_dma_data
.addr
= res
->start
+ AXI_I2S_REG_RX_FIFO
;
243 i2s
->capture_dma_data
.addr_width
= 4;
244 i2s
->capture_dma_data
.maxburst
= 1;
247 i2s
->ratnum
.num
= clk_get_rate(i2s
->clk_ref
) / 2 / AXI_I2S_BITS_PER_FRAME
;
248 i2s
->ratnum
.den_step
= 1;
249 i2s
->ratnum
.den_min
= 1;
250 i2s
->ratnum
.den_max
= 64;
252 i2s
->rate_constraints
.rats
= &i2s
->ratnum
;
253 i2s
->rate_constraints
.nrats
= 1;
255 regmap_write(i2s
->regmap
, AXI_I2S_REG_RESET
, AXI_I2S_RESET_GLOBAL
);
257 ret
= devm_snd_soc_register_component(&pdev
->dev
, &axi_i2s_component
,
260 goto err_clk_disable
;
262 ret
= devm_snd_dmaengine_pcm_register(&pdev
->dev
, NULL
, 0);
264 goto err_clk_disable
;
266 dev_info(&pdev
->dev
, "probed, capture %s, playback %s\n",
267 i2s
->has_capture
? "enabled" : "disabled",
268 i2s
->has_playback
? "enabled" : "disabled");
273 clk_disable_unprepare(i2s
->clk
);
277 static int axi_i2s_dev_remove(struct platform_device
*pdev
)
279 struct axi_i2s
*i2s
= platform_get_drvdata(pdev
);
281 clk_disable_unprepare(i2s
->clk
);
286 static const struct of_device_id axi_i2s_of_match
[] = {
287 { .compatible
= "adi,axi-i2s-1.00.a", },
290 MODULE_DEVICE_TABLE(of
, axi_i2s_of_match
);
292 static struct platform_driver axi_i2s_driver
= {
295 .of_match_table
= axi_i2s_of_match
,
297 .probe
= axi_i2s_probe
,
298 .remove
= axi_i2s_dev_remove
,
300 module_platform_driver(axi_i2s_driver
);
302 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
303 MODULE_DESCRIPTION("AXI I2S driver");
304 MODULE_LICENSE("GPL");