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 struct snd_soc_dai ac97_dai = { 45 .name = "AC97 HiFi", 46 .ac97_control = 1, 47 .playback = { 48 .stream_name = "AC97 Playback", 49 .channels_min = 1, 50 .channels_max = 2, 51 .rates = STD_AC97_RATES, 52 .formats = SNDRV_PCM_FMTBIT_S16_LE,}, 53 .capture = { 54 .stream_name = "AC97 Capture", 55 .channels_min = 1, 56 .channels_max = 2, 57 .rates = STD_AC97_RATES, 58 .formats = SNDRV_PCM_FMTBIT_S16_LE,}, 59 .ops = { 60 .prepare = ac97_prepare,}, 61 }; 62 EXPORT_SYMBOL_GPL(ac97_dai); 63 64 static unsigned int ac97_read(struct snd_soc_codec *codec, 65 unsigned int reg) 66 { 67 return soc_ac97_ops.read(codec->ac97, reg); 68 } 69 70 static int ac97_write(struct snd_soc_codec *codec, unsigned int reg, 71 unsigned int val) 72 { 73 soc_ac97_ops.write(codec->ac97, reg, val); 74 return 0; 75 } 76 77 static int ac97_soc_probe(struct platform_device *pdev) 78 { 79 struct snd_soc_device *socdev = platform_get_drvdata(pdev); 80 struct snd_soc_codec *codec; 81 struct snd_ac97_bus *ac97_bus; 82 struct snd_ac97_template ac97_template; 83 int ret = 0; 84 85 printk(KERN_INFO "AC97 SoC Audio Codec %s\n", AC97_VERSION); 86 87 socdev->card->codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL); 88 if (!socdev->card->codec) 89 return -ENOMEM; 90 codec = socdev->card->codec; 91 mutex_init(&codec->mutex); 92 93 codec->name = "AC97"; 94 codec->owner = THIS_MODULE; 95 codec->dai = &ac97_dai; 96 codec->num_dai = 1; 97 codec->write = ac97_write; 98 codec->read = ac97_read; 99 INIT_LIST_HEAD(&codec->dapm_widgets); 100 INIT_LIST_HEAD(&codec->dapm_paths); 101 102 /* register pcms */ 103 ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1); 104 if (ret < 0) 105 goto err; 106 107 /* add codec as bus device for standard ac97 */ 108 ret = snd_ac97_bus(codec->card, 0, &soc_ac97_ops, NULL, &ac97_bus); 109 if (ret < 0) 110 goto bus_err; 111 112 memset(&ac97_template, 0, sizeof(struct snd_ac97_template)); 113 ret = snd_ac97_mixer(ac97_bus, &ac97_template, &codec->ac97); 114 if (ret < 0) 115 goto bus_err; 116 117 ret = snd_soc_init_card(socdev); 118 if (ret < 0) 119 goto bus_err; 120 return 0; 121 122 bus_err: 123 snd_soc_free_pcms(socdev); 124 125 err: 126 kfree(socdev->card->codec); 127 socdev->card->codec = NULL; 128 return ret; 129 } 130 131 static int ac97_soc_remove(struct platform_device *pdev) 132 { 133 struct snd_soc_device *socdev = platform_get_drvdata(pdev); 134 struct snd_soc_codec *codec = socdev->card->codec; 135 136 if (!codec) 137 return 0; 138 139 snd_soc_free_pcms(socdev); 140 kfree(socdev->card->codec); 141 142 return 0; 143 } 144 145 #ifdef CONFIG_PM 146 static int ac97_soc_suspend(struct platform_device *pdev, pm_message_t msg) 147 { 148 struct snd_soc_device *socdev = platform_get_drvdata(pdev); 149 150 snd_ac97_suspend(socdev->card->codec->ac97); 151 152 return 0; 153 } 154 155 static int ac97_soc_resume(struct platform_device *pdev) 156 { 157 struct snd_soc_device *socdev = platform_get_drvdata(pdev); 158 159 snd_ac97_resume(socdev->card->codec->ac97); 160 161 return 0; 162 } 163 #else 164 #define ac97_soc_suspend NULL 165 #define ac97_soc_resume NULL 166 #endif 167 168 struct snd_soc_codec_device soc_codec_dev_ac97 = { 169 .probe = ac97_soc_probe, 170 .remove = ac97_soc_remove, 171 .suspend = ac97_soc_suspend, 172 .resume = ac97_soc_resume, 173 }; 174 EXPORT_SYMBOL_GPL(soc_codec_dev_ac97); 175 176 MODULE_DESCRIPTION("Soc Generic AC97 driver"); 177 MODULE_AUTHOR("Liam Girdwood"); 178 MODULE_LICENSE("GPL"); 179