blob: d0ac723eee321a6f36c4f49fb398098a053fede1 [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 Brownd2a369c2013-08-19 12:18:07 +010026static const struct snd_soc_dapm_widget ac97_widgets[] = {
27 SND_SOC_DAPM_INPUT("RX"),
28 SND_SOC_DAPM_OUTPUT("TX"),
29};
30
31static const struct snd_soc_dapm_route ac97_routes[] = {
32 { "AC97 Capture", NULL, "RX" },
33 { "TX", NULL, "AC97 Playback" },
34};
35
Mark Browndee89c42008-11-18 22:11:38 +000036static int ac97_prepare(struct snd_pcm_substream *substream,
37 struct snd_soc_dai *dai)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020038{
Mark Browne6968a12012-04-04 15:58:16 +010039 struct snd_soc_codec *codec = dai->codec;
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +010040 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020041
42 int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
43 AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE;
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +010044 return snd_ac97_set_rate(ac97, reg, substream->runtime->rate);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020045}
46
Liam Girdwood5a8ec342007-02-02 17:16:41 +010047#define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
Mark Brown24c053e2008-04-23 15:26:45 +020048 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
49 SNDRV_PCM_RATE_48000)
Liam Girdwood5a8ec342007-02-02 17:16:41 +010050
Lars-Peter Clausen85e76522011-11-23 11:40:40 +010051static const struct snd_soc_dai_ops ac97_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +080052 .prepare = ac97_prepare,
53};
54
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000055static struct snd_soc_dai_driver ac97_dai = {
56 .name = "ac97-hifi",
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020057 .playback = {
58 .stream_name = "AC97 Playback",
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,},
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020063 .capture = {
64 .stream_name = "AC97 Capture",
65 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010066 .channels_max = 2,
67 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010068 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +080069 .ops = &ac97_dai_ops,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020070};
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020071
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000072static int ac97_soc_probe(struct snd_soc_codec *codec)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020073{
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +010074 struct snd_ac97 *ac97;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020075 struct snd_ac97_bus *ac97_bus;
76 struct snd_ac97_template ac97_template;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000077 int ret;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020078
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020079 /* add codec as bus device for standard ac97 */
Lars-Peter Clausen00200102014-07-17 22:01:07 +020080 ret = snd_ac97_bus(codec->component.card->snd_card, 0, soc_ac97_ops,
81 NULL, &ac97_bus);
Mark Brown24c053e2008-04-23 15:26:45 +020082 if (ret < 0)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000083 return ret;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020084
85 memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +010086 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &ac97);
Mark Brown24c053e2008-04-23 15:26:45 +020087 if (ret < 0)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000088 return ret;
Graham Gowerfb48e3c2010-03-25 10:52:12 +103089
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +010090 snd_soc_codec_set_drvdata(codec, ac97);
91
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020092 return 0;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020093}
94
Manuel Lauss3f775982008-07-03 09:33:10 +020095#ifdef CONFIG_PM
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +010096static int ac97_soc_suspend(struct snd_soc_codec *codec)
Manuel Lauss3f775982008-07-03 09:33:10 +020097{
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +010098 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec);
99
100 snd_ac97_suspend(ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200101
102 return 0;
103}
104
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000105static int ac97_soc_resume(struct snd_soc_codec *codec)
Manuel Lauss3f775982008-07-03 09:33:10 +0200106{
Lars-Peter Clausen358a8bb2014-11-10 22:41:53 +0100107
108 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec);
109
110 snd_ac97_resume(ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200111
112 return 0;
113}
114#else
115#define ac97_soc_suspend NULL
116#define ac97_soc_resume NULL
117#endif
118
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000119static struct snd_soc_codec_driver soc_codec_dev_ac97 = {
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200120 .probe = ac97_soc_probe,
Manuel Lauss3f775982008-07-03 09:33:10 +0200121 .suspend = ac97_soc_suspend,
122 .resume = ac97_soc_resume,
Mark Brownd2a369c2013-08-19 12:18:07 +0100123
124 .dapm_widgets = ac97_widgets,
125 .num_dapm_widgets = ARRAY_SIZE(ac97_widgets),
126 .dapm_routes = ac97_routes,
127 .num_dapm_routes = ARRAY_SIZE(ac97_routes),
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200128};
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000129
Bill Pemberton7a79e942012-12-07 09:26:37 -0500130static int ac97_probe(struct platform_device *pdev)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000131{
132 return snd_soc_register_codec(&pdev->dev,
133 &soc_codec_dev_ac97, &ac97_dai, 1);
134}
135
Bill Pemberton7a79e942012-12-07 09:26:37 -0500136static int ac97_remove(struct platform_device *pdev)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000137{
138 snd_soc_unregister_codec(&pdev->dev);
139 return 0;
140}
141
142static struct platform_driver ac97_codec_driver = {
143 .driver = {
Mark Brown591796b2010-09-23 19:43:07 +0100144 .name = "ac97-codec",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000145 },
146
147 .probe = ac97_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500148 .remove = ac97_remove,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000149};
150
Mark Brown5bbcc3c2011-11-23 22:52:08 +0000151module_platform_driver(ac97_codec_driver);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200152
153MODULE_DESCRIPTION("Soc Generic AC97 driver");
154MODULE_AUTHOR("Liam Girdwood");
155MODULE_LICENSE("GPL");
Mika Westerberg0afe6b92010-10-13 11:30:33 +0300156MODULE_ALIAS("platform:ac97-codec");