blob: ec7351803c245b7ba209a582e0d82fc958effb24 [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{
Mark Browne6968a12012-04-04 15:58:16 +010029 struct snd_soc_codec *codec = dai->codec;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020030
31 int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
32 AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE;
Fabio Estevam7a0a2892012-04-10 19:38:23 -030033 return snd_ac97_set_rate(codec->ac97, reg, substream->runtime->rate);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020034}
35
Liam Girdwood5a8ec342007-02-02 17:16:41 +010036#define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
Mark Brown24c053e2008-04-23 15:26:45 +020037 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
38 SNDRV_PCM_RATE_48000)
Liam Girdwood5a8ec342007-02-02 17:16:41 +010039
Lars-Peter Clausen85e76522011-11-23 11:40:40 +010040static const struct snd_soc_dai_ops ac97_dai_ops = {
Eric Miao6335d052009-03-03 09:41:00 +080041 .prepare = ac97_prepare,
42};
43
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000044static struct snd_soc_dai_driver ac97_dai = {
45 .name = "ac97-hifi",
Mark Brown3ba9e10a2008-11-24 18:01:05 +000046 .ac97_control = 1,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020047 .playback = {
48 .stream_name = "AC97 Playback",
49 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010050 .channels_max = 2,
51 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010052 .formats = SND_SOC_STD_AC97_FMTS,},
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020053 .capture = {
54 .stream_name = "AC97 Capture",
55 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010056 .channels_max = 2,
57 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010058 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +080059 .ops = &ac97_dai_ops,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020060};
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020061
62static unsigned int ac97_read(struct snd_soc_codec *codec,
63 unsigned int reg)
64{
Mark Brownb047e1c2013-06-26 12:45:59 +010065 return soc_ac97_ops->read(codec->ac97, reg);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020066}
67
68static int ac97_write(struct snd_soc_codec *codec, unsigned int reg,
69 unsigned int val)
70{
Mark Brownb047e1c2013-06-26 12:45:59 +010071 soc_ac97_ops->write(codec->ac97, reg, val);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020072 return 0;
73}
74
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000075static int ac97_soc_probe(struct snd_soc_codec *codec)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020076{
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020077 struct snd_ac97_bus *ac97_bus;
78 struct snd_ac97_template ac97_template;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000079 int ret;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020080
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020081 /* add codec as bus device for standard ac97 */
Mark Brownb047e1c2013-06-26 12:45:59 +010082 ret = snd_ac97_bus(codec->card->snd_card, 0, soc_ac97_ops, NULL,
83 &ac97_bus);
Mark Brown24c053e2008-04-23 15:26:45 +020084 if (ret < 0)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000085 return ret;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020086
87 memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
88 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &codec->ac97);
Mark Brown24c053e2008-04-23 15:26:45 +020089 if (ret < 0)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000090 return ret;
Graham Gowerfb48e3c2010-03-25 10:52:12 +103091
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{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000098 snd_ac97_suspend(codec->ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +020099
100 return 0;
101}
102
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000103static int ac97_soc_resume(struct snd_soc_codec *codec)
Manuel Lauss3f775982008-07-03 09:33:10 +0200104{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000105 snd_ac97_resume(codec->ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200106
107 return 0;
108}
109#else
110#define ac97_soc_suspend NULL
111#define ac97_soc_resume NULL
112#endif
113
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000114static struct snd_soc_codec_driver soc_codec_dev_ac97 = {
Mark Brown591796b2010-09-23 19:43:07 +0100115 .write = ac97_write,
116 .read = ac97_read,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200117 .probe = ac97_soc_probe,
Manuel Lauss3f775982008-07-03 09:33:10 +0200118 .suspend = ac97_soc_suspend,
119 .resume = ac97_soc_resume,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200120};
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000121
Bill Pemberton7a79e942012-12-07 09:26:37 -0500122static int ac97_probe(struct platform_device *pdev)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000123{
124 return snd_soc_register_codec(&pdev->dev,
125 &soc_codec_dev_ac97, &ac97_dai, 1);
126}
127
Bill Pemberton7a79e942012-12-07 09:26:37 -0500128static int ac97_remove(struct platform_device *pdev)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000129{
130 snd_soc_unregister_codec(&pdev->dev);
131 return 0;
132}
133
134static struct platform_driver ac97_codec_driver = {
135 .driver = {
Mark Brown591796b2010-09-23 19:43:07 +0100136 .name = "ac97-codec",
137 .owner = THIS_MODULE,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000138 },
139
140 .probe = ac97_probe,
Bill Pemberton7a79e942012-12-07 09:26:37 -0500141 .remove = ac97_remove,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000142};
143
Mark Brown5bbcc3c2011-11-23 22:52:08 +0000144module_platform_driver(ac97_codec_driver);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200145
146MODULE_DESCRIPTION("Soc Generic AC97 driver");
147MODULE_AUTHOR("Liam Girdwood");
148MODULE_LICENSE("GPL");
Mika Westerberg0afe6b92010-10-13 11:30:33 +0300149MODULE_ALIAS("platform:ac97-codec");