Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * corgi.c -- SoC audio for Corgi |
| 3 | * |
| 4 | * Copyright 2005 Wolfson Microelectronics PLC. |
| 5 | * Copyright 2005 Openedhand Ltd. |
| 6 | * |
Liam Girdwood | d331124 | 2008-10-12 13:17:36 +0100 | [diff] [blame] | 7 | * Authors: Liam Girdwood <lrg@slimlogic.co.uk> |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 8 | * Richard Purdie <richard@openedhand.com> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public License as published by the |
| 12 | * Free Software Foundation; either version 2 of the License, or (at your |
| 13 | * option) any later version. |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/moduleparam.h> |
| 18 | #include <linux/timer.h> |
Mark Brown | fc99675 | 2009-02-18 12:34:53 +0000 | [diff] [blame] | 19 | #include <linux/i2c.h> |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 20 | #include <linux/interrupt.h> |
| 21 | #include <linux/platform_device.h> |
Eric Miao | 6168cda | 2008-09-05 18:15:22 +0800 | [diff] [blame] | 22 | #include <linux/gpio.h> |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 23 | #include <sound/core.h> |
| 24 | #include <sound/pcm.h> |
| 25 | #include <sound/soc.h> |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 26 | |
| 27 | #include <asm/mach-types.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 28 | #include <mach/corgi.h> |
| 29 | #include <mach/audio.h> |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 30 | |
| 31 | #include "../codecs/wm8731.h" |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 32 | #include "pxa2xx-i2s.h" |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 33 | |
| 34 | #define CORGI_HP 0 |
| 35 | #define CORGI_MIC 1 |
| 36 | #define CORGI_LINE 2 |
| 37 | #define CORGI_HEADSET 3 |
| 38 | #define CORGI_HP_OFF 4 |
| 39 | #define CORGI_SPK_ON 0 |
| 40 | #define CORGI_SPK_OFF 1 |
| 41 | |
| 42 | /* audio clock in Hz - rounded from 12.235MHz */ |
| 43 | #define CORGI_AUDIO_CLOCK 12288000 |
| 44 | |
| 45 | static int corgi_jack_func; |
| 46 | static int corgi_spk_func; |
| 47 | |
| 48 | static void corgi_ext_control(struct snd_soc_codec *codec) |
| 49 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 50 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
| 51 | |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 52 | /* set up jack connection */ |
| 53 | switch (corgi_jack_func) { |
| 54 | case CORGI_HP: |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 55 | /* set = unmute headphone */ |
Eric Miao | 6168cda | 2008-09-05 18:15:22 +0800 | [diff] [blame] | 56 | gpio_set_value(CORGI_GPIO_MUTE_L, 1); |
| 57 | gpio_set_value(CORGI_GPIO_MUTE_R, 1); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 58 | snd_soc_dapm_disable_pin(dapm, "Mic Jack"); |
| 59 | snd_soc_dapm_disable_pin(dapm, "Line Jack"); |
| 60 | snd_soc_dapm_enable_pin(dapm, "Headphone Jack"); |
| 61 | snd_soc_dapm_disable_pin(dapm, "Headset Jack"); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 62 | break; |
| 63 | case CORGI_MIC: |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 64 | /* reset = mute headphone */ |
Eric Miao | 6168cda | 2008-09-05 18:15:22 +0800 | [diff] [blame] | 65 | gpio_set_value(CORGI_GPIO_MUTE_L, 0); |
| 66 | gpio_set_value(CORGI_GPIO_MUTE_R, 0); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 67 | snd_soc_dapm_enable_pin(dapm, "Mic Jack"); |
| 68 | snd_soc_dapm_disable_pin(dapm, "Line Jack"); |
| 69 | snd_soc_dapm_disable_pin(dapm, "Headphone Jack"); |
| 70 | snd_soc_dapm_disable_pin(dapm, "Headset Jack"); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 71 | break; |
| 72 | case CORGI_LINE: |
Eric Miao | 6168cda | 2008-09-05 18:15:22 +0800 | [diff] [blame] | 73 | gpio_set_value(CORGI_GPIO_MUTE_L, 0); |
| 74 | gpio_set_value(CORGI_GPIO_MUTE_R, 0); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 75 | snd_soc_dapm_disable_pin(dapm, "Mic Jack"); |
| 76 | snd_soc_dapm_enable_pin(dapm, "Line Jack"); |
| 77 | snd_soc_dapm_disable_pin(dapm, "Headphone Jack"); |
| 78 | snd_soc_dapm_disable_pin(dapm, "Headset Jack"); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 79 | break; |
| 80 | case CORGI_HEADSET: |
Eric Miao | 6168cda | 2008-09-05 18:15:22 +0800 | [diff] [blame] | 81 | gpio_set_value(CORGI_GPIO_MUTE_L, 0); |
| 82 | gpio_set_value(CORGI_GPIO_MUTE_R, 1); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 83 | snd_soc_dapm_enable_pin(dapm, "Mic Jack"); |
| 84 | snd_soc_dapm_disable_pin(dapm, "Line Jack"); |
| 85 | snd_soc_dapm_disable_pin(dapm, "Headphone Jack"); |
| 86 | snd_soc_dapm_enable_pin(dapm, "Headset Jack"); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 87 | break; |
| 88 | } |
| 89 | |
| 90 | if (corgi_spk_func == CORGI_SPK_ON) |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 91 | snd_soc_dapm_enable_pin(dapm, "Ext Spk"); |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 92 | else |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 93 | snd_soc_dapm_disable_pin(dapm, "Ext Spk"); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 94 | |
| 95 | /* signal a DAPM event */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 96 | snd_soc_dapm_sync(dapm); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | static int corgi_startup(struct snd_pcm_substream *substream) |
| 100 | { |
| 101 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 102 | struct snd_soc_codec *codec = rtd->codec; |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 103 | |
Mark Brown | 71a2956 | 2010-11-05 13:50:48 -0400 | [diff] [blame] | 104 | mutex_lock(&codec->mutex); |
| 105 | |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 106 | /* check the jack status at stream startup */ |
| 107 | corgi_ext_control(codec); |
Mark Brown | 71a2956 | 2010-11-05 13:50:48 -0400 | [diff] [blame] | 108 | |
| 109 | mutex_unlock(&codec->mutex); |
| 110 | |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | /* we need to unmute the HP at shutdown as the mute burns power on corgi */ |
Takashi Iwai | 5220ed6 | 2008-12-01 20:00:47 +0100 | [diff] [blame] | 115 | static void corgi_shutdown(struct snd_pcm_substream *substream) |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 116 | { |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 117 | /* set = unmute headphone */ |
Eric Miao | 6168cda | 2008-09-05 18:15:22 +0800 | [diff] [blame] | 118 | gpio_set_value(CORGI_GPIO_MUTE_L, 1); |
| 119 | gpio_set_value(CORGI_GPIO_MUTE_R, 1); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 120 | } |
| 121 | |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 122 | static int corgi_hw_params(struct snd_pcm_substream *substream, |
| 123 | struct snd_pcm_hw_params *params) |
| 124 | { |
| 125 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 126 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 127 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 128 | unsigned int clk = 0; |
| 129 | int ret = 0; |
| 130 | |
| 131 | switch (params_rate(params)) { |
| 132 | case 8000: |
| 133 | case 16000: |
| 134 | case 48000: |
| 135 | case 96000: |
| 136 | clk = 12288000; |
| 137 | break; |
| 138 | case 11025: |
| 139 | case 22050: |
| 140 | case 44100: |
| 141 | clk = 11289600; |
| 142 | break; |
| 143 | } |
| 144 | |
| 145 | /* set codec DAI configuration */ |
Liam Girdwood | 64105cf | 2008-07-08 13:19:18 +0100 | [diff] [blame] | 146 | ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S | |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 147 | SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS); |
| 148 | if (ret < 0) |
| 149 | return ret; |
| 150 | |
| 151 | /* set cpu DAI configuration */ |
Liam Girdwood | 64105cf | 2008-07-08 13:19:18 +0100 | [diff] [blame] | 152 | ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S | |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 153 | SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS); |
| 154 | if (ret < 0) |
| 155 | return ret; |
| 156 | |
| 157 | /* set the codec system clock for DAC and ADC */ |
Mark Brown | 9745e82 | 2010-08-17 23:40:24 +0100 | [diff] [blame] | 158 | ret = snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK_XTAL, clk, |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 159 | SND_SOC_CLOCK_IN); |
| 160 | if (ret < 0) |
| 161 | return ret; |
| 162 | |
| 163 | /* set the I2S system clock as input (unused) */ |
Liam Girdwood | 64105cf | 2008-07-08 13:19:18 +0100 | [diff] [blame] | 164 | ret = snd_soc_dai_set_sysclk(cpu_dai, PXA2XX_I2S_SYSCLK, 0, |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 165 | SND_SOC_CLOCK_IN); |
| 166 | if (ret < 0) |
| 167 | return ret; |
| 168 | |
| 169 | return 0; |
| 170 | } |
| 171 | |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 172 | static struct snd_soc_ops corgi_ops = { |
| 173 | .startup = corgi_startup, |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 174 | .hw_params = corgi_hw_params, |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 175 | .shutdown = corgi_shutdown, |
| 176 | }; |
| 177 | |
| 178 | static int corgi_get_jack(struct snd_kcontrol *kcontrol, |
| 179 | struct snd_ctl_elem_value *ucontrol) |
| 180 | { |
| 181 | ucontrol->value.integer.value[0] = corgi_jack_func; |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | static int corgi_set_jack(struct snd_kcontrol *kcontrol, |
| 186 | struct snd_ctl_elem_value *ucontrol) |
| 187 | { |
| 188 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 189 | |
| 190 | if (corgi_jack_func == ucontrol->value.integer.value[0]) |
| 191 | return 0; |
| 192 | |
| 193 | corgi_jack_func = ucontrol->value.integer.value[0]; |
| 194 | corgi_ext_control(codec); |
| 195 | return 1; |
| 196 | } |
| 197 | |
| 198 | static int corgi_get_spk(struct snd_kcontrol *kcontrol, |
| 199 | struct snd_ctl_elem_value *ucontrol) |
| 200 | { |
| 201 | ucontrol->value.integer.value[0] = corgi_spk_func; |
| 202 | return 0; |
| 203 | } |
| 204 | |
| 205 | static int corgi_set_spk(struct snd_kcontrol *kcontrol, |
| 206 | struct snd_ctl_elem_value *ucontrol) |
| 207 | { |
| 208 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 209 | |
| 210 | if (corgi_spk_func == ucontrol->value.integer.value[0]) |
| 211 | return 0; |
| 212 | |
| 213 | corgi_spk_func = ucontrol->value.integer.value[0]; |
| 214 | corgi_ext_control(codec); |
| 215 | return 1; |
| 216 | } |
| 217 | |
Jarkko Nikula | 338c7ed | 2008-02-28 12:34:48 +0100 | [diff] [blame] | 218 | static int corgi_amp_event(struct snd_soc_dapm_widget *w, |
| 219 | struct snd_kcontrol *k, int event) |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 220 | { |
Eric Miao | 6168cda | 2008-09-05 18:15:22 +0800 | [diff] [blame] | 221 | gpio_set_value(CORGI_GPIO_APM_ON, SND_SOC_DAPM_EVENT_ON(event)); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 222 | return 0; |
| 223 | } |
| 224 | |
Jarkko Nikula | 338c7ed | 2008-02-28 12:34:48 +0100 | [diff] [blame] | 225 | static int corgi_mic_event(struct snd_soc_dapm_widget *w, |
| 226 | struct snd_kcontrol *k, int event) |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 227 | { |
Eric Miao | 6168cda | 2008-09-05 18:15:22 +0800 | [diff] [blame] | 228 | gpio_set_value(CORGI_GPIO_MIC_BIAS, SND_SOC_DAPM_EVENT_ON(event)); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | /* corgi machine dapm widgets */ |
| 233 | static const struct snd_soc_dapm_widget wm8731_dapm_widgets[] = { |
| 234 | SND_SOC_DAPM_HP("Headphone Jack", NULL), |
| 235 | SND_SOC_DAPM_MIC("Mic Jack", corgi_mic_event), |
| 236 | SND_SOC_DAPM_SPK("Ext Spk", corgi_amp_event), |
| 237 | SND_SOC_DAPM_LINE("Line Jack", NULL), |
| 238 | SND_SOC_DAPM_HP("Headset Jack", NULL), |
| 239 | }; |
| 240 | |
| 241 | /* Corgi machine audio map (connections to the codec pins) */ |
Mark Brown | 25191c4 | 2008-05-13 14:55:48 +0200 | [diff] [blame] | 242 | static const struct snd_soc_dapm_route audio_map[] = { |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 243 | |
| 244 | /* headset Jack - in = micin, out = LHPOUT*/ |
| 245 | {"Headset Jack", NULL, "LHPOUT"}, |
| 246 | |
| 247 | /* headphone connected to LHPOUT1, RHPOUT1 */ |
| 248 | {"Headphone Jack", NULL, "LHPOUT"}, |
| 249 | {"Headphone Jack", NULL, "RHPOUT"}, |
| 250 | |
| 251 | /* speaker connected to LOUT, ROUT */ |
| 252 | {"Ext Spk", NULL, "ROUT"}, |
| 253 | {"Ext Spk", NULL, "LOUT"}, |
| 254 | |
| 255 | /* mic is connected to MICIN (via right channel of headphone jack) */ |
| 256 | {"MICIN", NULL, "Mic Jack"}, |
| 257 | |
| 258 | /* Same as the above but no mic bias for line signals */ |
| 259 | {"MICIN", NULL, "Line Jack"}, |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 260 | }; |
| 261 | |
| 262 | static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset", |
| 263 | "Off"}; |
| 264 | static const char *spk_function[] = {"On", "Off"}; |
| 265 | static const struct soc_enum corgi_enum[] = { |
| 266 | SOC_ENUM_SINGLE_EXT(5, jack_function), |
| 267 | SOC_ENUM_SINGLE_EXT(2, spk_function), |
| 268 | }; |
| 269 | |
| 270 | static const struct snd_kcontrol_new wm8731_corgi_controls[] = { |
| 271 | SOC_ENUM_EXT("Jack Function", corgi_enum[0], corgi_get_jack, |
| 272 | corgi_set_jack), |
| 273 | SOC_ENUM_EXT("Speaker Function", corgi_enum[1], corgi_get_spk, |
| 274 | corgi_set_spk), |
| 275 | }; |
| 276 | |
| 277 | /* |
| 278 | * Logic for a wm8731 as connected on a Sharp SL-C7x0 Device |
| 279 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 280 | static int corgi_wm8731_init(struct snd_soc_pcm_runtime *rtd) |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 281 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 282 | struct snd_soc_codec *codec = rtd->codec; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 283 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
Philipp Zabel | eb5f6d75 | 2009-03-12 11:07:54 +0100 | [diff] [blame] | 284 | int err; |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 285 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 286 | snd_soc_dapm_nc_pin(dapm, "LLINEIN"); |
| 287 | snd_soc_dapm_nc_pin(dapm, "RLINEIN"); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 288 | |
| 289 | /* Add corgi specific controls */ |
Philipp Zabel | eb5f6d75 | 2009-03-12 11:07:54 +0100 | [diff] [blame] | 290 | err = snd_soc_add_controls(codec, wm8731_corgi_controls, |
| 291 | ARRAY_SIZE(wm8731_corgi_controls)); |
| 292 | if (err < 0) |
| 293 | return err; |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 294 | |
| 295 | /* Add corgi specific widgets */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 296 | snd_soc_dapm_new_controls(dapm, wm8731_dapm_widgets, |
Mark Brown | 25191c4 | 2008-05-13 14:55:48 +0200 | [diff] [blame] | 297 | ARRAY_SIZE(wm8731_dapm_widgets)); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 298 | |
| 299 | /* Set up corgi specific audio path audio_map */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 300 | snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map)); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 301 | |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 302 | return 0; |
| 303 | } |
| 304 | |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 305 | /* corgi digital audio interface glue - connects codec <--> CPU */ |
| 306 | static struct snd_soc_dai_link corgi_dai = { |
| 307 | .name = "WM8731", |
| 308 | .stream_name = "WM8731", |
Dmitry Eremin-Solenikov | a3adfa0 | 2011-01-21 22:14:17 +0300 | [diff] [blame] | 309 | .cpu_dai_name = "pxa2xx-i2s", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 310 | .codec_dai_name = "wm8731-hifi", |
| 311 | .platform_name = "pxa-pcm-audio", |
Mark Brown | 99b59f3 | 2011-03-27 14:35:15 +0100 | [diff] [blame] | 312 | .codec_name = "wm8731.0-001b", |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 313 | .init = corgi_wm8731_init, |
Liam Girdwood | d928b25 | 2007-02-02 17:22:20 +0100 | [diff] [blame] | 314 | .ops = &corgi_ops, |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 315 | }; |
| 316 | |
| 317 | /* corgi audio machine driver */ |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 318 | static struct snd_soc_card snd_soc_corgi = { |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 319 | .name = "Corgi", |
Axel Lin | 561c6a1 | 2011-12-22 09:44:43 +0800 | [diff] [blame^] | 320 | .owner = THIS_MODULE, |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 321 | .dai_link = &corgi_dai, |
| 322 | .num_links = 1, |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 323 | }; |
| 324 | |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 325 | static struct platform_device *corgi_snd_device; |
| 326 | |
| 327 | static int __init corgi_init(void) |
| 328 | { |
| 329 | int ret; |
| 330 | |
Mark Brown | 1bfcd36 | 2008-04-23 15:12:19 +0200 | [diff] [blame] | 331 | if (!(machine_is_corgi() || machine_is_shepherd() || |
| 332 | machine_is_husky())) |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 333 | return -ENODEV; |
| 334 | |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 335 | corgi_snd_device = platform_device_alloc("soc-audio", -1); |
| 336 | if (!corgi_snd_device) |
| 337 | return -ENOMEM; |
| 338 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 339 | platform_set_drvdata(corgi_snd_device, &snd_soc_corgi); |
Liam Girdwood | a1eb4b3 | 2006-10-12 14:31:16 +0200 | [diff] [blame] | 340 | ret = platform_device_add(corgi_snd_device); |
| 341 | |
| 342 | if (ret) |
| 343 | platform_device_put(corgi_snd_device); |
| 344 | |
| 345 | return ret; |
| 346 | } |
| 347 | |
| 348 | static void __exit corgi_exit(void) |
| 349 | { |
| 350 | platform_device_unregister(corgi_snd_device); |
| 351 | } |
| 352 | |
| 353 | module_init(corgi_init); |
| 354 | module_exit(corgi_exit); |
| 355 | |
| 356 | /* Module information */ |
| 357 | MODULE_AUTHOR("Richard Purdie"); |
| 358 | MODULE_DESCRIPTION("ALSA SoC Corgi"); |
| 359 | MODULE_LICENSE("GPL"); |