1 // SPDX-License-Identifier: GPL-2.0-only
3 * wm8737.c -- WM8737 ALSA SoC Audio driver
5 * Copyright 2010 Wolfson Microelectronics plc
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
10 #include <linux/module.h>
11 #include <linux/moduleparam.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
15 #include <linux/i2c.h>
16 #include <linux/regmap.h>
17 #include <linux/regulator/consumer.h>
18 #include <linux/spi/spi.h>
19 #include <linux/slab.h>
20 #include <linux/of_device.h>
21 #include <sound/core.h>
22 #include <sound/pcm.h>
23 #include <sound/pcm_params.h>
24 #include <sound/soc.h>
25 #include <sound/soc-dapm.h>
26 #include <sound/initval.h>
27 #include <sound/tlv.h>
31 #define WM8737_NUM_SUPPLIES 4
32 static const char *wm8737_supply_names
[WM8737_NUM_SUPPLIES
] = {
39 /* codec private data */
41 struct regmap
*regmap
;
42 struct regulator_bulk_data supplies
[WM8737_NUM_SUPPLIES
];
46 static const struct reg_default wm8737_reg_defaults
[] = {
47 { 0, 0x00C3 }, /* R0 - Left PGA volume */
48 { 1, 0x00C3 }, /* R1 - Right PGA volume */
49 { 2, 0x0007 }, /* R2 - AUDIO path L */
50 { 3, 0x0007 }, /* R3 - AUDIO path R */
51 { 4, 0x0000 }, /* R4 - 3D Enhance */
52 { 5, 0x0000 }, /* R5 - ADC Control */
53 { 6, 0x0000 }, /* R6 - Power Management */
54 { 7, 0x000A }, /* R7 - Audio Format */
55 { 8, 0x0000 }, /* R8 - Clocking */
56 { 9, 0x000F }, /* R9 - MIC Preamp Control */
57 { 10, 0x0003 }, /* R10 - Misc Bias Control */
58 { 11, 0x0000 }, /* R11 - Noise Gate */
59 { 12, 0x007C }, /* R12 - ALC1 */
60 { 13, 0x0000 }, /* R13 - ALC2 */
61 { 14, 0x0032 }, /* R14 - ALC3 */
64 static bool wm8737_volatile(struct device
*dev
, unsigned int reg
)
74 static int wm8737_reset(struct snd_soc_component
*component
)
76 return snd_soc_component_write(component
, WM8737_RESET
, 0);
79 static const DECLARE_TLV_DB_RANGE(micboost_tlv
,
80 0, 0, TLV_DB_SCALE_ITEM(1300, 0, 0),
81 1, 1, TLV_DB_SCALE_ITEM(1800, 0, 0),
82 2, 2, TLV_DB_SCALE_ITEM(2800, 0, 0),
83 3, 3, TLV_DB_SCALE_ITEM(3300, 0, 0)
85 static const DECLARE_TLV_DB_SCALE(pga_tlv
, -9750, 50, 1);
86 static const DECLARE_TLV_DB_SCALE(adc_tlv
, -600, 600, 0);
87 static const DECLARE_TLV_DB_SCALE(ng_tlv
, -7800, 600, 0);
88 static const DECLARE_TLV_DB_SCALE(alc_max_tlv
, -1200, 600, 0);
89 static const DECLARE_TLV_DB_SCALE(alc_target_tlv
, -1800, 100, 0);
91 static const char *micbias_enum_text
[] = {
98 static SOC_ENUM_SINGLE_DECL(micbias_enum
,
99 WM8737_MIC_PREAMP_CONTROL
, 0, micbias_enum_text
);
101 static const char *low_cutoff_text
[] = {
105 static SOC_ENUM_SINGLE_DECL(low_3d
,
106 WM8737_3D_ENHANCE
, 6, low_cutoff_text
);
108 static const char *high_cutoff_text
[] = {
112 static SOC_ENUM_SINGLE_DECL(high_3d
,
113 WM8737_3D_ENHANCE
, 5, high_cutoff_text
);
115 static const char *alc_fn_text
[] = {
116 "Disabled", "Right", "Left", "Stereo"
119 static SOC_ENUM_SINGLE_DECL(alc_fn
,
120 WM8737_ALC1
, 7, alc_fn_text
);
122 static const char *alc_hold_text
[] = {
123 "0", "2.67ms", "5.33ms", "10.66ms", "21.32ms", "42.64ms", "85.28ms",
124 "170.56ms", "341.12ms", "682.24ms", "1.364s", "2.728s", "5.458s",
125 "10.916s", "21.832s", "43.691s"
128 static SOC_ENUM_SINGLE_DECL(alc_hold
,
129 WM8737_ALC2
, 0, alc_hold_text
);
131 static const char *alc_atk_text
[] = {
132 "8.4ms", "16.8ms", "33.6ms", "67.2ms", "134.4ms", "268.8ms", "537.6ms",
133 "1.075s", "2.15s", "4.3s", "8.6s"
136 static SOC_ENUM_SINGLE_DECL(alc_atk
,
137 WM8737_ALC3
, 0, alc_atk_text
);
139 static const char *alc_dcy_text
[] = {
140 "33.6ms", "67.2ms", "134.4ms", "268.8ms", "537.6ms", "1.075s", "2.15s",
141 "4.3s", "8.6s", "17.2s", "34.41s"
144 static SOC_ENUM_SINGLE_DECL(alc_dcy
,
145 WM8737_ALC3
, 4, alc_dcy_text
);
147 static const struct snd_kcontrol_new wm8737_snd_controls
[] = {
148 SOC_DOUBLE_R_TLV("Mic Boost Volume", WM8737_AUDIO_PATH_L
, WM8737_AUDIO_PATH_R
,
149 6, 3, 0, micboost_tlv
),
150 SOC_DOUBLE_R("Mic Boost Switch", WM8737_AUDIO_PATH_L
, WM8737_AUDIO_PATH_R
,
152 SOC_DOUBLE("Mic ZC Switch", WM8737_AUDIO_PATH_L
, WM8737_AUDIO_PATH_R
,
155 SOC_DOUBLE_R_TLV("Capture Volume", WM8737_LEFT_PGA_VOLUME
,
156 WM8737_RIGHT_PGA_VOLUME
, 0, 255, 0, pga_tlv
),
157 SOC_DOUBLE("Capture ZC Switch", WM8737_AUDIO_PATH_L
, WM8737_AUDIO_PATH_R
,
160 SOC_DOUBLE("INPUT1 DC Bias Switch", WM8737_MISC_BIAS_CONTROL
, 0, 1, 1, 0),
162 SOC_ENUM("Mic PGA Bias", micbias_enum
),
163 SOC_SINGLE("ADC Low Power Switch", WM8737_ADC_CONTROL
, 2, 1, 0),
164 SOC_SINGLE("High Pass Filter Switch", WM8737_ADC_CONTROL
, 0, 1, 1),
165 SOC_DOUBLE("Polarity Invert Switch", WM8737_ADC_CONTROL
, 5, 6, 1, 0),
167 SOC_SINGLE("3D Switch", WM8737_3D_ENHANCE
, 0, 1, 0),
168 SOC_SINGLE("3D Depth", WM8737_3D_ENHANCE
, 1, 15, 0),
169 SOC_ENUM("3D Low Cut-off", low_3d
),
170 SOC_ENUM("3D High Cut-off", high_3d
),
171 SOC_SINGLE_TLV("3D ADC Volume", WM8737_3D_ENHANCE
, 7, 1, 1, adc_tlv
),
173 SOC_SINGLE("Noise Gate Switch", WM8737_NOISE_GATE
, 0, 1, 0),
174 SOC_SINGLE_TLV("Noise Gate Threshold Volume", WM8737_NOISE_GATE
, 2, 7, 0,
177 SOC_ENUM("ALC", alc_fn
),
178 SOC_SINGLE_TLV("ALC Max Gain Volume", WM8737_ALC1
, 4, 7, 0, alc_max_tlv
),
179 SOC_SINGLE_TLV("ALC Target Volume", WM8737_ALC1
, 0, 15, 0, alc_target_tlv
),
180 SOC_ENUM("ALC Hold Time", alc_hold
),
181 SOC_SINGLE("ALC ZC Switch", WM8737_ALC2
, 4, 1, 0),
182 SOC_ENUM("ALC Attack Time", alc_atk
),
183 SOC_ENUM("ALC Decay Time", alc_dcy
),
186 static const char *linsel_text
[] = {
187 "LINPUT1", "LINPUT2", "LINPUT3", "LINPUT1 DC",
190 static SOC_ENUM_SINGLE_DECL(linsel_enum
,
191 WM8737_AUDIO_PATH_L
, 7, linsel_text
);
193 static const struct snd_kcontrol_new linsel_mux
=
194 SOC_DAPM_ENUM("LINSEL", linsel_enum
);
197 static const char *rinsel_text
[] = {
198 "RINPUT1", "RINPUT2", "RINPUT3", "RINPUT1 DC",
201 static SOC_ENUM_SINGLE_DECL(rinsel_enum
,
202 WM8737_AUDIO_PATH_R
, 7, rinsel_text
);
204 static const struct snd_kcontrol_new rinsel_mux
=
205 SOC_DAPM_ENUM("RINSEL", rinsel_enum
);
207 static const char *bypass_text
[] = {
211 static SOC_ENUM_SINGLE_DECL(lbypass_enum
,
212 WM8737_MIC_PREAMP_CONTROL
, 2, bypass_text
);
214 static const struct snd_kcontrol_new lbypass_mux
=
215 SOC_DAPM_ENUM("Left Bypass", lbypass_enum
);
218 static SOC_ENUM_SINGLE_DECL(rbypass_enum
,
219 WM8737_MIC_PREAMP_CONTROL
, 3, bypass_text
);
221 static const struct snd_kcontrol_new rbypass_mux
=
222 SOC_DAPM_ENUM("Left Bypass", rbypass_enum
);
224 static const struct snd_soc_dapm_widget wm8737_dapm_widgets
[] = {
225 SND_SOC_DAPM_INPUT("LINPUT1"),
226 SND_SOC_DAPM_INPUT("LINPUT2"),
227 SND_SOC_DAPM_INPUT("LINPUT3"),
228 SND_SOC_DAPM_INPUT("RINPUT1"),
229 SND_SOC_DAPM_INPUT("RINPUT2"),
230 SND_SOC_DAPM_INPUT("RINPUT3"),
231 SND_SOC_DAPM_INPUT("LACIN"),
232 SND_SOC_DAPM_INPUT("RACIN"),
234 SND_SOC_DAPM_MUX("LINSEL", SND_SOC_NOPM
, 0, 0, &linsel_mux
),
235 SND_SOC_DAPM_MUX("RINSEL", SND_SOC_NOPM
, 0, 0, &rinsel_mux
),
237 SND_SOC_DAPM_MUX("Left Preamp Mux", SND_SOC_NOPM
, 0, 0, &lbypass_mux
),
238 SND_SOC_DAPM_MUX("Right Preamp Mux", SND_SOC_NOPM
, 0, 0, &rbypass_mux
),
240 SND_SOC_DAPM_PGA("PGAL", WM8737_POWER_MANAGEMENT
, 5, 0, NULL
, 0),
241 SND_SOC_DAPM_PGA("PGAR", WM8737_POWER_MANAGEMENT
, 4, 0, NULL
, 0),
243 SND_SOC_DAPM_DAC("ADCL", NULL
, WM8737_POWER_MANAGEMENT
, 3, 0),
244 SND_SOC_DAPM_DAC("ADCR", NULL
, WM8737_POWER_MANAGEMENT
, 2, 0),
246 SND_SOC_DAPM_AIF_OUT("AIF", "Capture", 0, WM8737_POWER_MANAGEMENT
, 6, 0),
249 static const struct snd_soc_dapm_route intercon
[] = {
250 { "LINSEL", "LINPUT1", "LINPUT1" },
251 { "LINSEL", "LINPUT2", "LINPUT2" },
252 { "LINSEL", "LINPUT3", "LINPUT3" },
253 { "LINSEL", "LINPUT1 DC", "LINPUT1" },
255 { "RINSEL", "RINPUT1", "RINPUT1" },
256 { "RINSEL", "RINPUT2", "RINPUT2" },
257 { "RINSEL", "RINPUT3", "RINPUT3" },
258 { "RINSEL", "RINPUT1 DC", "RINPUT1" },
260 { "Left Preamp Mux", "Preamp", "LINSEL" },
261 { "Left Preamp Mux", "Direct", "LACIN" },
263 { "Right Preamp Mux", "Preamp", "RINSEL" },
264 { "Right Preamp Mux", "Direct", "RACIN" },
266 { "PGAL", NULL
, "Left Preamp Mux" },
267 { "PGAR", NULL
, "Right Preamp Mux" },
269 { "ADCL", NULL
, "PGAL" },
270 { "ADCR", NULL
, "PGAR" },
272 { "AIF", NULL
, "ADCL" },
273 { "AIF", NULL
, "ADCR" },
276 /* codec mclk clock divider coefficients */
277 static const struct {
283 { 12288000, 8000, 0, 0x4 },
284 { 12288000, 12000, 0, 0x8 },
285 { 12288000, 16000, 0, 0xa },
286 { 12288000, 24000, 0, 0x1c },
287 { 12288000, 32000, 0, 0xc },
288 { 12288000, 48000, 0, 0 },
289 { 12288000, 96000, 0, 0xe },
291 { 11289600, 8000, 0, 0x14 },
292 { 11289600, 11025, 0, 0x18 },
293 { 11289600, 22050, 0, 0x1a },
294 { 11289600, 44100, 0, 0x10 },
295 { 11289600, 88200, 0, 0x1e },
297 { 18432000, 8000, 0, 0x5 },
298 { 18432000, 12000, 0, 0x9 },
299 { 18432000, 16000, 0, 0xb },
300 { 18432000, 24000, 0, 0x1b },
301 { 18432000, 32000, 0, 0xd },
302 { 18432000, 48000, 0, 0x1 },
303 { 18432000, 96000, 0, 0x1f },
305 { 16934400, 8000, 0, 0x15 },
306 { 16934400, 11025, 0, 0x19 },
307 { 16934400, 22050, 0, 0x1b },
308 { 16934400, 44100, 0, 0x11 },
309 { 16934400, 88200, 0, 0x1f },
311 { 12000000, 8000, 1, 0x4 },
312 { 12000000, 11025, 1, 0x19 },
313 { 12000000, 12000, 1, 0x8 },
314 { 12000000, 16000, 1, 0xa },
315 { 12000000, 22050, 1, 0x1b },
316 { 12000000, 24000, 1, 0x1c },
317 { 12000000, 32000, 1, 0xc },
318 { 12000000, 44100, 1, 0x11 },
319 { 12000000, 48000, 1, 0x0 },
320 { 12000000, 88200, 1, 0x1f },
321 { 12000000, 96000, 1, 0xe },
324 static int wm8737_hw_params(struct snd_pcm_substream
*substream
,
325 struct snd_pcm_hw_params
*params
,
326 struct snd_soc_dai
*dai
)
328 struct snd_soc_component
*component
= dai
->component
;
329 struct wm8737_priv
*wm8737
= snd_soc_component_get_drvdata(component
);
334 for (i
= 0; i
< ARRAY_SIZE(coeff_div
); i
++) {
335 if (coeff_div
[i
].rate
!= params_rate(params
))
338 if (coeff_div
[i
].mclk
== wm8737
->mclk
)
341 if (coeff_div
[i
].mclk
== wm8737
->mclk
* 2) {
342 clocking
|= WM8737_CLKDIV2
;
347 if (i
== ARRAY_SIZE(coeff_div
)) {
348 dev_err(component
->dev
, "%dHz MCLK can't support %dHz\n",
349 wm8737
->mclk
, params_rate(params
));
353 clocking
|= coeff_div
[i
].usb
| (coeff_div
[i
].sr
<< WM8737_SR_SHIFT
);
355 switch (params_width(params
)) {
371 snd_soc_component_update_bits(component
, WM8737_AUDIO_FORMAT
, WM8737_WL_MASK
, af
);
372 snd_soc_component_update_bits(component
, WM8737_CLOCKING
,
373 WM8737_USB_MODE
| WM8737_CLKDIV2
| WM8737_SR_MASK
,
379 static int wm8737_set_dai_sysclk(struct snd_soc_dai
*codec_dai
,
380 int clk_id
, unsigned int freq
, int dir
)
382 struct snd_soc_component
*component
= codec_dai
->component
;
383 struct wm8737_priv
*wm8737
= snd_soc_component_get_drvdata(component
);
386 for (i
= 0; i
< ARRAY_SIZE(coeff_div
); i
++) {
387 if (freq
== coeff_div
[i
].mclk
||
388 freq
== coeff_div
[i
].mclk
* 2) {
394 dev_err(component
->dev
, "MCLK rate %dHz not supported\n", freq
);
400 static int wm8737_set_dai_fmt(struct snd_soc_dai
*codec_dai
,
403 struct snd_soc_component
*component
= codec_dai
->component
;
406 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
407 case SND_SOC_DAIFMT_CBM_CFM
:
410 case SND_SOC_DAIFMT_CBS_CFS
:
416 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
417 case SND_SOC_DAIFMT_I2S
:
420 case SND_SOC_DAIFMT_RIGHT_J
:
422 case SND_SOC_DAIFMT_LEFT_J
:
425 case SND_SOC_DAIFMT_DSP_A
:
428 case SND_SOC_DAIFMT_DSP_B
:
435 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
436 case SND_SOC_DAIFMT_NB_NF
:
438 case SND_SOC_DAIFMT_NB_IF
:
445 snd_soc_component_update_bits(component
, WM8737_AUDIO_FORMAT
,
446 WM8737_FORMAT_MASK
| WM8737_LRP
| WM8737_MS
, af
);
451 static int wm8737_set_bias_level(struct snd_soc_component
*component
,
452 enum snd_soc_bias_level level
)
454 struct wm8737_priv
*wm8737
= snd_soc_component_get_drvdata(component
);
458 case SND_SOC_BIAS_ON
:
461 case SND_SOC_BIAS_PREPARE
:
463 snd_soc_component_update_bits(component
, WM8737_MISC_BIAS_CONTROL
,
464 WM8737_VMIDSEL_MASK
, 0);
467 case SND_SOC_BIAS_STANDBY
:
468 if (snd_soc_component_get_bias_level(component
) == SND_SOC_BIAS_OFF
) {
469 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8737
->supplies
),
472 dev_err(component
->dev
,
473 "Failed to enable supplies: %d\n",
478 regcache_sync(wm8737
->regmap
);
480 /* Fast VMID ramp at 2*2.5k */
481 snd_soc_component_update_bits(component
, WM8737_MISC_BIAS_CONTROL
,
483 2 << WM8737_VMIDSEL_SHIFT
);
486 snd_soc_component_update_bits(component
, WM8737_POWER_MANAGEMENT
,
496 snd_soc_component_update_bits(component
, WM8737_MISC_BIAS_CONTROL
,
498 1 << WM8737_VMIDSEL_SHIFT
);
502 case SND_SOC_BIAS_OFF
:
503 snd_soc_component_update_bits(component
, WM8737_POWER_MANAGEMENT
,
504 WM8737_VMID_MASK
| WM8737_VREF_MASK
, 0);
506 regulator_bulk_disable(ARRAY_SIZE(wm8737
->supplies
),
514 #define WM8737_RATES SNDRV_PCM_RATE_8000_96000
516 #define WM8737_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
517 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
519 static const struct snd_soc_dai_ops wm8737_dai_ops
= {
520 .hw_params
= wm8737_hw_params
,
521 .set_sysclk
= wm8737_set_dai_sysclk
,
522 .set_fmt
= wm8737_set_dai_fmt
,
525 static struct snd_soc_dai_driver wm8737_dai
= {
528 .stream_name
= "Capture",
529 .channels_min
= 2, /* Mono modes not yet supported */
531 .rates
= WM8737_RATES
,
532 .formats
= WM8737_FORMATS
,
534 .ops
= &wm8737_dai_ops
,
537 static int wm8737_probe(struct snd_soc_component
*component
)
539 struct wm8737_priv
*wm8737
= snd_soc_component_get_drvdata(component
);
542 ret
= regulator_bulk_enable(ARRAY_SIZE(wm8737
->supplies
),
545 dev_err(component
->dev
, "Failed to enable supplies: %d\n", ret
);
549 ret
= wm8737_reset(component
);
551 dev_err(component
->dev
, "Failed to issue reset\n");
555 snd_soc_component_update_bits(component
, WM8737_LEFT_PGA_VOLUME
, WM8737_LVU
,
557 snd_soc_component_update_bits(component
, WM8737_RIGHT_PGA_VOLUME
, WM8737_RVU
,
560 snd_soc_component_force_bias_level(component
, SND_SOC_BIAS_STANDBY
);
562 /* Bias level configuration will have done an extra enable */
563 regulator_bulk_disable(ARRAY_SIZE(wm8737
->supplies
), wm8737
->supplies
);
568 regulator_bulk_disable(ARRAY_SIZE(wm8737
->supplies
), wm8737
->supplies
);
573 static const struct snd_soc_component_driver soc_component_dev_wm8737
= {
574 .probe
= wm8737_probe
,
575 .set_bias_level
= wm8737_set_bias_level
,
576 .controls
= wm8737_snd_controls
,
577 .num_controls
= ARRAY_SIZE(wm8737_snd_controls
),
578 .dapm_widgets
= wm8737_dapm_widgets
,
579 .num_dapm_widgets
= ARRAY_SIZE(wm8737_dapm_widgets
),
580 .dapm_routes
= intercon
,
581 .num_dapm_routes
= ARRAY_SIZE(intercon
),
582 .suspend_bias_off
= 1,
584 .use_pmdown_time
= 1,
586 .non_legacy_dai_naming
= 1,
589 static const struct of_device_id wm8737_of_match
[] = {
590 { .compatible
= "wlf,wm8737", },
594 MODULE_DEVICE_TABLE(of
, wm8737_of_match
);
596 static const struct regmap_config wm8737_regmap
= {
599 .max_register
= WM8737_MAX_REGISTER
,
601 .reg_defaults
= wm8737_reg_defaults
,
602 .num_reg_defaults
= ARRAY_SIZE(wm8737_reg_defaults
),
603 .cache_type
= REGCACHE_RBTREE
,
605 .volatile_reg
= wm8737_volatile
,
608 #if IS_ENABLED(CONFIG_I2C)
609 static int wm8737_i2c_probe(struct i2c_client
*i2c
,
610 const struct i2c_device_id
*id
)
612 struct wm8737_priv
*wm8737
;
615 wm8737
= devm_kzalloc(&i2c
->dev
, sizeof(struct wm8737_priv
),
620 for (i
= 0; i
< ARRAY_SIZE(wm8737
->supplies
); i
++)
621 wm8737
->supplies
[i
].supply
= wm8737_supply_names
[i
];
623 ret
= devm_regulator_bulk_get(&i2c
->dev
, ARRAY_SIZE(wm8737
->supplies
),
626 dev_err(&i2c
->dev
, "Failed to request supplies: %d\n", ret
);
630 wm8737
->regmap
= devm_regmap_init_i2c(i2c
, &wm8737_regmap
);
631 if (IS_ERR(wm8737
->regmap
))
632 return PTR_ERR(wm8737
->regmap
);
634 i2c_set_clientdata(i2c
, wm8737
);
636 ret
= devm_snd_soc_register_component(&i2c
->dev
,
637 &soc_component_dev_wm8737
, &wm8737_dai
, 1);
643 static const struct i2c_device_id wm8737_i2c_id
[] = {
647 MODULE_DEVICE_TABLE(i2c
, wm8737_i2c_id
);
649 static struct i2c_driver wm8737_i2c_driver
= {
652 .of_match_table
= wm8737_of_match
,
654 .probe
= wm8737_i2c_probe
,
655 .id_table
= wm8737_i2c_id
,
659 #if defined(CONFIG_SPI_MASTER)
660 static int wm8737_spi_probe(struct spi_device
*spi
)
662 struct wm8737_priv
*wm8737
;
665 wm8737
= devm_kzalloc(&spi
->dev
, sizeof(struct wm8737_priv
),
670 for (i
= 0; i
< ARRAY_SIZE(wm8737
->supplies
); i
++)
671 wm8737
->supplies
[i
].supply
= wm8737_supply_names
[i
];
673 ret
= devm_regulator_bulk_get(&spi
->dev
, ARRAY_SIZE(wm8737
->supplies
),
676 dev_err(&spi
->dev
, "Failed to request supplies: %d\n", ret
);
680 wm8737
->regmap
= devm_regmap_init_spi(spi
, &wm8737_regmap
);
681 if (IS_ERR(wm8737
->regmap
))
682 return PTR_ERR(wm8737
->regmap
);
684 spi_set_drvdata(spi
, wm8737
);
686 ret
= devm_snd_soc_register_component(&spi
->dev
,
687 &soc_component_dev_wm8737
, &wm8737_dai
, 1);
692 static struct spi_driver wm8737_spi_driver
= {
695 .of_match_table
= wm8737_of_match
,
697 .probe
= wm8737_spi_probe
,
699 #endif /* CONFIG_SPI_MASTER */
701 static int __init
wm8737_modinit(void)
704 #if IS_ENABLED(CONFIG_I2C)
705 ret
= i2c_add_driver(&wm8737_i2c_driver
);
707 printk(KERN_ERR
"Failed to register WM8737 I2C driver: %d\n",
711 #if defined(CONFIG_SPI_MASTER)
712 ret
= spi_register_driver(&wm8737_spi_driver
);
714 printk(KERN_ERR
"Failed to register WM8737 SPI driver: %d\n",
720 module_init(wm8737_modinit
);
722 static void __exit
wm8737_exit(void)
724 #if defined(CONFIG_SPI_MASTER)
725 spi_unregister_driver(&wm8737_spi_driver
);
727 #if IS_ENABLED(CONFIG_I2C)
728 i2c_del_driver(&wm8737_i2c_driver
);
731 module_exit(wm8737_exit
);
733 MODULE_DESCRIPTION("ASoC WM8737 driver");
734 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
735 MODULE_LICENSE("GPL");