blob: a1bbe16b7f9613e3129ebdb8819125c2b7c7463a [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>
16#include <linux/kernel.h>
17#include <linux/device.h>
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020018#include <sound/core.h>
19#include <sound/pcm.h>
20#include <sound/ac97_codec.h>
21#include <sound/initval.h>
22#include <sound/soc.h>
Mark Browndbac7cb2008-06-11 13:47:09 +010023#include "ac97.h"
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020024
Liam Girdwood5a8ec342007-02-02 17:16:41 +010025#define AC97_VERSION "0.6"
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020026
Mark Browndee89c42008-11-18 22:11:38 +000027static int ac97_prepare(struct snd_pcm_substream *substream,
28 struct snd_soc_dai *dai)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020029{
30 struct snd_pcm_runtime *runtime = substream->runtime;
31 struct snd_soc_pcm_runtime *rtd = substream->private_data;
32 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown6627a652009-01-23 22:55:23 +000033 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020034
35 int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
36 AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE;
37 return snd_ac97_set_rate(codec->ac97, reg, runtime->rate);
38}
39
Liam Girdwood5a8ec342007-02-02 17:16:41 +010040#define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
Mark Brown24c053e2008-04-23 15:26:45 +020041 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
42 SNDRV_PCM_RATE_48000)
Liam Girdwood5a8ec342007-02-02 17:16:41 +010043
Eric Miao6335d052009-03-03 09:41:00 +080044static struct snd_soc_dai_ops ac97_dai_ops = {
45 .prepare = ac97_prepare,
46};
47
Liam Girdwoode550e172008-07-07 16:07:52 +010048struct snd_soc_dai ac97_dai = {
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020049 .name = "AC97 HiFi",
Mark Brown3ba9e102008-11-24 18:01:05 +000050 .ac97_control = 1,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020051 .playback = {
52 .stream_name = "AC97 Playback",
53 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010054 .channels_max = 2,
55 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010056 .formats = SND_SOC_STD_AC97_FMTS,},
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020057 .capture = {
58 .stream_name = "AC97 Capture",
59 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010060 .channels_max = 2,
61 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010062 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +080063 .ops = &ac97_dai_ops,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020064};
Graeme Gregory5d0cede2007-04-16 19:20:17 +020065EXPORT_SYMBOL_GPL(ac97_dai);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020066
67static unsigned int ac97_read(struct snd_soc_codec *codec,
68 unsigned int reg)
69{
70 return soc_ac97_ops.read(codec->ac97, reg);
71}
72
73static int ac97_write(struct snd_soc_codec *codec, unsigned int reg,
74 unsigned int val)
75{
76 soc_ac97_ops.write(codec->ac97, reg, val);
77 return 0;
78}
79
80static int ac97_soc_probe(struct platform_device *pdev)
81{
82 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
83 struct snd_soc_codec *codec;
84 struct snd_ac97_bus *ac97_bus;
85 struct snd_ac97_template ac97_template;
86 int ret = 0;
87
88 printk(KERN_INFO "AC97 SoC Audio Codec %s\n", AC97_VERSION);
89
Mark Brown6627a652009-01-23 22:55:23 +000090 socdev->card->codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
91 if (!socdev->card->codec)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020092 return -ENOMEM;
Mark Brown6627a652009-01-23 22:55:23 +000093 codec = socdev->card->codec;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020094 mutex_init(&codec->mutex);
95
96 codec->name = "AC97";
97 codec->owner = THIS_MODULE;
98 codec->dai = &ac97_dai;
99 codec->num_dai = 1;
100 codec->write = ac97_write;
101 codec->read = ac97_read;
102 INIT_LIST_HEAD(&codec->dapm_widgets);
103 INIT_LIST_HEAD(&codec->dapm_paths);
104
Manuel Laussecbec242010-01-04 16:29:49 +0100105 ret = snd_soc_new_ac97_codec(codec, &soc_ac97_ops, 0);
106 if (ret < 0) {
107 printk(KERN_ERR "ASoC: failed to init gen ac97 glue\n");
108 goto err;
109 }
110
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200111 /* register pcms */
112 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
Mark Brown24c053e2008-04-23 15:26:45 +0200113 if (ret < 0)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200114 goto err;
115
116 /* add codec as bus device for standard ac97 */
117 ret = snd_ac97_bus(codec->card, 0, &soc_ac97_ops, NULL, &ac97_bus);
Mark Brown24c053e2008-04-23 15:26:45 +0200118 if (ret < 0)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200119 goto bus_err;
120
121 memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
122 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &codec->ac97);
Mark Brown24c053e2008-04-23 15:26:45 +0200123 if (ret < 0)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200124 goto bus_err;
125
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200126 return 0;
127
128bus_err:
129 snd_soc_free_pcms(socdev);
130
131err:
Mark Brown6627a652009-01-23 22:55:23 +0000132 kfree(socdev->card->codec);
133 socdev->card->codec = NULL;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200134 return ret;
135}
136
137static int ac97_soc_remove(struct platform_device *pdev)
138{
139 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown6627a652009-01-23 22:55:23 +0000140 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200141
Mark Brown24c053e2008-04-23 15:26:45 +0200142 if (!codec)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200143 return 0;
144
145 snd_soc_free_pcms(socdev);
Mark Brown6627a652009-01-23 22:55:23 +0000146 kfree(socdev->card->codec);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200147
148 return 0;
149}
150
Manuel Lauss3f775982008-07-03 09:33:10 +0200151#ifdef CONFIG_PM
152static int ac97_soc_suspend(struct platform_device *pdev, pm_message_t msg)
153{
154 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
155
Mark Brown6627a652009-01-23 22:55:23 +0000156 snd_ac97_suspend(socdev->card->codec->ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200157
158 return 0;
159}
160
161static int ac97_soc_resume(struct platform_device *pdev)
162{
163 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
164
Mark Brown6627a652009-01-23 22:55:23 +0000165 snd_ac97_resume(socdev->card->codec->ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200166
167 return 0;
168}
169#else
170#define ac97_soc_suspend NULL
171#define ac97_soc_resume NULL
172#endif
173
Mark Brown24c053e2008-04-23 15:26:45 +0200174struct snd_soc_codec_device soc_codec_dev_ac97 = {
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200175 .probe = ac97_soc_probe,
176 .remove = ac97_soc_remove,
Manuel Lauss3f775982008-07-03 09:33:10 +0200177 .suspend = ac97_soc_suspend,
178 .resume = ac97_soc_resume,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200179};
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200180EXPORT_SYMBOL_GPL(soc_codec_dev_ac97);
181
182MODULE_DESCRIPTION("Soc Generic AC97 driver");
183MODULE_AUTHOR("Liam Girdwood");
184MODULE_LICENSE("GPL");