Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 1 | /* |
| 2 | * ac97.c -- ALSA Soc AC97 codec support |
| 3 | * |
| 4 | * Copyright 2005 Wolfson Microelectronics PLC. |
Liam Girdwood | d331124 | 2008-10-12 13:17:36 +0100 | [diff] [blame] | 5 | * Author: Liam Girdwood <lrg@slimlogic.co.uk> |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 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 | * |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 12 | * Generic AC97 support. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 17 | #include <linux/kernel.h> |
| 18 | #include <linux/device.h> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 19 | #include <linux/module.h> |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 20 | #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 Brown | d2a369c | 2013-08-19 12:18:07 +0100 | [diff] [blame] | 26 | static const struct snd_soc_dapm_widget ac97_widgets[] = { |
| 27 | SND_SOC_DAPM_INPUT("RX"), |
| 28 | SND_SOC_DAPM_OUTPUT("TX"), |
| 29 | }; |
| 30 | |
| 31 | static const struct snd_soc_dapm_route ac97_routes[] = { |
| 32 | { "AC97 Capture", NULL, "RX" }, |
| 33 | { "TX", NULL, "AC97 Playback" }, |
| 34 | }; |
| 35 | |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 36 | static int ac97_prepare(struct snd_pcm_substream *substream, |
| 37 | struct snd_soc_dai *dai) |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 38 | { |
Mark Brown | e6968a1 | 2012-04-04 15:58:16 +0100 | [diff] [blame] | 39 | struct snd_soc_codec *codec = dai->codec; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 40 | |
| 41 | int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? |
| 42 | AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE; |
Fabio Estevam | 7a0a289 | 2012-04-10 19:38:23 -0300 | [diff] [blame] | 43 | return snd_ac97_set_rate(codec->ac97, reg, substream->runtime->rate); |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 44 | } |
| 45 | |
Liam Girdwood | 5a8ec34 | 2007-02-02 17:16:41 +0100 | [diff] [blame] | 46 | #define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\ |
Mark Brown | 24c053e | 2008-04-23 15:26:45 +0200 | [diff] [blame] | 47 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\ |
| 48 | SNDRV_PCM_RATE_48000) |
Liam Girdwood | 5a8ec34 | 2007-02-02 17:16:41 +0100 | [diff] [blame] | 49 | |
Lars-Peter Clausen | 85e7652 | 2011-11-23 11:40:40 +0100 | [diff] [blame] | 50 | static const struct snd_soc_dai_ops ac97_dai_ops = { |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 51 | .prepare = ac97_prepare, |
| 52 | }; |
| 53 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 54 | static struct snd_soc_dai_driver ac97_dai = { |
| 55 | .name = "ac97-hifi", |
Mark Brown | 3ba9e10a | 2008-11-24 18:01:05 +0000 | [diff] [blame] | 56 | .ac97_control = 1, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 57 | .playback = { |
| 58 | .stream_name = "AC97 Playback", |
| 59 | .channels_min = 1, |
Liam Girdwood | 5a8ec34 | 2007-02-02 17:16:41 +0100 | [diff] [blame] | 60 | .channels_max = 2, |
| 61 | .rates = STD_AC97_RATES, |
Mark Brown | 33f503c | 2009-05-02 12:24:55 +0100 | [diff] [blame] | 62 | .formats = SND_SOC_STD_AC97_FMTS,}, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 63 | .capture = { |
| 64 | .stream_name = "AC97 Capture", |
| 65 | .channels_min = 1, |
Liam Girdwood | 5a8ec34 | 2007-02-02 17:16:41 +0100 | [diff] [blame] | 66 | .channels_max = 2, |
| 67 | .rates = STD_AC97_RATES, |
Mark Brown | 33f503c | 2009-05-02 12:24:55 +0100 | [diff] [blame] | 68 | .formats = SND_SOC_STD_AC97_FMTS,}, |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 69 | .ops = &ac97_dai_ops, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 70 | }; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 71 | |
| 72 | static unsigned int ac97_read(struct snd_soc_codec *codec, |
| 73 | unsigned int reg) |
| 74 | { |
Mark Brown | b047e1c | 2013-06-26 12:45:59 +0100 | [diff] [blame] | 75 | return soc_ac97_ops->read(codec->ac97, reg); |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static int ac97_write(struct snd_soc_codec *codec, unsigned int reg, |
| 79 | unsigned int val) |
| 80 | { |
Mark Brown | b047e1c | 2013-06-26 12:45:59 +0100 | [diff] [blame] | 81 | soc_ac97_ops->write(codec->ac97, reg, val); |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 82 | return 0; |
| 83 | } |
| 84 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 85 | static int ac97_soc_probe(struct snd_soc_codec *codec) |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 86 | { |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 87 | struct snd_ac97_bus *ac97_bus; |
| 88 | struct snd_ac97_template ac97_template; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 89 | int ret; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 90 | |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 91 | /* add codec as bus device for standard ac97 */ |
Lars-Peter Clausen | 0020010 | 2014-07-17 22:01:07 +0200 | [diff] [blame] | 92 | ret = snd_ac97_bus(codec->component.card->snd_card, 0, soc_ac97_ops, |
| 93 | NULL, &ac97_bus); |
Mark Brown | 24c053e | 2008-04-23 15:26:45 +0200 | [diff] [blame] | 94 | if (ret < 0) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 95 | return ret; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 96 | |
| 97 | memset(&ac97_template, 0, sizeof(struct snd_ac97_template)); |
| 98 | ret = snd_ac97_mixer(ac97_bus, &ac97_template, &codec->ac97); |
Mark Brown | 24c053e | 2008-04-23 15:26:45 +0200 | [diff] [blame] | 99 | if (ret < 0) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 100 | return ret; |
Graham Gower | fb48e3c | 2010-03-25 10:52:12 +1030 | [diff] [blame] | 101 | |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 102 | return 0; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 103 | } |
| 104 | |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 105 | #ifdef CONFIG_PM |
Lars-Peter Clausen | 84b315e | 2011-12-02 10:18:28 +0100 | [diff] [blame] | 106 | static int ac97_soc_suspend(struct snd_soc_codec *codec) |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 107 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 108 | snd_ac97_suspend(codec->ac97); |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 109 | |
| 110 | return 0; |
| 111 | } |
| 112 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 113 | static int ac97_soc_resume(struct snd_soc_codec *codec) |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 114 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 115 | snd_ac97_resume(codec->ac97); |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | #else |
| 120 | #define ac97_soc_suspend NULL |
| 121 | #define ac97_soc_resume NULL |
| 122 | #endif |
| 123 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 124 | static struct snd_soc_codec_driver soc_codec_dev_ac97 = { |
Mark Brown | 591796b | 2010-09-23 19:43:07 +0100 | [diff] [blame] | 125 | .write = ac97_write, |
| 126 | .read = ac97_read, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 127 | .probe = ac97_soc_probe, |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 128 | .suspend = ac97_soc_suspend, |
| 129 | .resume = ac97_soc_resume, |
Mark Brown | d2a369c | 2013-08-19 12:18:07 +0100 | [diff] [blame] | 130 | |
| 131 | .dapm_widgets = ac97_widgets, |
| 132 | .num_dapm_widgets = ARRAY_SIZE(ac97_widgets), |
| 133 | .dapm_routes = ac97_routes, |
| 134 | .num_dapm_routes = ARRAY_SIZE(ac97_routes), |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 135 | }; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 136 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 137 | static int ac97_probe(struct platform_device *pdev) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 138 | { |
| 139 | return snd_soc_register_codec(&pdev->dev, |
| 140 | &soc_codec_dev_ac97, &ac97_dai, 1); |
| 141 | } |
| 142 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 143 | static int ac97_remove(struct platform_device *pdev) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 144 | { |
| 145 | snd_soc_unregister_codec(&pdev->dev); |
| 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | static struct platform_driver ac97_codec_driver = { |
| 150 | .driver = { |
Mark Brown | 591796b | 2010-09-23 19:43:07 +0100 | [diff] [blame] | 151 | .name = "ac97-codec", |
| 152 | .owner = THIS_MODULE, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 153 | }, |
| 154 | |
| 155 | .probe = ac97_probe, |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 156 | .remove = ac97_remove, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 157 | }; |
| 158 | |
Mark Brown | 5bbcc3c | 2011-11-23 22:52:08 +0000 | [diff] [blame] | 159 | module_platform_driver(ac97_codec_driver); |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 160 | |
| 161 | MODULE_DESCRIPTION("Soc Generic AC97 driver"); |
| 162 | MODULE_AUTHOR("Liam Girdwood"); |
| 163 | MODULE_LICENSE("GPL"); |
Mika Westerberg | 0afe6b9 | 2010-10-13 11:30:33 +0300 | [diff] [blame] | 164 | MODULE_ALIAS("platform:ac97-codec"); |