blob: a80ae074b0906b9664f5198caf776f209aed3c04 [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>
Liam Girdwood75b41022006-10-12 14:29:03 +020024
25#include "pxa2xx-pcm.h"
Liam Girdwood596ce322007-02-02 17:21:16 +010026#include "pxa2xx-ac97.h"
Liam Girdwood75b41022006-10-12 14:29:03 +020027
Liam Girdwood75b41022006-10-12 14:29:03 +020028static void pxa2xx_ac97_warm_reset(struct snd_ac97 *ac97)
29{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040030 pxa2xx_ac97_try_warm_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020031
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040032 pxa2xx_ac97_finish_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020033}
34
35static void pxa2xx_ac97_cold_reset(struct snd_ac97 *ac97)
36{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040037 pxa2xx_ac97_try_cold_reset(ac97);
Mark Brown7a223232008-04-22 17:08:52 +020038
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040039 pxa2xx_ac97_finish_reset(ac97);
Liam Girdwood75b41022006-10-12 14:29:03 +020040}
41
42struct snd_ac97_bus_ops soc_ac97_ops = {
43 .read = pxa2xx_ac97_read,
44 .write = pxa2xx_ac97_write,
45 .warm_reset = pxa2xx_ac97_warm_reset,
46 .reset = pxa2xx_ac97_cold_reset,
47};
48
49static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_out = {
50 .name = "AC97 PCM Stereo out",
51 .dev_addr = __PREG(PCDR),
52 .drcmr = &DRCMRTXPCDR,
53 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
54 DCMD_BURST32 | DCMD_WIDTH4,
55};
56
57static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_in = {
58 .name = "AC97 PCM Stereo in",
59 .dev_addr = __PREG(PCDR),
60 .drcmr = &DRCMRRXPCDR,
61 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
62 DCMD_BURST32 | DCMD_WIDTH4,
63};
64
65static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_out = {
66 .name = "AC97 Aux PCM (Slot 5) Mono out",
67 .dev_addr = __PREG(MODR),
68 .drcmr = &DRCMRTXMODR,
69 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
70 DCMD_BURST16 | DCMD_WIDTH2,
71};
72
73static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_in = {
74 .name = "AC97 Aux PCM (Slot 5) Mono in",
75 .dev_addr = __PREG(MODR),
76 .drcmr = &DRCMRRXMODR,
77 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
78 DCMD_BURST16 | DCMD_WIDTH2,
79};
80
81static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_mic_mono_in = {
82 .name = "AC97 Mic PCM (Slot 6) Mono in",
83 .dev_addr = __PREG(MCDR),
84 .drcmr = &DRCMRRXMCDR,
85 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
86 DCMD_BURST16 | DCMD_WIDTH2,
87};
88
89#ifdef CONFIG_PM
90static int pxa2xx_ac97_suspend(struct platform_device *pdev,
Liam Girdwood917f93a2008-07-07 16:08:11 +010091 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
96static int pxa2xx_ac97_resume(struct platform_device *pdev,
Liam Girdwood917f93a2008-07-07 16:08:11 +010097 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
Mark Brownbdb92872008-06-11 13:47:10 +0100107static int pxa2xx_ac97_probe(struct platform_device *pdev,
Liam Girdwood917f93a2008-07-07 16:08:11 +0100108 struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200109{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +0400110 return pxa2xx_ac97_hw_probe(pdev);
Liam Girdwood75b41022006-10-12 14:29:03 +0200111}
112
Dmitry Baryshkova84534d2008-07-08 19:45:42 +0400113static void pxa2xx_ac97_remove(struct platform_device *pdev,
114 struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200115{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +0400116 pxa2xx_ac97_hw_remove(pdev);
Liam Girdwood75b41022006-10-12 14:29:03 +0200117}
118
119static int pxa2xx_ac97_hw_params(struct snd_pcm_substream *substream,
120 struct snd_pcm_hw_params *params)
121{
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,
134 struct snd_pcm_hw_params *params)
135{
136 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood917f93a2008-07-07 16:08:11 +0100137 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Liam Girdwood75b41022006-10-12 14:29:03 +0200138
139 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwood596ce322007-02-02 17:21:16 +0100140 cpu_dai->dma_data = &pxa2xx_ac97_pcm_aux_mono_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200141 else
Liam Girdwood596ce322007-02-02 17:21:16 +0100142 cpu_dai->dma_data = &pxa2xx_ac97_pcm_aux_mono_in;
Liam Girdwood75b41022006-10-12 14:29:03 +0200143
144 return 0;
145}
146
147static int pxa2xx_ac97_hw_mic_params(struct snd_pcm_substream *substream,
148 struct snd_pcm_hw_params *params)
149{
150 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood917f93a2008-07-07 16:08:11 +0100151 struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
Liam Girdwood75b41022006-10-12 14:29:03 +0200152
153 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
154 return -ENODEV;
155 else
Liam Girdwood596ce322007-02-02 17:21:16 +0100156 cpu_dai->dma_data = &pxa2xx_ac97_pcm_mic_mono_in;
Liam Girdwood75b41022006-10-12 14:29:03 +0200157
158 return 0;
159}
160
Liam Girdwood596ce322007-02-02 17:21:16 +0100161#define PXA2XX_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
162 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
163 SNDRV_PCM_RATE_48000)
164
Liam Girdwood75b41022006-10-12 14:29:03 +0200165/*
166 * There is only 1 physical AC97 interface for pxa2xx, but it
167 * has extra fifo's that can be used for aux DACs and ADCs.
168 */
Liam Girdwood917f93a2008-07-07 16:08:11 +0100169struct snd_soc_dai pxa_ac97_dai[] = {
Liam Girdwood75b41022006-10-12 14:29:03 +0200170{
171 .name = "pxa2xx-ac97",
172 .id = 0,
173 .type = SND_SOC_DAI_AC97,
174 .probe = pxa2xx_ac97_probe,
175 .remove = pxa2xx_ac97_remove,
176 .suspend = pxa2xx_ac97_suspend,
177 .resume = pxa2xx_ac97_resume,
178 .playback = {
179 .stream_name = "AC97 Playback",
180 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100181 .channels_max = 2,
182 .rates = PXA2XX_AC97_RATES,
183 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200184 .capture = {
185 .stream_name = "AC97 Capture",
186 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100187 .channels_max = 2,
188 .rates = PXA2XX_AC97_RATES,
189 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200190 .ops = {
191 .hw_params = pxa2xx_ac97_hw_params,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200192},
193{
194 .name = "pxa2xx-ac97-aux",
195 .id = 1,
196 .type = SND_SOC_DAI_AC97,
197 .playback = {
198 .stream_name = "AC97 Aux Playback",
199 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100200 .channels_max = 1,
201 .rates = PXA2XX_AC97_RATES,
202 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200203 .capture = {
204 .stream_name = "AC97 Aux Capture",
205 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100206 .channels_max = 1,
207 .rates = PXA2XX_AC97_RATES,
208 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200209 .ops = {
210 .hw_params = pxa2xx_ac97_hw_aux_params,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200211},
212{
213 .name = "pxa2xx-ac97-mic",
214 .id = 2,
215 .type = SND_SOC_DAI_AC97,
216 .capture = {
217 .stream_name = "AC97 Mic Capture",
218 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100219 .channels_max = 1,
220 .rates = PXA2XX_AC97_RATES,
221 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200222 .ops = {
223 .hw_params = pxa2xx_ac97_hw_mic_params,},
Liam Girdwood596ce322007-02-02 17:21:16 +0100224},
Liam Girdwood75b41022006-10-12 14:29:03 +0200225};
226
227EXPORT_SYMBOL_GPL(pxa_ac97_dai);
228EXPORT_SYMBOL_GPL(soc_ac97_ops);
229
230MODULE_AUTHOR("Nicolas Pitre");
231MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
232MODULE_LICENSE("GPL");