blob: 8f3216793eb596d93afeaa0981a3870de3a40ed6 [file] [log] [blame]
Richard Purdiedbc6b6a2006-10-06 18:38:03 +02001/*
2 * ac97.c -- ALSA Soc AC97 codec support
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwoodd3311242008-10-12 13:17:36 +01005 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Richard Purdiedbc6b6a2006-10-06 18:38:03 +02006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020012 * Generic AC97 support.
13 */
14
15#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020017#include <linux/kernel.h>
18#include <linux/device.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040019#include <linux/module.h>
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020020#include <sound/core.h>
21#include <sound/pcm.h>
22#include <sound/ac97_codec.h>
23#include <sound/initval.h>
24#include <sound/soc.h>
25
Mark Browndee89c42008-11-18 22:11:38 +000026static int ac97_prepare(struct snd_pcm_substream *substream,
27 struct snd_soc_dai *dai)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020028{
29 struct snd_pcm_runtime *runtime = substream->runtime;
30 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000031 struct snd_soc_codec *codec = rtd->codec;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020032
33 int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
34 AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE;
35 return snd_ac97_set_rate(codec->ac97, reg, runtime->rate);
36}
37
Liam Girdwood5a8ec342007-02-02 17:16:41 +010038#define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
Mark Brown24c053e2008-04-23 15:26:45 +020039 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
40 SNDRV_PCM_RATE_48000)
Liam Girdwood5a8ec342007-02-02 17:16:41 +010041
Lars-Peter Clausen85e76522011-11-23 11:40:40 +010042static const struct snd_soc_dai_ops ac97_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +080043 .prepare = ac97_prepare,
44};
45
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000046static struct snd_soc_dai_driver ac97_dai = {
47 .name = "ac97-hifi",
Mark Brown3ba9e10a2008-11-24 18:01:05 +000048 .ac97_control = 1,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020049 .playback = {
50 .stream_name = "AC97 Playback",
51 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010052 .channels_max = 2,
53 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010054 .formats = SND_SOC_STD_AC97_FMTS,},
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020055 .capture = {
56 .stream_name = "AC97 Capture",
57 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010058 .channels_max = 2,
59 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010060 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +080061 .ops = &ac97_dai_ops,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020062};
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020063
64static unsigned int ac97_read(struct snd_soc_codec *codec,
65 unsigned int reg)
66{
67 return soc_ac97_ops.read(codec->ac97, reg);
68}
69
70static int ac97_write(struct snd_soc_codec *codec, unsigned int reg,
71 unsigned int val)
72{
73 soc_ac97_ops.write(codec->ac97, reg, val);
74 return 0;
75}
76
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000077static int ac97_soc_probe(struct snd_soc_codec *codec)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020078{
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020079 struct snd_ac97_bus *ac97_bus;
80 struct snd_ac97_template ac97_template;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000081 int ret;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020082
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020083 /* add codec as bus device for standard ac97 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000084 ret = snd_ac97_bus(codec->card->snd_card, 0, &soc_ac97_ops, NULL, &ac97_bus);
Mark Brown24c053e2008-04-23 15:26:45 +020085 if (ret < 0)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000086 return ret;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020087
88 memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
89 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &codec->ac97);
Mark Brown24c053e2008-04-23 15:26:45 +020090 if (ret < 0)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000091 return ret;
Graham Gowerfb48e3c2010-03-25 10:52:12 +103092
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020093 return 0;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020094}
95
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000096static int ac97_soc_remove(struct snd_soc_codec *codec)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020097{
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020098 return 0;
99}
100
Manuel Lauss3f775982008-07-03 09:33:10 +0200101#ifdef CONFIG_PM
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000102static int ac97_soc_suspend(struct snd_soc_codec *codec, pm_message_t msg)
Manuel Lauss3f775982008-07-03 09:33:10 +0200103{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000104 snd_ac97_suspend(codec->ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200105
106 return 0;
107}
108
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000109static int ac97_soc_resume(struct snd_soc_codec *codec)
Manuel Lauss3f775982008-07-03 09:33:10 +0200110{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000111 snd_ac97_resume(codec->ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200112
113 return 0;
114}
115#else
116#define ac97_soc_suspend NULL
117#define ac97_soc_resume NULL
118#endif
119
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000120static struct snd_soc_codec_driver soc_codec_dev_ac97 = {
Mark Brown591796b2010-09-23 19:43:07 +0100121 .write = ac97_write,
122 .read = ac97_read,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200123 .probe = ac97_soc_probe,
124 .remove = ac97_soc_remove,
Manuel Lauss3f775982008-07-03 09:33:10 +0200125 .suspend = ac97_soc_suspend,
126 .resume = ac97_soc_resume,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200127};
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000128
129static __devinit int ac97_probe(struct platform_device *pdev)
130{
131 return snd_soc_register_codec(&pdev->dev,
132 &soc_codec_dev_ac97, &ac97_dai, 1);
133}
134
135static int __devexit ac97_remove(struct platform_device *pdev)
136{
137 snd_soc_unregister_codec(&pdev->dev);
138 return 0;
139}
140
141static struct platform_driver ac97_codec_driver = {
142 .driver = {
Mark Brown591796b2010-09-23 19:43:07 +0100143 .name = "ac97-codec",
144 .owner = THIS_MODULE,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000145 },
146
147 .probe = ac97_probe,
148 .remove = __devexit_p(ac97_remove),
149};
150
151static int __init ac97_init(void)
152{
153 return platform_driver_register(&ac97_codec_driver);
154}
155module_init(ac97_init);
156
157static void __exit ac97_exit(void)
158{
159 platform_driver_unregister(&ac97_codec_driver);
160}
161module_exit(ac97_exit);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200162
163MODULE_DESCRIPTION("Soc Generic AC97 driver");
164MODULE_AUTHOR("Liam Girdwood");
165MODULE_LICENSE("GPL");
Mika Westerberg0afe6b92010-10-13 11:30:33 +0300166MODULE_ALIAS("platform:ac97-codec");