Merge branch 'fix/asoc' into for-linus
[platform/kernel/linux-arm64.git] / sound / soc / codecs / ac97.c
1 /*
2  * ac97.c  --  ALSA Soc AC97 codec support
3  *
4  * Copyright 2005 Wolfson Microelectronics PLC.
5  * Author: Liam Girdwood <lrg@slimlogic.co.uk>
6  *
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  *
12  * Generic AC97 support.
13  */
14
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/device.h>
18 #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>
23 #include "ac97.h"
24
25 #define AC97_VERSION "0.6"
26
27 static int ac97_prepare(struct snd_pcm_substream *substream,
28                         struct snd_soc_dai *dai)
29 {
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;
33         struct snd_soc_codec *codec = socdev->card->codec;
34
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
40 #define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
41                 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
42                 SNDRV_PCM_RATE_48000)
43
44 static struct snd_soc_dai_ops ac97_dai_ops = {
45         .prepare        = ac97_prepare,
46 };
47
48 struct snd_soc_dai ac97_dai = {
49         .name = "AC97 HiFi",
50         .ac97_control = 1,
51         .playback = {
52                 .stream_name = "AC97 Playback",
53                 .channels_min = 1,
54                 .channels_max = 2,
55                 .rates = STD_AC97_RATES,
56                 .formats = SND_SOC_STD_AC97_FMTS,},
57         .capture = {
58                 .stream_name = "AC97 Capture",
59                 .channels_min = 1,
60                 .channels_max = 2,
61                 .rates = STD_AC97_RATES,
62                 .formats = SND_SOC_STD_AC97_FMTS,},
63         .ops = &ac97_dai_ops,
64 };
65 EXPORT_SYMBOL_GPL(ac97_dai);
66
67 static 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
73 static 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
80 static int ac97_soc_probe(struct platform_device *pdev)
81 {
82         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
83         struct snd_soc_card *card = socdev->card;
84         struct snd_soc_codec *codec;
85         struct snd_ac97_bus *ac97_bus;
86         struct snd_ac97_template ac97_template;
87         int i;
88         int ret = 0;
89
90         printk(KERN_INFO "AC97 SoC Audio Codec %s\n", AC97_VERSION);
91
92         socdev->card->codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
93         if (!socdev->card->codec)
94                 return -ENOMEM;
95         codec = socdev->card->codec;
96         mutex_init(&codec->mutex);
97
98         codec->name = "AC97";
99         codec->owner = THIS_MODULE;
100         codec->dai = &ac97_dai;
101         codec->num_dai = 1;
102         codec->write = ac97_write;
103         codec->read = ac97_read;
104         INIT_LIST_HEAD(&codec->dapm_widgets);
105         INIT_LIST_HEAD(&codec->dapm_paths);
106
107         /* register pcms */
108         ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
109         if (ret < 0)
110                 goto err;
111
112         /* add codec as bus device for standard ac97 */
113         ret = snd_ac97_bus(codec->card, 0, &soc_ac97_ops, NULL, &ac97_bus);
114         if (ret < 0)
115                 goto bus_err;
116
117         memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
118         ret = snd_ac97_mixer(ac97_bus, &ac97_template, &codec->ac97);
119         if (ret < 0)
120                 goto bus_err;
121
122         for (i = 0; i < card->num_links; i++) {
123                 if (card->dai_link[i].codec_dai->ac97_control) {
124                         snd_ac97_dev_add_pdata(codec->ac97,
125                                 card->dai_link[i].cpu_dai->ac97_pdata);
126                 }
127         }
128
129         return 0;
130
131 bus_err:
132         snd_soc_free_pcms(socdev);
133
134 err:
135         kfree(socdev->card->codec);
136         socdev->card->codec = NULL;
137         return ret;
138 }
139
140 static int ac97_soc_remove(struct platform_device *pdev)
141 {
142         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
143         struct snd_soc_codec *codec = socdev->card->codec;
144
145         if (!codec)
146                 return 0;
147
148         snd_soc_free_pcms(socdev);
149         kfree(socdev->card->codec);
150
151         return 0;
152 }
153
154 #ifdef CONFIG_PM
155 static int ac97_soc_suspend(struct platform_device *pdev, pm_message_t msg)
156 {
157         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
158
159         snd_ac97_suspend(socdev->card->codec->ac97);
160
161         return 0;
162 }
163
164 static int ac97_soc_resume(struct platform_device *pdev)
165 {
166         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
167
168         snd_ac97_resume(socdev->card->codec->ac97);
169
170         return 0;
171 }
172 #else
173 #define ac97_soc_suspend NULL
174 #define ac97_soc_resume NULL
175 #endif
176
177 struct snd_soc_codec_device soc_codec_dev_ac97 = {
178         .probe =        ac97_soc_probe,
179         .remove =       ac97_soc_remove,
180         .suspend =      ac97_soc_suspend,
181         .resume =       ac97_soc_resume,
182 };
183 EXPORT_SYMBOL_GPL(soc_codec_dev_ac97);
184
185 MODULE_DESCRIPTION("Soc Generic AC97 driver");
186 MODULE_AUTHOR("Liam Girdwood");
187 MODULE_LICENSE("GPL");