2006-10-12 12:29:03 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
2008-09-10 01:01:17 +00:00
|
|
|
#include <sound/pxa2xx-lib.h>
|
2006-10-12 12:29:03 +00:00
|
|
|
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/hardware.h>
|
2008-11-28 06:19:33 +00:00
|
|
|
#include <mach/regs-ac97.h>
|
2009-01-02 11:38:42 +00:00
|
|
|
#include <mach/dma.h>
|
2009-07-30 00:55:01 +00:00
|
|
|
#include <mach/audio.h>
|
2006-10-12 12:29:03 +00:00
|
|
|
|
2007-02-02 16:21:16 +00:00
|
|
|
#include "pxa2xx-ac97.h"
|
2006-10-12 12:29:03 +00:00
|
|
|
|
|
|
|
static void pxa2xx_ac97_warm_reset(struct snd_ac97 *ac97)
|
|
|
|
{
|
2008-09-10 01:01:17 +00:00
|
|
|
pxa2xx_ac97_try_warm_reset(ac97);
|
2006-10-12 12:29:03 +00:00
|
|
|
|
2008-09-10 01:01:17 +00:00
|
|
|
pxa2xx_ac97_finish_reset(ac97);
|
2006-10-12 12:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pxa2xx_ac97_cold_reset(struct snd_ac97 *ac97)
|
|
|
|
{
|
2008-09-10 01:01:17 +00:00
|
|
|
pxa2xx_ac97_try_cold_reset(ac97);
|
2008-04-22 15:08:52 +00:00
|
|
|
|
2008-09-10 01:01:17 +00:00
|
|
|
pxa2xx_ac97_finish_reset(ac97);
|
2006-10-12 12:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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),
|
[ARM] pxa: simplify DMA register definitions
1. DRCMRxx is no longer recommended, use DRCMR(xx) instead, and
pass DRCMR index by "struct resource" if possible
2. DCSRxx, DDADRxx, DSADRxx, DTADRxx, DCMDxx is never used, use
DCSR(), DDADR(), DSADR(), DTADR(), DCMD() instead
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Acked-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2008-09-08 07:26:43 +00:00
|
|
|
.drcmr = &DRCMR(12),
|
2006-10-12 12:29:03 +00:00
|
|
|
.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),
|
[ARM] pxa: simplify DMA register definitions
1. DRCMRxx is no longer recommended, use DRCMR(xx) instead, and
pass DRCMR index by "struct resource" if possible
2. DCSRxx, DDADRxx, DSADRxx, DTADRxx, DCMDxx is never used, use
DCSR(), DDADR(), DSADR(), DTADR(), DCMD() instead
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Acked-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2008-09-08 07:26:43 +00:00
|
|
|
.drcmr = &DRCMR(11),
|
2006-10-12 12:29:03 +00:00
|
|
|
.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),
|
[ARM] pxa: simplify DMA register definitions
1. DRCMRxx is no longer recommended, use DRCMR(xx) instead, and
pass DRCMR index by "struct resource" if possible
2. DCSRxx, DDADRxx, DSADRxx, DTADRxx, DCMDxx is never used, use
DCSR(), DDADR(), DSADR(), DTADR(), DCMD() instead
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Acked-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2008-09-08 07:26:43 +00:00
|
|
|
.drcmr = &DRCMR(10),
|
2006-10-12 12:29:03 +00:00
|
|
|
.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),
|
[ARM] pxa: simplify DMA register definitions
1. DRCMRxx is no longer recommended, use DRCMR(xx) instead, and
pass DRCMR index by "struct resource" if possible
2. DCSRxx, DDADRxx, DSADRxx, DTADRxx, DCMDxx is never used, use
DCSR(), DDADR(), DSADR(), DTADR(), DCMD() instead
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Acked-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2008-09-08 07:26:43 +00:00
|
|
|
.drcmr = &DRCMR(9),
|
2006-10-12 12:29:03 +00:00
|
|
|
.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),
|
[ARM] pxa: simplify DMA register definitions
1. DRCMRxx is no longer recommended, use DRCMR(xx) instead, and
pass DRCMR index by "struct resource" if possible
2. DCSRxx, DDADRxx, DSADRxx, DTADRxx, DCMDxx is never used, use
DCSR(), DDADR(), DSADR(), DTADR(), DCMD() instead
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Acked-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2008-09-08 07:26:43 +00:00
|
|
|
.drcmr = &DRCMR(8),
|
2006-10-12 12:29:03 +00:00
|
|
|
.dcmd = DCMD_INCTRGADDR | DCMD_FLOWSRC |
|
|
|
|
DCMD_BURST16 | DCMD_WIDTH2,
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM
|
2008-12-03 18:21:52 +00:00
|
|
|
static int pxa2xx_ac97_suspend(struct snd_soc_dai *dai)
|
2006-10-12 12:29:03 +00:00
|
|
|
{
|
2008-09-10 01:01:17 +00:00
|
|
|
return pxa2xx_ac97_hw_suspend();
|
2006-10-12 12:29:03 +00:00
|
|
|
}
|
|
|
|
|
2008-12-03 18:21:52 +00:00
|
|
|
static int pxa2xx_ac97_resume(struct snd_soc_dai *dai)
|
2006-10-12 12:29:03 +00:00
|
|
|
{
|
2008-09-10 01:01:17 +00:00
|
|
|
return pxa2xx_ac97_hw_resume();
|
2006-10-12 12:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define pxa2xx_ac97_suspend NULL
|
|
|
|
#define pxa2xx_ac97_resume NULL
|
|
|
|
#endif
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
static int pxa2xx_ac97_probe(struct snd_soc_dai *dai)
|
2006-10-12 12:29:03 +00:00
|
|
|
{
|
2009-03-09 18:18:33 +00:00
|
|
|
return pxa2xx_ac97_hw_probe(to_platform_device(dai->dev));
|
2006-10-12 12:29:03 +00:00
|
|
|
}
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
static int pxa2xx_ac97_remove(struct snd_soc_dai *dai)
|
2006-10-12 12:29:03 +00:00
|
|
|
{
|
2009-03-09 18:18:33 +00:00
|
|
|
pxa2xx_ac97_hw_remove(to_platform_device(dai->dev));
|
2010-03-17 20:15:21 +00:00
|
|
|
return 0;
|
2006-10-12 12:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pxa2xx_ac97_hw_params(struct snd_pcm_substream *substream,
|
2008-11-18 22:11:38 +00:00
|
|
|
struct snd_pcm_hw_params *params,
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_dai *cpu_dai)
|
2006-10-12 12:29:03 +00:00
|
|
|
{
|
2010-03-22 09:11:15 +00:00
|
|
|
struct pxa2xx_pcm_dma_params *dma_data;
|
2006-10-12 12:29:03 +00:00
|
|
|
|
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
2010-03-22 09:11:15 +00:00
|
|
|
dma_data = &pxa2xx_ac97_pcm_stereo_out;
|
2006-10-12 12:29:03 +00:00
|
|
|
else
|
2010-03-22 09:11:15 +00:00
|
|
|
dma_data = &pxa2xx_ac97_pcm_stereo_in;
|
|
|
|
|
|
|
|
snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
|
2006-10-12 12:29:03 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pxa2xx_ac97_hw_aux_params(struct snd_pcm_substream *substream,
|
2008-11-18 22:11:38 +00:00
|
|
|
struct snd_pcm_hw_params *params,
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_dai *cpu_dai)
|
2006-10-12 12:29:03 +00:00
|
|
|
{
|
2010-03-22 09:11:15 +00:00
|
|
|
struct pxa2xx_pcm_dma_params *dma_data;
|
2006-10-12 12:29:03 +00:00
|
|
|
|
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
2010-03-22 09:11:15 +00:00
|
|
|
dma_data = &pxa2xx_ac97_pcm_aux_mono_out;
|
2006-10-12 12:29:03 +00:00
|
|
|
else
|
2010-03-22 09:11:15 +00:00
|
|
|
dma_data = &pxa2xx_ac97_pcm_aux_mono_in;
|
|
|
|
|
|
|
|
snd_soc_dai_set_dma_data(cpu_dai, substream, dma_data);
|
2006-10-12 12:29:03 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pxa2xx_ac97_hw_mic_params(struct snd_pcm_substream *substream,
|
2008-11-18 22:11:38 +00:00
|
|
|
struct snd_pcm_hw_params *params,
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_dai *cpu_dai)
|
2006-10-12 12:29:03 +00:00
|
|
|
{
|
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
|
|
|
return -ENODEV;
|
|
|
|
else
|
2010-03-22 09:11:15 +00:00
|
|
|
snd_soc_dai_set_dma_data(cpu_dai, substream,
|
|
|
|
&pxa2xx_ac97_pcm_mic_mono_in);
|
2006-10-12 12:29:03 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-02 16:21:16 +00:00
|
|
|
#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)
|
|
|
|
|
2009-03-16 14:13:12 +00:00
|
|
|
static struct snd_soc_dai_ops pxa_ac97_hifi_dai_ops = {
|
2009-03-03 01:41:00 +00:00
|
|
|
.hw_params = pxa2xx_ac97_hw_params,
|
|
|
|
};
|
|
|
|
|
2009-03-16 14:13:12 +00:00
|
|
|
static struct snd_soc_dai_ops pxa_ac97_aux_dai_ops = {
|
|
|
|
.hw_params = pxa2xx_ac97_hw_aux_params,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct snd_soc_dai_ops pxa_ac97_mic_dai_ops = {
|
|
|
|
.hw_params = pxa2xx_ac97_hw_mic_params,
|
|
|
|
};
|
|
|
|
|
2006-10-12 12:29:03 +00:00
|
|
|
/*
|
|
|
|
* There is only 1 physical AC97 interface for pxa2xx, but it
|
|
|
|
* has extra fifo's that can be used for aux DACs and ADCs.
|
|
|
|
*/
|
2010-03-17 20:15:21 +00:00
|
|
|
static struct snd_soc_dai_driver pxa_ac97_dai[] = {
|
2006-10-12 12:29:03 +00:00
|
|
|
{
|
|
|
|
.name = "pxa2xx-ac97",
|
2008-11-24 18:01:05 +00:00
|
|
|
.ac97_control = 1,
|
2006-10-12 12:29:03 +00:00
|
|
|
.probe = pxa2xx_ac97_probe,
|
|
|
|
.remove = pxa2xx_ac97_remove,
|
|
|
|
.suspend = pxa2xx_ac97_suspend,
|
|
|
|
.resume = pxa2xx_ac97_resume,
|
|
|
|
.playback = {
|
|
|
|
.stream_name = "AC97 Playback",
|
|
|
|
.channels_min = 2,
|
2007-02-02 16:21:16 +00:00
|
|
|
.channels_max = 2,
|
|
|
|
.rates = PXA2XX_AC97_RATES,
|
|
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE,},
|
2006-10-12 12:29:03 +00:00
|
|
|
.capture = {
|
|
|
|
.stream_name = "AC97 Capture",
|
|
|
|
.channels_min = 2,
|
2007-02-02 16:21:16 +00:00
|
|
|
.channels_max = 2,
|
|
|
|
.rates = PXA2XX_AC97_RATES,
|
|
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE,},
|
2009-03-16 14:13:12 +00:00
|
|
|
.ops = &pxa_ac97_hifi_dai_ops,
|
2006-10-12 12:29:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "pxa2xx-ac97-aux",
|
2008-11-24 18:01:05 +00:00
|
|
|
.ac97_control = 1,
|
2006-10-12 12:29:03 +00:00
|
|
|
.playback = {
|
|
|
|
.stream_name = "AC97 Aux Playback",
|
|
|
|
.channels_min = 1,
|
2007-02-02 16:21:16 +00:00
|
|
|
.channels_max = 1,
|
|
|
|
.rates = PXA2XX_AC97_RATES,
|
|
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE,},
|
2006-10-12 12:29:03 +00:00
|
|
|
.capture = {
|
|
|
|
.stream_name = "AC97 Aux Capture",
|
|
|
|
.channels_min = 1,
|
2007-02-02 16:21:16 +00:00
|
|
|
.channels_max = 1,
|
|
|
|
.rates = PXA2XX_AC97_RATES,
|
|
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE,},
|
2009-03-16 14:13:12 +00:00
|
|
|
.ops = &pxa_ac97_aux_dai_ops,
|
2006-10-12 12:29:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "pxa2xx-ac97-mic",
|
2008-11-24 18:01:05 +00:00
|
|
|
.ac97_control = 1,
|
2006-10-12 12:29:03 +00:00
|
|
|
.capture = {
|
|
|
|
.stream_name = "AC97 Mic Capture",
|
|
|
|
.channels_min = 1,
|
2007-02-02 16:21:16 +00:00
|
|
|
.channels_max = 1,
|
|
|
|
.rates = PXA2XX_AC97_RATES,
|
|
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE,},
|
2009-03-16 14:13:12 +00:00
|
|
|
.ops = &pxa_ac97_mic_dai_ops,
|
2007-02-02 16:21:16 +00:00
|
|
|
},
|
2006-10-12 12:29:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EXPORT_SYMBOL_GPL(soc_ac97_ops);
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
static __devinit int pxa2xx_ac97_dev_probe(struct platform_device *pdev)
|
2008-12-03 19:26:35 +00:00
|
|
|
{
|
2010-03-17 20:15:21 +00:00
|
|
|
if (pdev->id != -1) {
|
2009-07-30 00:55:01 +00:00
|
|
|
dev_err(&pdev->dev, "PXA2xx has only one AC97 port.\n");
|
|
|
|
return -ENXIO;
|
|
|
|
}
|
|
|
|
|
2009-03-09 18:18:33 +00:00
|
|
|
/* Punt most of the init to the SoC probe; we may need the machine
|
|
|
|
* driver to do interesting things with the clocking to get us up
|
|
|
|
* and running.
|
|
|
|
*/
|
2010-03-17 20:15:21 +00:00
|
|
|
return snd_soc_register_dais(&pdev->dev, pxa_ac97_dai,
|
|
|
|
ARRAY_SIZE(pxa_ac97_dai));
|
2008-12-03 19:26:35 +00:00
|
|
|
}
|
2009-03-09 18:18:33 +00:00
|
|
|
|
|
|
|
static int __devexit pxa2xx_ac97_dev_remove(struct platform_device *pdev)
|
|
|
|
{
|
2010-03-17 20:15:21 +00:00
|
|
|
snd_soc_unregister_dais(&pdev->dev, ARRAY_SIZE(pxa_ac97_dai));
|
2009-03-09 18:18:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct platform_driver pxa2xx_ac97_driver = {
|
|
|
|
.probe = pxa2xx_ac97_dev_probe,
|
|
|
|
.remove = __devexit_p(pxa2xx_ac97_dev_remove),
|
|
|
|
.driver = {
|
|
|
|
.name = "pxa2xx-ac97",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init pxa_ac97_init(void)
|
|
|
|
{
|
|
|
|
return platform_driver_register(&pxa2xx_ac97_driver);
|
|
|
|
}
|
2008-12-03 19:26:35 +00:00
|
|
|
module_init(pxa_ac97_init);
|
|
|
|
|
|
|
|
static void __exit pxa_ac97_exit(void)
|
|
|
|
{
|
2009-03-09 18:18:33 +00:00
|
|
|
platform_driver_unregister(&pxa2xx_ac97_driver);
|
2008-12-03 19:26:35 +00:00
|
|
|
}
|
|
|
|
module_exit(pxa_ac97_exit);
|
|
|
|
|
2006-10-12 12:29:03 +00:00
|
|
|
MODULE_AUTHOR("Nicolas Pitre");
|
|
|
|
MODULE_DESCRIPTION("AC97 driver for the Intel PXA2xx chip");
|
|
|
|
MODULE_LICENSE("GPL");
|