pxa2xx-ac97.c 6.1 KB
Newer Older
L
Liam Girdwood 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * linux/sound/pxa2xx-ac97.c -- AC97 support for the Intel PXA2xx chip.
 *
 * Author:	Nicolas Pitre
 * Created:	Dec 02, 2004
 * Copyright:	MontaVista Software Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/platform_device.h>

#include <sound/core.h>
#include <sound/ac97_codec.h>
#include <sound/soc.h>
20
#include <sound/pxa2xx-lib.h>
L
Liam Girdwood 已提交
21

22 23
#include <mach/hardware.h>
#include <mach/pxa-regs.h>
L
Liam Girdwood 已提交
24 25

#include "pxa2xx-pcm.h"
26
#include "pxa2xx-ac97.h"
L
Liam Girdwood 已提交
27 28 29

static void pxa2xx_ac97_warm_reset(struct snd_ac97 *ac97)
{
30
	pxa2xx_ac97_try_warm_reset(ac97);
L
Liam Girdwood 已提交
31

32
	pxa2xx_ac97_finish_reset(ac97);
L
Liam Girdwood 已提交
33 34 35 36
}

static void pxa2xx_ac97_cold_reset(struct snd_ac97 *ac97)
{
37
	pxa2xx_ac97_try_cold_reset(ac97);
M
Mark Brown 已提交
38

39
	pxa2xx_ac97_finish_reset(ac97);
L
Liam Girdwood 已提交
40 41 42 43 44 45 46 47 48 49 50 51
}

struct snd_ac97_bus_ops soc_ac97_ops = {
	.read	= pxa2xx_ac97_read,
	.write	= pxa2xx_ac97_write,
	.warm_reset	= pxa2xx_ac97_warm_reset,
	.reset	= pxa2xx_ac97_cold_reset,
};

static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_out = {
	.name			= "AC97 PCM Stereo out",
	.dev_addr		= __PREG(PCDR),
52
	.drcmr			= &DRCMR(12),
L
Liam Girdwood 已提交
53 54 55 56 57 58 59
	.dcmd			= DCMD_INCSRCADDR | DCMD_FLOWTRG |
				  DCMD_BURST32 | DCMD_WIDTH4,
};

static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_in = {
	.name			= "AC97 PCM Stereo in",
	.dev_addr		= __PREG(PCDR),
60
	.drcmr			= &DRCMR(11),
L
Liam Girdwood 已提交
61 62 63 64 65 66 67
	.dcmd			= DCMD_INCTRGADDR | DCMD_FLOWSRC |
				  DCMD_BURST32 | DCMD_WIDTH4,
};

static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_out = {
	.name			= "AC97 Aux PCM (Slot 5) Mono out",
	.dev_addr		= __PREG(MODR),
68
	.drcmr			= &DRCMR(10),
L
Liam Girdwood 已提交
69 70 71 72 73 74 75
	.dcmd			= DCMD_INCSRCADDR | DCMD_FLOWTRG |
				  DCMD_BURST16 | DCMD_WIDTH2,
};

static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_in = {
	.name			= "AC97 Aux PCM (Slot 5) Mono in",
	.dev_addr		= __PREG(MODR),
76
	.drcmr			= &DRCMR(9),
L
Liam Girdwood 已提交
77 78 79 80 81 82 83
	.dcmd			= DCMD_INCTRGADDR | DCMD_FLOWSRC |
				  DCMD_BURST16 | DCMD_WIDTH2,
};

static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_mic_mono_in = {
	.name			= "AC97 Mic PCM (Slot 6) Mono in",
	.dev_addr		= __PREG(MCDR),
84
	.drcmr			= &DRCMR(8),
L
Liam Girdwood 已提交
85 86 87 88 89
	.dcmd			= DCMD_INCTRGADDR | DCMD_FLOWSRC |
				  DCMD_BURST16 | DCMD_WIDTH2,
};

#ifdef CONFIG_PM
90
static int pxa2xx_ac97_suspend(struct snd_soc_dai *dai)
L
Liam Girdwood 已提交
91
{
92
	return pxa2xx_ac97_hw_suspend();
L
Liam Girdwood 已提交
93 94
}

95
static int pxa2xx_ac97_resume(struct snd_soc_dai *dai)
L
Liam Girdwood 已提交
96
{
97
	return pxa2xx_ac97_hw_resume();
L
Liam Girdwood 已提交
98 99 100 101 102 103 104
}

#else
#define pxa2xx_ac97_suspend	NULL
#define pxa2xx_ac97_resume	NULL
#endif

105
static int pxa2xx_ac97_probe(struct platform_device *pdev,
106
			     struct snd_soc_dai *dai)
L
Liam Girdwood 已提交
107
{
108
	return pxa2xx_ac97_hw_probe(pdev);
L
Liam Girdwood 已提交
109 110
}

111 112
static void pxa2xx_ac97_remove(struct platform_device *pdev,
			       struct snd_soc_dai *dai)
L
Liam Girdwood 已提交
113
{
114
	pxa2xx_ac97_hw_remove(pdev);
L
Liam Girdwood 已提交
115 116 117
}

static int pxa2xx_ac97_hw_params(struct snd_pcm_substream *substream,
118 119
				 struct snd_pcm_hw_params *params,
				 struct snd_soc_dai *dai)
L
Liam Girdwood 已提交
120 121
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
122
	struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
L
Liam Girdwood 已提交
123 124

	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
125
		cpu_dai->dma_data = &pxa2xx_ac97_pcm_stereo_out;
