2 * Lowland audio support
4 * Copyright 2011 Wolfson Microelectronics
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <sound/soc.h>
13 #include <sound/soc-dapm.h>
14 #include <sound/jack.h>
15 #include <linux/gpio.h>
16 #include <linux/module.h>
18 #include "../codecs/wm5100.h"
19 #include "../codecs/wm9081.h"
21 #define MCLK1_RATE (44100 * 512)
22 #define CLKOUT_RATE (44100 * 256)
24 static struct snd_soc_jack lowland_headset
;
26 /* Headset jack detection DAPM pins */
27 static struct snd_soc_jack_pin lowland_headset_pins
[] = {
30 .mask
= SND_JACK_HEADPHONE
| SND_JACK_LINEOUT
,
34 .mask
= SND_JACK_MICROPHONE
,
38 static int lowland_wm5100_init(struct snd_soc_pcm_runtime
*rtd
)
40 struct snd_soc_codec
*codec
= rtd
->codec
;
43 ret
= snd_soc_codec_set_sysclk(codec
, WM5100_CLK_SYSCLK
,
44 WM5100_CLKSRC_MCLK1
, MCLK1_RATE
,
47 pr_err("Failed to set SYSCLK clock source: %d\n", ret
);
51 /* Clock OPCLK, used by the other audio components. */
52 ret
= snd_soc_codec_set_sysclk(codec
, WM5100_CLK_OPCLK
, 0,
55 pr_err("Failed to set OPCLK rate: %d\n", ret
);
59 ret
= snd_soc_jack_new(codec
, "Headset",
60 SND_JACK_LINEOUT
| SND_JACK_HEADSET
|
66 ret
= snd_soc_jack_add_pins(&lowland_headset
,
67 ARRAY_SIZE(lowland_headset_pins
),
68 lowland_headset_pins
);
72 wm5100_detect(codec
, &lowland_headset
);
77 static int lowland_wm9081_init(struct snd_soc_pcm_runtime
*rtd
)
79 struct snd_soc_codec
*codec
= rtd
->codec
;
81 snd_soc_dapm_nc_pin(&codec
->dapm
, "LINEOUT");
83 /* At any time the WM9081 is active it will have this clock */
84 return snd_soc_codec_set_sysclk(codec
, WM9081_SYSCLK_MCLK
, 0,
88 static const struct snd_soc_pcm_stream sub_params
= {
89 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
96 static struct snd_soc_dai_link lowland_dai
[] = {
100 .cpu_dai_name
= "samsung-i2s.0",
101 .codec_dai_name
= "wm5100-aif1",
102 .platform_name
= "samsung-i2s.0",
103 .codec_name
= "wm5100.1-001a",
104 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
105 SND_SOC_DAIFMT_CBM_CFM
,
106 .init
= lowland_wm5100_init
,
110 .stream_name
= "Baseband",
111 .cpu_dai_name
= "wm5100-aif2",
112 .codec_dai_name
= "wm1250-ev1",
113 .codec_name
= "wm1250-ev1.1-0027",
114 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
115 SND_SOC_DAIFMT_CBM_CFM
,
119 .name
= "Sub Speaker",
120 .stream_name
= "Sub Speaker",
121 .cpu_dai_name
= "wm5100-aif3",
122 .codec_dai_name
= "wm9081-hifi",
123 .codec_name
= "wm9081.1-006c",
124 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
125 SND_SOC_DAIFMT_CBM_CFM
,
127 .params
= &sub_params
,
128 .init
= lowland_wm9081_init
,
132 static struct snd_soc_codec_conf lowland_codec_conf
[] = {
134 .dev_name
= "wm9081.1-006c",
135 .name_prefix
= "Sub",
139 static const struct snd_kcontrol_new controls
[] = {
140 SOC_DAPM_PIN_SWITCH("Main Speaker"),
141 SOC_DAPM_PIN_SWITCH("Main DMIC"),
142 SOC_DAPM_PIN_SWITCH("Main AMIC"),
143 SOC_DAPM_PIN_SWITCH("WM1250 Input"),
144 SOC_DAPM_PIN_SWITCH("WM1250 Output"),
145 SOC_DAPM_PIN_SWITCH("Headphone"),
148 static struct snd_soc_dapm_widget widgets
[] = {
149 SND_SOC_DAPM_HP("Headphone", NULL
),
150 SND_SOC_DAPM_MIC("Headset Mic", NULL
),
152 SND_SOC_DAPM_SPK("Main Speaker", NULL
),
154 SND_SOC_DAPM_MIC("Main AMIC", NULL
),
155 SND_SOC_DAPM_MIC("Main DMIC", NULL
),
158 static struct snd_soc_dapm_route audio_paths
[] = {
159 { "Sub IN1", NULL
, "HPOUT2L" },
160 { "Sub IN2", NULL
, "HPOUT2R" },
162 { "Main Speaker", NULL
, "Sub SPKN" },
163 { "Main Speaker", NULL
, "Sub SPKP" },
164 { "Main Speaker", NULL
, "SPKDAT1" },
167 static struct snd_soc_card lowland
= {
169 .owner
= THIS_MODULE
,
170 .dai_link
= lowland_dai
,
171 .num_links
= ARRAY_SIZE(lowland_dai
),
172 .codec_conf
= lowland_codec_conf
,
173 .num_configs
= ARRAY_SIZE(lowland_codec_conf
),
175 .controls
= controls
,
176 .num_controls
= ARRAY_SIZE(controls
),
177 .dapm_widgets
= widgets
,
178 .num_dapm_widgets
= ARRAY_SIZE(widgets
),
179 .dapm_routes
= audio_paths
,
180 .num_dapm_routes
= ARRAY_SIZE(audio_paths
),
183 static int lowland_probe(struct platform_device
*pdev
)
185 struct snd_soc_card
*card
= &lowland
;
188 card
->dev
= &pdev
->dev
;
190 ret
= devm_snd_soc_register_card(&pdev
->dev
, card
);
192 dev_err(&pdev
->dev
, "snd_soc_register_card() failed: %d\n",
198 static struct platform_driver lowland_driver
= {
201 .owner
= THIS_MODULE
,
202 .pm
= &snd_soc_pm_ops
,
204 .probe
= lowland_probe
,
207 module_platform_driver(lowland_driver
);
209 MODULE_DESCRIPTION("Lowland audio support");
210 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
211 MODULE_LICENSE("GPL");
212 MODULE_ALIAS("platform:lowland");