1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/sound/pxa2xx-ac97.c -- AC97 support for the Intel PXA2xx chip.
5 * Author: Nicolas Pitre
6 * Created: Dec 02, 2004
7 * Copyright: MontaVista Software Inc.
10 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/dmaengine.h>
15 #include <linux/dma/pxa-dma.h>
17 #include <sound/ac97/controller.h>
18 #include <sound/core.h>
19 #include <sound/ac97_codec.h>
20 #include <sound/soc.h>
21 #include <sound/pxa2xx-lib.h>
22 #include <sound/dmaengine_pcm.h>
24 #include <mach/hardware.h>
25 #include <mach/regs-ac97.h>
26 #include <mach/audio.h>
28 static void pxa2xx_ac97_warm_reset(struct ac97_controller
*adrv
)
30 pxa2xx_ac97_try_warm_reset();
32 pxa2xx_ac97_finish_reset();
35 static void pxa2xx_ac97_cold_reset(struct ac97_controller
*adrv
)
37 pxa2xx_ac97_try_cold_reset();
39 pxa2xx_ac97_finish_reset();
42 static int pxa2xx_ac97_read_actrl(struct ac97_controller
*adrv
, int slot
,
45 return pxa2xx_ac97_read(slot
, reg
);
48 static int pxa2xx_ac97_write_actrl(struct ac97_controller
*adrv
, int slot
,
49 unsigned short reg
, unsigned short val
)
51 return pxa2xx_ac97_write(slot
, reg
, val
);
54 static struct ac97_controller_ops pxa2xx_ac97_ops
= {
55 .read
= pxa2xx_ac97_read_actrl
,
56 .write
= pxa2xx_ac97_write_actrl
,
57 .warm_reset
= pxa2xx_ac97_warm_reset
,
58 .reset
= pxa2xx_ac97_cold_reset
,
61 static struct snd_dmaengine_dai_dma_data pxa2xx_ac97_pcm_stereo_in
= {
63 .addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
,
64 .chan_name
= "pcm_pcm_stereo_in",
68 static struct snd_dmaengine_dai_dma_data pxa2xx_ac97_pcm_stereo_out
= {
70 .addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
,
71 .chan_name
= "pcm_pcm_stereo_out",
75 static struct snd_dmaengine_dai_dma_data pxa2xx_ac97_pcm_aux_mono_out
= {
77 .addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
,
78 .chan_name
= "pcm_aux_mono_out",
82 static struct snd_dmaengine_dai_dma_data pxa2xx_ac97_pcm_aux_mono_in
= {
84 .addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
,
85 .chan_name
= "pcm_aux_mono_in",
89 static struct snd_dmaengine_dai_dma_data pxa2xx_ac97_pcm_mic_mono_in
= {
91 .addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
,
92 .chan_name
= "pcm_aux_mic_mono",
96 static int pxa2xx_ac97_hifi_startup(struct snd_pcm_substream
*substream
,
97 struct snd_soc_dai
*cpu_dai
)
99 struct snd_dmaengine_dai_dma_data
*dma_data
;
101 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
102 dma_data
= &pxa2xx_ac97_pcm_stereo_out
;
104 dma_data
= &pxa2xx_ac97_pcm_stereo_in
;
106 snd_soc_dai_set_dma_data(cpu_dai
, substream
, dma_data
);
111 static int pxa2xx_ac97_aux_startup(struct snd_pcm_substream
*substream
,
112 struct snd_soc_dai
*cpu_dai
)
114 struct snd_dmaengine_dai_dma_data
*dma_data
;
116 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
117 dma_data
= &pxa2xx_ac97_pcm_aux_mono_out
;
119 dma_data
= &pxa2xx_ac97_pcm_aux_mono_in
;
121 snd_soc_dai_set_dma_data(cpu_dai
, substream
, dma_data
);
126 static int pxa2xx_ac97_mic_startup(struct snd_pcm_substream
*substream
,
127 struct snd_soc_dai
*cpu_dai
)
129 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
131 snd_soc_dai_set_dma_data(cpu_dai
, substream
,
132 &pxa2xx_ac97_pcm_mic_mono_in
);
137 #define PXA2XX_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
138 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
139 SNDRV_PCM_RATE_48000)
141 static const struct snd_soc_dai_ops pxa_ac97_hifi_dai_ops
= {
142 .startup
= pxa2xx_ac97_hifi_startup
,
145 static const struct snd_soc_dai_ops pxa_ac97_aux_dai_ops
= {
146 .startup
= pxa2xx_ac97_aux_startup
,
149 static const struct snd_soc_dai_ops pxa_ac97_mic_dai_ops
= {
150 .startup
= pxa2xx_ac97_mic_startup
,
154 * There is only 1 physical AC97 interface for pxa2xx, but it
155 * has extra fifo's that can be used for aux DACs and ADCs.
157 static struct snd_soc_dai_driver pxa_ac97_dai_driver
[] = {
159 .name
= "pxa2xx-ac97",
162 .stream_name
= "AC97 Playback",
165 .rates
= PXA2XX_AC97_RATES
,
166 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
168 .stream_name
= "AC97 Capture",
171 .rates
= PXA2XX_AC97_RATES
,
172 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
173 .ops
= &pxa_ac97_hifi_dai_ops
,
176 .name
= "pxa2xx-ac97-aux",
179 .stream_name
= "AC97 Aux Playback",
182 .rates
= PXA2XX_AC97_RATES
,
183 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
185 .stream_name
= "AC97 Aux Capture",
188 .rates
= PXA2XX_AC97_RATES
,
189 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
190 .ops
= &pxa_ac97_aux_dai_ops
,
193 .name
= "pxa2xx-ac97-mic",
196 .stream_name
= "AC97 Mic Capture",
199 .rates
= PXA2XX_AC97_RATES
,
200 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,},
201 .ops
= &pxa_ac97_mic_dai_ops
,
205 static const struct snd_soc_component_driver pxa_ac97_component
= {
207 .ops
= &pxa2xx_pcm_ops
,
208 .pcm_new
= pxa2xx_soc_pcm_new
,
209 .pcm_free
= pxa2xx_pcm_free_dma_buffers
,
213 static const struct of_device_id pxa2xx_ac97_dt_ids
[] = {
214 { .compatible
= "marvell,pxa250-ac97", },
215 { .compatible
= "marvell,pxa270-ac97", },
216 { .compatible
= "marvell,pxa300-ac97", },
219 MODULE_DEVICE_TABLE(of
, pxa2xx_ac97_dt_ids
);
223 static int pxa2xx_ac97_dev_probe(struct platform_device
*pdev
)
226 struct ac97_controller
*ctrl
;
227 pxa2xx_audio_ops_t
*pdata
= pdev
->dev
.platform_data
;
230 if (pdev
->id
!= -1) {
231 dev_err(&pdev
->dev
, "PXA2xx has only one AC97 port.\n");
235 ret
= pxa2xx_ac97_hw_probe(pdev
);
237 dev_err(&pdev
->dev
, "PXA2xx AC97 hw probe error (%d)\n", ret
);
241 codecs_pdata
= pdata
? pdata
->codec_pdata
: NULL
;
242 ctrl
= snd_ac97_controller_register(&pxa2xx_ac97_ops
, &pdev
->dev
,
243 AC97_SLOTS_AVAILABLE_ALL
,
246 return PTR_ERR(ctrl
);
248 platform_set_drvdata(pdev
, ctrl
);
249 /* Punt most of the init to the SoC probe; we may need the machine
250 * driver to do interesting things with the clocking to get us up
253 return devm_snd_soc_register_component(&pdev
->dev
, &pxa_ac97_component
,
254 pxa_ac97_dai_driver
, ARRAY_SIZE(pxa_ac97_dai_driver
));
257 static int pxa2xx_ac97_dev_remove(struct platform_device
*pdev
)
259 struct ac97_controller
*ctrl
= platform_get_drvdata(pdev
);
261 snd_ac97_controller_unregister(ctrl
);
262 pxa2xx_ac97_hw_remove(pdev
);
266 #ifdef CONFIG_PM_SLEEP
267 static int pxa2xx_ac97_dev_suspend(struct device
*dev
)
269 return pxa2xx_ac97_hw_suspend();
272 static int pxa2xx_ac97_dev_resume(struct device
*dev
)
274 return pxa2xx_ac97_hw_resume();
277 static SIMPLE_DEV_PM_OPS(pxa2xx_ac97_pm_ops
,
278 pxa2xx_ac97_dev_suspend
, pxa2xx_ac97_dev_resume
);
281 static struct platform_driver pxa2xx_ac97_driver
= {
282 .probe
= pxa2xx_ac97_dev_probe
,
283 .remove
= pxa2xx_ac97_dev_remove
,
285 .name
= "pxa2xx-ac97",
286 #ifdef CONFIG_PM_SLEEP
287 .pm
= &pxa2xx_ac97_pm_ops
,
289 .of_match_table
= of_match_ptr(pxa2xx_ac97_dt_ids
),
293 module_platform_driver(pxa2xx_ac97_driver
);
295 MODULE_AUTHOR("Nicolas Pitre");
296 MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
297 MODULE_LICENSE("GPL");
298 MODULE_ALIAS("platform:pxa2xx-ac97");