L
Liam Girdwood 已提交
126
	else
127
		cpu_dai->dma_data = &pxa2xx_ac97_pcm_stereo_in;
L
Liam Girdwood 已提交
128 129 130 131 132

	return 0;
}

static int pxa2xx_ac97_hw_aux_params(struct snd_pcm_substream *substream,
133 134
				     struct snd_pcm_hw_params *params,
				     struct snd_soc_dai *dai)
L
Liam Girdwood 已提交
135 136
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
137
	struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
L
Liam Girdwood 已提交
138 139

	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
140
		cpu_dai->dma_data = &pxa2xx_ac97_pcm_aux_mono_out;
L
Liam Girdwood 已提交
141
	else
142
		cpu_dai->dma_data = &pxa2xx_ac97_pcm_aux_mono_in;
L
Liam Girdwood 已提交
143 144 145 146 147

	return 0;
}

static int pxa2xx_ac97_hw_mic_params(struct snd_pcm_substream *substream,
148 149
				     struct snd_pcm_hw_params *params,
				     struct snd_soc_dai *dai)
L
Liam Girdwood 已提交
150 151
{
	struct snd_soc_pcm_runtime *rtd = substream->private_data;
152
	struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
L
Liam Girdwood 已提交
153 154 155 156

	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
		return -ENODEV;
	else
157
		cpu_dai->dma_data = &pxa2xx_ac97_pcm_mic_mono_in;
L
Liam Girdwood 已提交
158 159 160 161

	return 0;
}

162 163 164 165
#define PXA2XX_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
		SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
		SNDRV_PCM_RATE_48000)

L
Liam Girdwood 已提交
166 167 168 169
/*
 * There is only 1 physical AC97 interface for pxa2xx, but it
 * has extra fifo's that can be used for aux DACs and ADCs.
 */
170
struct snd_soc_dai pxa_ac97_dai[] = {
L
Liam Girdwood 已提交
171 172 173
{
	.name = "pxa2xx-ac97",
	.id = 0,
M
Mark Brown 已提交
174
	.ac97_control = 1,
L
Liam Girdwood 已提交
175 176 177 178 179 180 181
	.probe = pxa2xx_ac97_probe,
	.remove = pxa2xx_ac97_remove,
	.suspend = pxa2xx_ac97_suspend,
	.resume = pxa2xx_ac97_resume,
	.playback = {
		.stream_name = "AC97 Playback",
		.channels_min = 2,
182 183 184
		.channels_max = 2,
		.rates = PXA2XX_AC97_RATES,
		.formats = SNDRV_PCM_FMTBIT_S16_LE,},
L
Liam Girdwood 已提交
185 186 187
	.capture = {
		.stream_name = "AC97 Capture",
		.channels_min = 2,
188 189 190
		.channels_max = 2,
		.rates = PXA2XX_AC97_RATES,
		.formats = SNDRV_PCM_FMTBIT_S16_LE,},
L
Liam Girdwood 已提交
191 192 193 194 195 196
	.ops = {
		.hw_params = pxa2xx_ac97_hw_params,},
},
{
	.name = "pxa2xx-ac97-aux",
	.id = 1,
M
Mark Brown 已提交
197
	.ac97_control = 1,
L
Liam Girdwood 已提交
198 199 200
	.playback = {
		.stream_name = "AC97 Aux Playback",
		.channels_min = 1,
201 202 203
		.channels_max = 1,
		.rates = PXA2XX_AC97_RATES,
		.formats = SNDRV_PCM_FMTBIT_S16_LE,},
L
Liam Girdwood 已提交
204 205 206
	.capture = {
		.stream_name = "AC97 Aux Capture",
		.channels_min = 1,
207 208 209
		.channels_max = 1,
		.rates = PXA2XX_AC97_RATES,
		.formats = SNDRV_PCM_FMTBIT_S16_LE,},
L
Liam Girdwood 已提交
210 211 212 213 214 215
	.ops = {
		.hw_params = pxa2xx_ac97_hw_aux_params,},
},
{
	.name = "pxa2xx-ac97-mic",
	.id = 2,
M
Mark Brown 已提交
216
	.ac97_control = 1,
L
Liam Girdwood 已提交
217 218 219
	.capture = {
		.stream_name = "AC97 Mic Capture",
		.channels_min = 1,
220 221 222
		.channels_max = 1,
		.rates = PXA2XX_AC97_RATES,
		.formats = SNDRV_PCM_FMTBIT_S16_LE,},
L
Liam Girdwood 已提交
223 224
	.ops = {
		.hw_params = pxa2xx_ac97_hw_mic_params,},
225
},
L
Liam Girdwood 已提交
226 227 228 229 230
};

EXPORT_SYMBOL_GPL(pxa_ac97_dai);
EXPORT_SYMBOL_GPL(soc_ac97_ops);

231
static int __init pxa_ac97_init(void)
M
Mark Brown 已提交
232 233 234 235 236 237 238 239 240 241 242
{
	return snd_soc_register_dais(pxa_ac97_dai, ARRAY_SIZE(pxa_ac97_dai));
}
module_init(pxa_ac97_init);

static void __exit pxa_ac97_exit(void)
{
	snd_soc_unregister_dais(pxa_ac97_dai, ARRAY_SIZE(pxa_ac97_dai));
}
module_exit(pxa_ac97_exit);

L
Liam Girdwood 已提交
243 244 245
MODULE_AUTHOR("Nicolas Pitre");
MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
MODULE_LICENSE("GPL");