blob: 06ea2744cc88f161e8d3508137747ee7d5958669 [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>
Rob Herring23019a72012-03-20 14:33:19 -050014#include <linux/io.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020015#include <linux/module.h>
16#include <linux/platform_device.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020017
Liam Girdwood75b41022006-10-12 14:29:03 +020018#include <sound/core.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020019#include <sound/ac97_codec.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020020#include <sound/soc.h>
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040021#include <sound/pxa2xx-lib.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020022
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
Eric Miao1f017a92008-11-28 14:19:33 +080024#include <mach/regs-ac97.h>
Eric Miao7ebc8d52009-01-02 19:38:42 +080025#include <mach/dma.h>
Marek Vasut4ac04782009-07-30 02:55:01 +020026#include <mach/audio.h>
Liam Girdwood75b41022006-10-12 14:29:03 +020027
Liam Girdwood596ce322007-02-02 17:21:16 +010028#include "pxa2xx-ac97.h"
Liam Girdwood75b41022006-10-12 14:29:03 +020029
Liam Girdwood75b41022006-10-12 14:29:03 +020030static void pxa2xx_ac97_warm_reset(struct snd_ac97 *ac97)
31{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040032 pxa2xx_ac97_try_warm_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020033
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040034 pxa2xx_ac97_finish_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020035}
36
37static void pxa2xx_ac97_cold_reset(struct snd_ac97 *ac97)
38{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040039 pxa2xx_ac97_try_cold_reset(ac97);
Mark Brown7a223232008-04-22 17:08:52 +020040
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040041 pxa2xx_ac97_finish_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020042}
43
44struct snd_ac97_bus_ops soc_ac97_ops = {
45 .read = pxa2xx_ac97_read,
46 .write = pxa2xx_ac97_write,
47 .warm_reset = pxa2xx_ac97_warm_reset,
48 .reset = pxa2xx_ac97_cold_reset,
49};
50
51static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_out = {
52 .name = "AC97 PCM Stereo out",
53 .dev_addr = __PREG(PCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080054 .drcmr = &DRCMR(12),
Liam Girdwood75b41022006-10-12 14:29:03 +020055 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
56 DCMD_BURST32 | DCMD_WIDTH4,
57};
58
59static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_in = {
60 .name = "AC97 PCM Stereo in",
61 .dev_addr = __PREG(PCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080062 .drcmr = &DRCMR(11),
Liam Girdwood75b41022006-10-12 14:29:03 +020063 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
64 DCMD_BURST32 | DCMD_WIDTH4,
65};
66
67static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_out = {
68 .name = "AC97 Aux PCM (Slot 5) Mono out",
69 .dev_addr = __PREG(MODR),
Eric Miao87f3dd72008-09-08 15:26:43 +080070 .drcmr = &DRCMR(10),
Liam Girdwood75b41022006-10-12 14:29:03 +020071 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
72 DCMD_BURST16 | DCMD_WIDTH2,
73};
74
75static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_in = {
76 .name = "AC97 Aux PCM (Slot 5) Mono in",
77 .dev_addr = __PREG(MODR),
Eric Miao87f3dd72008-09-08 15:26:43 +080078 .drcmr = &DRCMR(9),
Liam Girdwood75b41022006-10-12 14:29:03 +020079 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
80 DCMD_BURST16 | DCMD_WIDTH2,
81};
82
83static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_mic_mono_in = {
84 .name = "AC97 Mic PCM (Slot 6) Mono in",
85 .dev_addr = __PREG(MCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080086 .drcmr = &DRCMR(8),
Liam Girdwood75b41022006-10-12 14:29:03 +020087 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
88 DCMD_BURST16 | DCMD_WIDTH2,
89};
90
91#ifdef CONFIG_PM
Mark Browndc7d7b82008-12-03 18:21:52 +000092static int pxa2xx_ac97_suspend(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +020093{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040094 return pxa2xx_ac97_hw_suspend();
Liam Girdwood75b41022006-10-12 14:29:03 +020095}
96
Mark Browndc7d7b82008-12-03 18:21:52 +000097static int pxa2xx_ac97_resume(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +020098{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040099 return pxa2xx_ac97_hw_resume();
Liam Girdwood75b41022006-10-12 14:29:03 +0200100}
101
102#else
103#define pxa2xx_ac97_suspend NULL
104#define pxa2xx_ac97_resume NULL
105#endif
106
Axel Lina3874192012-02-20 08:04:50 +0800107static int __devinit pxa2xx_ac97_probe(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
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000112static int pxa2xx_ac97_remove(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200113{
Mark Brown6b849bc2009-03-09 18:18:33 +0000114 pxa2xx_ac97_hw_remove(to_platform_device(dai->dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000115 return 0;
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,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000120 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200121{
Daniel Mack5f712b22010-03-22 10:11:15 +0100122 struct pxa2xx_pcm_dma_params *dma_data;
Liam Girdwood75b41022006-10-12 14:29:03 +0200123
124 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Daniel Mack5f712b22010-03-22 10:11:15 +0100125 dma_data = &pxa2xx_ac97_pcm_stereo_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200126 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100127 dma_data = &pxa2xx_ac97_pcm_stereo_in;
128
129 snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
Liam Girdwood75b41022006-10-12 14:29:03 +0200130
131 return 0;
132}
133
134static int pxa2xx_ac97_hw_aux_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000135 struct snd_pcm_hw_params *params,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000136 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200137{
Daniel Mack5f712b22010-03-22 10:11:15 +0100138 struct pxa2xx_pcm_dma_params *dma_data;
Liam Girdwood75b41022006-10-12 14:29:03 +0200139
140 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Daniel Mack5f712b22010-03-22 10:11:15 +0100141 dma_data = &pxa2xx_ac97_pcm_aux_mono_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200142 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100143 dma_data = &pxa2xx_ac97_pcm_aux_mono_in;
144
145 snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
Liam Girdwood75b41022006-10-12 14:29:03 +0200146
147 return 0;
148}
149
150static int pxa2xx_ac97_hw_mic_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000151 struct snd_pcm_hw_params *params,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000152 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200153{
Liam Girdwood75b41022006-10-12 14:29:03 +0200154 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
155 return -ENODEV;
156 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100157 snd_soc_dai_set_dma_data(cpu_dai, substream,
158 &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
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100167static const struct snd_soc_dai_ops pxa_ac97_hifi_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +0800168 .hw_params = pxa2xx_ac97_hw_params,
169};
170
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100171static const struct snd_soc_dai_ops pxa_ac97_aux_dai_ops = {
Mark Brown852fd9e2009-03-16 14:13:12 +0000172 .hw_params = pxa2xx_ac97_hw_aux_params,
173};
174
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100175static const struct snd_soc_dai_ops pxa_ac97_mic_dai_ops = {
Mark Brown852fd9e2009-03-16 14:13:12 +0000176 .hw_params = pxa2xx_ac97_hw_mic_params,
177};
178
Liam Girdwood75b41022006-10-12 14:29:03 +0200179/*
180 * There is only 1 physical AC97 interface for pxa2xx, but it
181 * has extra fifo's that can be used for aux DACs and ADCs.
182 */
Axel Lina3874192012-02-20 08:04:50 +0800183static struct snd_soc_dai_driver pxa_ac97_dai_driver[] = {
Liam Girdwood75b41022006-10-12 14:29:03 +0200184{
185 .name = "pxa2xx-ac97",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000186 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200187 .probe = pxa2xx_ac97_probe,
188 .remove = pxa2xx_ac97_remove,
189 .suspend = pxa2xx_ac97_suspend,
190 .resume = pxa2xx_ac97_resume,
191 .playback = {
192 .stream_name = "AC97 Playback",
193 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100194 .channels_max = 2,
195 .rates = PXA2XX_AC97_RATES,
196 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200197 .capture = {
198 .stream_name = "AC97 Capture",
199 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100200 .channels_max = 2,
201 .rates = PXA2XX_AC97_RATES,
202 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000203 .ops = &pxa_ac97_hifi_dai_ops,
Liam Girdwood75b41022006-10-12 14:29:03 +0200204},
205{
206 .name = "pxa2xx-ac97-aux",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000207 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200208 .playback = {
209 .stream_name = "AC97 Aux Playback",
210 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100211 .channels_max = 1,
212 .rates = PXA2XX_AC97_RATES,
213 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200214 .capture = {
215 .stream_name = "AC97 Aux Capture",
216 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100217 .channels_max = 1,
218 .rates = PXA2XX_AC97_RATES,
219 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000220 .ops = &pxa_ac97_aux_dai_ops,
Liam Girdwood75b41022006-10-12 14:29:03 +0200221},
222{
223 .name = "pxa2xx-ac97-mic",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000224 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200225 .capture = {
226 .stream_name = "AC97 Mic Capture",
227 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100228 .channels_max = 1,
229 .rates = PXA2XX_AC97_RATES,
230 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000231 .ops = &pxa_ac97_mic_dai_ops,
Liam Girdwood596ce322007-02-02 17:21:16 +0100232},
Liam Girdwood75b41022006-10-12 14:29:03 +0200233};
234
Liam Girdwood75b41022006-10-12 14:29:03 +0200235EXPORT_SYMBOL_GPL(soc_ac97_ops);
236
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000237static __devinit int pxa2xx_ac97_dev_probe(struct platform_device *pdev)
Mark Brown6b849bc2009-03-09 18:18:33 +0000238{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000239 if (pdev->id != -1) {
Marek Vasut4ac04782009-07-30 02:55:01 +0200240 dev_err(&pdev->dev, "PXA2xx has only one AC97 port.\n");
241 return -ENXIO;
242 }
243
Mark Brown6b849bc2009-03-09 18:18:33 +0000244 /* Punt most of the init to the SoC probe; we may need the machine
245 * driver to do interesting things with the clocking to get us up
246 * and running.
247 */
Axel Lina3874192012-02-20 08:04:50 +0800248 return snd_soc_register_dais(&pdev->dev, pxa_ac97_dai_driver,
249 ARRAY_SIZE(pxa_ac97_dai_driver));
Mark Brown6b849bc2009-03-09 18:18:33 +0000250}
251
252static int __devexit pxa2xx_ac97_dev_remove(struct platform_device *pdev)
253{
Axel Lina3874192012-02-20 08:04:50 +0800254 snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(pxa_ac97_dai_driver));
Mark Brown6b849bc2009-03-09 18:18:33 +0000255 return 0;
256}
257
258static struct platform_driver pxa2xx_ac97_driver = {
259 .probe = pxa2xx_ac97_dev_probe,
260 .remove = __devexit_p(pxa2xx_ac97_dev_remove),
261 .driver = {
262 .name = "pxa2xx-ac97",
263 .owner = THIS_MODULE,
264 },
265};
266
Axel Lin2f702a12011-11-25 10:13:37 +0800267module_platform_driver(pxa2xx_ac97_driver);
Mark Brown3f4b7832008-12-03 19:26:35 +0000268
Liam Girdwood75b41022006-10-12 14:29:03 +0200269MODULE_AUTHOR("Nicolas Pitre");
270MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
271MODULE_LICENSE("GPL");