1 // SPDX-License-Identifier: GPL-2.0+
3 // Lowland audio support
5 // Copyright 2011 Wolfson Microelectronics
8 #include <sound/soc-dapm.h>
9 #include <sound/jack.h>
10 #include <linux/gpio.h>
11 #include <linux/module.h>
13 #include "../codecs/wm5100.h"
14 #include "../codecs/wm9081.h"
16 #define MCLK1_RATE (44100 * 512)
17 #define CLKOUT_RATE (44100 * 256)
19 static struct snd_soc_jack lowland_headset
;
21 /* Headset jack detection DAPM pins */
22 static struct snd_soc_jack_pin lowland_headset_pins
[] = {
25 .mask
= SND_JACK_HEADPHONE
| SND_JACK_LINEOUT
,
29 .mask
= SND_JACK_MICROPHONE
,
33 static int lowland_wm5100_init(struct snd_soc_pcm_runtime
*rtd
)
35 struct snd_soc_component
*component
= rtd
->codec_dai
->component
;
38 ret
= snd_soc_component_set_sysclk(component
, WM5100_CLK_SYSCLK
,
39 WM5100_CLKSRC_MCLK1
, MCLK1_RATE
,
42 pr_err("Failed to set SYSCLK clock source: %d\n", ret
);
46 /* Clock OPCLK, used by the other audio components. */
47 ret
= snd_soc_component_set_sysclk(component
, WM5100_CLK_OPCLK
, 0,
50 pr_err("Failed to set OPCLK rate: %d\n", ret
);
54 ret
= snd_soc_card_jack_new(rtd
->card
, "Headset", SND_JACK_LINEOUT
|
55 SND_JACK_HEADSET
| SND_JACK_BTN_0
,
56 &lowland_headset
, lowland_headset_pins
,
57 ARRAY_SIZE(lowland_headset_pins
));
61 wm5100_detect(component
, &lowland_headset
);
66 static int lowland_wm9081_init(struct snd_soc_pcm_runtime
*rtd
)
68 struct snd_soc_component
*component
= rtd
->codec_dai
->component
;
70 snd_soc_dapm_nc_pin(&rtd
->card
->dapm
, "LINEOUT");
72 /* At any time the WM9081 is active it will have this clock */
73 return snd_soc_component_set_sysclk(component
, WM9081_SYSCLK_MCLK
, 0,
77 static const struct snd_soc_pcm_stream sub_params
= {
78 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
85 SND_SOC_DAILINK_DEFS(cpu
,
86 DAILINK_COMP_ARRAY(COMP_CPU("samsung-i2s.0")),
87 DAILINK_COMP_ARRAY(COMP_CODEC("wm5100.1-001a", "wm5100-aif1")),
88 DAILINK_COMP_ARRAY(COMP_PLATFORM("samsung-i2s.0")));
90 SND_SOC_DAILINK_DEFS(baseband
,
91 DAILINK_COMP_ARRAY(COMP_CPU("wm5100-aif2")),
92 DAILINK_COMP_ARRAY(COMP_CODEC("wm1250-ev1.1-0027", "wm1250-ev1")));
94 SND_SOC_DAILINK_DEFS(speaker
,
95 DAILINK_COMP_ARRAY(COMP_CPU("wm5100-aif3")),
96 DAILINK_COMP_ARRAY(COMP_CODEC("wm9081.1-006c", "wm9081-hifi")));
98 static struct snd_soc_dai_link lowland_dai
[] = {
101 .stream_name
= "CPU",
102 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
103 SND_SOC_DAIFMT_CBM_CFM
,
104 .init
= lowland_wm5100_init
,
105 SND_SOC_DAILINK_REG(cpu
),
109 .stream_name
= "Baseband",
110 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
111 SND_SOC_DAIFMT_CBM_CFM
,
113 SND_SOC_DAILINK_REG(baseband
),
116 .name
= "Sub Speaker",
117 .stream_name
= "Sub Speaker",
118 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
119 SND_SOC_DAIFMT_CBM_CFM
,
121 .params
= &sub_params
,
122 .init
= lowland_wm9081_init
,
123 SND_SOC_DAILINK_REG(speaker
),
127 static struct snd_soc_codec_conf lowland_codec_conf
[] = {
129 .dlc
= COMP_CODEC_CONF("wm9081.1-006c"),
130 .name_prefix
= "Sub",
134 static const struct snd_kcontrol_new controls
[] = {
135 SOC_DAPM_PIN_SWITCH("Main Speaker"),
136 SOC_DAPM_PIN_SWITCH("Main DMIC"),
137 SOC_DAPM_PIN_SWITCH("Main AMIC"),
138 SOC_DAPM_PIN_SWITCH("WM1250 Input"),
139 SOC_DAPM_PIN_SWITCH("WM1250 Output"),
140 SOC_DAPM_PIN_SWITCH("Headphone"),
143 static struct snd_soc_dapm_widget widgets
[] = {
144 SND_SOC_DAPM_HP("Headphone", NULL
),
145 SND_SOC_DAPM_MIC("Headset Mic", NULL
),
147 SND_SOC_DAPM_SPK("Main Speaker", NULL
),
149 SND_SOC_DAPM_MIC("Main AMIC", NULL
),
150 SND_SOC_DAPM_MIC("Main DMIC", NULL
),
153 static struct snd_soc_dapm_route audio_paths
[] = {
154 { "Sub IN1", NULL
, "HPOUT2L" },
155 { "Sub IN2", NULL
, "HPOUT2R" },
157 { "Main Speaker", NULL
, "Sub SPKN" },
158 { "Main Speaker", NULL
, "Sub SPKP" },
159 { "Main Speaker", NULL
, "SPKDAT1" },
162 static struct snd_soc_card lowland
= {
164 .owner
= THIS_MODULE
,
165 .dai_link
= lowland_dai
,
166 .num_links
= ARRAY_SIZE(lowland_dai
),
167 .codec_conf
= lowland_codec_conf
,
168 .num_configs
= ARRAY_SIZE(lowland_codec_conf
),
170 .controls
= controls
,
171 .num_controls
= ARRAY_SIZE(controls
),
172 .dapm_widgets
= widgets
,
173 .num_dapm_widgets
= ARRAY_SIZE(widgets
),
174 .dapm_routes
= audio_paths
,
175 .num_dapm_routes
= ARRAY_SIZE(audio_paths
),
178 static int lowland_probe(struct platform_device
*pdev
)
180 struct snd_soc_card
*card
= &lowland
;
183 card
->dev
= &pdev
->dev
;
185 ret
= devm_snd_soc_register_card(&pdev
->dev
, card
);
187 dev_err(&pdev
->dev
, "snd_soc_register_card() failed: %d\n",
193 static struct platform_driver lowland_driver
= {
196 .pm
= &snd_soc_pm_ops
,
198 .probe
= lowland_probe
,
201 module_platform_driver(lowland_driver
);
203 MODULE_DESCRIPTION("Lowland audio support");
204 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
205 MODULE_LICENSE("GPL");
206 MODULE_ALIAS("platform:lowland");