2 * ALSA SoC WM9090 driver
4 * Copyright 2009, 2010 Wolfson Microelectronics
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
23 #include <linux/module.h>
24 #include <linux/errno.h>
25 #include <linux/device.h>
26 #include <linux/i2c.h>
27 #include <linux/delay.h>
28 #include <linux/slab.h>
29 #include <sound/initval.h>
30 #include <sound/soc.h>
31 #include <sound/soc-dapm.h>
32 #include <sound/tlv.h>
33 #include <sound/wm9090.h>
37 static const u16 wm9090_reg_defaults
[] = {
38 0x9093, /* R0 - Software Reset */
39 0x0006, /* R1 - Power Management (1) */
40 0x6000, /* R2 - Power Management (2) */
41 0x0000, /* R3 - Power Management (3) */
44 0x01C0, /* R6 - Clocking 1 */
60 0x0003, /* R22 - IN1 Line Control */
61 0x0003, /* R23 - IN2 Line Control */
62 0x0083, /* R24 - IN1 Line Input A Volume */
63 0x0083, /* R25 - IN1 Line Input B Volume */
64 0x0083, /* R26 - IN2 Line Input A Volume */
65 0x0083, /* R27 - IN2 Line Input B Volume */
66 0x002D, /* R28 - Left Output Volume */
67 0x002D, /* R29 - Right Output Volume */
72 0x0100, /* R34 - SPKMIXL Attenuation */
74 0x0010, /* R36 - SPKOUT Mixers */
75 0x0140, /* R37 - ClassD3 */
76 0x0039, /* R38 - Speaker Volume Left */
83 0x0000, /* R45 - Output Mixer1 */
84 0x0000, /* R46 - Output Mixer2 */
85 0x0100, /* R47 - Output Mixer3 */
86 0x0100, /* R48 - Output Mixer4 */
92 0x0000, /* R54 - Speaker Mixer */
95 0x000D, /* R57 - AntiPOP2 */
108 0x0000, /* R70 - Write Sequencer 0 */
109 0x0000, /* R71 - Write Sequencer 1 */
110 0x0000, /* R72 - Write Sequencer 2 */
111 0x0000, /* R73 - Write Sequencer 3 */
112 0x0000, /* R74 - Write Sequencer 4 */
113 0x0000, /* R75 - Write Sequencer 5 */
114 0x1F25, /* R76 - Charge Pump 1 */
122 0x0000, /* R84 - DC Servo 0 */
123 0x054A, /* R85 - DC Servo 1 */
125 0x0000, /* R87 - DC Servo 3 */
126 0x0000, /* R88 - DC Servo Readback 0 */
127 0x0000, /* R89 - DC Servo Readback 1 */
128 0x0000, /* R90 - DC Servo Readback 2 */
134 0x0100, /* R96 - Analogue HP 0 */
136 0x8640, /* R98 - AGC Control 0 */
137 0xC000, /* R99 - AGC Control 1 */
138 0x0200, /* R100 - AGC Control 2 */
141 /* This struct is used to save the context */
144 u16 reg_cache
[WM9090_MAX_REGISTER
+ 1];
145 struct wm9090_platform_data pdata
;
149 static int wm9090_volatile(unsigned int reg
)
152 case WM9090_SOFTWARE_RESET
:
153 case WM9090_DC_SERVO_0
:
154 case WM9090_DC_SERVO_READBACK_0
:
155 case WM9090_DC_SERVO_READBACK_1
:
156 case WM9090_DC_SERVO_READBACK_2
:
164 static void wait_for_dc_servo(struct snd_soc_codec
*codec
)
169 dev_dbg(codec
->dev
, "Waiting for DC servo...\n");
173 reg
= snd_soc_read(codec
, WM9090_DC_SERVO_READBACK_0
);
174 dev_dbg(codec
->dev
, "DC servo status: %x\n", reg
);
175 } while ((reg
& WM9090_DCS_CAL_COMPLETE_MASK
)
176 != WM9090_DCS_CAL_COMPLETE_MASK
&& count
< 1000);
178 if ((reg
& WM9090_DCS_CAL_COMPLETE_MASK
)
179 != WM9090_DCS_CAL_COMPLETE_MASK
)
180 dev_err(codec
->dev
, "Timed out waiting for DC Servo\n");
183 static const unsigned int in_tlv
[] = {
184 TLV_DB_RANGE_HEAD(6),
185 0, 0, TLV_DB_SCALE_ITEM(-600, 0, 0),
186 1, 3, TLV_DB_SCALE_ITEM(-350, 350, 0),
187 4, 6, TLV_DB_SCALE_ITEM(600, 600, 0),
189 static const unsigned int mix_tlv
[] = {
190 TLV_DB_RANGE_HEAD(4),
191 0, 2, TLV_DB_SCALE_ITEM(-1200, 300, 0),
192 3, 3, TLV_DB_SCALE_ITEM(0, 0, 0),
194 static const DECLARE_TLV_DB_SCALE(out_tlv
, -5700, 100, 0);
195 static const unsigned int spkboost_tlv
[] = {
196 TLV_DB_RANGE_HEAD(7),
197 0, 6, TLV_DB_SCALE_ITEM(0, 150, 0),
198 7, 7, TLV_DB_SCALE_ITEM(1200, 0, 0),
201 static const struct snd_kcontrol_new wm9090_controls
[] = {
202 SOC_SINGLE_TLV("IN1A Volume", WM9090_IN1_LINE_INPUT_A_VOLUME
, 0, 6, 0,
204 SOC_SINGLE("IN1A Switch", WM9090_IN1_LINE_INPUT_A_VOLUME
, 7, 1, 1),
205 SOC_SINGLE("IN1A ZC Switch", WM9090_IN1_LINE_INPUT_A_VOLUME
, 6, 1, 0),
207 SOC_SINGLE_TLV("IN2A Volume", WM9090_IN2_LINE_INPUT_A_VOLUME
, 0, 6, 0,
209 SOC_SINGLE("IN2A Switch", WM9090_IN2_LINE_INPUT_A_VOLUME
, 7, 1, 1),
210 SOC_SINGLE("IN2A ZC Switch", WM9090_IN2_LINE_INPUT_A_VOLUME
, 6, 1, 0),
212 SOC_SINGLE("MIXOUTL Switch", WM9090_OUTPUT_MIXER3
, 8, 1, 1),
213 SOC_SINGLE_TLV("MIXOUTL IN1A Volume", WM9090_OUTPUT_MIXER3
, 6, 3, 1,
215 SOC_SINGLE_TLV("MIXOUTL IN2A Volume", WM9090_OUTPUT_MIXER3
, 2, 3, 1,
218 SOC_SINGLE("MIXOUTR Switch", WM9090_OUTPUT_MIXER4
, 8, 1, 1),
219 SOC_SINGLE_TLV("MIXOUTR IN1A Volume", WM9090_OUTPUT_MIXER4
, 6, 3, 1,
221 SOC_SINGLE_TLV("MIXOUTR IN2A Volume", WM9090_OUTPUT_MIXER4
, 2, 3, 1,
224 SOC_SINGLE("SPKMIX Switch", WM9090_SPKMIXL_ATTENUATION
, 8, 1, 1),
225 SOC_SINGLE_TLV("SPKMIX IN1A Volume", WM9090_SPKMIXL_ATTENUATION
, 6, 3, 1,
227 SOC_SINGLE_TLV("SPKMIX IN2A Volume", WM9090_SPKMIXL_ATTENUATION
, 2, 3, 1,
230 SOC_DOUBLE_R_TLV("Headphone Volume", WM9090_LEFT_OUTPUT_VOLUME
,
231 WM9090_RIGHT_OUTPUT_VOLUME
, 0, 63, 0, out_tlv
),
232 SOC_DOUBLE_R("Headphone Switch", WM9090_LEFT_OUTPUT_VOLUME
,
233 WM9090_RIGHT_OUTPUT_VOLUME
, 6, 1, 1),
234 SOC_DOUBLE_R("Headphone ZC Switch", WM9090_LEFT_OUTPUT_VOLUME
,
235 WM9090_RIGHT_OUTPUT_VOLUME
, 7, 1, 0),
237 SOC_SINGLE_TLV("Speaker Volume", WM9090_SPEAKER_VOLUME_LEFT
, 0, 63, 0,
239 SOC_SINGLE("Speaker Switch", WM9090_SPEAKER_VOLUME_LEFT
, 6, 1, 1),
240 SOC_SINGLE("Speaker ZC Switch", WM9090_SPEAKER_VOLUME_LEFT
, 7, 1, 0),
241 SOC_SINGLE_TLV("Speaker Boost Volume", WM9090_CLASSD3
, 3, 7, 0, spkboost_tlv
),
244 static const struct snd_kcontrol_new wm9090_in1_se_controls
[] = {
245 SOC_SINGLE_TLV("IN1B Volume", WM9090_IN1_LINE_INPUT_B_VOLUME
, 0, 6, 0,
247 SOC_SINGLE("IN1B Switch", WM9090_IN1_LINE_INPUT_B_VOLUME
, 7, 1, 1),
248 SOC_SINGLE("IN1B ZC Switch", WM9090_IN1_LINE_INPUT_B_VOLUME
, 6, 1, 0),
250 SOC_SINGLE_TLV("SPKMIX IN1B Volume", WM9090_SPKMIXL_ATTENUATION
, 4, 3, 1,
252 SOC_SINGLE_TLV("MIXOUTL IN1B Volume", WM9090_OUTPUT_MIXER3
, 4, 3, 1,
254 SOC_SINGLE_TLV("MIXOUTR IN1B Volume", WM9090_OUTPUT_MIXER4
, 4, 3, 1,
258 static const struct snd_kcontrol_new wm9090_in2_se_controls
[] = {
259 SOC_SINGLE_TLV("IN2B Volume", WM9090_IN2_LINE_INPUT_B_VOLUME
, 0, 6, 0,
261 SOC_SINGLE("IN2B Switch", WM9090_IN2_LINE_INPUT_B_VOLUME
, 7, 1, 1),
262 SOC_SINGLE("IN2B ZC Switch", WM9090_IN2_LINE_INPUT_B_VOLUME
, 6, 1, 0),
264 SOC_SINGLE_TLV("SPKMIX IN2B Volume", WM9090_SPKMIXL_ATTENUATION
, 0, 3, 1,
266 SOC_SINGLE_TLV("MIXOUTL IN2B Volume", WM9090_OUTPUT_MIXER3
, 0, 3, 1,
268 SOC_SINGLE_TLV("MIXOUTR IN2B Volume", WM9090_OUTPUT_MIXER4
, 0, 3, 1,
272 static int hp_ev(struct snd_soc_dapm_widget
*w
,
273 struct snd_kcontrol
*kcontrol
, int event
)
275 struct snd_soc_codec
*codec
= w
->codec
;
276 unsigned int reg
= snd_soc_read(codec
, WM9090_ANALOGUE_HP_0
);
279 case SND_SOC_DAPM_POST_PMU
:
280 snd_soc_update_bits(codec
, WM9090_CHARGE_PUMP_1
,
281 WM9090_CP_ENA
, WM9090_CP_ENA
);
285 snd_soc_update_bits(codec
, WM9090_POWER_MANAGEMENT_1
,
286 WM9090_HPOUT1L_ENA
| WM9090_HPOUT1R_ENA
,
287 WM9090_HPOUT1L_ENA
| WM9090_HPOUT1R_ENA
);
289 reg
|= WM9090_HPOUT1L_DLY
| WM9090_HPOUT1R_DLY
;
290 snd_soc_write(codec
, WM9090_ANALOGUE_HP_0
, reg
);
292 /* Start the DC servo. We don't currently use the
293 * ability to save the state since we don't have full
294 * control of the analogue paths and they can change
295 * DC offsets; see the WM8904 driver for an example of
298 snd_soc_write(codec
, WM9090_DC_SERVO_0
,
299 WM9090_DCS_ENA_CHAN_0
|
300 WM9090_DCS_ENA_CHAN_1
|
301 WM9090_DCS_TRIG_STARTUP_1
|
302 WM9090_DCS_TRIG_STARTUP_0
);
303 wait_for_dc_servo(codec
);
305 reg
|= WM9090_HPOUT1R_OUTP
| WM9090_HPOUT1R_RMV_SHORT
|
306 WM9090_HPOUT1L_OUTP
| WM9090_HPOUT1L_RMV_SHORT
;
307 snd_soc_write(codec
, WM9090_ANALOGUE_HP_0
, reg
);
310 case SND_SOC_DAPM_PRE_PMD
:
311 reg
&= ~(WM9090_HPOUT1L_RMV_SHORT
|
313 WM9090_HPOUT1L_OUTP
|
314 WM9090_HPOUT1R_RMV_SHORT
|
316 WM9090_HPOUT1R_OUTP
);
318 snd_soc_write(codec
, WM9090_ANALOGUE_HP_0
, reg
);
320 snd_soc_write(codec
, WM9090_DC_SERVO_0
, 0);
322 snd_soc_update_bits(codec
, WM9090_POWER_MANAGEMENT_1
,
323 WM9090_HPOUT1L_ENA
| WM9090_HPOUT1R_ENA
,
326 snd_soc_update_bits(codec
, WM9090_CHARGE_PUMP_1
,
334 static const struct snd_kcontrol_new spkmix
[] = {
335 SOC_DAPM_SINGLE("IN1A Switch", WM9090_SPEAKER_MIXER
, 6, 1, 0),
336 SOC_DAPM_SINGLE("IN1B Switch", WM9090_SPEAKER_MIXER
, 4, 1, 0),
337 SOC_DAPM_SINGLE("IN2A Switch", WM9090_SPEAKER_MIXER
, 2, 1, 0),
338 SOC_DAPM_SINGLE("IN2B Switch", WM9090_SPEAKER_MIXER
, 0, 1, 0),
341 static const struct snd_kcontrol_new spkout
[] = {
342 SOC_DAPM_SINGLE("Mixer Switch", WM9090_SPKOUT_MIXERS
, 4, 1, 0),
345 static const struct snd_kcontrol_new mixoutl
[] = {
346 SOC_DAPM_SINGLE("IN1A Switch", WM9090_OUTPUT_MIXER1
, 6, 1, 0),
347 SOC_DAPM_SINGLE("IN1B Switch", WM9090_OUTPUT_MIXER1
, 4, 1, 0),
348 SOC_DAPM_SINGLE("IN2A Switch", WM9090_OUTPUT_MIXER1
, 2, 1, 0),
349 SOC_DAPM_SINGLE("IN2B Switch", WM9090_OUTPUT_MIXER1
, 0, 1, 0),
352 static const struct snd_kcontrol_new mixoutr
[] = {
353 SOC_DAPM_SINGLE("IN1A Switch", WM9090_OUTPUT_MIXER2
, 6, 1, 0),
354 SOC_DAPM_SINGLE("IN1B Switch", WM9090_OUTPUT_MIXER2
, 4, 1, 0),
355 SOC_DAPM_SINGLE("IN2A Switch", WM9090_OUTPUT_MIXER2
, 2, 1, 0),
356 SOC_DAPM_SINGLE("IN2B Switch", WM9090_OUTPUT_MIXER2
, 0, 1, 0),
359 static const struct snd_soc_dapm_widget wm9090_dapm_widgets
[] = {
360 SND_SOC_DAPM_INPUT("IN1+"),
361 SND_SOC_DAPM_INPUT("IN1-"),
362 SND_SOC_DAPM_INPUT("IN2+"),
363 SND_SOC_DAPM_INPUT("IN2-"),
365 SND_SOC_DAPM_SUPPLY("OSC", WM9090_POWER_MANAGEMENT_1
, 3, 0, NULL
, 0),
367 SND_SOC_DAPM_PGA("IN1A PGA", WM9090_POWER_MANAGEMENT_2
, 7, 0, NULL
, 0),
368 SND_SOC_DAPM_PGA("IN1B PGA", WM9090_POWER_MANAGEMENT_2
, 6, 0, NULL
, 0),
369 SND_SOC_DAPM_PGA("IN2A PGA", WM9090_POWER_MANAGEMENT_2
, 5, 0, NULL
, 0),
370 SND_SOC_DAPM_PGA("IN2B PGA", WM9090_POWER_MANAGEMENT_2
, 4, 0, NULL
, 0),
372 SND_SOC_DAPM_MIXER("SPKMIX", WM9090_POWER_MANAGEMENT_3
, 3, 0,
373 spkmix
, ARRAY_SIZE(spkmix
)),
374 SND_SOC_DAPM_MIXER("MIXOUTL", WM9090_POWER_MANAGEMENT_3
, 5, 0,
375 mixoutl
, ARRAY_SIZE(mixoutl
)),
376 SND_SOC_DAPM_MIXER("MIXOUTR", WM9090_POWER_MANAGEMENT_3
, 4, 0,
377 mixoutr
, ARRAY_SIZE(mixoutr
)),
379 SND_SOC_DAPM_PGA_E("HP PGA", SND_SOC_NOPM
, 0, 0, NULL
, 0,
380 hp_ev
, SND_SOC_DAPM_POST_PMU
| SND_SOC_DAPM_PRE_PMD
),
382 SND_SOC_DAPM_PGA("SPKPGA", WM9090_POWER_MANAGEMENT_3
, 8, 0, NULL
, 0),
383 SND_SOC_DAPM_MIXER("SPKOUT", WM9090_POWER_MANAGEMENT_1
, 12, 0,
384 spkout
, ARRAY_SIZE(spkout
)),
386 SND_SOC_DAPM_OUTPUT("HPR"),
387 SND_SOC_DAPM_OUTPUT("HPL"),
388 SND_SOC_DAPM_OUTPUT("Speaker"),
391 static const struct snd_soc_dapm_route audio_map
[] = {
392 { "IN1A PGA", NULL
, "IN1+" },
393 { "IN2A PGA", NULL
, "IN2+" },
395 { "SPKMIX", "IN1A Switch", "IN1A PGA" },
396 { "SPKMIX", "IN2A Switch", "IN2A PGA" },
398 { "MIXOUTL", "IN1A Switch", "IN1A PGA" },
399 { "MIXOUTL", "IN2A Switch", "IN2A PGA" },
401 { "MIXOUTR", "IN1A Switch", "IN1A PGA" },
402 { "MIXOUTR", "IN2A Switch", "IN2A PGA" },
404 { "HP PGA", NULL
, "OSC" },
405 { "HP PGA", NULL
, "MIXOUTL" },
406 { "HP PGA", NULL
, "MIXOUTR" },
408 { "HPL", NULL
, "HP PGA" },
409 { "HPR", NULL
, "HP PGA" },
411 { "SPKPGA", NULL
, "OSC" },
412 { "SPKPGA", NULL
, "SPKMIX" },
414 { "SPKOUT", "Mixer Switch", "SPKPGA" },
416 { "Speaker", NULL
, "SPKOUT" },
419 static const struct snd_soc_dapm_route audio_map_in1_se
[] = {
420 { "IN1B PGA", NULL
, "IN1-" },
422 { "SPKMIX", "IN1B Switch", "IN1B PGA" },
423 { "MIXOUTL", "IN1B Switch", "IN1B PGA" },
424 { "MIXOUTR", "IN1B Switch", "IN1B PGA" },
427 static const struct snd_soc_dapm_route audio_map_in1_diff
[] = {
428 { "IN1A PGA", NULL
, "IN1-" },
431 static const struct snd_soc_dapm_route audio_map_in2_se
[] = {
432 { "IN2B PGA", NULL
, "IN2-" },
434 { "SPKMIX", "IN2B Switch", "IN2B PGA" },
435 { "MIXOUTL", "IN2B Switch", "IN2B PGA" },
436 { "MIXOUTR", "IN2B Switch", "IN2B PGA" },
439 static const struct snd_soc_dapm_route audio_map_in2_diff
[] = {
440 { "IN2A PGA", NULL
, "IN2-" },
443 static int wm9090_add_controls(struct snd_soc_codec
*codec
)
445 struct wm9090_priv
*wm9090
= snd_soc_codec_get_drvdata(codec
);
446 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
449 snd_soc_dapm_new_controls(dapm
, wm9090_dapm_widgets
,
450 ARRAY_SIZE(wm9090_dapm_widgets
));
452 snd_soc_dapm_add_routes(dapm
, audio_map
, ARRAY_SIZE(audio_map
));
454 snd_soc_add_controls(codec
, wm9090_controls
,
455 ARRAY_SIZE(wm9090_controls
));
457 if (wm9090
->pdata
.lin1_diff
) {
458 snd_soc_dapm_add_routes(dapm
, audio_map_in1_diff
,
459 ARRAY_SIZE(audio_map_in1_diff
));
461 snd_soc_dapm_add_routes(dapm
, audio_map_in1_se
,
462 ARRAY_SIZE(audio_map_in1_se
));
463 snd_soc_add_controls(codec
, wm9090_in1_se_controls
,
464 ARRAY_SIZE(wm9090_in1_se_controls
));
467 if (wm9090
->pdata
.lin2_diff
) {
468 snd_soc_dapm_add_routes(dapm
, audio_map_in2_diff
,
469 ARRAY_SIZE(audio_map_in2_diff
));
471 snd_soc_dapm_add_routes(dapm
, audio_map_in2_se
,
472 ARRAY_SIZE(audio_map_in2_se
));
473 snd_soc_add_controls(codec
, wm9090_in2_se_controls
,
474 ARRAY_SIZE(wm9090_in2_se_controls
));
477 if (wm9090
->pdata
.agc_ena
) {
478 for (i
= 0; i
< ARRAY_SIZE(wm9090
->pdata
.agc
); i
++)
479 snd_soc_write(codec
, WM9090_AGC_CONTROL_0
+ i
,
480 wm9090
->pdata
.agc
[i
]);
481 snd_soc_update_bits(codec
, WM9090_POWER_MANAGEMENT_3
,
482 WM9090_AGC_ENA
, WM9090_AGC_ENA
);
484 snd_soc_update_bits(codec
, WM9090_POWER_MANAGEMENT_3
,
493 * The machine driver should call this from their set_bias_level; if there
494 * isn't one then this can just be set as the set_bias_level function.
496 static int wm9090_set_bias_level(struct snd_soc_codec
*codec
,
497 enum snd_soc_bias_level level
)
499 u16
*reg_cache
= codec
->reg_cache
;
503 case SND_SOC_BIAS_ON
:
506 case SND_SOC_BIAS_PREPARE
:
507 snd_soc_update_bits(codec
, WM9090_ANTIPOP2
, WM9090_VMID_ENA
,
509 snd_soc_update_bits(codec
, WM9090_POWER_MANAGEMENT_1
,
511 WM9090_VMID_RES_MASK
,
513 1 << WM9090_VMID_RES_SHIFT
);
514 msleep(1); /* Probably an overestimate */
517 case SND_SOC_BIAS_STANDBY
:
518 if (codec
->dapm
.bias_level
== SND_SOC_BIAS_OFF
) {
519 /* Restore the register cache */
520 for (i
= 1; i
< codec
->driver
->reg_cache_size
; i
++) {
521 if (reg_cache
[i
] == wm9090_reg_defaults
[i
])
523 if (wm9090_volatile(i
))
526 ret
= snd_soc_write(codec
, i
, reg_cache
[i
]);
529 "Failed to restore register %d: %d\n",
534 /* We keep VMID off during standby since the combination of
535 * ground referenced outputs and class D speaker mean that
536 * latency is not an issue.
538 snd_soc_update_bits(codec
, WM9090_POWER_MANAGEMENT_1
,
539 WM9090_BIAS_ENA
| WM9090_VMID_RES_MASK
, 0);
540 snd_soc_update_bits(codec
, WM9090_ANTIPOP2
,
544 case SND_SOC_BIAS_OFF
:
548 codec
->dapm
.bias_level
= level
;
553 static int wm9090_probe(struct snd_soc_codec
*codec
)
555 struct wm9090_priv
*wm9090
= snd_soc_codec_get_drvdata(codec
);
558 codec
->control_data
= wm9090
->control_data
;
559 ret
= snd_soc_codec_set_cache_io(codec
, 8, 16, SND_SOC_I2C
);
561 dev_err(codec
->dev
, "Failed to set cache I/O: %d\n", ret
);
565 ret
= snd_soc_read(codec
, WM9090_SOFTWARE_RESET
);
568 if (ret
!= wm9090_reg_defaults
[WM9090_SOFTWARE_RESET
]) {
569 dev_err(codec
->dev
, "Device is not a WM9090, ID=%x\n", ret
);
573 ret
= snd_soc_write(codec
, WM9090_SOFTWARE_RESET
, 0);
577 /* Configure some defaults; they will be written out when we
580 wm9090
->reg_cache
[WM9090_IN1_LINE_INPUT_A_VOLUME
] |= WM9090_IN1_VU
582 wm9090
->reg_cache
[WM9090_IN1_LINE_INPUT_B_VOLUME
] |= WM9090_IN1_VU
584 wm9090
->reg_cache
[WM9090_IN2_LINE_INPUT_A_VOLUME
] |= WM9090_IN2_VU
586 wm9090
->reg_cache
[WM9090_IN2_LINE_INPUT_B_VOLUME
] |= WM9090_IN2_VU
588 wm9090
->reg_cache
[WM9090_SPEAKER_VOLUME_LEFT
] |=
589 WM9090_SPKOUT_VU
| WM9090_SPKOUTL_ZC
;
590 wm9090
->reg_cache
[WM9090_LEFT_OUTPUT_VOLUME
] |=
591 WM9090_HPOUT1_VU
| WM9090_HPOUT1L_ZC
;
592 wm9090
->reg_cache
[WM9090_RIGHT_OUTPUT_VOLUME
] |=
593 WM9090_HPOUT1_VU
| WM9090_HPOUT1R_ZC
;
595 wm9090
->reg_cache
[WM9090_CLOCKING_1
] |= WM9090_TOCLK_ENA
;
597 wm9090_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
599 wm9090_add_controls(codec
);
605 static int wm9090_suspend(struct snd_soc_codec
*codec
, pm_message_t state
)
607 wm9090_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
612 static int wm9090_resume(struct snd_soc_codec
*codec
)
614 wm9090_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
619 #define wm9090_suspend NULL
620 #define wm9090_resume NULL
623 static int wm9090_remove(struct snd_soc_codec
*codec
)
625 wm9090_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
630 static struct snd_soc_codec_driver soc_codec_dev_wm9090
= {
631 .probe
= wm9090_probe
,
632 .remove
= wm9090_remove
,
633 .suspend
= wm9090_suspend
,
634 .resume
= wm9090_resume
,
635 .set_bias_level
= wm9090_set_bias_level
,
636 .reg_cache_size
= (WM9090_MAX_REGISTER
+ 1),
637 .reg_word_size
= sizeof(u16
),
638 .reg_cache_default
= wm9090_reg_defaults
,
639 .volatile_register
= wm9090_volatile
,
642 static int wm9090_i2c_probe(struct i2c_client
*i2c
,
643 const struct i2c_device_id
*id
)
645 struct wm9090_priv
*wm9090
;
648 wm9090
= kzalloc(sizeof(*wm9090
), GFP_KERNEL
);
649 if (wm9090
== NULL
) {
650 dev_err(&i2c
->dev
, "Can not allocate memory\n");
654 if (i2c
->dev
.platform_data
)
655 memcpy(&wm9090
->pdata
, i2c
->dev
.platform_data
,
656 sizeof(wm9090
->pdata
));
658 i2c_set_clientdata(i2c
, wm9090
);
659 wm9090
->control_data
= i2c
;
660 mutex_init(&wm9090
->mutex
);
662 ret
= snd_soc_register_codec(&i2c
->dev
,
663 &soc_codec_dev_wm9090
, NULL
, 0);
669 static int __devexit
wm9090_i2c_remove(struct i2c_client
*i2c
)
671 struct wm9090_priv
*wm9090
= i2c_get_clientdata(i2c
);
673 snd_soc_unregister_codec(&i2c
->dev
);
679 static const struct i2c_device_id wm9090_id
[] = {
683 MODULE_DEVICE_TABLE(i2c
, wm9090_id
);
685 static struct i2c_driver wm9090_i2c_driver
= {
687 .name
= "wm9090-codec",
688 .owner
= THIS_MODULE
,
690 .probe
= wm9090_i2c_probe
,
691 .remove
= __devexit_p(wm9090_i2c_remove
),
692 .id_table
= wm9090_id
,
695 static int __init
wm9090_init(void)
697 return i2c_add_driver(&wm9090_i2c_driver
);
699 module_init(wm9090_init
);
701 static void __exit
wm9090_exit(void)
703 i2c_del_driver(&wm9090_i2c_driver
);
705 module_exit(wm9090_exit
);
707 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
708 MODULE_DESCRIPTION("WM9090 ASoC driver");
709 MODULE_LICENSE("GPL");