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> |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 19 | #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> |
| 24 | |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 25 | static int ac97_prepare(struct snd_pcm_substream *substream, |
| 26 | struct snd_soc_dai *dai) |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 27 | { |
| 28 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 29 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 30 | struct snd_soc_codec *codec = rtd->codec; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 31 | |
| 32 | int reg = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? |
| 33 | AC97_PCM_FRONT_DAC_RATE : AC97_PCM_LR_ADC_RATE; |
| 34 | return snd_ac97_set_rate(codec->ac97, reg, runtime->rate); |
| 35 | } |
| 36 | |
Liam Girdwood | 5a8ec34 | 2007-02-02 17:16:41 +0100 | [diff] [blame] | 37 | #define STD_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\ |
Mark Brown | 24c053e | 2008-04-23 15:26:45 +0200 | [diff] [blame] | 38 | SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 |\ |
| 39 | SNDRV_PCM_RATE_48000) |
Liam Girdwood | 5a8ec34 | 2007-02-02 17:16:41 +0100 | [diff] [blame] | 40 | |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 41 | static struct snd_soc_dai_ops ac97_dai_ops = { |
| 42 | .prepare = ac97_prepare, |
| 43 | }; |
| 44 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 45 | static struct snd_soc_dai_driver ac97_dai = { |
| 46 | .name = "ac97-hifi", |
Mark Brown | 3ba9e10a | 2008-11-24 18:01:05 +0000 | [diff] [blame] | 47 | .ac97_control = 1, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 48 | .playback = { |
| 49 | .stream_name = "AC97 Playback", |
| 50 | .channels_min = 1, |
Liam Girdwood | 5a8ec34 | 2007-02-02 17:16:41 +0100 | [diff] [blame] | 51 | .channels_max = 2, |
| 52 | .rates = STD_AC97_RATES, |
Mark Brown | 33f503c | 2009-05-02 12:24:55 +0100 | [diff] [blame] | 53 | .formats = SND_SOC_STD_AC97_FMTS,}, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 54 | .capture = { |
| 55 | .stream_name = "AC97 Capture", |
| 56 | .channels_min = 1, |
Liam Girdwood | 5a8ec34 | 2007-02-02 17:16:41 +0100 | [diff] [blame] | 57 | .channels_max = 2, |
| 58 | .rates = STD_AC97_RATES, |
Mark Brown | 33f503c | 2009-05-02 12:24:55 +0100 | [diff] [blame] | 59 | .formats = SND_SOC_STD_AC97_FMTS,}, |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 60 | .ops = &ac97_dai_ops, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 61 | }; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 62 | |
| 63 | static unsigned int ac97_read(struct snd_soc_codec *codec, |
| 64 | unsigned int reg) |
| 65 | { |
| 66 | return soc_ac97_ops.read(codec->ac97, reg); |
| 67 | } |
| 68 | |
| 69 | static int ac97_write(struct snd_soc_codec *codec, unsigned int reg, |
| 70 | unsigned int val) |
| 71 | { |
| 72 | soc_ac97_ops.write(codec->ac97, reg, val); |
| 73 | return 0; |
| 74 | } |
| 75 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 76 | static int ac97_soc_probe(struct snd_soc_codec *codec) |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 77 | { |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 78 | struct snd_ac97_bus *ac97_bus; |
| 79 | struct snd_ac97_template ac97_template; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 80 | int ret; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 81 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 82 | ret = snd_soc_new_ac97_codec(codec, &soc_ac97_ops, 0); |
| 83 | if (ret < 0) { |
Mark Brown | 591796b | 2010-09-23 19:43:07 +0100 | [diff] [blame^] | 84 | printk(KERN_ERR "ASoC: failed to init generic ac97 glue\n"); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 85 | return ret; |
| 86 | } |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 87 | |
| 88 | /* add codec as bus device for standard ac97 */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 89 | ret = snd_ac97_bus(codec->card->snd_card, 0, &soc_ac97_ops, NULL, &ac97_bus); |
Mark Brown | 24c053e | 2008-04-23 15:26:45 +0200 | [diff] [blame] | 90 | if (ret < 0) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 91 | return ret; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 92 | |
| 93 | memset(&ac97_template, 0, sizeof(struct snd_ac97_template)); |
| 94 | ret = snd_ac97_mixer(ac97_bus, &ac97_template, &codec->ac97); |
Mark Brown | 24c053e | 2008-04-23 15:26:45 +0200 | [diff] [blame] | 95 | if (ret < 0) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 96 | return ret; |
Graham Gower | fb48e3c | 2010-03-25 10:52:12 +1030 | [diff] [blame] | 97 | |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 98 | return 0; |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 99 | } |
| 100 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 101 | static int ac97_soc_remove(struct snd_soc_codec *codec) |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 102 | { |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 103 | return 0; |
| 104 | } |
| 105 | |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 106 | #ifdef CONFIG_PM |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 107 | static int ac97_soc_suspend(struct snd_soc_codec *codec, pm_message_t msg) |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 108 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 109 | snd_ac97_suspend(codec->ac97); |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 114 | static int ac97_soc_resume(struct snd_soc_codec *codec) |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 115 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 116 | snd_ac97_resume(codec->ac97); |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 117 | |
| 118 | return 0; |
| 119 | } |
| 120 | #else |
| 121 | #define ac97_soc_suspend NULL |
| 122 | #define ac97_soc_resume NULL |
| 123 | #endif |
| 124 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 125 | static struct snd_soc_codec_driver soc_codec_dev_ac97 = { |
Mark Brown | 591796b | 2010-09-23 19:43:07 +0100 | [diff] [blame^] | 126 | .write = ac97_write, |
| 127 | .read = ac97_read, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 128 | .probe = ac97_soc_probe, |
| 129 | .remove = ac97_soc_remove, |
Manuel Lauss | 3f77598 | 2008-07-03 09:33:10 +0200 | [diff] [blame] | 130 | .suspend = ac97_soc_suspend, |
| 131 | .resume = ac97_soc_resume, |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 132 | }; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 133 | |
| 134 | static __devinit int ac97_probe(struct platform_device *pdev) |
| 135 | { |
| 136 | return snd_soc_register_codec(&pdev->dev, |
| 137 | &soc_codec_dev_ac97, &ac97_dai, 1); |
| 138 | } |
| 139 | |
| 140 | static int __devexit ac97_remove(struct platform_device *pdev) |
| 141 | { |
| 142 | snd_soc_unregister_codec(&pdev->dev); |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | static struct platform_driver ac97_codec_driver = { |
| 147 | .driver = { |
Mark Brown | 591796b | 2010-09-23 19:43:07 +0100 | [diff] [blame^] | 148 | .name = "ac97-codec", |
| 149 | .owner = THIS_MODULE, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 150 | }, |
| 151 | |
| 152 | .probe = ac97_probe, |
| 153 | .remove = __devexit_p(ac97_remove), |
| 154 | }; |
| 155 | |
| 156 | static int __init ac97_init(void) |
| 157 | { |
| 158 | return platform_driver_register(&ac97_codec_driver); |
| 159 | } |
| 160 | module_init(ac97_init); |
| 161 | |
| 162 | static void __exit ac97_exit(void) |
| 163 | { |
| 164 | platform_driver_unregister(&ac97_codec_driver); |
| 165 | } |
| 166 | module_exit(ac97_exit); |
Richard Purdie | dbc6b6a | 2006-10-06 18:38:03 +0200 | [diff] [blame] | 167 | |
| 168 | MODULE_DESCRIPTION("Soc Generic AC97 driver"); |
| 169 | MODULE_AUTHOR("Liam Girdwood"); |
| 170 | MODULE_LICENSE("GPL"); |