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