blob: 57ea8e6c54885372f7808376968b7f56783ef78a [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};
Kuninori Morimoto8abfc262013-03-21 03:27:59 -070050EXPORT_SYMBOL_GPL(soc_ac97_ops);
Liam Girdwood75b41022006-10-12 14:29:03 +020051
52static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_out = {
53 .name = "AC97 PCM Stereo out",
54 .dev_addr = __PREG(PCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080055 .drcmr = &DRCMR(12),
Liam Girdwood75b41022006-10-12 14:29:03 +020056 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
57 DCMD_BURST32 | DCMD_WIDTH4,
58};
59
60static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_stereo_in = {
61 .name = "AC97 PCM Stereo in",
62 .dev_addr = __PREG(PCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080063 .drcmr = &DRCMR(11),
Liam Girdwood75b41022006-10-12 14:29:03 +020064 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
65 DCMD_BURST32 | DCMD_WIDTH4,
66};
67
68static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_out = {
69 .name = "AC97 Aux PCM (Slot 5) Mono out",
70 .dev_addr = __PREG(MODR),
Eric Miao87f3dd72008-09-08 15:26:43 +080071 .drcmr = &DRCMR(10),
Liam Girdwood75b41022006-10-12 14:29:03 +020072 .dcmd = DCMD_INCSRCADDR | DCMD_FLOWTRG |
73 DCMD_BURST16 | DCMD_WIDTH2,
74};
75
76static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_aux_mono_in = {
77 .name = "AC97 Aux PCM (Slot 5) Mono in",
78 .dev_addr = __PREG(MODR),
Eric Miao87f3dd72008-09-08 15:26:43 +080079 .drcmr = &DRCMR(9),
Liam Girdwood75b41022006-10-12 14:29:03 +020080 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
81 DCMD_BURST16 | DCMD_WIDTH2,
82};
83
84static struct pxa2xx_pcm_dma_params pxa2xx_ac97_pcm_mic_mono_in = {
85 .name = "AC97 Mic PCM (Slot 6) Mono in",
86 .dev_addr = __PREG(MCDR),
Eric Miao87f3dd72008-09-08 15:26:43 +080087 .drcmr = &DRCMR(8),
Liam Girdwood75b41022006-10-12 14:29:03 +020088 .dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
89 DCMD_BURST16 | DCMD_WIDTH2,
90};
91
92#ifdef CONFIG_PM
Mark Browndc7d7b82008-12-03 18:21:52 +000093static int pxa2xx_ac97_suspend(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +020094{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +040095 return pxa2xx_ac97_hw_suspend();
Liam Girdwood75b41022006-10-12 14:29:03 +020096}
97
Mark Browndc7d7b82008-12-03 18:21:52 +000098static int pxa2xx_ac97_resume(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +020099{
Dmitry Baryshkov9c636342008-09-10 05:01:17 +0400100 return pxa2xx_ac97_hw_resume();
Liam Girdwood75b41022006-10-12 14:29:03 +0200101}
102
103#else
104#define pxa2xx_ac97_suspend NULL
105#define pxa2xx_ac97_resume NULL
106#endif
107
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500108static int pxa2xx_ac97_probe(struct snd_soc_dai *dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200109{
Mark Brown6b849bc2009-03-09 18:18:33 +0000110 return pxa2xx_ac97_hw_probe(to_platform_device(dai->dev));
Liam Girdwood75b41022006-10-12 14:29:03 +0200111}
112
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000113static int pxa2xx_ac97_remove(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 Girdwoodf0fba2a2010-03-17 20:15:21 +0000116 return 0;
Liam Girdwood75b41022006-10-12 14:29:03 +0200117}
118
119static int pxa2xx_ac97_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000120 struct snd_pcm_hw_params *params,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000121 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200122{
Daniel Mack5f712b22010-03-22 10:11:15 +0100123 struct pxa2xx_pcm_dma_params *dma_data;
Liam Girdwood75b41022006-10-12 14:29:03 +0200124
125 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Daniel Mack5f712b22010-03-22 10:11:15 +0100126 dma_data = &pxa2xx_ac97_pcm_stereo_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200127 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100128 dma_data = &pxa2xx_ac97_pcm_stereo_in;
129
130 snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
Liam Girdwood75b41022006-10-12 14:29:03 +0200131
132 return 0;
133}
134
135static int pxa2xx_ac97_hw_aux_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000136 struct snd_pcm_hw_params *params,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000137 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200138{
Daniel Mack5f712b22010-03-22 10:11:15 +0100139 struct pxa2xx_pcm_dma_params *dma_data;
Liam Girdwood75b41022006-10-12 14:29:03 +0200140
141 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Daniel Mack5f712b22010-03-22 10:11:15 +0100142 dma_data = &pxa2xx_ac97_pcm_aux_mono_out;
Liam Girdwood75b41022006-10-12 14:29:03 +0200143 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100144 dma_data = &pxa2xx_ac97_pcm_aux_mono_in;
145
146 snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
Liam Girdwood75b41022006-10-12 14:29:03 +0200147
148 return 0;
149}
150
151static int pxa2xx_ac97_hw_mic_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000152 struct snd_pcm_hw_params *params,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000153 struct snd_soc_dai *cpu_dai)
Liam Girdwood75b41022006-10-12 14:29:03 +0200154{
Liam Girdwood75b41022006-10-12 14:29:03 +0200155 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
156 return -ENODEV;
157 else
Daniel Mack5f712b22010-03-22 10:11:15 +0100158 snd_soc_dai_set_dma_data(cpu_dai, substream,
159 &pxa2xx_ac97_pcm_mic_mono_in);
Liam Girdwood75b41022006-10-12 14:29:03 +0200160
161 return 0;
162}
163
Liam Girdwood596ce322007-02-02 17:21:16 +0100164#define PXA2XX_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
165 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | \
166 SNDRV_PCM_RATE_48000)
167
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100168static const struct snd_soc_dai_ops pxa_ac97_hifi_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +0800169 .hw_params = pxa2xx_ac97_hw_params,
170};
171
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100172static const struct snd_soc_dai_ops pxa_ac97_aux_dai_ops = {
Mark Brown852fd9e2009-03-16 14:13:12 +0000173 .hw_params = pxa2xx_ac97_hw_aux_params,
174};
175
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100176static const struct snd_soc_dai_ops pxa_ac97_mic_dai_ops = {
Mark Brown852fd9e2009-03-16 14:13:12 +0000177 .hw_params = pxa2xx_ac97_hw_mic_params,
178};
179
Liam Girdwood75b41022006-10-12 14:29:03 +0200180/*
181 * There is only 1 physical AC97 interface for pxa2xx, but it
182 * has extra fifo's that can be used for aux DACs and ADCs.
183 */
Axel Lina3874192012-02-20 08:04:50 +0800184static struct snd_soc_dai_driver pxa_ac97_dai_driver[] = {
Liam Girdwood75b41022006-10-12 14:29:03 +0200185{
186 .name = "pxa2xx-ac97",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000187 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200188 .probe = pxa2xx_ac97_probe,
189 .remove = pxa2xx_ac97_remove,
190 .suspend = pxa2xx_ac97_suspend,
191 .resume = pxa2xx_ac97_resume,
192 .playback = {
193 .stream_name = "AC97 Playback",
194 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100195 .channels_max = 2,
196 .rates = PXA2XX_AC97_RATES,
197 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200198 .capture = {
199 .stream_name = "AC97 Capture",
200 .channels_min = 2,
Liam Girdwood596ce322007-02-02 17:21:16 +0100201 .channels_max = 2,
202 .rates = PXA2XX_AC97_RATES,
203 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000204 .ops = &pxa_ac97_hifi_dai_ops,
Liam Girdwood75b41022006-10-12 14:29:03 +0200205},
206{
207 .name = "pxa2xx-ac97-aux",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000208 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200209 .playback = {
210 .stream_name = "AC97 Aux Playback",
211 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100212 .channels_max = 1,
213 .rates = PXA2XX_AC97_RATES,
214 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Liam Girdwood75b41022006-10-12 14:29:03 +0200215 .capture = {
216 .stream_name = "AC97 Aux Capture",
217 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100218 .channels_max = 1,
219 .rates = PXA2XX_AC97_RATES,
220 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000221 .ops = &pxa_ac97_aux_dai_ops,
Liam Girdwood75b41022006-10-12 14:29:03 +0200222},
223{
224 .name = "pxa2xx-ac97-mic",
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000225 .ac97_control = 1,
Liam Girdwood75b41022006-10-12 14:29:03 +0200226 .capture = {
227 .stream_name = "AC97 Mic Capture",
228 .channels_min = 1,
Liam Girdwood596ce322007-02-02 17:21:16 +0100229 .channels_max = 1,
230 .rates = PXA2XX_AC97_RATES,
231 .formats = SNDRV_PCM_FMTBIT_S16_LE,},
Mark Brown852fd9e2009-03-16 14:13:12 +0000232 .ops = &pxa_ac97_mic_dai_ops,
Liam Girdwood596ce322007-02-02 17:21:16 +0100233},
Liam Girdwood75b41022006-10-12 14:29:03 +0200234};
235
Kuninori Morimotoad532322013-03-21 03:34:23 -0700236static const struct snd_soc_component_driver pxa_ac97_component = {
237 .name = "pxa-ac97",
238};
239
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500240static int pxa2xx_ac97_dev_probe(struct platform_device *pdev)
Mark Brown6b849bc2009-03-09 18:18:33 +0000241{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000242 if (pdev->id != -1) {
Marek Vasut4ac04782009-07-30 02:55:01 +0200243 dev_err(&pdev->dev, "PXA2xx has only one AC97 port.\n");
244 return -ENXIO;
245 }
246
Mark Brown6b849bc2009-03-09 18:18:33 +0000247 /* Punt most of the init to the SoC probe; we may need the machine
248 * driver to do interesting things with the clocking to get us up
249 * and running.
250 */
Kuninori Morimotoad532322013-03-21 03:34:23 -0700251 return snd_soc_register_component(&pdev->dev, &pxa_ac97_component,
252 pxa_ac97_dai_driver, ARRAY_SIZE(pxa_ac97_dai_driver));
Mark Brown6b849bc2009-03-09 18:18:33 +0000253}
254
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500255static int pxa2xx_ac97_dev_remove(struct platform_device *pdev)
Mark Brown6b849bc2009-03-09 18:18:33 +0000256{
Kuninori Morimotoad532322013-03-21 03:34:23 -0700257 snd_soc_unregister_component(&pdev->dev);
Mark Brown6b849bc2009-03-09 18:18:33 +0000258 return 0;
259}
260
261static struct platform_driver pxa2xx_ac97_driver = {
262 .probe = pxa2xx_ac97_dev_probe,
Bill Pemberton570f6fe2012-12-07 09:26:17 -0500263 .remove = pxa2xx_ac97_dev_remove,
Mark Brown6b849bc2009-03-09 18:18:33 +0000264 .driver = {
265 .name = "pxa2xx-ac97",
266 .owner = THIS_MODULE,
267 },
268};
269
Axel Lin2f702a12011-11-25 10:13:37 +0800270module_platform_driver(pxa2xx_ac97_driver);
Mark Brown3f4b7832008-12-03 19:26:35 +0000271
Liam Girdwood75b41022006-10-12 14:29:03 +0200272MODULE_AUTHOR("Nicolas Pitre");
273MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
274MODULE_LICENSE("GPL");