blob: 26096b47a493db1bd13cd2060c6ffc4737262b36 [file] [log] [blame]
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001/*
2 * wm8753.c -- WM8753 ALSA Soc Audio driver
3 *
4 * Copyright 2003 Wolfson Microelectronics PLC.
Liam Girdwoodd3311242008-10-12 13:17:36 +01005 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood1f53aee2007-04-16 19:17:44 +02006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 * Notes:
13 * The WM8753 is a low power, high quality stereo codec with integrated PCM
14 * codec designed for portable digital telephony applications.
15 *
16 * Dual DAI:-
17 *
18 * This driver support 2 DAI PCM's. This makes the default PCM available for
19 * HiFi audio (e.g. MP3, ogg) playback/capture and the other PCM available for
20 * voice.
21 *
22 * Please note that the voice PCM can be connected directly to a Bluetooth
23 * codec or GSM modem and thus cannot be read or written to, although it is
24 * available to be configured with snd_hw_params(), etc and kcontrols in the
25 * normal alsa manner.
26 *
27 * Fast DAI switching:-
28 *
29 * The driver can now fast switch between the DAI configurations via a
30 * an alsa kcontrol. This allows the PCM to remain open.
31 *
32 */
33
34#include <linux/module.h>
35#include <linux/moduleparam.h>
Liam Girdwood1f53aee2007-04-16 19:17:44 +020036#include <linux/kernel.h>
37#include <linux/init.h>
38#include <linux/delay.h>
39#include <linux/pm.h>
40#include <linux/i2c.h>
41#include <linux/platform_device.h>
Mark Browndd0c0c82008-10-06 16:54:34 +010042#include <linux/spi/spi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Liam Girdwood1f53aee2007-04-16 19:17:44 +020044#include <sound/core.h>
45#include <sound/pcm.h>
46#include <sound/pcm_params.h>
47#include <sound/soc.h>
48#include <sound/soc-dapm.h>
49#include <sound/initval.h>
Liam Girdwood2d6a4ac2008-01-10 14:43:48 +010050#include <sound/tlv.h>
Liam Girdwood1f53aee2007-04-16 19:17:44 +020051#include <asm/div64.h>
52
53#include "wm8753.h"
54
Liam Girdwood1f53aee2007-04-16 19:17:44 +020055static int caps_charge = 2000;
56module_param(caps_charge, int, 0);
57MODULE_PARM_DESC(caps_charge, "WM8753 cap charge time (msecs)");
58
59static void wm8753_set_dai_mode(struct snd_soc_codec *codec,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000060 struct snd_soc_dai *dai, unsigned int hifi);
Liam Girdwood1f53aee2007-04-16 19:17:44 +020061
Liam Girdwood1f53aee2007-04-16 19:17:44 +020062/*
63 * wm8753 register cache
64 * We can't read the WM8753 register space when we
65 * are using 2 wire for device control, so we cache them instead.
66 */
67static const u16 wm8753_reg[] = {
68 0x0008, 0x0000, 0x000a, 0x000a,
69 0x0033, 0x0000, 0x0007, 0x00ff,
70 0x00ff, 0x000f, 0x000f, 0x007b,
71 0x0000, 0x0032, 0x0000, 0x00c3,
72 0x00c3, 0x00c0, 0x0000, 0x0000,
73 0x0000, 0x0000, 0x0000, 0x0000,
74 0x0000, 0x0000, 0x0000, 0x0000,
75 0x0000, 0x0000, 0x0000, 0x0055,
76 0x0005, 0x0050, 0x0055, 0x0050,
77 0x0055, 0x0050, 0x0055, 0x0079,
78 0x0079, 0x0079, 0x0079, 0x0079,
79 0x0000, 0x0000, 0x0000, 0x0000,
80 0x0097, 0x0097, 0x0000, 0x0004,
81 0x0000, 0x0083, 0x0024, 0x01ba,
82 0x0000, 0x0083, 0x0024, 0x01ba,
Lars-Peter Clausen637a9352009-07-03 01:04:16 +020083 0x0000, 0x0000, 0x0000
Liam Girdwood1f53aee2007-04-16 19:17:44 +020084};
85
Mark Brownc2bac162009-02-24 23:33:12 +000086/* codec private data */
87struct wm8753_priv {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000088 enum snd_soc_control_type control_type;
Mark Brownc2bac162009-02-24 23:33:12 +000089 unsigned int sysclk;
90 unsigned int pcmclk;
Mark Brownc2bac162009-02-24 23:33:12 +000091 u16 reg_cache[ARRAY_SIZE(wm8753_reg)];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000092 int dai_func;
Mark Brownc2bac162009-02-24 23:33:12 +000093};
94
Liam Girdwood1f53aee2007-04-16 19:17:44 +020095/*
96 * read wm8753 register cache
97 */
98static inline unsigned int wm8753_read_reg_cache(struct snd_soc_codec *codec,
99 unsigned int reg)
100{
101 u16 *cache = codec->reg_cache;
Ian Molton91432e92009-01-17 17:44:23 +0000102 if (reg < 1 || reg >= (ARRAY_SIZE(wm8753_reg) + 1))
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200103 return -1;
104 return cache[reg - 1];
105}
106
107/*
108 * write wm8753 register cache
109 */
110static inline void wm8753_write_reg_cache(struct snd_soc_codec *codec,
111 unsigned int reg, unsigned int value)
112{
113 u16 *cache = codec->reg_cache;
Ian Molton91432e92009-01-17 17:44:23 +0000114 if (reg < 1 || reg >= (ARRAY_SIZE(wm8753_reg) + 1))
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200115 return;
116 cache[reg - 1] = value;
117}
118
119/*
120 * write to the WM8753 register space
121 */
122static int wm8753_write(struct snd_soc_codec *codec, unsigned int reg,
123 unsigned int value)
124{
125 u8 data[2];
126
127 /* data is
128 * D15..D9 WM8753 register offset
129 * D8...D0 register data
130 */
131 data[0] = (reg << 1) | ((value >> 8) & 0x0001);
132 data[1] = value & 0x00ff;
133
Mark Brown60fc6842008-04-30 17:18:43 +0200134 wm8753_write_reg_cache(codec, reg, value);
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200135 if (codec->hw_write(codec->control_data, data, 2) == 2)
136 return 0;
137 else
138 return -EIO;
139}
140
141#define wm8753_reset(c) wm8753_write(c, WM8753_RESET, 0)
142
143/*
144 * WM8753 Controls
145 */
146static const char *wm8753_base[] = {"Linear Control", "Adaptive Boost"};
147static const char *wm8753_base_filter[] =
148 {"130Hz @ 48kHz", "200Hz @ 48kHz", "100Hz @ 16kHz", "400Hz @ 48kHz",
149 "100Hz @ 8kHz", "200Hz @ 8kHz"};
150static const char *wm8753_treble[] = {"8kHz", "4kHz"};
151static const char *wm8753_alc_func[] = {"Off", "Right", "Left", "Stereo"};
152static const char *wm8753_ng_type[] = {"Constant PGA Gain", "Mute ADC Output"};
153static const char *wm8753_3d_func[] = {"Capture", "Playback"};
154static const char *wm8753_3d_uc[] = {"2.2kHz", "1.5kHz"};
155static const char *wm8753_3d_lc[] = {"200Hz", "500Hz"};
156static const char *wm8753_deemp[] = {"None", "32kHz", "44.1kHz", "48kHz"};
157static const char *wm8753_mono_mix[] = {"Stereo", "Left", "Right", "Mono"};
158static const char *wm8753_dac_phase[] = {"Non Inverted", "Inverted"};
159static const char *wm8753_line_mix[] = {"Line 1 + 2", "Line 1 - 2",
160 "Line 1", "Line 2"};
161static const char *wm8753_mono_mux[] = {"Line Mix", "Rx Mix"};
162static const char *wm8753_right_mux[] = {"Line 2", "Rx Mix"};
163static const char *wm8753_left_mux[] = {"Line 1", "Rx Mix"};
164static const char *wm8753_rxmsel[] = {"RXP - RXN", "RXP + RXN", "RXP", "RXN"};
165static const char *wm8753_sidetone_mux[] = {"Left PGA", "Mic 1", "Mic 2",
166 "Right PGA"};
167static const char *wm8753_mono2_src[] = {"Inverted Mono 1", "Left", "Right",
168 "Left + Right"};
169static const char *wm8753_out3[] = {"VREF", "ROUT2", "Left + Right"};
170static const char *wm8753_out4[] = {"VREF", "Capture ST", "LOUT2"};
171static const char *wm8753_radcsel[] = {"PGA", "Line or RXP-RXN", "Sidetone"};
172static const char *wm8753_ladcsel[] = {"PGA", "Line or RXP-RXN", "Line"};
173static const char *wm8753_mono_adc[] = {"Stereo", "Analogue Mix Left",
174 "Analogue Mix Right", "Digital Mono Mix"};
175static const char *wm8753_adc_hp[] = {"3.4Hz @ 48kHz", "82Hz @ 16k",
176 "82Hz @ 8kHz", "170Hz @ 8kHz"};
177static const char *wm8753_adc_filter[] = {"HiFi", "Voice"};
178static const char *wm8753_mic_sel[] = {"Mic 1", "Mic 2", "Mic 3"};
179static const char *wm8753_dai_mode[] = {"DAI 0", "DAI 1", "DAI 2", "DAI 3"};
180static const char *wm8753_dat_sel[] = {"Stereo", "Left ADC", "Right ADC",
181 "Channel Swap"};
Graeme Gregoryae092c92008-03-03 17:19:45 +0100182static const char *wm8753_rout2_phase[] = {"Non Inverted", "Inverted"};
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200183
184static const struct soc_enum wm8753_enum[] = {
185SOC_ENUM_SINGLE(WM8753_BASS, 7, 2, wm8753_base),
186SOC_ENUM_SINGLE(WM8753_BASS, 4, 6, wm8753_base_filter),
187SOC_ENUM_SINGLE(WM8753_TREBLE, 6, 2, wm8753_treble),
188SOC_ENUM_SINGLE(WM8753_ALC1, 7, 4, wm8753_alc_func),
189SOC_ENUM_SINGLE(WM8753_NGATE, 1, 2, wm8753_ng_type),
190SOC_ENUM_SINGLE(WM8753_3D, 7, 2, wm8753_3d_func),
191SOC_ENUM_SINGLE(WM8753_3D, 6, 2, wm8753_3d_uc),
192SOC_ENUM_SINGLE(WM8753_3D, 5, 2, wm8753_3d_lc),
193SOC_ENUM_SINGLE(WM8753_DAC, 1, 4, wm8753_deemp),
194SOC_ENUM_SINGLE(WM8753_DAC, 4, 4, wm8753_mono_mix),
195SOC_ENUM_SINGLE(WM8753_DAC, 6, 2, wm8753_dac_phase),
196SOC_ENUM_SINGLE(WM8753_INCTL1, 3, 4, wm8753_line_mix),
197SOC_ENUM_SINGLE(WM8753_INCTL1, 2, 2, wm8753_mono_mux),
198SOC_ENUM_SINGLE(WM8753_INCTL1, 1, 2, wm8753_right_mux),
199SOC_ENUM_SINGLE(WM8753_INCTL1, 0, 2, wm8753_left_mux),
200SOC_ENUM_SINGLE(WM8753_INCTL2, 6, 4, wm8753_rxmsel),
201SOC_ENUM_SINGLE(WM8753_INCTL2, 4, 4, wm8753_sidetone_mux),
202SOC_ENUM_SINGLE(WM8753_OUTCTL, 7, 4, wm8753_mono2_src),
203SOC_ENUM_SINGLE(WM8753_OUTCTL, 0, 3, wm8753_out3),
204SOC_ENUM_SINGLE(WM8753_ADCTL2, 7, 3, wm8753_out4),
205SOC_ENUM_SINGLE(WM8753_ADCIN, 2, 3, wm8753_radcsel),
206SOC_ENUM_SINGLE(WM8753_ADCIN, 0, 3, wm8753_ladcsel),
207SOC_ENUM_SINGLE(WM8753_ADCIN, 4, 4, wm8753_mono_adc),
208SOC_ENUM_SINGLE(WM8753_ADC, 2, 4, wm8753_adc_hp),
209SOC_ENUM_SINGLE(WM8753_ADC, 4, 2, wm8753_adc_filter),
210SOC_ENUM_SINGLE(WM8753_MICBIAS, 6, 3, wm8753_mic_sel),
211SOC_ENUM_SINGLE(WM8753_IOCTL, 2, 4, wm8753_dai_mode),
212SOC_ENUM_SINGLE(WM8753_ADC, 7, 4, wm8753_dat_sel),
Graeme Gregoryae092c92008-03-03 17:19:45 +0100213SOC_ENUM_SINGLE(WM8753_OUTCTL, 2, 2, wm8753_rout2_phase),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200214};
215
216
217static int wm8753_get_dai(struct snd_kcontrol *kcontrol,
218 struct snd_ctl_elem_value *ucontrol)
219{
220 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
221 int mode = wm8753_read_reg_cache(codec, WM8753_IOCTL);
222
223 ucontrol->value.integer.value[0] = (mode & 0xc) >> 2;
224 return 0;
225}
226
227static int wm8753_set_dai(struct snd_kcontrol *kcontrol,
228 struct snd_ctl_elem_value *ucontrol)
229{
230 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
231 int mode = wm8753_read_reg_cache(codec, WM8753_IOCTL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000232 struct wm8753_priv *wm8753 = snd_soc_codec_get_drvdata(codec);
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200233
Mark Brown60fc6842008-04-30 17:18:43 +0200234 if (((mode & 0xc) >> 2) == ucontrol->value.integer.value[0])
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200235 return 0;
236
237 mode &= 0xfff3;
238 mode |= (ucontrol->value.integer.value[0] << 2);
239
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000240 wm8753->dai_func = ucontrol->value.integer.value[0];
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200241 return 1;
242}
243
Mike Montour2cc8c602008-06-11 13:47:12 +0100244static const DECLARE_TLV_DB_SCALE(rec_mix_tlv, -1500, 300, 0);
245static const DECLARE_TLV_DB_SCALE(mic_preamp_tlv, 1200, 600, 0);
246static const DECLARE_TLV_DB_SCALE(adc_tlv, -9750, 50, 1);
247static const DECLARE_TLV_DB_SCALE(dac_tlv, -12750, 50, 1);
248static const unsigned int out_tlv[] = {
249 TLV_DB_RANGE_HEAD(2),
250 /* 0000000 - 0101111 = "Analogue mute" */
251 0, 48, TLV_DB_SCALE_ITEM(-25500, 0, 0),
252 48, 127, TLV_DB_SCALE_ITEM(-7300, 100, 0),
253};
254static const DECLARE_TLV_DB_SCALE(mix_tlv, -1500, 300, 0);
255static const DECLARE_TLV_DB_SCALE(voice_mix_tlv, -1200, 300, 0);
256static const DECLARE_TLV_DB_SCALE(pga_tlv, -1725, 75, 0);
Liam Girdwood2d6a4ac2008-01-10 14:43:48 +0100257
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200258static const struct snd_kcontrol_new wm8753_snd_controls[] = {
Mike Montour2cc8c602008-06-11 13:47:12 +0100259SOC_DOUBLE_R_TLV("PCM Volume", WM8753_LDAC, WM8753_RDAC, 0, 255, 0, dac_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200260
Mike Montour2cc8c602008-06-11 13:47:12 +0100261SOC_DOUBLE_R_TLV("ADC Capture Volume", WM8753_LADC, WM8753_RADC, 0, 255, 0,
262 adc_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200263
Mike Montour2cc8c602008-06-11 13:47:12 +0100264SOC_DOUBLE_R_TLV("Headphone Playback Volume", WM8753_LOUT1V, WM8753_ROUT1V,
265 0, 127, 0, out_tlv),
266SOC_DOUBLE_R_TLV("Speaker Playback Volume", WM8753_LOUT2V, WM8753_ROUT2V, 0,
267 127, 0, out_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200268
Mike Montour2cc8c602008-06-11 13:47:12 +0100269SOC_SINGLE_TLV("Mono Playback Volume", WM8753_MOUTV, 0, 127, 0, out_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200270
Mike Montour2cc8c602008-06-11 13:47:12 +0100271SOC_DOUBLE_R_TLV("Bypass Playback Volume", WM8753_LOUTM1, WM8753_ROUTM1, 4, 7,
272 1, mix_tlv),
273SOC_DOUBLE_R_TLV("Sidetone Playback Volume", WM8753_LOUTM2, WM8753_ROUTM2, 4,
274 7, 1, mix_tlv),
275SOC_DOUBLE_R_TLV("Voice Playback Volume", WM8753_LOUTM2, WM8753_ROUTM2, 0, 7,
276 1, voice_mix_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200277
Mike Montour2cc8c602008-06-11 13:47:12 +0100278SOC_DOUBLE_R("Headphone Playback ZC Switch", WM8753_LOUT1V, WM8753_ROUT1V, 7,
279 1, 0),
280SOC_DOUBLE_R("Speaker Playback ZC Switch", WM8753_LOUT2V, WM8753_ROUT2V, 7,
281 1, 0),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200282
Mike Montour2cc8c602008-06-11 13:47:12 +0100283SOC_SINGLE_TLV("Mono Bypass Playback Volume", WM8753_MOUTM1, 4, 7, 1, mix_tlv),
284SOC_SINGLE_TLV("Mono Sidetone Playback Volume", WM8753_MOUTM2, 4, 7, 1,
285 mix_tlv),
286SOC_SINGLE_TLV("Mono Voice Playback Volume", WM8753_MOUTM2, 0, 7, 1,
287 voice_mix_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200288SOC_SINGLE("Mono Playback ZC Switch", WM8753_MOUTV, 7, 1, 0),
289
290SOC_ENUM("Bass Boost", wm8753_enum[0]),
291SOC_ENUM("Bass Filter", wm8753_enum[1]),
292SOC_SINGLE("Bass Volume", WM8753_BASS, 0, 15, 1),
293
294SOC_SINGLE("Treble Volume", WM8753_TREBLE, 0, 15, 1),
295SOC_ENUM("Treble Cut-off", wm8753_enum[2]),
296
Mike Montour2cc8c602008-06-11 13:47:12 +0100297SOC_DOUBLE_TLV("Sidetone Capture Volume", WM8753_RECMIX1, 0, 4, 7, 1,
298 rec_mix_tlv),
299SOC_SINGLE_TLV("Voice Sidetone Capture Volume", WM8753_RECMIX2, 0, 7, 1,
300 rec_mix_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200301
Mike Montour2cc8c602008-06-11 13:47:12 +0100302SOC_DOUBLE_R_TLV("Capture Volume", WM8753_LINVOL, WM8753_RINVOL, 0, 63, 0,
303 pga_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200304SOC_DOUBLE_R("Capture ZC Switch", WM8753_LINVOL, WM8753_RINVOL, 6, 1, 0),
305SOC_DOUBLE_R("Capture Switch", WM8753_LINVOL, WM8753_RINVOL, 7, 1, 1),
306
307SOC_ENUM("Capture Filter Select", wm8753_enum[23]),
308SOC_ENUM("Capture Filter Cut-off", wm8753_enum[24]),
309SOC_SINGLE("Capture Filter Switch", WM8753_ADC, 0, 1, 1),
310
311SOC_SINGLE("ALC Capture Target Volume", WM8753_ALC1, 0, 7, 0),
312SOC_SINGLE("ALC Capture Max Volume", WM8753_ALC1, 4, 7, 0),
313SOC_ENUM("ALC Capture Function", wm8753_enum[3]),
314SOC_SINGLE("ALC Capture ZC Switch", WM8753_ALC2, 8, 1, 0),
315SOC_SINGLE("ALC Capture Hold Time", WM8753_ALC2, 0, 15, 1),
316SOC_SINGLE("ALC Capture Decay Time", WM8753_ALC3, 4, 15, 1),
317SOC_SINGLE("ALC Capture Attack Time", WM8753_ALC3, 0, 15, 0),
318SOC_SINGLE("ALC Capture NG Threshold", WM8753_NGATE, 3, 31, 0),
319SOC_ENUM("ALC Capture NG Type", wm8753_enum[4]),
320SOC_SINGLE("ALC Capture NG Switch", WM8753_NGATE, 0, 1, 0),
321
322SOC_ENUM("3D Function", wm8753_enum[5]),
323SOC_ENUM("3D Upper Cut-off", wm8753_enum[6]),
324SOC_ENUM("3D Lower Cut-off", wm8753_enum[7]),
325SOC_SINGLE("3D Volume", WM8753_3D, 1, 15, 0),
326SOC_SINGLE("3D Switch", WM8753_3D, 0, 1, 0),
327
328SOC_SINGLE("Capture 6dB Attenuate", WM8753_ADCTL1, 2, 1, 0),
329SOC_SINGLE("Playback 6dB Attenuate", WM8753_ADCTL1, 1, 1, 0),
330
331SOC_ENUM("De-emphasis", wm8753_enum[8]),
332SOC_ENUM("Playback Mono Mix", wm8753_enum[9]),
333SOC_ENUM("Playback Phase", wm8753_enum[10]),
334
Mike Montour2cc8c602008-06-11 13:47:12 +0100335SOC_SINGLE_TLV("Mic2 Capture Volume", WM8753_INCTL1, 7, 3, 0, mic_preamp_tlv),
336SOC_SINGLE_TLV("Mic1 Capture Volume", WM8753_INCTL1, 5, 3, 0, mic_preamp_tlv),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200337
338SOC_ENUM_EXT("DAI Mode", wm8753_enum[26], wm8753_get_dai, wm8753_set_dai),
339
340SOC_ENUM("ADC Data Select", wm8753_enum[27]),
Graeme Gregoryae092c92008-03-03 17:19:45 +0100341SOC_ENUM("ROUT2 Phase", wm8753_enum[28]),
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200342};
343
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200344/*
345 * _DAPM_ Controls
346 */
347
348/* Left Mixer */
349static const struct snd_kcontrol_new wm8753_left_mixer_controls[] = {
350SOC_DAPM_SINGLE("Voice Playback Switch", WM8753_LOUTM2, 8, 1, 0),
351SOC_DAPM_SINGLE("Sidetone Playback Switch", WM8753_LOUTM2, 7, 1, 0),
352SOC_DAPM_SINGLE("Left Playback Switch", WM8753_LOUTM1, 8, 1, 0),
353SOC_DAPM_SINGLE("Bypass Playback Switch", WM8753_LOUTM1, 7, 1, 0),
354};
355
356/* Right mixer */
357static const struct snd_kcontrol_new wm8753_right_mixer_controls[] = {
358SOC_DAPM_SINGLE("Voice Playback Switch", WM8753_ROUTM2, 8, 1, 0),
359SOC_DAPM_SINGLE("Sidetone Playback Switch", WM8753_ROUTM2, 7, 1, 0),
360SOC_DAPM_SINGLE("Right Playback Switch", WM8753_ROUTM1, 8, 1, 0),
361SOC_DAPM_SINGLE("Bypass Playback Switch", WM8753_ROUTM1, 7, 1, 0),
362};
363
364/* Mono mixer */
365static const struct snd_kcontrol_new wm8753_mono_mixer_controls[] = {
366SOC_DAPM_SINGLE("Left Playback Switch", WM8753_MOUTM1, 8, 1, 0),
367SOC_DAPM_SINGLE("Right Playback Switch", WM8753_MOUTM2, 8, 1, 0),
368SOC_DAPM_SINGLE("Voice Playback Switch", WM8753_MOUTM2, 3, 1, 0),
369SOC_DAPM_SINGLE("Sidetone Playback Switch", WM8753_MOUTM2, 7, 1, 0),
370SOC_DAPM_SINGLE("Bypass Playback Switch", WM8753_MOUTM1, 7, 1, 0),
371};
372
373/* Mono 2 Mux */
374static const struct snd_kcontrol_new wm8753_mono2_controls =
375SOC_DAPM_ENUM("Route", wm8753_enum[17]);
376
377/* Out 3 Mux */
378static const struct snd_kcontrol_new wm8753_out3_controls =
379SOC_DAPM_ENUM("Route", wm8753_enum[18]);
380
381/* Out 4 Mux */
382static const struct snd_kcontrol_new wm8753_out4_controls =
383SOC_DAPM_ENUM("Route", wm8753_enum[19]);
384
385/* ADC Mono Mix */
386static const struct snd_kcontrol_new wm8753_adc_mono_controls =
387SOC_DAPM_ENUM("Route", wm8753_enum[22]);
388
389/* Record mixer */
390static const struct snd_kcontrol_new wm8753_record_mixer_controls[] = {
391SOC_DAPM_SINGLE("Voice Capture Switch", WM8753_RECMIX2, 3, 1, 0),
392SOC_DAPM_SINGLE("Left Capture Switch", WM8753_RECMIX1, 3, 1, 0),
393SOC_DAPM_SINGLE("Right Capture Switch", WM8753_RECMIX1, 7, 1, 0),
394};
395
396/* Left ADC mux */
397static const struct snd_kcontrol_new wm8753_adc_left_controls =
398SOC_DAPM_ENUM("Route", wm8753_enum[21]);
399
400/* Right ADC mux */
401static const struct snd_kcontrol_new wm8753_adc_right_controls =
402SOC_DAPM_ENUM("Route", wm8753_enum[20]);
403
404/* MIC mux */
405static const struct snd_kcontrol_new wm8753_mic_mux_controls =
406SOC_DAPM_ENUM("Route", wm8753_enum[16]);
407
408/* ALC mixer */
409static const struct snd_kcontrol_new wm8753_alc_mixer_controls[] = {
410SOC_DAPM_SINGLE("Line Capture Switch", WM8753_INCTL2, 3, 1, 0),
411SOC_DAPM_SINGLE("Mic2 Capture Switch", WM8753_INCTL2, 2, 1, 0),
412SOC_DAPM_SINGLE("Mic1 Capture Switch", WM8753_INCTL2, 1, 1, 0),
413SOC_DAPM_SINGLE("Rx Capture Switch", WM8753_INCTL2, 0, 1, 0),
414};
415
416/* Left Line mux */
417static const struct snd_kcontrol_new wm8753_line_left_controls =
418SOC_DAPM_ENUM("Route", wm8753_enum[14]);
419
420/* Right Line mux */
421static const struct snd_kcontrol_new wm8753_line_right_controls =
422SOC_DAPM_ENUM("Route", wm8753_enum[13]);
423
424/* Mono Line mux */
425static const struct snd_kcontrol_new wm8753_line_mono_controls =
426SOC_DAPM_ENUM("Route", wm8753_enum[12]);
427
428/* Line mux and mixer */
429static const struct snd_kcontrol_new wm8753_line_mux_mix_controls =
430SOC_DAPM_ENUM("Route", wm8753_enum[11]);
431
432/* Rx mux and mixer */
433static const struct snd_kcontrol_new wm8753_rx_mux_mix_controls =
434SOC_DAPM_ENUM("Route", wm8753_enum[15]);
435
436/* Mic Selector Mux */
437static const struct snd_kcontrol_new wm8753_mic_sel_mux_controls =
438SOC_DAPM_ENUM("Route", wm8753_enum[25]);
439
440static const struct snd_soc_dapm_widget wm8753_dapm_widgets[] = {
441SND_SOC_DAPM_MICBIAS("Mic Bias", WM8753_PWR1, 5, 0),
442SND_SOC_DAPM_MIXER("Left Mixer", WM8753_PWR4, 0, 0,
443 &wm8753_left_mixer_controls[0], ARRAY_SIZE(wm8753_left_mixer_controls)),
444SND_SOC_DAPM_PGA("Left Out 1", WM8753_PWR3, 8, 0, NULL, 0),
445SND_SOC_DAPM_PGA("Left Out 2", WM8753_PWR3, 6, 0, NULL, 0),
446SND_SOC_DAPM_DAC("Left DAC", "Left HiFi Playback", WM8753_PWR1, 3, 0),
447SND_SOC_DAPM_OUTPUT("LOUT1"),
448SND_SOC_DAPM_OUTPUT("LOUT2"),
449SND_SOC_DAPM_MIXER("Right Mixer", WM8753_PWR4, 1, 0,
450 &wm8753_right_mixer_controls[0], ARRAY_SIZE(wm8753_right_mixer_controls)),
451SND_SOC_DAPM_PGA("Right Out 1", WM8753_PWR3, 7, 0, NULL, 0),
452SND_SOC_DAPM_PGA("Right Out 2", WM8753_PWR3, 5, 0, NULL, 0),
453SND_SOC_DAPM_DAC("Right DAC", "Right HiFi Playback", WM8753_PWR1, 2, 0),
454SND_SOC_DAPM_OUTPUT("ROUT1"),
455SND_SOC_DAPM_OUTPUT("ROUT2"),
456SND_SOC_DAPM_MIXER("Mono Mixer", WM8753_PWR4, 2, 0,
457 &wm8753_mono_mixer_controls[0], ARRAY_SIZE(wm8753_mono_mixer_controls)),
458SND_SOC_DAPM_PGA("Mono Out 1", WM8753_PWR3, 2, 0, NULL, 0),
459SND_SOC_DAPM_PGA("Mono Out 2", WM8753_PWR3, 1, 0, NULL, 0),
460SND_SOC_DAPM_DAC("Voice DAC", "Voice Playback", WM8753_PWR1, 4, 0),
461SND_SOC_DAPM_OUTPUT("MONO1"),
462SND_SOC_DAPM_MUX("Mono 2 Mux", SND_SOC_NOPM, 0, 0, &wm8753_mono2_controls),
463SND_SOC_DAPM_OUTPUT("MONO2"),
464SND_SOC_DAPM_MIXER("Out3 Left + Right", -1, 0, 0, NULL, 0),
465SND_SOC_DAPM_MUX("Out3 Mux", SND_SOC_NOPM, 0, 0, &wm8753_out3_controls),
466SND_SOC_DAPM_PGA("Out 3", WM8753_PWR3, 4, 0, NULL, 0),
467SND_SOC_DAPM_OUTPUT("OUT3"),
468SND_SOC_DAPM_MUX("Out4 Mux", SND_SOC_NOPM, 0, 0, &wm8753_out4_controls),
469SND_SOC_DAPM_PGA("Out 4", WM8753_PWR3, 3, 0, NULL, 0),
470SND_SOC_DAPM_OUTPUT("OUT4"),
471SND_SOC_DAPM_MIXER("Playback Mixer", WM8753_PWR4, 3, 0,
472 &wm8753_record_mixer_controls[0],
473 ARRAY_SIZE(wm8753_record_mixer_controls)),
474SND_SOC_DAPM_ADC("Left ADC", "Left Capture", WM8753_PWR2, 3, 0),
475SND_SOC_DAPM_ADC("Right ADC", "Right Capture", WM8753_PWR2, 2, 0),
476SND_SOC_DAPM_MUX("Capture Left Mixer", SND_SOC_NOPM, 0, 0,
477 &wm8753_adc_mono_controls),
478SND_SOC_DAPM_MUX("Capture Right Mixer", SND_SOC_NOPM, 0, 0,
479 &wm8753_adc_mono_controls),
480SND_SOC_DAPM_MUX("Capture Left Mux", SND_SOC_NOPM, 0, 0,
481 &wm8753_adc_left_controls),
482SND_SOC_DAPM_MUX("Capture Right Mux", SND_SOC_NOPM, 0, 0,
483 &wm8753_adc_right_controls),
484SND_SOC_DAPM_MUX("Mic Sidetone Mux", SND_SOC_NOPM, 0, 0,
485 &wm8753_mic_mux_controls),
486SND_SOC_DAPM_PGA("Left Capture Volume", WM8753_PWR2, 5, 0, NULL, 0),
487SND_SOC_DAPM_PGA("Right Capture Volume", WM8753_PWR2, 4, 0, NULL, 0),
488SND_SOC_DAPM_MIXER("ALC Mixer", WM8753_PWR2, 6, 0,
489 &wm8753_alc_mixer_controls[0], ARRAY_SIZE(wm8753_alc_mixer_controls)),
490SND_SOC_DAPM_MUX("Line Left Mux", SND_SOC_NOPM, 0, 0,
491 &wm8753_line_left_controls),
492SND_SOC_DAPM_MUX("Line Right Mux", SND_SOC_NOPM, 0, 0,
493 &wm8753_line_right_controls),
494SND_SOC_DAPM_MUX("Line Mono Mux", SND_SOC_NOPM, 0, 0,
495 &wm8753_line_mono_controls),
496SND_SOC_DAPM_MUX("Line Mixer", WM8753_PWR2, 0, 0,
497 &wm8753_line_mux_mix_controls),
498SND_SOC_DAPM_MUX("Rx Mixer", WM8753_PWR2, 1, 0,
499 &wm8753_rx_mux_mix_controls),
500SND_SOC_DAPM_PGA("Mic 1 Volume", WM8753_PWR2, 8, 0, NULL, 0),
501SND_SOC_DAPM_PGA("Mic 2 Volume", WM8753_PWR2, 7, 0, NULL, 0),
502SND_SOC_DAPM_MUX("Mic Selection Mux", SND_SOC_NOPM, 0, 0,
503 &wm8753_mic_sel_mux_controls),
504SND_SOC_DAPM_INPUT("LINE1"),
505SND_SOC_DAPM_INPUT("LINE2"),
506SND_SOC_DAPM_INPUT("RXP"),
507SND_SOC_DAPM_INPUT("RXN"),
508SND_SOC_DAPM_INPUT("ACIN"),
509SND_SOC_DAPM_OUTPUT("ACOP"),
510SND_SOC_DAPM_INPUT("MIC1N"),
511SND_SOC_DAPM_INPUT("MIC1"),
512SND_SOC_DAPM_INPUT("MIC2N"),
513SND_SOC_DAPM_INPUT("MIC2"),
514SND_SOC_DAPM_VMID("VREF"),
515};
516
Mark Browna65f0562008-05-13 14:54:43 +0200517static const struct snd_soc_dapm_route audio_map[] = {
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200518 /* left mixer */
519 {"Left Mixer", "Left Playback Switch", "Left DAC"},
520 {"Left Mixer", "Voice Playback Switch", "Voice DAC"},
521 {"Left Mixer", "Sidetone Playback Switch", "Mic Sidetone Mux"},
522 {"Left Mixer", "Bypass Playback Switch", "Line Left Mux"},
523
524 /* right mixer */
525 {"Right Mixer", "Right Playback Switch", "Right DAC"},
526 {"Right Mixer", "Voice Playback Switch", "Voice DAC"},
527 {"Right Mixer", "Sidetone Playback Switch", "Mic Sidetone Mux"},
528 {"Right Mixer", "Bypass Playback Switch", "Line Right Mux"},
529
530 /* mono mixer */
531 {"Mono Mixer", "Voice Playback Switch", "Voice DAC"},
532 {"Mono Mixer", "Left Playback Switch", "Left DAC"},
533 {"Mono Mixer", "Right Playback Switch", "Right DAC"},
534 {"Mono Mixer", "Sidetone Playback Switch", "Mic Sidetone Mux"},
535 {"Mono Mixer", "Bypass Playback Switch", "Line Mono Mux"},
536
537 /* left out */
538 {"Left Out 1", NULL, "Left Mixer"},
539 {"Left Out 2", NULL, "Left Mixer"},
540 {"LOUT1", NULL, "Left Out 1"},
541 {"LOUT2", NULL, "Left Out 2"},
542
543 /* right out */
544 {"Right Out 1", NULL, "Right Mixer"},
545 {"Right Out 2", NULL, "Right Mixer"},
546 {"ROUT1", NULL, "Right Out 1"},
547 {"ROUT2", NULL, "Right Out 2"},
548
549 /* mono 1 out */
550 {"Mono Out 1", NULL, "Mono Mixer"},
551 {"MONO1", NULL, "Mono Out 1"},
552
553 /* mono 2 out */
554 {"Mono 2 Mux", "Left + Right", "Out3 Left + Right"},
555 {"Mono 2 Mux", "Inverted Mono 1", "MONO1"},
556 {"Mono 2 Mux", "Left", "Left Mixer"},
557 {"Mono 2 Mux", "Right", "Right Mixer"},
558 {"Mono Out 2", NULL, "Mono 2 Mux"},
559 {"MONO2", NULL, "Mono Out 2"},
560
561 /* out 3 */
562 {"Out3 Left + Right", NULL, "Left Mixer"},
563 {"Out3 Left + Right", NULL, "Right Mixer"},
564 {"Out3 Mux", "VREF", "VREF"},
565 {"Out3 Mux", "Left + Right", "Out3 Left + Right"},
566 {"Out3 Mux", "ROUT2", "ROUT2"},
567 {"Out 3", NULL, "Out3 Mux"},
568 {"OUT3", NULL, "Out 3"},
569
570 /* out 4 */
571 {"Out4 Mux", "VREF", "VREF"},
Rob Sims40373142008-10-01 21:47:31 +0200572 {"Out4 Mux", "Capture ST", "Playback Mixer"},
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200573 {"Out4 Mux", "LOUT2", "LOUT2"},
574 {"Out 4", NULL, "Out4 Mux"},
575 {"OUT4", NULL, "Out 4"},
576
577 /* record mixer */
578 {"Playback Mixer", "Left Capture Switch", "Left Mixer"},
579 {"Playback Mixer", "Voice Capture Switch", "Mono Mixer"},
580 {"Playback Mixer", "Right Capture Switch", "Right Mixer"},
581
582 /* Mic/SideTone Mux */
583 {"Mic Sidetone Mux", "Left PGA", "Left Capture Volume"},
584 {"Mic Sidetone Mux", "Right PGA", "Right Capture Volume"},
585 {"Mic Sidetone Mux", "Mic 1", "Mic 1 Volume"},
586 {"Mic Sidetone Mux", "Mic 2", "Mic 2 Volume"},
587
588 /* Capture Left Mux */
589 {"Capture Left Mux", "PGA", "Left Capture Volume"},
590 {"Capture Left Mux", "Line or RXP-RXN", "Line Left Mux"},
591 {"Capture Left Mux", "Line", "LINE1"},
592
593 /* Capture Right Mux */
594 {"Capture Right Mux", "PGA", "Right Capture Volume"},
595 {"Capture Right Mux", "Line or RXP-RXN", "Line Right Mux"},
Rob Sims40373142008-10-01 21:47:31 +0200596 {"Capture Right Mux", "Sidetone", "Playback Mixer"},
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200597
598 /* Mono Capture mixer-mux */
599 {"Capture Right Mixer", "Stereo", "Capture Right Mux"},
Phil Vandry877ae702009-09-21 11:36:08 -0400600 {"Capture Left Mixer", "Stereo", "Capture Left Mux"},
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200601 {"Capture Left Mixer", "Analogue Mix Left", "Capture Left Mux"},
602 {"Capture Left Mixer", "Analogue Mix Left", "Capture Right Mux"},
603 {"Capture Right Mixer", "Analogue Mix Right", "Capture Left Mux"},
604 {"Capture Right Mixer", "Analogue Mix Right", "Capture Right Mux"},
605 {"Capture Left Mixer", "Digital Mono Mix", "Capture Left Mux"},
606 {"Capture Left Mixer", "Digital Mono Mix", "Capture Right Mux"},
607 {"Capture Right Mixer", "Digital Mono Mix", "Capture Left Mux"},
608 {"Capture Right Mixer", "Digital Mono Mix", "Capture Right Mux"},
609
610 /* ADC */
611 {"Left ADC", NULL, "Capture Left Mixer"},
612 {"Right ADC", NULL, "Capture Right Mixer"},
613
614 /* Left Capture Volume */
615 {"Left Capture Volume", NULL, "ACIN"},
616
617 /* Right Capture Volume */
618 {"Right Capture Volume", NULL, "Mic 2 Volume"},
619
620 /* ALC Mixer */
621 {"ALC Mixer", "Line Capture Switch", "Line Mixer"},
622 {"ALC Mixer", "Mic2 Capture Switch", "Mic 2 Volume"},
623 {"ALC Mixer", "Mic1 Capture Switch", "Mic 1 Volume"},
624 {"ALC Mixer", "Rx Capture Switch", "Rx Mixer"},
625
626 /* Line Left Mux */
627 {"Line Left Mux", "Line 1", "LINE1"},
628 {"Line Left Mux", "Rx Mix", "Rx Mixer"},
629
630 /* Line Right Mux */
631 {"Line Right Mux", "Line 2", "LINE2"},
632 {"Line Right Mux", "Rx Mix", "Rx Mixer"},
633
634 /* Line Mono Mux */
635 {"Line Mono Mux", "Line Mix", "Line Mixer"},
636 {"Line Mono Mux", "Rx Mix", "Rx Mixer"},
637
638 /* Line Mixer/Mux */
639 {"Line Mixer", "Line 1 + 2", "LINE1"},
640 {"Line Mixer", "Line 1 - 2", "LINE1"},
641 {"Line Mixer", "Line 1 + 2", "LINE2"},
642 {"Line Mixer", "Line 1 - 2", "LINE2"},
643 {"Line Mixer", "Line 1", "LINE1"},
644 {"Line Mixer", "Line 2", "LINE2"},
645
646 /* Rx Mixer/Mux */
647 {"Rx Mixer", "RXP - RXN", "RXP"},
648 {"Rx Mixer", "RXP + RXN", "RXP"},
649 {"Rx Mixer", "RXP - RXN", "RXN"},
650 {"Rx Mixer", "RXP + RXN", "RXN"},
651 {"Rx Mixer", "RXP", "RXP"},
652 {"Rx Mixer", "RXN", "RXN"},
653
654 /* Mic 1 Volume */
655 {"Mic 1 Volume", NULL, "MIC1N"},
656 {"Mic 1 Volume", NULL, "Mic Selection Mux"},
657
658 /* Mic 2 Volume */
659 {"Mic 2 Volume", NULL, "MIC2N"},
660 {"Mic 2 Volume", NULL, "MIC2"},
661
662 /* Mic Selector Mux */
663 {"Mic Selection Mux", "Mic 1", "MIC1"},
664 {"Mic Selection Mux", "Mic 2", "MIC2N"},
665 {"Mic Selection Mux", "Mic 3", "MIC2"},
666
667 /* ACOP */
668 {"ACOP", NULL, "ALC Mixer"},
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200669};
670
671static int wm8753_add_widgets(struct snd_soc_codec *codec)
672{
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200673 struct snd_soc_dapm_context *dapm = &codec->dapm;
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200674
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200675 snd_soc_dapm_new_controls(dapm, wm8753_dapm_widgets,
676 ARRAY_SIZE(wm8753_dapm_widgets));
677 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200678
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200679 return 0;
680}
681
682/* PLL divisors */
683struct _pll_div {
684 u32 div2:1;
685 u32 n:4;
686 u32 k:24;
687};
688
689/* The size in bits of the pll divide multiplied by 10
690 * to allow rounding later */
691#define FIXED_PLL_SIZE ((1 << 22) * 10)
692
693static void pll_factors(struct _pll_div *pll_div, unsigned int target,
694 unsigned int source)
695{
696 u64 Kpart;
697 unsigned int K, Ndiv, Nmod;
698
699 Ndiv = target / source;
700 if (Ndiv < 6) {
701 source >>= 1;
702 pll_div->div2 = 1;
703 Ndiv = target / source;
704 } else
705 pll_div->div2 = 0;
706
707 if ((Ndiv < 6) || (Ndiv > 12))
708 printk(KERN_WARNING
Roel Kluin449bd542009-05-27 17:08:39 -0700709 "wm8753: unsupported N = %u\n", Ndiv);
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200710
711 pll_div->n = Ndiv;
712 Nmod = target % source;
713 Kpart = FIXED_PLL_SIZE * (long long)Nmod;
714
715 do_div(Kpart, source);
716
717 K = Kpart & 0xFFFFFFFF;
718
719 /* Check if we need to round */
720 if ((K % 10) >= 5)
721 K += 5;
722
723 /* Move down to proper range now rounding is done */
724 K /= 10;
725
726 pll_div->k = K;
727}
728
Mark Brown85488032009-09-05 18:52:16 +0100729static int wm8753_set_dai_pll(struct snd_soc_dai *codec_dai, int pll_id,
730 int source, unsigned int freq_in, unsigned int freq_out)
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200731{
732 u16 reg, enable;
733 int offset;
734 struct snd_soc_codec *codec = codec_dai->codec;
735
736 if (pll_id < WM8753_PLL1 || pll_id > WM8753_PLL2)
737 return -ENODEV;
738
739 if (pll_id == WM8753_PLL1) {
740 offset = 0;
741 enable = 0x10;
742 reg = wm8753_read_reg_cache(codec, WM8753_CLOCK) & 0xffef;
743 } else {
744 offset = 4;
745 enable = 0x8;
746 reg = wm8753_read_reg_cache(codec, WM8753_CLOCK) & 0xfff7;
747 }
748
749 if (!freq_in || !freq_out) {
750 /* disable PLL */
751 wm8753_write(codec, WM8753_PLL1CTL1 + offset, 0x0026);
752 wm8753_write(codec, WM8753_CLOCK, reg);
753 return 0;
754 } else {
755 u16 value = 0;
756 struct _pll_div pll_div;
757
758 pll_factors(&pll_div, freq_out * 8, freq_in);
759
760 /* set up N and K PLL divisor ratios */
761 /* bits 8:5 = PLL_N, bits 3:0 = PLL_K[21:18] */
762 value = (pll_div.n << 5) + ((pll_div.k & 0x3c0000) >> 18);
763 wm8753_write(codec, WM8753_PLL1CTL2 + offset, value);
764
765 /* bits 8:0 = PLL_K[17:9] */
766 value = (pll_div.k & 0x03fe00) >> 9;
767 wm8753_write(codec, WM8753_PLL1CTL3 + offset, value);
768
769 /* bits 8:0 = PLL_K[8:0] */
770 value = pll_div.k & 0x0001ff;
771 wm8753_write(codec, WM8753_PLL1CTL4 + offset, value);
772
773 /* set PLL as input and enable */
774 wm8753_write(codec, WM8753_PLL1CTL1 + offset, 0x0027 |
775 (pll_div.div2 << 3));
776 wm8753_write(codec, WM8753_CLOCK, reg | enable);
777 }
778 return 0;
779}
780
781struct _coeff_div {
782 u32 mclk;
783 u32 rate;
784 u8 sr:5;
785 u8 usb:1;
786};
787
788/* codec hifi mclk (after PLL) clock divider coefficients */
789static const struct _coeff_div coeff_div[] = {
790 /* 8k */
791 {12288000, 8000, 0x6, 0x0},
792 {11289600, 8000, 0x16, 0x0},
793 {18432000, 8000, 0x7, 0x0},
794 {16934400, 8000, 0x17, 0x0},
795 {12000000, 8000, 0x6, 0x1},
796
797 /* 11.025k */
798 {11289600, 11025, 0x18, 0x0},
799 {16934400, 11025, 0x19, 0x0},
800 {12000000, 11025, 0x19, 0x1},
801
802 /* 16k */
803 {12288000, 16000, 0xa, 0x0},
804 {18432000, 16000, 0xb, 0x0},
805 {12000000, 16000, 0xa, 0x1},
806
807 /* 22.05k */
808 {11289600, 22050, 0x1a, 0x0},
809 {16934400, 22050, 0x1b, 0x0},
810 {12000000, 22050, 0x1b, 0x1},
811
812 /* 32k */
813 {12288000, 32000, 0xc, 0x0},
814 {18432000, 32000, 0xd, 0x0},
815 {12000000, 32000, 0xa, 0x1},
816
817 /* 44.1k */
818 {11289600, 44100, 0x10, 0x0},
819 {16934400, 44100, 0x11, 0x0},
820 {12000000, 44100, 0x11, 0x1},
821
822 /* 48k */
823 {12288000, 48000, 0x0, 0x0},
824 {18432000, 48000, 0x1, 0x0},
825 {12000000, 48000, 0x0, 0x1},
826
827 /* 88.2k */
828 {11289600, 88200, 0x1e, 0x0},
829 {16934400, 88200, 0x1f, 0x0},
830 {12000000, 88200, 0x1f, 0x1},
831
832 /* 96k */
833 {12288000, 96000, 0xe, 0x0},
834 {18432000, 96000, 0xf, 0x0},
835 {12000000, 96000, 0xe, 0x1},
836};
837
838static int get_coeff(int mclk, int rate)
839{
840 int i;
841
842 for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
843 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
844 return i;
845 }
846 return -EINVAL;
847}
848
849/*
850 * Clock after PLL and dividers
851 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100852static int wm8753_set_dai_sysclk(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200853 int clk_id, unsigned int freq, int dir)
854{
855 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900856 struct wm8753_priv *wm8753 = snd_soc_codec_get_drvdata(codec);
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200857
858 switch (freq) {
859 case 11289600:
860 case 12000000:
861 case 12288000:
862 case 16934400:
863 case 18432000:
864 if (clk_id == WM8753_MCLK) {
865 wm8753->sysclk = freq;
866 return 0;
867 } else if (clk_id == WM8753_PCMCLK) {
868 wm8753->pcmclk = freq;
869 return 0;
870 }
871 break;
872 }
873 return -EINVAL;
874}
875
876/*
877 * Set's ADC and Voice DAC format.
878 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100879static int wm8753_vdac_adc_set_dai_fmt(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200880 unsigned int fmt)
881{
882 struct snd_soc_codec *codec = codec_dai->codec;
883 u16 voice = wm8753_read_reg_cache(codec, WM8753_PCM) & 0x01ec;
884
885 /* interface format */
886 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
887 case SND_SOC_DAIFMT_I2S:
888 voice |= 0x0002;
889 break;
890 case SND_SOC_DAIFMT_RIGHT_J:
891 break;
892 case SND_SOC_DAIFMT_LEFT_J:
893 voice |= 0x0001;
894 break;
895 case SND_SOC_DAIFMT_DSP_A:
896 voice |= 0x0003;
897 break;
898 case SND_SOC_DAIFMT_DSP_B:
899 voice |= 0x0013;
900 break;
901 default:
902 return -EINVAL;
903 }
904
905 wm8753_write(codec, WM8753_PCM, voice);
906 return 0;
907}
908
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000909static int wm8753_pcm_startup(struct snd_pcm_substream *substream,
910 struct snd_soc_dai *dai)
911{
912 wm8753_set_dai_mode(dai->codec, dai, 0);
913 return 0;
914}
915
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200916/*
917 * Set PCM DAI bit size and sample rate.
918 */
919static int wm8753_pcm_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000920 struct snd_pcm_hw_params *params,
921 struct snd_soc_dai *dai)
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200922{
923 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000924 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900925 struct wm8753_priv *wm8753 = snd_soc_codec_get_drvdata(codec);
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200926 u16 voice = wm8753_read_reg_cache(codec, WM8753_PCM) & 0x01f3;
927 u16 srate = wm8753_read_reg_cache(codec, WM8753_SRATE1) & 0x017f;
928
929 /* bit size */
930 switch (params_format(params)) {
931 case SNDRV_PCM_FORMAT_S16_LE:
932 break;
933 case SNDRV_PCM_FORMAT_S20_3LE:
934 voice |= 0x0004;
935 break;
936 case SNDRV_PCM_FORMAT_S24_LE:
937 voice |= 0x0008;
938 break;
939 case SNDRV_PCM_FORMAT_S32_LE:
940 voice |= 0x000c;
941 break;
942 }
943
944 /* sample rate */
945 if (params_rate(params) * 384 == wm8753->pcmclk)
946 srate |= 0x80;
947 wm8753_write(codec, WM8753_SRATE1, srate);
948
949 wm8753_write(codec, WM8753_PCM, voice);
950 return 0;
951}
952
953/*
954 * Set's PCM dai fmt and BCLK.
955 */
Liam Girdwoode550e172008-07-07 16:07:52 +0100956static int wm8753_pcm_set_dai_fmt(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +0200957 unsigned int fmt)
958{
959 struct snd_soc_codec *codec = codec_dai->codec;
960 u16 voice, ioctl;
961
962 voice = wm8753_read_reg_cache(codec, WM8753_PCM) & 0x011f;
963 ioctl = wm8753_read_reg_cache(codec, WM8753_IOCTL) & 0x015d;
964
965 /* set master/slave audio interface */
966 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
967 case SND_SOC_DAIFMT_CBS_CFS:
968 break;
969 case SND_SOC_DAIFMT_CBM_CFM:
970 ioctl |= 0x2;
971 case SND_SOC_DAIFMT_CBM_CFS:
972 voice |= 0x0040;
973 break;
974 default:
975 return -EINVAL;
976 }
977
978 /* clock inversion */
979 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
980 case SND_SOC_DAIFMT_DSP_A:
981 case SND_SOC_DAIFMT_DSP_B:
982 /* frame inversion not valid for DSP modes */
983 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
984 case SND_SOC_DAIFMT_NB_NF:
985 break;
986 case SND_SOC_DAIFMT_IB_NF:
987 voice |= 0x0080;
988 break;
989 default:
990 return -EINVAL;
991 }
992 break;
993 case SND_SOC_DAIFMT_I2S:
994 case SND_SOC_DAIFMT_RIGHT_J:
995 case SND_SOC_DAIFMT_LEFT_J:
996 voice &= ~0x0010;
997 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
998 case SND_SOC_DAIFMT_NB_NF:
999 break;
1000 case SND_SOC_DAIFMT_IB_IF:
1001 voice |= 0x0090;
1002 break;
1003 case SND_SOC_DAIFMT_IB_NF:
1004 voice |= 0x0080;
1005 break;
1006 case SND_SOC_DAIFMT_NB_IF:
1007 voice |= 0x0010;
1008 break;
1009 default:
1010 return -EINVAL;
1011 }
1012 break;
1013 default:
1014 return -EINVAL;
1015 }
1016
1017 wm8753_write(codec, WM8753_PCM, voice);
1018 wm8753_write(codec, WM8753_IOCTL, ioctl);
1019 return 0;
1020}
1021
Liam Girdwoode550e172008-07-07 16:07:52 +01001022static int wm8753_set_dai_clkdiv(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001023 int div_id, int div)
1024{
1025 struct snd_soc_codec *codec = codec_dai->codec;
1026 u16 reg;
1027
1028 switch (div_id) {
1029 case WM8753_PCMDIV:
1030 reg = wm8753_read_reg_cache(codec, WM8753_CLOCK) & 0x003f;
1031 wm8753_write(codec, WM8753_CLOCK, reg | div);
1032 break;
1033 case WM8753_BCLKDIV:
1034 reg = wm8753_read_reg_cache(codec, WM8753_SRATE2) & 0x01c7;
1035 wm8753_write(codec, WM8753_SRATE2, reg | div);
1036 break;
1037 case WM8753_VXCLKDIV:
1038 reg = wm8753_read_reg_cache(codec, WM8753_SRATE2) & 0x003f;
1039 wm8753_write(codec, WM8753_SRATE2, reg | div);
1040 break;
1041 default:
1042 return -EINVAL;
1043 }
1044 return 0;
1045}
1046
1047/*
1048 * Set's HiFi DAC format.
1049 */
Liam Girdwoode550e172008-07-07 16:07:52 +01001050static int wm8753_hdac_set_dai_fmt(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001051 unsigned int fmt)
1052{
1053 struct snd_soc_codec *codec = codec_dai->codec;
1054 u16 hifi = wm8753_read_reg_cache(codec, WM8753_HIFI) & 0x01e0;
1055
1056 /* interface format */
1057 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1058 case SND_SOC_DAIFMT_I2S:
1059 hifi |= 0x0002;
1060 break;
1061 case SND_SOC_DAIFMT_RIGHT_J:
1062 break;
1063 case SND_SOC_DAIFMT_LEFT_J:
1064 hifi |= 0x0001;
1065 break;
1066 case SND_SOC_DAIFMT_DSP_A:
1067 hifi |= 0x0003;
1068 break;
1069 case SND_SOC_DAIFMT_DSP_B:
1070 hifi |= 0x0013;
1071 break;
1072 default:
1073 return -EINVAL;
1074 }
1075
1076 wm8753_write(codec, WM8753_HIFI, hifi);
1077 return 0;
1078}
1079
1080/*
1081 * Set's I2S DAI format.
1082 */
Liam Girdwoode550e172008-07-07 16:07:52 +01001083static int wm8753_i2s_set_dai_fmt(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001084 unsigned int fmt)
1085{
1086 struct snd_soc_codec *codec = codec_dai->codec;
1087 u16 ioctl, hifi;
1088
1089 hifi = wm8753_read_reg_cache(codec, WM8753_HIFI) & 0x011f;
1090 ioctl = wm8753_read_reg_cache(codec, WM8753_IOCTL) & 0x00ae;
1091
1092 /* set master/slave audio interface */
1093 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1094 case SND_SOC_DAIFMT_CBS_CFS:
1095 break;
1096 case SND_SOC_DAIFMT_CBM_CFM:
1097 ioctl |= 0x1;
1098 case SND_SOC_DAIFMT_CBM_CFS:
1099 hifi |= 0x0040;
1100 break;
1101 default:
1102 return -EINVAL;
1103 }
1104
1105 /* clock inversion */
1106 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
1107 case SND_SOC_DAIFMT_DSP_A:
1108 case SND_SOC_DAIFMT_DSP_B:
1109 /* frame inversion not valid for DSP modes */
1110 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1111 case SND_SOC_DAIFMT_NB_NF:
1112 break;
1113 case SND_SOC_DAIFMT_IB_NF:
1114 hifi |= 0x0080;
1115 break;
1116 default:
1117 return -EINVAL;
1118 }
1119 break;
1120 case SND_SOC_DAIFMT_I2S:
1121 case SND_SOC_DAIFMT_RIGHT_J:
1122 case SND_SOC_DAIFMT_LEFT_J:
1123 hifi &= ~0x0010;
1124 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
1125 case SND_SOC_DAIFMT_NB_NF:
1126 break;
1127 case SND_SOC_DAIFMT_IB_IF:
1128 hifi |= 0x0090;
1129 break;
1130 case SND_SOC_DAIFMT_IB_NF:
1131 hifi |= 0x0080;
1132 break;
1133 case SND_SOC_DAIFMT_NB_IF:
1134 hifi |= 0x0010;
1135 break;
1136 default:
1137 return -EINVAL;
1138 }
1139 break;
1140 default:
1141 return -EINVAL;
1142 }
1143
1144 wm8753_write(codec, WM8753_HIFI, hifi);
1145 wm8753_write(codec, WM8753_IOCTL, ioctl);
1146 return 0;
1147}
1148
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001149static int wm8753_i2s_startup(struct snd_pcm_substream *substream,
1150 struct snd_soc_dai *dai)
1151{
1152 wm8753_set_dai_mode(dai->codec, dai, 1);
1153 return 0;
1154}
1155
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001156/*
1157 * Set PCM DAI bit size and sample rate.
1158 */
1159static int wm8753_i2s_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +00001160 struct snd_pcm_hw_params *params,
1161 struct snd_soc_dai *dai)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001162{
1163 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001164 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +09001165 struct wm8753_priv *wm8753 = snd_soc_codec_get_drvdata(codec);
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001166 u16 srate = wm8753_read_reg_cache(codec, WM8753_SRATE1) & 0x01c0;
1167 u16 hifi = wm8753_read_reg_cache(codec, WM8753_HIFI) & 0x01f3;
1168 int coeff;
1169
1170 /* is digital filter coefficient valid ? */
1171 coeff = get_coeff(wm8753->sysclk, params_rate(params));
1172 if (coeff < 0) {
1173 printk(KERN_ERR "wm8753 invalid MCLK or rate\n");
1174 return coeff;
1175 }
1176 wm8753_write(codec, WM8753_SRATE1, srate | (coeff_div[coeff].sr << 1) |
1177 coeff_div[coeff].usb);
1178
1179 /* bit size */
1180 switch (params_format(params)) {
1181 case SNDRV_PCM_FORMAT_S16_LE:
1182 break;
1183 case SNDRV_PCM_FORMAT_S20_3LE:
1184 hifi |= 0x0004;
1185 break;
1186 case SNDRV_PCM_FORMAT_S24_LE:
1187 hifi |= 0x0008;
1188 break;
1189 case SNDRV_PCM_FORMAT_S32_LE:
1190 hifi |= 0x000c;
1191 break;
1192 }
1193
1194 wm8753_write(codec, WM8753_HIFI, hifi);
1195 return 0;
1196}
1197
Liam Girdwoode550e172008-07-07 16:07:52 +01001198static int wm8753_mode1v_set_dai_fmt(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001199 unsigned int fmt)
1200{
1201 struct snd_soc_codec *codec = codec_dai->codec;
1202 u16 clock;
1203
1204 /* set clk source as pcmclk */
1205 clock = wm8753_read_reg_cache(codec, WM8753_CLOCK) & 0xfffb;
1206 wm8753_write(codec, WM8753_CLOCK, clock);
1207
1208 if (wm8753_vdac_adc_set_dai_fmt(codec_dai, fmt) < 0)
1209 return -EINVAL;
1210 return wm8753_pcm_set_dai_fmt(codec_dai, fmt);
1211}
1212
Liam Girdwoode550e172008-07-07 16:07:52 +01001213static int wm8753_mode1h_set_dai_fmt(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001214 unsigned int fmt)
1215{
1216 if (wm8753_hdac_set_dai_fmt(codec_dai, fmt) < 0)
1217 return -EINVAL;
1218 return wm8753_i2s_set_dai_fmt(codec_dai, fmt);
1219}
1220
Liam Girdwoode550e172008-07-07 16:07:52 +01001221static int wm8753_mode2_set_dai_fmt(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001222 unsigned int fmt)
1223{
1224 struct snd_soc_codec *codec = codec_dai->codec;
1225 u16 clock;
1226
1227 /* set clk source as pcmclk */
1228 clock = wm8753_read_reg_cache(codec, WM8753_CLOCK) & 0xfffb;
1229 wm8753_write(codec, WM8753_CLOCK, clock);
1230
1231 if (wm8753_vdac_adc_set_dai_fmt(codec_dai, fmt) < 0)
1232 return -EINVAL;
1233 return wm8753_i2s_set_dai_fmt(codec_dai, fmt);
1234}
1235
Liam Girdwoode550e172008-07-07 16:07:52 +01001236static int wm8753_mode3_4_set_dai_fmt(struct snd_soc_dai *codec_dai,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001237 unsigned int fmt)
1238{
1239 struct snd_soc_codec *codec = codec_dai->codec;
1240 u16 clock;
1241
1242 /* set clk source as mclk */
1243 clock = wm8753_read_reg_cache(codec, WM8753_CLOCK) & 0xfffb;
1244 wm8753_write(codec, WM8753_CLOCK, clock | 0x4);
1245
1246 if (wm8753_hdac_set_dai_fmt(codec_dai, fmt) < 0)
1247 return -EINVAL;
1248 if (wm8753_vdac_adc_set_dai_fmt(codec_dai, fmt) < 0)
1249 return -EINVAL;
1250 return wm8753_i2s_set_dai_fmt(codec_dai, fmt);
1251}
1252
Liam Girdwoode550e172008-07-07 16:07:52 +01001253static int wm8753_mute(struct snd_soc_dai *dai, int mute)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001254{
1255 struct snd_soc_codec *codec = dai->codec;
1256 u16 mute_reg = wm8753_read_reg_cache(codec, WM8753_DAC) & 0xfff7;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001257 struct wm8753_priv *wm8753 = snd_soc_codec_get_drvdata(codec);
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001258
1259 /* the digital mute covers the HiFi and Voice DAC's on the WM8753.
1260 * make sure we check if they are not both active when we mute */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001261 if (mute && wm8753->dai_func == 1) {
1262 if (!codec->active)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001263 wm8753_write(codec, WM8753_DAC, mute_reg | 0x8);
1264 } else {
1265 if (mute)
1266 wm8753_write(codec, WM8753_DAC, mute_reg | 0x8);
1267 else
1268 wm8753_write(codec, WM8753_DAC, mute_reg);
1269 }
1270
1271 return 0;
1272}
1273
Mark Brown0be98982008-05-19 12:31:28 +02001274static int wm8753_set_bias_level(struct snd_soc_codec *codec,
1275 enum snd_soc_bias_level level)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001276{
1277 u16 pwr_reg = wm8753_read_reg_cache(codec, WM8753_PWR1) & 0xfe3e;
1278
Mark Brown0be98982008-05-19 12:31:28 +02001279 switch (level) {
1280 case SND_SOC_BIAS_ON:
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001281 /* set vmid to 50k and unmute dac */
1282 wm8753_write(codec, WM8753_PWR1, pwr_reg | 0x00c0);
1283 break;
Mark Brown0be98982008-05-19 12:31:28 +02001284 case SND_SOC_BIAS_PREPARE:
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001285 /* set vmid to 5k for quick power up */
1286 wm8753_write(codec, WM8753_PWR1, pwr_reg | 0x01c1);
1287 break;
Mark Brown0be98982008-05-19 12:31:28 +02001288 case SND_SOC_BIAS_STANDBY:
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001289 /* mute dac and set vmid to 500k, enable VREF */
1290 wm8753_write(codec, WM8753_PWR1, pwr_reg | 0x0141);
1291 break;
Mark Brown0be98982008-05-19 12:31:28 +02001292 case SND_SOC_BIAS_OFF:
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001293 wm8753_write(codec, WM8753_PWR1, 0x0001);
1294 break;
1295 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001296 codec->dapm.bias_level = level;
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001297 return 0;
1298}
1299
1300#define WM8753_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\
Mark Brown60fc6842008-04-30 17:18:43 +02001301 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\
1302 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
1303 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001304
1305#define WM8753_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
1306 SNDRV_PCM_FMTBIT_S24_LE)
1307
1308/*
1309 * The WM8753 supports upto 4 different and mutually exclusive DAI
1310 * configurations. This gives 2 PCM's available for use, hifi and voice.
1311 * NOTE: The Voice PCM cannot play or capture audio to the CPU as it's DAI
1312 * is connected between the wm8753 and a BT codec or GSM modem.
1313 *
1314 * 1. Voice over PCM DAI - HIFI DAC over HIFI DAI
1315 * 2. Voice over HIFI DAI - HIFI disabled
1316 * 3. Voice disabled - HIFI over HIFI
1317 * 4. Voice disabled - HIFI over HIFI, uses voice DAI LRC for capture
1318 */
Eric Miao6335d052009-03-03 09:41:00 +08001319static struct snd_soc_dai_ops wm8753_dai_ops_hifi_mode1 = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001320 .startup = wm8753_i2s_startup,
Eric Miao6335d052009-03-03 09:41:00 +08001321 .hw_params = wm8753_i2s_hw_params,
1322 .digital_mute = wm8753_mute,
1323 .set_fmt = wm8753_mode1h_set_dai_fmt,
1324 .set_clkdiv = wm8753_set_dai_clkdiv,
1325 .set_pll = wm8753_set_dai_pll,
1326 .set_sysclk = wm8753_set_dai_sysclk,
1327};
1328
1329static struct snd_soc_dai_ops wm8753_dai_ops_voice_mode1 = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001330 .startup = wm8753_pcm_startup,
Eric Miao6335d052009-03-03 09:41:00 +08001331 .hw_params = wm8753_pcm_hw_params,
1332 .digital_mute = wm8753_mute,
1333 .set_fmt = wm8753_mode1v_set_dai_fmt,
1334 .set_clkdiv = wm8753_set_dai_clkdiv,
1335 .set_pll = wm8753_set_dai_pll,
1336 .set_sysclk = wm8753_set_dai_sysclk,
1337};
1338
1339static struct snd_soc_dai_ops wm8753_dai_ops_voice_mode2 = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001340 .startup = wm8753_pcm_startup,
Eric Miao6335d052009-03-03 09:41:00 +08001341 .hw_params = wm8753_pcm_hw_params,
1342 .digital_mute = wm8753_mute,
1343 .set_fmt = wm8753_mode2_set_dai_fmt,
1344 .set_clkdiv = wm8753_set_dai_clkdiv,
1345 .set_pll = wm8753_set_dai_pll,
1346 .set_sysclk = wm8753_set_dai_sysclk,
1347};
1348
1349static struct snd_soc_dai_ops wm8753_dai_ops_hifi_mode3 = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001350 .startup = wm8753_i2s_startup,
Eric Miao6335d052009-03-03 09:41:00 +08001351 .hw_params = wm8753_i2s_hw_params,
1352 .digital_mute = wm8753_mute,
1353 .set_fmt = wm8753_mode3_4_set_dai_fmt,
1354 .set_clkdiv = wm8753_set_dai_clkdiv,
1355 .set_pll = wm8753_set_dai_pll,
1356 .set_sysclk = wm8753_set_dai_sysclk,
1357};
1358
1359static struct snd_soc_dai_ops wm8753_dai_ops_hifi_mode4 = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001360 .startup = wm8753_i2s_startup,
Eric Miao6335d052009-03-03 09:41:00 +08001361 .hw_params = wm8753_i2s_hw_params,
1362 .digital_mute = wm8753_mute,
1363 .set_fmt = wm8753_mode3_4_set_dai_fmt,
1364 .set_clkdiv = wm8753_set_dai_clkdiv,
1365 .set_pll = wm8753_set_dai_pll,
1366 .set_sysclk = wm8753_set_dai_sysclk,
1367};
1368
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001369static struct snd_soc_dai_driver wm8753_all_dai[] = {
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001370/* DAI HiFi mode 1 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001371{ .name = "wm8753-hifi",
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001372 .playback = {
1373 .stream_name = "HiFi Playback",
1374 .channels_min = 1,
1375 .channels_max = 2,
1376 .rates = WM8753_RATES,
Mark Browndee89c42008-11-18 22:11:38 +00001377 .formats = WM8753_FORMATS},
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001378 .capture = { /* dummy for fast DAI switching */
1379 .stream_name = "Capture",
1380 .channels_min = 1,
1381 .channels_max = 2,
1382 .rates = WM8753_RATES,
Mark Browndee89c42008-11-18 22:11:38 +00001383 .formats = WM8753_FORMATS},
Eric Miao6335d052009-03-03 09:41:00 +08001384 .ops = &wm8753_dai_ops_hifi_mode1,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001385},
1386/* DAI Voice mode 1 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001387{ .name = "wm8753-voice",
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001388 .playback = {
1389 .stream_name = "Voice Playback",
1390 .channels_min = 1,
1391 .channels_max = 1,
1392 .rates = WM8753_RATES,
1393 .formats = WM8753_FORMATS,},
1394 .capture = {
1395 .stream_name = "Capture",
1396 .channels_min = 1,
1397 .channels_max = 2,
1398 .rates = WM8753_RATES,
1399 .formats = WM8753_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +08001400 .ops = &wm8753_dai_ops_voice_mode1,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001401},
1402/* DAI HiFi mode 2 - dummy */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001403{ .name = "wm8753-hifi",
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001404},
1405/* DAI Voice mode 2 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001406{ .name = "wm8753-voice",
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001407 .playback = {
1408 .stream_name = "Voice Playback",
1409 .channels_min = 1,
1410 .channels_max = 1,
1411 .rates = WM8753_RATES,
1412 .formats = WM8753_FORMATS,},
1413 .capture = {
1414 .stream_name = "Capture",
1415 .channels_min = 1,
1416 .channels_max = 2,
1417 .rates = WM8753_RATES,
1418 .formats = WM8753_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +08001419 .ops = &wm8753_dai_ops_voice_mode2,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001420},
1421/* DAI HiFi mode 3 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001422{ .name = "wm8753-hifi",
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001423 .playback = {
1424 .stream_name = "HiFi Playback",
1425 .channels_min = 1,
1426 .channels_max = 2,
1427 .rates = WM8753_RATES,
1428 .formats = WM8753_FORMATS,},
1429 .capture = {
1430 .stream_name = "Capture",
1431 .channels_min = 1,
1432 .channels_max = 2,
1433 .rates = WM8753_RATES,
1434 .formats = WM8753_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +08001435 .ops = &wm8753_dai_ops_hifi_mode3,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001436},
1437/* DAI Voice mode 3 - dummy */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001438{ .name = "wm8753-voice",
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001439},
1440/* DAI HiFi mode 4 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001441{ .name = "wm8753-hifi",
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001442 .playback = {
1443 .stream_name = "HiFi Playback",
1444 .channels_min = 1,
1445 .channels_max = 2,
1446 .rates = WM8753_RATES,
1447 .formats = WM8753_FORMATS,},
1448 .capture = {
1449 .stream_name = "Capture",
1450 .channels_min = 1,
1451 .channels_max = 2,
1452 .rates = WM8753_RATES,
1453 .formats = WM8753_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +08001454 .ops = &wm8753_dai_ops_hifi_mode4,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001455},
1456/* DAI Voice mode 4 - dummy */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001457{ .name = "wm8753-voice",
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001458},
1459};
1460
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001461static struct snd_soc_dai_driver wm8753_dai[] = {
Mark Brown9e70c1f2009-01-29 13:08:20 +00001462 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001463 .name = "wm8753-aif0",
Mark Brown9e70c1f2009-01-29 13:08:20 +00001464 },
1465 {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001466 .name = "wm8753-aif1",
Mark Brown9e70c1f2009-01-29 13:08:20 +00001467 },
1468};
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001469
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001470static void wm8753_set_dai_mode(struct snd_soc_codec *codec,
1471 struct snd_soc_dai *dai, unsigned int hifi)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001472{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001473 struct wm8753_priv *wm8753 = snd_soc_codec_get_drvdata(codec);
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001474
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001475 if (wm8753->dai_func < 4) {
1476 if (hifi)
1477 dai->driver = &wm8753_all_dai[wm8753->dai_func << 1];
1478 else
1479 dai->driver = &wm8753_all_dai[(wm8753->dai_func << 1) + 1];
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001480 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001481 wm8753_write(codec, WM8753_IOCTL, wm8753->dai_func);
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001482}
1483
1484static void wm8753_work(struct work_struct *work)
1485{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001486 struct snd_soc_dapm_context *dapm =
1487 container_of(work, struct snd_soc_dapm_context,
1488 delayed_work.work);
1489 struct snd_soc_codec *codec = dapm->codec;
1490 wm8753_set_bias_level(codec, dapm->bias_level);
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001491}
1492
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001493static int wm8753_suspend(struct snd_soc_codec *codec, pm_message_t state)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001494{
Mark Brown0be98982008-05-19 12:31:28 +02001495 wm8753_set_bias_level(codec, SND_SOC_BIAS_OFF);
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001496 return 0;
1497}
1498
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001499static int wm8753_resume(struct snd_soc_codec *codec)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001500{
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001501 int i;
1502 u8 data[2];
1503 u16 *cache = codec->reg_cache;
1504
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001505 /* Sync reg_cache with the hardware */
1506 for (i = 0; i < ARRAY_SIZE(wm8753_reg); i++) {
1507 if (i + 1 == WM8753_RESET)
1508 continue;
Mark Browne611bd82009-02-22 20:04:41 +00001509
1510 /* No point in writing hardware default values back */
1511 if (cache[i] == wm8753_reg[i])
1512 continue;
1513
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001514 data[0] = ((i + 1) << 1) | ((cache[i] >> 8) & 0x0001);
1515 data[1] = cache[i] & 0x00ff;
1516 codec->hw_write(codec->control_data, data, 2);
1517 }
1518
Mark Brown0be98982008-05-19 12:31:28 +02001519 wm8753_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001520
1521 /* charge wm8753 caps */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001522 if (codec->dapm.suspend_bias_level == SND_SOC_BIAS_ON) {
Mark Brown0be98982008-05-19 12:31:28 +02001523 wm8753_set_bias_level(codec, SND_SOC_BIAS_PREPARE);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001524 codec->dapm.bias_level = SND_SOC_BIAS_ON;
1525 schedule_delayed_work(&codec->dapm.delayed_work,
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001526 msecs_to_jiffies(caps_charge));
1527 }
1528
1529 return 0;
1530}
1531
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001532/*
1533 * This function forces any delayed work to be queued and run.
1534 */
1535static int run_delayed_work(struct delayed_work *dwork)
1536{
1537 int ret;
1538
1539 /* cancel any work waiting to be queued. */
1540 ret = cancel_delayed_work(dwork);
1541
1542 /* if there was any work waiting then we run it now and
1543 * wait for it's completion */
1544 if (ret) {
1545 schedule_delayed_work(dwork, 0);
1546 flush_scheduled_work();
1547 }
1548 return ret;
1549}
1550
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001551static int wm8753_probe(struct snd_soc_codec *codec)
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001552{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001553 struct wm8753_priv *wm8753 = snd_soc_codec_get_drvdata(codec);
1554 int ret = 0, reg;
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001555
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001556 INIT_DELAYED_WORK(&codec->dapm.delayed_work, wm8753_work);
Mark Brownc2bac162009-02-24 23:33:12 +00001557
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001558 ret = snd_soc_codec_set_cache_io(codec, 7, 9, wm8753->control_type);
1559 if (ret < 0) {
1560 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
1561 return ret;
1562 }
1563
Mark Brownc2bac162009-02-24 23:33:12 +00001564 ret = wm8753_reset(codec);
1565 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001566 dev_err(codec->dev, "Failed to issue reset: %d\n", ret);
1567 return ret;
Mark Brownc2bac162009-02-24 23:33:12 +00001568 }
1569
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001570 wm8753_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
1571 wm8753->dai_func = 0;
1572
Mark Brownc2bac162009-02-24 23:33:12 +00001573 /* charge output caps */
1574 wm8753_set_bias_level(codec, SND_SOC_BIAS_PREPARE);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001575 schedule_delayed_work(&codec->dapm.delayed_work,
Mark Brownc2bac162009-02-24 23:33:12 +00001576 msecs_to_jiffies(caps_charge));
1577
1578 /* set the update bits */
1579 reg = wm8753_read_reg_cache(codec, WM8753_LDAC);
1580 wm8753_write(codec, WM8753_LDAC, reg | 0x0100);
1581 reg = wm8753_read_reg_cache(codec, WM8753_RDAC);
1582 wm8753_write(codec, WM8753_RDAC, reg | 0x0100);
1583 reg = wm8753_read_reg_cache(codec, WM8753_LADC);
1584 wm8753_write(codec, WM8753_LADC, reg | 0x0100);
1585 reg = wm8753_read_reg_cache(codec, WM8753_RADC);
1586 wm8753_write(codec, WM8753_RADC, reg | 0x0100);
1587 reg = wm8753_read_reg_cache(codec, WM8753_LOUT1V);
1588 wm8753_write(codec, WM8753_LOUT1V, reg | 0x0100);
1589 reg = wm8753_read_reg_cache(codec, WM8753_ROUT1V);
1590 wm8753_write(codec, WM8753_ROUT1V, reg | 0x0100);
1591 reg = wm8753_read_reg_cache(codec, WM8753_LOUT2V);
1592 wm8753_write(codec, WM8753_LOUT2V, reg | 0x0100);
1593 reg = wm8753_read_reg_cache(codec, WM8753_ROUT2V);
1594 wm8753_write(codec, WM8753_ROUT2V, reg | 0x0100);
1595 reg = wm8753_read_reg_cache(codec, WM8753_LINVOL);
1596 wm8753_write(codec, WM8753_LINVOL, reg | 0x0100);
1597 reg = wm8753_read_reg_cache(codec, WM8753_RINVOL);
1598 wm8753_write(codec, WM8753_RINVOL, reg | 0x0100);
1599
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001600 snd_soc_add_controls(codec, wm8753_snd_controls,
1601 ARRAY_SIZE(wm8753_snd_controls));
1602 wm8753_add_widgets(codec);
Mark Brownc2bac162009-02-24 23:33:12 +00001603
1604 return 0;
Mark Brownc2bac162009-02-24 23:33:12 +00001605}
1606
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001607/* power down chip */
1608static int wm8753_remove(struct snd_soc_codec *codec)
Mark Brownc2bac162009-02-24 23:33:12 +00001609{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001610 run_delayed_work(&codec->dapm.delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001611 wm8753_set_bias_level(codec, SND_SOC_BIAS_OFF);
1612
1613 return 0;
Mark Brownc2bac162009-02-24 23:33:12 +00001614}
1615
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001616static struct snd_soc_codec_driver soc_codec_dev_wm8753 = {
1617 .probe = wm8753_probe,
1618 .remove = wm8753_remove,
1619 .suspend = wm8753_suspend,
1620 .resume = wm8753_resume,
1621 .set_bias_level = wm8753_set_bias_level,
Dimitris Papastamose5eec342010-09-10 18:14:56 +01001622 .reg_cache_size = ARRAY_SIZE(wm8753_reg),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001623 .reg_word_size = sizeof(u16),
1624 .reg_cache_default = wm8753_reg,
1625};
Mark Brown69e169d2009-02-22 14:39:03 +00001626
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001627#if defined(CONFIG_SPI_MASTER)
1628static int __devinit wm8753_spi_probe(struct spi_device *spi)
Mark Brown69e169d2009-02-22 14:39:03 +00001629{
Mark Brownc2bac162009-02-24 23:33:12 +00001630 struct wm8753_priv *wm8753;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001631 int ret;
Mark Brown69e169d2009-02-22 14:39:03 +00001632
Mark Brownc2bac162009-02-24 23:33:12 +00001633 wm8753 = kzalloc(sizeof(struct wm8753_priv), GFP_KERNEL);
1634 if (wm8753 == NULL)
1635 return -ENOMEM;
Mark Brown69e169d2009-02-22 14:39:03 +00001636
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001637 wm8753->control_type = SND_SOC_SPI;
1638 spi_set_drvdata(spi, wm8753);
Mark Brown69e169d2009-02-22 14:39:03 +00001639
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001640 ret = snd_soc_register_codec(&spi->dev,
1641 &soc_codec_dev_wm8753, wm8753_dai, ARRAY_SIZE(wm8753_dai));
1642 if (ret < 0)
1643 kfree(wm8753);
1644 return ret;
Mark Brown69e169d2009-02-22 14:39:03 +00001645}
1646
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001647static int __devexit wm8753_spi_remove(struct spi_device *spi)
Mark Brown69e169d2009-02-22 14:39:03 +00001648{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001649 snd_soc_unregister_codec(&spi->dev);
1650 kfree(spi_get_drvdata(spi));
1651 return 0;
1652}
1653
1654static struct spi_driver wm8753_spi_driver = {
1655 .driver = {
1656 .name = "wm8753-codec",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001657 .owner = THIS_MODULE,
1658 },
1659 .probe = wm8753_spi_probe,
1660 .remove = __devexit_p(wm8753_spi_remove),
1661};
1662#endif /* CONFIG_SPI_MASTER */
1663
1664#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1665static __devinit int wm8753_i2c_probe(struct i2c_client *i2c,
1666 const struct i2c_device_id *id)
1667{
1668 struct wm8753_priv *wm8753;
1669 int ret;
1670
1671 wm8753 = kzalloc(sizeof(struct wm8753_priv), GFP_KERNEL);
1672 if (wm8753 == NULL)
1673 return -ENOMEM;
1674
1675 i2c_set_clientdata(i2c, wm8753);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001676 wm8753->control_type = SND_SOC_I2C;
1677
1678 ret = snd_soc_register_codec(&i2c->dev,
1679 &soc_codec_dev_wm8753, wm8753_dai, ARRAY_SIZE(wm8753_dai));
1680 if (ret < 0)
1681 kfree(wm8753);
1682 return ret;
1683}
1684
1685static __devexit int wm8753_i2c_remove(struct i2c_client *client)
1686{
1687 snd_soc_unregister_codec(&client->dev);
1688 kfree(i2c_get_clientdata(client));
1689 return 0;
Mark Brown69e169d2009-02-22 14:39:03 +00001690}
1691
1692static const struct i2c_device_id wm8753_i2c_id[] = {
1693 { "wm8753", 0 },
1694 { }
1695};
1696MODULE_DEVICE_TABLE(i2c, wm8753_i2c_id);
1697
1698static struct i2c_driver wm8753_i2c_driver = {
1699 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001700 .name = "wm8753-codec",
Mark Brown69e169d2009-02-22 14:39:03 +00001701 .owner = THIS_MODULE,
1702 },
1703 .probe = wm8753_i2c_probe,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001704 .remove = __devexit_p(wm8753_i2c_remove),
Mark Brown69e169d2009-02-22 14:39:03 +00001705 .id_table = wm8753_i2c_id,
1706};
1707#endif
1708
Takashi Iwaic9b3a402008-12-10 07:47:22 +01001709static int __init wm8753_modinit(void)
Mark Brown64089b82008-12-08 19:17:58 +00001710{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001711 int ret = 0;
Mark Brownc2bac162009-02-24 23:33:12 +00001712#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1713 ret = i2c_add_driver(&wm8753_i2c_driver);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001714 if (ret != 0) {
1715 printk(KERN_ERR "Failed to register wm8753 I2C driver: %d\n",
1716 ret);
1717 }
Mark Brownc2bac162009-02-24 23:33:12 +00001718#endif
1719#if defined(CONFIG_SPI_MASTER)
1720 ret = spi_register_driver(&wm8753_spi_driver);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001721 if (ret != 0) {
1722 printk(KERN_ERR "Failed to register wm8753 SPI driver: %d\n",
1723 ret);
1724 }
Mark Brownc2bac162009-02-24 23:33:12 +00001725#endif
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001726 return ret;
Mark Brown64089b82008-12-08 19:17:58 +00001727}
1728module_init(wm8753_modinit);
1729
1730static void __exit wm8753_exit(void)
1731{
Mark Brownc2bac162009-02-24 23:33:12 +00001732#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
1733 i2c_del_driver(&wm8753_i2c_driver);
1734#endif
1735#if defined(CONFIG_SPI_MASTER)
1736 spi_unregister_driver(&wm8753_spi_driver);
1737#endif
Mark Brown64089b82008-12-08 19:17:58 +00001738}
1739module_exit(wm8753_exit);
1740
Liam Girdwood1f53aee2007-04-16 19:17:44 +02001741MODULE_DESCRIPTION("ASoC WM8753 driver");
1742MODULE_AUTHOR("Liam Girdwood");
1743MODULE_LICENSE("GPL");