blob: 837ff341fd6dda45954f2ec34fd263f24a54d62e [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>
Eric Miao1f017a92008-11-28 14:19:33 +080023#include <mach/regs-ac97.h>
Eric Miao7ebc8d52009-01-02 19:38:42 +080024#include <mach/dma.h>
Marek Vasut4ac04782009-07-30 02:55:01 +020025#include <mach/audio.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020026
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
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000106static int pxa2xx_ac97_probe(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200107{
Mark Brown6b849bc2009-03-09 18:18:33 +0000108 return pxa2xx_ac97_hw_probe(to_platform_device(dai->dev));
Liam Girdwood75b41022006-10-12 14:29:03 +0200109}
110
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000111static int pxa2xx_ac97_remove(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200112{
Mark Brown6b849bc2009-03-09 18:18:33 +0000113 pxa2xx_ac97_hw_remove(to_platform_device(dai->dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000114 return 0;
Liam Girdwood75b41022006-10-12 14:29:03 +0200115}
116
117static int pxa2xx_ac97_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000118 struct snd_pcm_hw_params *params,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000119 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200120{
Daniel Mack5f712b22010-03-22 10:11:15 +0100121 struct pxa2xx_pcm_dma_params *dma_data;
Liam Girdwood75b41022006-10-12 14:29:03 +0200122
123 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Daniel Mack5f712b22010-03-22 10:11:15 +0100124 dma_data = &pxa2xx_ac97_pcm_stereo_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200125 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100126 dma_data = &pxa2xx_ac97_pcm_stereo_in;
127
128 snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
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,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000135 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200136{
Daniel Mack5f712b22010-03-22 10:11:15 +0100137 struct pxa2xx_pcm_dma_params *dma_data;
Liam Girdwood75b41022006-10-12 14:29:03 +0200138
139 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Daniel Mack5f712b22010-03-22 10:11:15 +0100140 dma_data = &pxa2xx_ac97_pcm_aux_mono_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200141 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100142 dma_data = &pxa2xx_ac97_pcm_aux_mono_in;
143
144 snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
Liam Girdwood75b41022006-10-12 14:29:03 +0200145
146 return 0;
147}
148
149static int pxa2xx_ac97_hw_mic_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000150 struct snd_pcm_hw_params *params,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000151 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200152{
Liam Girdwood75b41022006-10-12 14:29:03 +0200153 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
154 return -ENODEV;
155 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100156 snd_soc_dai_set_dma_data(cpu_dai, substream,
157 &pxa2xx_ac97_pcm_mic_mono_in);
Liam Girdwood75b41022006-10-12 14:29:03 +0200158
159 return 0;
160}
161
Liam Girdwood596ce322007-02-02 17:21:16 +0100162#define PXA2XX_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
163 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
164 SNDRV_PCM_RATE_48000)
165
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100166static const struct snd_soc_dai_ops pxa_ac97_hifi_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +0800167 .hw_params = pxa2xx_ac97_hw_params,
168};
169
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100170static const struct snd_soc_dai_ops pxa_ac97_aux_dai_ops = {
Mark Brown852fd9e2009-03-16 14:13:12 +0000171 .hw_params = pxa2xx_ac97_hw_aux_params,
172};
173
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100174static const struct snd_soc_dai_ops pxa_ac97_mic_dai_ops = {
Mark Brown852fd9e2009-03-16 14:13:12 +0000175 .hw_params = pxa2xx_ac97_hw_mic_params,
176};
177
Liam Girdwood75b41022006-10-12 14:29:03 +0200178/*
179 * There is only 1 physical AC97 interface for pxa2xx, but it
180 * has extra fifo's that can be used for aux DACs and ADCs.
181 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000182static struct snd_soc_dai_driver pxa_ac97_dai[] = {
Liam Girdwood75b41022006-10-12 14:29:03 +0200183{
184 .name = "pxa2xx-ac97",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000185 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200186 .probe = pxa2xx_ac97_probe,
187 .remove = pxa2xx_ac97_remove,
188 .suspend = pxa2xx_ac97_suspend,
189 .resume = pxa2xx_ac97_resume,
190 .playback = {
191 .stream_name = "AC97 Playback",
192 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100193 .channels_max = 2,
194 .rates = PXA2XX_AC97_RATES,
195 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200196 .capture = {
197 .stream_name = "AC97 Capture",
198 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100199 .channels_max = 2,
200 .rates = PXA2XX_AC97_RATES,
201 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000202 .ops = &pxa_ac97_hifi_dai_ops,
Liam Girdwood75b41022006-10-12 14:29:03 +0200203},
204{
205 .name = "pxa2xx-ac97-aux",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000206 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200207 .playback = {
208 .stream_name = "AC97 Aux Playback",
209 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100210 .channels_max = 1,
211 .rates = PXA2XX_AC97_RATES,
212 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200213 .capture = {
214 .stream_name = "AC97 Aux Capture",
215 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100216 .channels_max = 1,
217 .rates = PXA2XX_AC97_RATES,
218 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000219 .ops = &pxa_ac97_aux_dai_ops,
Liam Girdwood75b41022006-10-12 14:29:03 +0200220},
221{
222 .name = "pxa2xx-ac97-mic",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000223 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200224 .capture = {
225 .stream_name = "AC97 Mic Capture",
226 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100227 .channels_max = 1,
228 .rates = PXA2XX_AC97_RATES,
229 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000230 .ops = &pxa_ac97_mic_dai_ops,
Liam Girdwood596ce322007-02-02 17:21:16 +0100231},
Liam Girdwood75b41022006-10-12 14:29:03 +0200232};
233
Liam Girdwood75b41022006-10-12 14:29:03 +0200234EXPORT_SYMBOL_GPL(soc_ac97_ops);
235
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000236static __devinit int pxa2xx_ac97_dev_probe(struct platform_device *pdev)
Mark Brown6b849bc2009-03-09 18:18:33 +0000237{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000238 if (pdev->id != -1) {
Marek Vasut4ac04782009-07-30 02:55:01 +0200239 dev_err(&pdev->dev, "PXA2xx has only one AC97 port.\n");
240 return -ENXIO;
241 }
242
Mark Brown6b849bc2009-03-09 18:18:33 +0000243 /* Punt most of the init to the SoC probe; we may need the machine
244 * driver to do interesting things with the clocking to get us up
245 * and running.
246 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000247 return snd_soc_register_dais(&pdev->dev, pxa_ac97_dai,
248 ARRAY_SIZE(pxa_ac97_dai));
Mark Brown6b849bc2009-03-09 18:18:33 +0000249}
250
251static int __devexit pxa2xx_ac97_dev_remove(struct platform_device *pdev)
252{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000253 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(pxa_ac97_dai));
Mark Brown6b849bc2009-03-09 18:18:33 +0000254 return 0;
255}
256
257static struct platform_driver pxa2xx_ac97_driver = {
258 .probe = pxa2xx_ac97_dev_probe,
259 .remove = __devexit_p(pxa2xx_ac97_dev_remove),
260 .driver = {
261 .name = "pxa2xx-ac97",
262 .owner = THIS_MODULE,
263 },
264};
265
Axel Lin2f702a12011-11-25 10:13:37 +0800266module_platform_driver(pxa2xx_ac97_driver);
Mark Brown3f4b7832008-12-03 19:26:35 +0000267
Liam Girdwood75b41022006-10-12 14:29:03 +0200268MODULE_AUTHOR("Nicolas Pitre");
269MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
270MODULE_LICENSE("GPL");