blob: 1f5e57a4bb7accdfdad3eefdd209b9b056b7351c [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>
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020019#include <sound/core.h>
20#include <sound/pcm.h>
21#include <sound/ac97_codec.h>
22#include <sound/initval.h>
23#include <sound/soc.h>
Mark Browndbac7cb2008-06-11 13:47:09 +010024#include "ac97.h"
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020025
Liam Girdwood5a8ec342007-02-02 17:16:41 +010026#define AC97_VERSION "0.6"
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020027
Mark Browndee89c42008-11-18 22:11:38 +000028static int ac97_prepare(struct snd_pcm_substream *substream,
29 struct snd_soc_dai *dai)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020030{
31 struct snd_pcm_runtime *runtime = substream->runtime;
32 struct snd_soc_pcm_runtime *rtd = substream->private_data;
33 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown6627a652009-01-23 22:55:23 +000034 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020035
36 int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ?
37 AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE;
38 return snd_ac97_set_rate(codec->ac97, reg, runtime->rate);
39}
40
Liam Girdwood5a8ec342007-02-02 17:16:41 +010041#define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
Mark Brown24c053e2008-04-23 15:26:45 +020042 SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\
43 SNDRV_PCM_RATE_48000)
Liam Girdwood5a8ec342007-02-02 17:16:41 +010044
Eric Miao6335d052009-03-03 09:41:00 +080045static struct snd_soc_dai_ops ac97_dai_ops = {
46 .prepare = ac97_prepare,
47};
48
Liam Girdwoode550e17f2008-07-07 16:07:52 +010049struct snd_soc_dai ac97_dai = {
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020050 .name = "AC97 HiFi",
Mark Brown3ba9e10a2008-11-24 18:01:05 +000051 .ac97_control = 1,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020052 .playback = {
53 .stream_name = "AC97 Playback",
54 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010055 .channels_max = 2,
56 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010057 .formats = SND_SOC_STD_AC97_FMTS,},
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020058 .capture = {
59 .stream_name = "AC97 Capture",
60 .channels_min = 1,
Liam Girdwood5a8ec342007-02-02 17:16:41 +010061 .channels_max = 2,
62 .rates = STD_AC97_RATES,
Mark Brown33f503c2009-05-02 12:24:55 +010063 .formats = SND_SOC_STD_AC97_FMTS,},
Eric Miao6335d052009-03-03 09:41:00 +080064 .ops = &ac97_dai_ops,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020065};
Graeme Gregory5d0cede2007-04-16 19:20:17 +020066EXPORT_SYMBOL_GPL(ac97_dai);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020067
68static unsigned int ac97_read(struct snd_soc_codec *codec,
69 unsigned int reg)
70{
71 return soc_ac97_ops.read(codec->ac97, reg);
72}
73
74static int ac97_write(struct snd_soc_codec *codec, unsigned int reg,
75 unsigned int val)
76{
77 soc_ac97_ops.write(codec->ac97, reg, val);
78 return 0;
79}
80
81static int ac97_soc_probe(struct platform_device *pdev)
82{
83 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Graham Gowerfb48e3c2010-03-25 10:52:12 +103084 struct snd_soc_card *card = socdev->card;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020085 struct snd_soc_codec *codec;
86 struct snd_ac97_bus *ac97_bus;
87 struct snd_ac97_template ac97_template;
Graham Gowerfb48e3c2010-03-25 10:52:12 +103088 int i;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020089 int ret = 0;
90
91 printk(KERN_INFO "AC97 SoC Audio Codec %s\n", AC97_VERSION);
92
Mark Brown6627a652009-01-23 22:55:23 +000093 socdev->card->codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
94 if (!socdev->card->codec)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020095 return -ENOMEM;
Mark Brown6627a652009-01-23 22:55:23 +000096 codec = socdev->card->codec;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +020097 mutex_init(&codec->mutex);
98
99 codec->name = "AC97";
100 codec->owner = THIS_MODULE;
101 codec->dai = &ac97_dai;
102 codec->num_dai = 1;
103 codec->write = ac97_write;
104 codec->read = ac97_read;
105 INIT_LIST_HEAD(&codec->dapm_widgets);
106 INIT_LIST_HEAD(&codec->dapm_paths);
107
108 /* register pcms */
109 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
Mark Brown24c053e2008-04-23 15:26:45 +0200110 if (ret < 0)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200111 goto err;
112
113 /* add codec as bus device for standard ac97 */
114 ret = snd_ac97_bus(codec->card, 0, &soc_ac97_ops, NULL, &ac97_bus);
Mark Brown24c053e2008-04-23 15:26:45 +0200115 if (ret < 0)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200116 goto bus_err;
117
118 memset(&ac97_template, 0, sizeof(struct snd_ac97_template));
119 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &codec->ac97);
Mark Brown24c053e2008-04-23 15:26:45 +0200120 if (ret < 0)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200121 goto bus_err;
122
Graham Gowerfb48e3c2010-03-25 10:52:12 +1030123 for (i = 0; i < card->num_links; i++) {
124 if (card->dai_link[i].codec_dai->ac97_control) {
125 snd_ac97_dev_add_pdata(codec->ac97,
126 card->dai_link[i].cpu_dai->ac97_pdata);
127 }
128 }
129
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200130 return 0;
131
132bus_err:
133 snd_soc_free_pcms(socdev);
134
135err:
Mark Brown6627a652009-01-23 22:55:23 +0000136 kfree(socdev->card->codec);
137 socdev->card->codec = NULL;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200138 return ret;
139}
140
141static int ac97_soc_remove(struct platform_device *pdev)
142{
143 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown6627a652009-01-23 22:55:23 +0000144 struct snd_soc_codec *codec = socdev->card->codec;
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200145
Mark Brown24c053e2008-04-23 15:26:45 +0200146 if (!codec)
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200147 return 0;
148
149 snd_soc_free_pcms(socdev);
Mark Brown6627a652009-01-23 22:55:23 +0000150 kfree(socdev->card->codec);
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200151
152 return 0;
153}
154
Manuel Lauss3f775982008-07-03 09:33:10 +0200155#ifdef CONFIG_PM
156static int ac97_soc_suspend(struct platform_device *pdev, pm_message_t msg)
157{
158 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
159
Mark Brown6627a652009-01-23 22:55:23 +0000160 snd_ac97_suspend(socdev->card->codec->ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200161
162 return 0;
163}
164
165static int ac97_soc_resume(struct platform_device *pdev)
166{
167 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
168
Mark Brown6627a652009-01-23 22:55:23 +0000169 snd_ac97_resume(socdev->card->codec->ac97);
Manuel Lauss3f775982008-07-03 09:33:10 +0200170
171 return 0;
172}
173#else
174#define ac97_soc_suspend NULL
175#define ac97_soc_resume NULL
176#endif
177
Mark Brown24c053e2008-04-23 15:26:45 +0200178struct snd_soc_codec_device soc_codec_dev_ac97 = {
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200179 .probe = ac97_soc_probe,
180 .remove = ac97_soc_remove,
Manuel Lauss3f775982008-07-03 09:33:10 +0200181 .suspend = ac97_soc_suspend,
182 .resume = ac97_soc_resume,
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200183};
Richard Purdiedbc6b6a2006-10-06 18:38:03 +0200184EXPORT_SYMBOL_GPL(soc_codec_dev_ac97);
185
186MODULE_DESCRIPTION("Soc Generic AC97 driver");
187MODULE_AUTHOR("Liam Girdwood");
188MODULE_LICENSE("GPL");