blob: 49a2810ca58c70f4174d9da5eee246c498c99908 [file] [log] [blame]
Liam Girdwood75b41022006-10-12 14:29:03 +02001/*
2 * linux/sound/pxa2xx-ac97.c -- AC97 support for the Intel PXA2xx chip.
3 *
4 * Author: Nicolas Pitre
5 * Created: Dec 02, 2004
6 * Copyright: MontaVista Software Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/init.h>
14#include <linux/module.h>
15#include <linux/platform_device.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020016
Liam Girdwood75b41022006-10-12 14:29:03 +020017#include <sound/core.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020018#include <sound/ac97_codec.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020019#include <sound/soc.h>
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040020#include <sound/pxa2xx-lib.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020021
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/hardware.h>
23#include <mach/pxa-regs.h>
Eric Miao1f017a92008-11-28 14:19:33 +080024#include <mach/regs-ac97.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020025
26#include "pxa2xx-pcm.h"
Liam Girdwood596ce322007-02-02 17:21:16 +010027#include "pxa2xx-ac97.h"
Liam Girdwood75b41022006-10-12 14:29:03 +020028
Liam Girdwood75b41022006-10-12 14:29:03 +020029static void pxa2xx_ac97_warm_reset(struct snd_ac97 *ac97)
30{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040031 pxa2xx_ac97_try_warm_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020032
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040033 pxa2xx_ac97_finish_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020034}
35
36static void pxa2xx_ac97_cold_reset(struct snd_ac97 *ac97)
37{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040038 pxa2xx_ac97_try_cold_reset(ac97);
Mark Brown7a223232008-04-22 17:08:52 +020039
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040040 pxa2xx_ac97_finish_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020041}
42
43struct snd_ac97_bus_ops soc_ac97_ops = {
44 .read = pxa2xx_ac97_read,
45 .write = pxa2xx_ac97_write,
46 .warm_reset = pxa2xx_ac97_warm_reset,
47 .reset = pxa2xx_ac97_cold_reset,
48};
49
50static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_out = {
51 .name = "AC97 PCM Stereo out",
52 .dev_addr = __PREG(PCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080053 .drcmr = &DRCMR(12),
Liam Girdwood75b41022006-10-12 14:29:03 +020054 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
55 DCMD_BURST32 | DCMD_WIDTH4,
56};
57
58static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_in = {
59 .name = "AC97 PCM Stereo in",
60 .dev_addr = __PREG(PCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080061 .drcmr = &DRCMR(11),
Liam Girdwood75b41022006-10-12 14:29:03 +020062 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
63 DCMD_BURST32 | DCMD_WIDTH4,
64};
65
66static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_out = {
67 .name = "AC97 Aux PCM (Slot 5) Mono out",
68 .dev_addr = __PREG(MODR),
Eric Miao87f3dd72008-09-08 15:26:43 +080069 .drcmr = &DRCMR(10),
Liam Girdwood75b41022006-10-12 14:29:03 +020070 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
71 DCMD_BURST16 | DCMD_WIDTH2,
72};
73
74static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_in = {
75 .name = "AC97 Aux PCM (Slot 5) Mono in",
76 .dev_addr = __PREG(MODR),
Eric Miao87f3dd72008-09-08 15:26:43 +080077 .drcmr = &DRCMR(9),
Liam Girdwood75b41022006-10-12 14:29:03 +020078 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
79 DCMD_BURST16 | DCMD_WIDTH2,
80};
81
82static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_mic_mono_in = {
83 .name = "AC97 Mic PCM (Slot 6) Mono in",
84 .dev_addr = __PREG(MCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080085 .drcmr = &DRCMR(8),
Liam Girdwood75b41022006-10-12 14:29:03 +020086 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
87 DCMD_BURST16 | DCMD_WIDTH2,
88};
89
90#ifdef CONFIG_PM
Mark Browndc7d7b82008-12-03 18:21:52 +000091static int pxa2xx_ac97_suspend(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +020092{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040093 return pxa2xx_ac97_hw_suspend();
Liam Girdwood75b41022006-10-12 14:29:03 +020094}
95
Mark Browndc7d7b82008-12-03 18:21:52 +000096static int pxa2xx_ac97_resume(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +020097{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040098 return pxa2xx_ac97_hw_resume();
Liam Girdwood75b41022006-10-12 14:29:03 +020099}
100
101#else
102#define pxa2xx_ac97_suspend NULL
103#define pxa2xx_ac97_resume NULL
104#endif
105
Mark Brownbdb92872008-06-11 13:47:10 +0100106static int pxa2xx_ac97_probe(struct platform_device *pdev,
Liam Girdwood917f93a2008-07-07 16:08:11 +0100107 struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200108{
Mark Brown6b849bc2009-03-09 18:18:33 +0000109 return pxa2xx_ac97_hw_probe(to_platform_device(dai->dev));
Liam Girdwood75b41022006-10-12 14:29:03 +0200110}
111
Dmitry Baryshkova84534d2008-07-08 19:45:42 +0400112static void pxa2xx_ac97_remove(struct platform_device *pdev,
113 struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200114{
Mark Brown6b849bc2009-03-09 18:18:33 +0000115 pxa2xx_ac97_hw_remove(to_platform_device(dai->dev));
Liam Girdwood75b41022006-10-12 14:29:03 +0200116}
117
118static int pxa2xx_ac97_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000119 struct snd_pcm_hw_params *params,
120 struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200121{
122 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood917f93a2008-07-07 16:08:11 +0100123 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Liam Girdwood75b41022006-10-12 14:29:03 +0200124
125 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwood596ce322007-02-02 17:21:16 +0100126 cpu_dai->dma_data = &pxa2xx_ac97_pcm_stereo_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200127 else
Liam Girdwood596ce322007-02-02 17:21:16 +0100128 cpu_dai->dma_data = &pxa2xx_ac97_pcm_stereo_in;
Liam Girdwood75b41022006-10-12 14:29:03 +0200129
130 return 0;
131}
132
133static int pxa2xx_ac97_hw_aux_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000134 struct snd_pcm_hw_params *params,
135 struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200136{
137 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood917f93a2008-07-07 16:08:11 +0100138 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Liam Girdwood75b41022006-10-12 14:29:03 +0200139
140 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwood596ce322007-02-02 17:21:16 +0100141 cpu_dai->dma_data = &pxa2xx_ac97_pcm_aux_mono_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200142 else
Liam Girdwood596ce322007-02-02 17:21:16 +0100143 cpu_dai->dma_data = &pxa2xx_ac97_pcm_aux_mono_in;
Liam Girdwood75b41022006-10-12 14:29:03 +0200144
145 return 0;
146}
147
148static int pxa2xx_ac97_hw_mic_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000149 struct snd_pcm_hw_params *params,
150 struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200151{
152 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood917f93a2008-07-07 16:08:11 +0100153 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Liam Girdwood75b41022006-10-12 14:29:03 +0200154
155 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
156 return -ENODEV;
157 else
Liam Girdwood596ce322007-02-02 17:21:16 +0100158 cpu_dai->dma_data = &pxa2xx_ac97_pcm_mic_mono_in;
Liam Girdwood75b41022006-10-12 14:29:03 +0200159
160 return 0;
161}
162
Liam Girdwood596ce322007-02-02 17:21:16 +0100163#define PXA2XX_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
164 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
165 SNDRV_PCM_RATE_48000)
166
Liam Girdwood75b41022006-10-12 14:29:03 +0200167/*
168 * There is only 1 physical AC97 interface for pxa2xx, but it
169 * has extra fifo's that can be used for aux DACs and ADCs.
170 */
Liam Girdwood917f93a2008-07-07 16:08:11 +0100171struct snd_soc_dai pxa_ac97_dai[] = {
Liam Girdwood75b41022006-10-12 14:29:03 +0200172{
173 .name = "pxa2xx-ac97",
174 .id = 0,
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000175 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200176 .probe = pxa2xx_ac97_probe,
177 .remove = pxa2xx_ac97_remove,
178 .suspend = pxa2xx_ac97_suspend,
179 .resume = pxa2xx_ac97_resume,
180 .playback = {
181 .stream_name = "AC97 Playback",
182 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100183 .channels_max = 2,
184 .rates = PXA2XX_AC97_RATES,
185 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200186 .capture = {
187 .stream_name = "AC97 Capture",
188 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100189 .channels_max = 2,
190 .rates = PXA2XX_AC97_RATES,
191 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200192 .ops = {
193 .hw_params = pxa2xx_ac97_hw_params,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200194},
195{
196 .name = "pxa2xx-ac97-aux",
197 .id = 1,
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000198 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200199 .playback = {
200 .stream_name = "AC97 Aux Playback",
201 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100202 .channels_max = 1,
203 .rates = PXA2XX_AC97_RATES,
204 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200205 .capture = {
206 .stream_name = "AC97 Aux Capture",
207 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100208 .channels_max = 1,
209 .rates = PXA2XX_AC97_RATES,
210 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200211 .ops = {
212 .hw_params = pxa2xx_ac97_hw_aux_params,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200213},
214{
215 .name = "pxa2xx-ac97-mic",
216 .id = 2,
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000217 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200218 .capture = {
219 .stream_name = "AC97 Mic Capture",
220 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100221 .channels_max = 1,
222 .rates = PXA2XX_AC97_RATES,
223 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200224 .ops = {
225 .hw_params = pxa2xx_ac97_hw_mic_params,},
Liam Girdwood596ce322007-02-02 17:21:16 +0100226},
Liam Girdwood75b41022006-10-12 14:29:03 +0200227};
228
229EXPORT_SYMBOL_GPL(pxa_ac97_dai);
230EXPORT_SYMBOL_GPL(soc_ac97_ops);
231
Mark Brown6b849bc2009-03-09 18:18:33 +0000232static int __devinit pxa2xx_ac97_dev_probe(struct platform_device *pdev)
233{
234 int i;
235
236 for (i = 0; i < ARRAY_SIZE(pxa_ac97_dai); i++)
237 pxa_ac97_dai[i].dev = &pdev->dev;
238
239 /* Punt most of the init to the SoC probe; we may need the machine
240 * driver to do interesting things with the clocking to get us up
241 * and running.
242 */
243 return snd_soc_register_dais(pxa_ac97_dai, ARRAY_SIZE(pxa_ac97_dai));
244}
245
246static int __devexit pxa2xx_ac97_dev_remove(struct platform_device *pdev)
247{
248 snd_soc_unregister_dais(pxa_ac97_dai, ARRAY_SIZE(pxa_ac97_dai));
249
250 return 0;
251}
252
253static struct platform_driver pxa2xx_ac97_driver = {
254 .probe = pxa2xx_ac97_dev_probe,
255 .remove = __devexit_p(pxa2xx_ac97_dev_remove),
256 .driver = {
257 .name = "pxa2xx-ac97",
258 .owner = THIS_MODULE,
259 },
260};
261
Takashi Iwaic9b3a402008-12-10 07:47:22 +0100262static int __init pxa_ac97_init(void)
Mark Brown3f4b7832008-12-03 19:26:35 +0000263{
Mark Brown6b849bc2009-03-09 18:18:33 +0000264 return platform_driver_register(&pxa2xx_ac97_driver);
Mark Brown3f4b7832008-12-03 19:26:35 +0000265}
266module_init(pxa_ac97_init);
267
268static void __exit pxa_ac97_exit(void)
269{
Mark Brown6b849bc2009-03-09 18:18:33 +0000270 platform_driver_unregister(&pxa2xx_ac97_driver);
Mark Brown3f4b7832008-12-03 19:26:35 +0000271}
272module_exit(pxa_ac97_exit);
273
Liam Girdwood75b41022006-10-12 14:29:03 +0200274MODULE_AUTHOR("Nicolas Pitre");
275MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
276MODULE_LICENSE("GPL");