[ALSA] ASoC - mixer name changes for older OSS app support
[firefly-linux-kernel-4.4.55.git] / sound / soc / codecs / wm8750.c
1 /*
2  * wm8750.c -- WM8750 ALSA SoC audio driver
3  *
4  * Copyright 2005 Openedhand Ltd.
5  *
6  * Author: Richard Purdie <richard@openedhand.com>
7  *
8  * Based on WM8753.c
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  */
14
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
19 #include <linux/pm.h>
20 #include <linux/i2c.h>
21 #include <linux/platform_device.h>
22 #include <sound/driver.h>
23 #include <sound/core.h>
24 #include <sound/pcm.h>
25 #include <sound/pcm_params.h>
26 #include <sound/soc.h>
27 #include <sound/soc-dapm.h>
28 #include <sound/initval.h>
29
30 #include "wm8750.h"
31
32 #define AUDIO_NAME "WM8750"
33 #define WM8750_VERSION "0.11"
34
35 /*
36  * Debug
37  */
38
39 #define WM8750_DEBUG 0
40
41 #ifdef WM8750_DEBUG
42 #define dbg(format, arg...) \
43         printk(KERN_DEBUG AUDIO_NAME ": " format "\n" , ## arg)
44 #else
45 #define dbg(format, arg...) do {} while (0)
46 #endif
47 #define err(format, arg...) \
48         printk(KERN_ERR AUDIO_NAME ": " format "\n" , ## arg)
49 #define info(format, arg...) \
50         printk(KERN_INFO AUDIO_NAME ": " format "\n" , ## arg)
51 #define warn(format, arg...) \
52         printk(KERN_WARNING AUDIO_NAME ": " format "\n" , ## arg)
53
54 static struct workqueue_struct *wm8750_workq = NULL;
55 static struct work_struct wm8750_dapm_work;
56
57 /*
58  * wm8750 register cache
59  * We can't read the WM8750 register space when we
60  * are using 2 wire for device control, so we cache them instead.
61  */
62 static const u16 wm8750_reg[] = {
63         0x0097, 0x0097, 0x0079, 0x0079,  /*  0 */
64         0x0000, 0x0008, 0x0000, 0x000a,  /*  4 */
65         0x0000, 0x0000, 0x00ff, 0x00ff,  /*  8 */
66         0x000f, 0x000f, 0x0000, 0x0000,  /* 12 */
67         0x0000, 0x007b, 0x0000, 0x0032,  /* 16 */
68         0x0000, 0x00c3, 0x00c3, 0x00c0,  /* 20 */
69         0x0000, 0x0000, 0x0000, 0x0000,  /* 24 */
70         0x0000, 0x0000, 0x0000, 0x0000,  /* 28 */
71         0x0000, 0x0000, 0x0050, 0x0050,  /* 32 */
72         0x0050, 0x0050, 0x0050, 0x0050,  /* 36 */
73         0x0079, 0x0079, 0x0079,          /* 40 */
74 };
75
76 #define WM8750_HIFI_DAIFMT \
77         (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_RIGHT_J | \
78         SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_NB_IF | SND_SOC_DAIFMT_IB_NF | \
79         SND_SOC_DAIFMT_IB_IF)
80
81 #define WM8750_DIR \
82         (SND_SOC_DAIDIR_PLAYBACK | SND_SOC_DAIDIR_CAPTURE)
83
84 #define WM8750_HIFI_FSB \
85         (SND_SOC_FSBD(1) | SND_SOC_FSBD(2) | SND_SOC_FSBD(4) | \
86         SND_SOC_FSBD(8) | SND_SOC_FSBD(16))
87
88 #define WM8750_HIFI_RATES \
89         (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 | SNDRV_PCM_RATE_16000 | \
90         SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | \
91         SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
92
93 #define WM8750_HIFI_BITS \
94         (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
95         SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
96
97 static struct snd_soc_dai_mode wm8750_modes[] = {
98         /* common codec frame and clock master modes */
99         /* 8k */
100         {
101                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
102                 .pcmfmt = WM8750_HIFI_BITS,
103                 .pcmrate = SNDRV_PCM_RATE_8000,
104                 .pcmdir = WM8750_DIR,
105                 .flags = SND_SOC_DAI_BFS_DIV,
106                 .fs = 1536,
107                 .bfs = WM8750_HIFI_FSB,
108         },
109         {
110                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
111                 .pcmfmt = WM8750_HIFI_BITS,
112                 .pcmrate = SNDRV_PCM_RATE_8000,
113                 .pcmdir = WM8750_DIR,
114                 .flags = SND_SOC_DAI_BFS_DIV,
115                 .fs = 1408,
116                 .bfs = WM8750_HIFI_FSB,
117         },
118         {
119                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
120                 .pcmfmt = WM8750_HIFI_BITS,
121                 .pcmrate = SNDRV_PCM_RATE_8000,
122                 .pcmdir = WM8750_DIR,
123                 .flags = SND_SOC_DAI_BFS_DIV,
124                 .fs = 2304,
125                 .bfs = WM8750_HIFI_FSB,
126         },
127         {
128                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
129                 .pcmfmt = WM8750_HIFI_BITS,
130                 .pcmrate = SNDRV_PCM_RATE_8000,
131                 .pcmdir = WM8750_DIR,
132                 .flags = SND_SOC_DAI_BFS_DIV,
133                 .fs = 2112,
134                 .bfs = WM8750_HIFI_FSB,
135         },
136         {
137                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
138                 .pcmfmt = WM8750_HIFI_BITS,
139                 .pcmrate = SNDRV_PCM_RATE_8000,
140                 .pcmdir = WM8750_DIR,
141                 .flags = SND_SOC_DAI_BFS_DIV,
142                 .fs = 1500,
143                 .bfs = WM8750_HIFI_FSB,
144         },
145
146         /* 11.025k */
147         {
148                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
149                 .pcmfmt = WM8750_HIFI_BITS,
150                 .pcmrate = SNDRV_PCM_RATE_11025,
151                 .pcmdir = WM8750_DIR,
152                 .flags = SND_SOC_DAI_BFS_DIV,
153                 .fs = 1024,
154                 .bfs = WM8750_HIFI_FSB,
155         },
156         {
157                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
158                 .pcmfmt = WM8750_HIFI_BITS,
159                 .pcmrate = SNDRV_PCM_RATE_11025,
160                 .pcmdir = WM8750_DIR,
161                 .flags = SND_SOC_DAI_BFS_DIV,
162                 .fs = 1536,
163                 .bfs = WM8750_HIFI_FSB,
164         },
165         {
166                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
167                 .pcmfmt = WM8750_HIFI_BITS,
168                 .pcmrate = SNDRV_PCM_RATE_11025,
169                 .pcmdir = WM8750_DIR,
170                 .flags = SND_SOC_DAI_BFS_DIV,
171                 .fs = 1088,
172                 .bfs = WM8750_HIFI_FSB,
173         },
174
175         /* 16k */
176         {
177                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
178                 .pcmfmt = WM8750_HIFI_BITS,
179                 .pcmrate = SNDRV_PCM_RATE_16000,
180                 .pcmdir = WM8750_DIR,
181                 .flags = SND_SOC_DAI_BFS_DIV,
182                 .fs = 768,
183                 .bfs = WM8750_HIFI_FSB,
184         },
185         {
186                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
187                 .pcmfmt = WM8750_HIFI_BITS,
188                 .pcmrate = SNDRV_PCM_RATE_16000,
189                 .pcmdir = WM8750_DIR,
190                 .flags = SND_SOC_DAI_BFS_DIV,
191                 .fs = 1152,
192                 .bfs = WM8750_HIFI_FSB
193         },
194         {
195                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
196                 .pcmfmt = WM8750_HIFI_BITS,
197                 .pcmrate = SNDRV_PCM_RATE_16000,
198                 .pcmdir = WM8750_DIR,
199                 .flags = SND_SOC_DAI_BFS_DIV,
200                 .fs = 750,
201                 .bfs = WM8750_HIFI_FSB,
202         },
203
204         /* 22.05k */
205         {
206                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
207                 .pcmfmt = WM8750_HIFI_BITS,
208                 .pcmrate = SNDRV_PCM_RATE_22050,
209                 .pcmdir = WM8750_DIR,
210                 .flags = SND_SOC_DAI_BFS_DIV,
211                 .fs = 512,
212                 .bfs = WM8750_HIFI_FSB,
213         },
214         {
215                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
216                 .pcmfmt = WM8750_HIFI_BITS,
217                 .pcmrate = SNDRV_PCM_RATE_22050,
218                 .pcmdir = WM8750_DIR,
219                 .flags = SND_SOC_DAI_BFS_DIV,
220                 .fs = 768,
221                 .bfs = WM8750_HIFI_FSB,
222         },
223         {
224                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
225                 .pcmfmt = WM8750_HIFI_BITS,
226                 .pcmrate = SNDRV_PCM_RATE_22050,
227                 .pcmdir = WM8750_DIR,
228                 .flags = SND_SOC_DAI_BFS_DIV,
229                 .fs = 544,
230                 .bfs = WM8750_HIFI_FSB,
231         },
232
233         /* 32k */
234         {
235                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
236                 .pcmfmt = WM8750_HIFI_BITS,
237                 .pcmrate = SNDRV_PCM_RATE_32000,
238                 .pcmdir = WM8750_DIR,
239                 .flags = SND_SOC_DAI_BFS_DIV,
240                 .fs = 384,
241                 .bfs = WM8750_HIFI_FSB,
242         },
243         {
244                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
245                 .pcmfmt = WM8750_HIFI_BITS,
246                 .pcmrate = SNDRV_PCM_RATE_32000,
247                 .pcmdir = WM8750_DIR,
248                 .flags = SND_SOC_DAI_BFS_DIV,
249                 .fs = 576,
250                 .bfs = WM8750_HIFI_FSB,
251         },
252         {
253                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
254                 .pcmfmt = WM8750_HIFI_BITS,
255                 .pcmrate = SNDRV_PCM_RATE_32000,
256                 .pcmdir = WM8750_DIR,
257                 .flags = SND_SOC_DAI_BFS_DIV,
258                 .fs = 375,
259                 .bfs = WM8750_HIFI_FSB,
260         },
261
262         /* 44.1k & 48k */
263         {
264                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
265                 .pcmfmt = WM8750_HIFI_BITS,
266                 .pcmrate = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
267                 .pcmdir = WM8750_DIR,
268                 .flags = SND_SOC_DAI_BFS_DIV,
269                 .fs = 256,
270                 .bfs = WM8750_HIFI_FSB,
271         },
272         {
273                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
274                 .pcmfmt = WM8750_HIFI_BITS,
275                 .pcmrate = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
276                 .pcmdir = WM8750_DIR,
277                 .flags = SND_SOC_DAI_BFS_DIV,
278                 .fs = 384,
279                 .bfs = WM8750_HIFI_FSB,
280         },
281         {
282                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
283                 .pcmfmt = WM8750_HIFI_BITS,
284                 .pcmrate = SNDRV_PCM_RATE_44100,
285                 .pcmdir = WM8750_DIR,
286                 .flags = SND_SOC_DAI_BFS_DIV,
287                 .fs = 272,
288                 .bfs = WM8750_HIFI_FSB,
289         },
290         {
291                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
292                 .pcmfmt = WM8750_HIFI_BITS,
293                 .pcmrate = SNDRV_PCM_RATE_48000,
294                 .pcmdir = WM8750_DIR,
295                 .flags = SND_SOC_DAI_BFS_DIV,
296                 .fs = 250,
297                 .bfs = WM8750_HIFI_FSB,
298         },
299
300         /* 88.2k & 96k */
301         {
302                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
303                 .pcmfmt = WM8750_HIFI_BITS,
304                 .pcmrate = SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000,
305                 .pcmdir = WM8750_DIR,
306                 .flags = SND_SOC_DAI_BFS_DIV,
307                 .fs = 128,
308                 .bfs = WM8750_HIFI_FSB,
309         },
310         {
311                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
312                 .pcmfmt = WM8750_HIFI_BITS,
313                 .pcmrate = SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000,
314                 .pcmdir = WM8750_DIR,
315                 .flags = SND_SOC_DAI_BFS_DIV,
316                 .fs = 192,
317                 .bfs = WM8750_HIFI_FSB,
318         },
319         {
320                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
321                 .pcmfmt = WM8750_HIFI_BITS,
322                 .pcmrate = SNDRV_PCM_RATE_88200,
323                 .pcmdir = WM8750_DIR,
324                 .flags = SND_SOC_DAI_BFS_DIV,
325                 .fs = 136,
326                 .bfs = WM8750_HIFI_FSB,
327         },
328         {
329                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBM_CFM,
330                 .pcmfmt = WM8750_HIFI_BITS,
331                 .pcmrate = SNDRV_PCM_RATE_96000,
332                 .pcmdir = WM8750_DIR,
333                 .flags = SND_SOC_DAI_BFS_DIV,
334                 .fs = 125,
335                 .bfs = WM8750_HIFI_FSB,
336         },
337
338         /* codec frame and clock slave modes */
339         {
340                 .fmt = WM8750_HIFI_DAIFMT | SND_SOC_DAIFMT_CBS_CFS,
341                 .pcmfmt = WM8750_HIFI_BITS,
342                 .pcmrate = WM8750_HIFI_RATES,
343                 .pcmdir = WM8750_DIR,
344                 .flags = SND_SOC_DAI_BFS_DIV,
345                 .fs = SND_SOC_FS_ALL,
346                 .bfs = SND_SOC_FSB_ALL,
347         },
348 };
349
350 /*
351  * read wm8750 register cache
352  */
353 static inline unsigned int wm8750_read_reg_cache(struct snd_soc_codec *codec,
354         unsigned int reg)
355 {
356         u16 *cache = codec->reg_cache;
357         if (reg > WM8750_CACHE_REGNUM)
358                 return -1;
359         return cache[reg];
360 }
361
362 /*
363  * write wm8750 register cache
364  */
365 static inline void wm8750_write_reg_cache(struct snd_soc_codec *codec,
366         unsigned int reg, unsigned int value)
367 {
368         u16 *cache = codec->reg_cache;
369         if (reg > WM8750_CACHE_REGNUM)
370                 return;
371         cache[reg] = value;
372 }
373
374 static int wm8750_write(struct snd_soc_codec *codec, unsigned int reg,
375         unsigned int value)
376 {
377         u8 data[2];
378
379         /* data is
380          *   D15..D9 WM8753 register offset
381          *   D8...D0 register data
382          */
383         data[0] = (reg << 1) | ((value >> 8) & 0x0001);
384         data[1] = value & 0x00ff;
385
386         wm8750_write_reg_cache (codec, reg, value);
387         if (codec->hw_write(codec->control_data, data, 2) == 2)
388                 return 0;
389         else
390                 return -EIO;
391 }
392
393 #define wm8750_reset(c) wm8750_write(c, WM8750_RESET, 0)
394
395 /*
396  * WM8750 Controls
397  */
398 static const char *wm8750_bass[] = {"Linear Control", "Adaptive Boost"};
399 static const char *wm8750_bass_filter[] = { "130Hz @ 48kHz", "200Hz @ 48kHz" };
400 static const char *wm8750_treble[] = {"8kHz", "4kHz"};
401 static const char *wm8750_3d_lc[] = {"200Hz", "500Hz"};
402 static const char *wm8750_3d_uc[] = {"2.2kHz", "1.5kHz"};
403 static const char *wm8750_3d_func[] = {"Capture", "Playback"};
404 static const char *wm8750_alc_func[] = {"Off", "Right", "Left", "Stereo"};
405 static const char *wm8750_ng_type[] = {"Constant PGA Gain",
406         "Mute ADC Output"};
407 static const char *wm8750_line_mux[] = {"Line 1", "Line 2", "Line 3", "PGA",
408         "Differential"};
409 static const char *wm8750_pga_sel[] = {"Line 1", "Line 2", "Line 3",
410         "Differential"};
411 static const char *wm8750_out3[] = {"VREF", "ROUT1 + Vol", "MonoOut",
412         "ROUT1"};
413 static const char *wm8750_diff_sel[] = {"Line 1", "Line 2"};
414 static const char *wm8750_adcpol[] = {"Normal", "L Invert", "R Invert",
415         "L + R Invert"};
416 static const char *wm8750_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"};
417 static const char *wm8750_mono_mux[] = {"Stereo", "Mono (Left)",
418         "Mono (Right)", "Digital Mono"};
419
420 static const struct soc_enum wm8750_enum[] = {
421 SOC_ENUM_SINGLE(WM8750_BASS, 7, 2, wm8750_bass),
422 SOC_ENUM_SINGLE(WM8750_BASS, 6, 2, wm8750_bass_filter),
423 SOC_ENUM_SINGLE(WM8750_TREBLE, 6, 2, wm8750_treble),
424 SOC_ENUM_SINGLE(WM8750_3D, 5, 2, wm8750_3d_lc),
425 SOC_ENUM_SINGLE(WM8750_3D, 6, 2, wm8750_3d_uc),
426 SOC_ENUM_SINGLE(WM8750_3D, 7, 2, wm8750_3d_func),
427 SOC_ENUM_SINGLE(WM8750_ALC1, 7, 4, wm8750_alc_func),
428 SOC_ENUM_SINGLE(WM8750_NGATE, 1, 2, wm8750_ng_type),
429 SOC_ENUM_SINGLE(WM8750_LOUTM1, 0, 5, wm8750_line_mux),
430 SOC_ENUM_SINGLE(WM8750_ROUTM1, 0, 5, wm8750_line_mux),
431 SOC_ENUM_SINGLE(WM8750_LADCIN, 6, 4, wm8750_pga_sel), /* 10 */
432 SOC_ENUM_SINGLE(WM8750_RADCIN, 6, 4, wm8750_pga_sel),
433 SOC_ENUM_SINGLE(WM8750_ADCTL2, 7, 4, wm8750_out3),
434 SOC_ENUM_SINGLE(WM8750_ADCIN, 8, 2, wm8750_diff_sel),
435 SOC_ENUM_SINGLE(WM8750_ADCDAC, 5, 4, wm8750_adcpol),
436 SOC_ENUM_SINGLE(WM8750_ADCDAC, 1, 4, wm8750_deemph),
437 SOC_ENUM_SINGLE(WM8750_ADCIN, 6, 4, wm8750_mono_mux), /* 16 */
438
439 };
440
441 static const struct snd_kcontrol_new wm8750_snd_controls[] = {
442
443 SOC_DOUBLE_R("Capture Volume", WM8750_LINVOL, WM8750_RINVOL, 0, 63, 0),
444 SOC_DOUBLE_R("Capture ZC Switch", WM8750_LINVOL, WM8750_RINVOL, 6, 1, 0),
445 SOC_DOUBLE_R("Capture Switch", WM8750_LINVOL, WM8750_RINVOL, 7, 1, 1),
446
447 SOC_DOUBLE_R("Headphone Playback ZC Switch", WM8750_LOUT1V,
448         WM8750_ROUT1V, 7, 1, 0),
449 SOC_DOUBLE_R("Speaker Playback ZC Switch", WM8750_LOUT2V,
450         WM8750_ROUT2V, 7, 1, 0),
451
452 SOC_ENUM("Playback De-emphasis", wm8750_enum[15]),
453
454 SOC_ENUM("Capture Polarity", wm8750_enum[14]),
455 SOC_SINGLE("Playback 6dB Attenuate", WM8750_ADCDAC, 7, 1, 0),
456 SOC_SINGLE("Capture 6dB Attenuate", WM8750_ADCDAC, 8, 1, 0),
457
458 SOC_DOUBLE_R("PCM Volume", WM8750_LDAC, WM8750_RDAC, 0, 255, 0),
459
460 SOC_ENUM("Bass Boost", wm8750_enum[0]),
461 SOC_ENUM("Bass Filter", wm8750_enum[1]),
462 SOC_SINGLE("Bass Volume", WM8750_BASS, 0, 15, 1),
463
464 SOC_SINGLE("Treble Volume", WM8750_TREBLE, 0, 15, 0),
465 SOC_ENUM("Treble Cut-off", wm8750_enum[2]),
466
467 SOC_SINGLE("3D Switch", WM8750_3D, 0, 1, 0),
468 SOC_SINGLE("3D Volume", WM8750_3D, 1, 15, 0),
469 SOC_ENUM("3D Lower Cut-off", wm8750_enum[3]),
470 SOC_ENUM("3D Upper Cut-off", wm8750_enum[4]),
471 SOC_ENUM("3D Mode", wm8750_enum[5]),
472
473 SOC_SINGLE("ALC Capture Target Volume", WM8750_ALC1, 0, 7, 0),
474 SOC_SINGLE("ALC Capture Max Volume", WM8750_ALC1, 4, 7, 0),
475 SOC_ENUM("ALC Capture Function", wm8750_enum[6]),
476 SOC_SINGLE("ALC Capture ZC Switch", WM8750_ALC2, 7, 1, 0),
477 SOC_SINGLE("ALC Capture Hold Time", WM8750_ALC2, 0, 15, 0),
478 SOC_SINGLE("ALC Capture Decay Time", WM8750_ALC3, 4, 15, 0),
479 SOC_SINGLE("ALC Capture Attack Time", WM8750_ALC3, 0, 15, 0),
480 SOC_SINGLE("ALC Capture NG Threshold", WM8750_NGATE, 3, 31, 0),
481 SOC_ENUM("ALC Capture NG Type", wm8750_enum[4]),
482 SOC_SINGLE("ALC Capture NG Switch", WM8750_NGATE, 0, 1, 0),
483
484 SOC_SINGLE("Left ADC Capture Volume", WM8750_LADC, 0, 255, 0),
485 SOC_SINGLE("Right ADC Capture Volume", WM8750_RADC, 0, 255, 0),
486
487 SOC_SINGLE("ZC Timeout Switch", WM8750_ADCTL1, 0, 1, 0),
488 SOC_SINGLE("Playback Invert Switch", WM8750_ADCTL1, 1, 1, 0),
489
490 SOC_SINGLE("Right Speaker Playback Invert Switch", WM8750_ADCTL2, 4, 1, 0),
491
492 /* Unimplemented */
493 /* ADCDAC Bit 0 - ADCHPD */
494 /* ADCDAC Bit 4 - HPOR */
495 /* ADCTL1 Bit 2,3 - DATSEL */
496 /* ADCTL1 Bit 4,5 - DMONOMIX */
497 /* ADCTL1 Bit 6,7 - VSEL */
498 /* ADCTL2 Bit 2 - LRCM */
499 /* ADCTL2 Bit 3 - TRI */
500 /* ADCTL3 Bit 5 - HPFLREN */
501 /* ADCTL3 Bit 6 - VROI */
502 /* ADCTL3 Bit 7,8 - ADCLRM */
503 /* ADCIN Bit 4 - LDCM */
504 /* ADCIN Bit 5 - RDCM */
505
506 SOC_DOUBLE_R("Mic Boost", WM8750_LADCIN, WM8750_RADCIN, 4, 3, 0),
507
508 SOC_DOUBLE_R("Bypass Left Playback Volume", WM8750_LOUTM1,
509         WM8750_LOUTM2, 4, 7, 1),
510 SOC_DOUBLE_R("Bypass Right Playback Volume", WM8750_ROUTM1,
511         WM8750_ROUTM2, 4, 7, 1),
512 SOC_DOUBLE_R("Bypass Mono Playback Volume", WM8750_MOUTM1,
513         WM8750_MOUTM2, 4, 7, 1),
514
515 SOC_SINGLE("Mono Playback ZC Switch", WM8750_MOUTV, 7, 1, 0),
516
517 SOC_DOUBLE_R("Headphone Playback Volume", WM8750_LOUT1V, WM8750_ROUT1V,
518         0, 127, 0),
519 SOC_DOUBLE_R("Speaker Playback Volume", WM8750_LOUT2V, WM8750_ROUT2V,
520         0, 127, 0),
521
522 SOC_SINGLE("Mono Playback Volume", WM8750_MOUTV, 0, 127, 0),
523
524 };
525
526 /* add non dapm controls */
527 static int wm8750_add_controls(struct snd_soc_codec *codec)
528 {
529         int err, i;
530
531         for (i = 0; i < ARRAY_SIZE(wm8750_snd_controls); i++) {
532                 err = snd_ctl_add(codec->card,
533                                 snd_soc_cnew(&wm8750_snd_controls[i],codec, NULL));
534                 if (err < 0)
535                         return err;
536         }
537         return 0;
538 }
539
540 /*
541  * DAPM Controls
542  */
543
544 /* Left Mixer */
545 static const struct snd_kcontrol_new wm8750_left_mixer_controls[] = {
546 SOC_DAPM_SINGLE("Playback Switch", WM8750_LOUTM1, 8, 1, 0),
547 SOC_DAPM_SINGLE("Left Bypass Switch", WM8750_LOUTM1, 7, 1, 0),
548 SOC_DAPM_SINGLE("Right Playback Switch", WM8750_LOUTM2, 8, 1, 0),
549 SOC_DAPM_SINGLE("Right Bypass Switch", WM8750_LOUTM2, 7, 1, 0),
550 };
551
552 /* Right Mixer */
553 static const struct snd_kcontrol_new wm8750_right_mixer_controls[] = {
554 SOC_DAPM_SINGLE("Left Playback Switch", WM8750_ROUTM1, 8, 1, 0),
555 SOC_DAPM_SINGLE("Left Bypass Switch", WM8750_ROUTM1, 7, 1, 0),
556 SOC_DAPM_SINGLE("Playback Switch", WM8750_ROUTM2, 8, 1, 0),
557 SOC_DAPM_SINGLE("Right Bypass Switch", WM8750_ROUTM2, 7, 1, 0),
558 };
559
560 /* Mono Mixer */
561 static const struct snd_kcontrol_new wm8750_mono_mixer_controls[] = {
562 SOC_DAPM_SINGLE("Left Playback Switch", WM8750_MOUTM1, 8, 1, 0),
563 SOC_DAPM_SINGLE("Left Bypass Switch", WM8750_MOUTM1, 7, 1, 0),
564 SOC_DAPM_SINGLE("Right Playback Switch", WM8750_MOUTM2, 8, 1, 0),
565 SOC_DAPM_SINGLE("Right Bypass Switch", WM8750_MOUTM2, 7, 1, 0),
566 };
567
568 /* Left Line Mux */
569 static const struct snd_kcontrol_new wm8750_left_line_controls =
570 SOC_DAPM_ENUM("Route", wm8750_enum[8]);
571
572 /* Right Line Mux */
573 static const struct snd_kcontrol_new wm8750_right_line_controls =
574 SOC_DAPM_ENUM("Route", wm8750_enum[9]);
575
576 /* Left PGA Mux */
577 static const struct snd_kcontrol_new wm8750_left_pga_controls =
578 SOC_DAPM_ENUM("Route", wm8750_enum[10]);
579
580 /* Right PGA Mux */
581 static const struct snd_kcontrol_new wm8750_right_pga_controls =
582 SOC_DAPM_ENUM("Route", wm8750_enum[11]);
583
584 /* Out 3 Mux */
585 static const struct snd_kcontrol_new wm8750_out3_controls =
586 SOC_DAPM_ENUM("Route", wm8750_enum[12]);
587
588 /* Differential Mux */
589 static const struct snd_kcontrol_new wm8750_diffmux_controls =
590 SOC_DAPM_ENUM("Route", wm8750_enum[13]);
591
592 /* Mono ADC Mux */
593 static const struct snd_kcontrol_new wm8750_monomux_controls =
594 SOC_DAPM_ENUM("Route", wm8750_enum[16]);
595
596 static const struct snd_soc_dapm_widget wm8750_dapm_widgets[] = {
597         SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0,
598                 &wm8750_left_mixer_controls[0],
599                 ARRAY_SIZE(wm8750_left_mixer_controls)),
600         SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0,
601                 &wm8750_right_mixer_controls[0],
602                 ARRAY_SIZE(wm8750_right_mixer_controls)),
603         SND_SOC_DAPM_MIXER("Mono Mixer", WM8750_PWR2, 2, 0,
604                 &wm8750_mono_mixer_controls[0],
605                 ARRAY_SIZE(wm8750_mono_mixer_controls)),
606
607         SND_SOC_DAPM_PGA("Right Out 2", WM8750_PWR2, 3, 0, NULL, 0),
608         SND_SOC_DAPM_PGA("Left Out 2", WM8750_PWR2, 4, 0, NULL, 0),
609         SND_SOC_DAPM_PGA("Right Out 1", WM8750_PWR2, 5, 0, NULL, 0),
610         SND_SOC_DAPM_PGA("Left Out 1", WM8750_PWR2, 6, 0, NULL, 0),
611         SND_SOC_DAPM_DAC("Right DAC", "Right Playback", WM8750_PWR2, 7, 0),
612         SND_SOC_DAPM_DAC("Left DAC", "Left Playback", WM8750_PWR2, 8, 0),
613
614         SND_SOC_DAPM_MICBIAS("Mic Bias", WM8750_PWR1, 1, 0),
615         SND_SOC_DAPM_ADC("Right ADC", "Right Capture", WM8750_PWR1, 2, 0),
616         SND_SOC_DAPM_ADC("Left ADC", "Left Capture", WM8750_PWR1, 3, 0),
617
618         SND_SOC_DAPM_MUX("Left PGA Mux", WM8750_PWR1, 5, 0,
619                 &wm8750_left_pga_controls),
620         SND_SOC_DAPM_MUX("Right PGA Mux", WM8750_PWR1, 4, 0,
621                 &wm8750_right_pga_controls),
622         SND_SOC_DAPM_MUX("Left Line Mux", SND_SOC_NOPM, 0, 0,
623                 &wm8750_left_line_controls),
624         SND_SOC_DAPM_MUX("Right Line Mux", SND_SOC_NOPM, 0, 0,
625                 &wm8750_right_line_controls),
626
627         SND_SOC_DAPM_MUX("Out3 Mux", SND_SOC_NOPM, 0, 0, &wm8750_out3_controls),
628         SND_SOC_DAPM_PGA("Out 3", WM8750_PWR2, 1, 0, NULL, 0),
629         SND_SOC_DAPM_PGA("Mono Out 1", WM8750_PWR2, 2, 0, NULL, 0),
630
631         SND_SOC_DAPM_MUX("Differential Mux", SND_SOC_NOPM, 0, 0,
632                 &wm8750_diffmux_controls),
633         SND_SOC_DAPM_MUX("Left ADC Mux", SND_SOC_NOPM, 0, 0,
634                 &wm8750_monomux_controls),
635         SND_SOC_DAPM_MUX("Right ADC Mux", SND_SOC_NOPM, 0, 0,
636                 &wm8750_monomux_controls),
637
638         SND_SOC_DAPM_OUTPUT("LOUT1"),
639         SND_SOC_DAPM_OUTPUT("ROUT1"),
640         SND_SOC_DAPM_OUTPUT("LOUT2"),
641         SND_SOC_DAPM_OUTPUT("ROUT2"),
642         SND_SOC_DAPM_OUTPUT("MONO"),
643         SND_SOC_DAPM_OUTPUT("OUT3"),
644
645         SND_SOC_DAPM_INPUT("LINPUT1"),
646         SND_SOC_DAPM_INPUT("LINPUT2"),
647         SND_SOC_DAPM_INPUT("LINPUT3"),
648         SND_SOC_DAPM_INPUT("RINPUT1"),
649         SND_SOC_DAPM_INPUT("RINPUT2"),
650         SND_SOC_DAPM_INPUT("RINPUT3"),
651 };
652
653 static const char *audio_map[][3] = {
654         /* left mixer */
655         {"Left Mixer", "Playback Switch", "Left DAC"},
656         {"Left Mixer", "Left Bypass Switch", "Left Line Mux"},
657         {"Left Mixer", "Right Playback Switch", "Right DAC"},
658         {"Left Mixer", "Right Bypass Switch", "Right Line Mux"},
659
660         /* right mixer */
661         {"Right Mixer", "Left Playback Switch", "Left DAC"},
662         {"Right Mixer", "Left Bypass Switch", "Left Line Mux"},
663         {"Right Mixer", "Playback Switch", "Right DAC"},
664         {"Right Mixer", "Right Bypass Switch", "Right Line Mux"},
665
666         /* left out 1 */
667         {"Left Out 1", NULL, "Left Mixer"},
668         {"LOUT1", NULL, "Left Out 1"},
669
670         /* left out 2 */
671         {"Left Out 2", NULL, "Left Mixer"},
672         {"LOUT2", NULL, "Left Out 2"},
673
674         /* right out 1 */
675         {"Right Out 1", NULL, "Right Mixer"},
676         {"ROUT1", NULL, "Right Out 1"},
677
678         /* right out 2 */
679         {"Right Out 2", NULL, "Right Mixer"},
680         {"ROUT2", NULL, "Right Out 2"},
681
682         /* mono mixer */
683         {"Mono Mixer", "Left Playback Switch", "Left DAC"},
684         {"Mono Mixer", "Left Bypass Switch", "Left Line Mux"},
685         {"Mono Mixer", "Right Playback Switch", "Right DAC"},
686         {"Mono Mixer", "Right Bypass Switch", "Right Line Mux"},
687
688         /* mono out */
689         {"Mono Out 1", NULL, "Mono Mixer"},
690         {"MONO1", NULL, "Mono Out 1"},
691
692         /* out 3 */
693         {"Out3 Mux", "VREF", "VREF"},
694         {"Out3 Mux", "ROUT1 + Vol", "ROUT1"},
695         {"Out3 Mux", "ROUT1", "Right Mixer"},
696         {"Out3 Mux", "MonoOut", "MONO1"},
697         {"Out 3", NULL, "Out3 Mux"},
698         {"OUT3", NULL, "Out 3"},
699
700         /* Left Line Mux */
701         {"Left Line Mux", "Line 1", "LINPUT1"},
702         {"Left Line Mux", "Line 2", "LINPUT2"},
703         {"Left Line Mux", "Line 3", "LINPUT3"},
704         {"Left Line Mux", "PGA", "Left PGA Mux"},
705         {"Left Line Mux", "Differential", "Differential Mux"},
706
707         /* Right Line Mux */
708         {"Right Line Mux", "Line 1", "RINPUT1"},
709         {"Right Line Mux", "Line 2", "RINPUT2"},
710         {"Right Line Mux", "Line 3", "RINPUT3"},
711         {"Right Line Mux", "PGA", "Right PGA Mux"},
712         {"Right Line Mux", "Differential", "Differential Mux"},
713
714         /* Left PGA Mux */
715         {"Left PGA Mux", "Line 1", "LINPUT1"},
716         {"Left PGA Mux", "Line 2", "LINPUT2"},
717         {"Left PGA Mux", "Line 3", "LINPUT3"},
718         {"Left PGA Mux", "Differential", "Differential Mux"},
719
720         /* Right PGA Mux */
721         {"Right PGA Mux", "Line 1", "RINPUT1"},
722         {"Right PGA Mux", "Line 2", "RINPUT2"},
723         {"Right PGA Mux", "Line 3", "RINPUT3"},
724         {"Right PGA Mux", "Differential", "Differential Mux"},
725
726         /* Differential Mux */
727         {"Differential Mux", "Line 1", "LINPUT1"},
728         {"Differential Mux", "Line 1", "RINPUT1"},
729         {"Differential Mux", "Line 2", "LINPUT2"},
730         {"Differential Mux", "Line 2", "RINPUT2"},
731
732         /* Left ADC Mux */
733         {"Left ADC Mux", "Stereo", "Left PGA Mux"},
734         {"Left ADC Mux", "Mono (Left)", "Left PGA Mux"},
735         {"Left ADC Mux", "Digital Mono", "Left PGA Mux"},
736
737         /* Right ADC Mux */
738         {"Right ADC Mux", "Stereo", "Right PGA Mux"},
739         {"Right ADC Mux", "Mono (Right)", "Right PGA Mux"},
740         {"Right ADC Mux", "Digital Mono", "Right PGA Mux"},
741
742         /* ADC */
743         {"Left ADC", NULL, "Left ADC Mux"},
744         {"Right ADC", NULL, "Right ADC Mux"},
745
746         /* terminator */
747         {NULL, NULL, NULL},
748 };
749
750 static int wm8750_add_widgets(struct snd_soc_codec *codec)
751 {
752         int i;
753
754         for(i = 0; i < ARRAY_SIZE(wm8750_dapm_widgets); i++) {
755                 snd_soc_dapm_new_control(codec, &wm8750_dapm_widgets[i]);
756         }
757
758         /* set up audio path audio_mapnects */
759         for(i = 0; audio_map[i][0] != NULL; i++) {
760                 snd_soc_dapm_connect_input(codec, audio_map[i][0],
761                         audio_map[i][1], audio_map[i][2]);
762         }
763
764         snd_soc_dapm_new_widgets(codec);
765         return 0;
766 }
767
768 struct _coeff_div {
769         u32 mclk;
770         u32 rate;
771         u16 fs;
772         u8 sr:5;
773         u8 usb:1;
774 };
775
776 /* codec hifi mclk clock divider coefficients */
777 static const struct _coeff_div coeff_div[] = {
778         /* 8k */
779         {12288000, 8000, 1536, 0x6, 0x0},
780         {11289600, 8000, 1408, 0x16, 0x0},
781         {18432000, 8000, 2304, 0x7, 0x0},
782         {16934400, 8000, 2112, 0x17, 0x0},
783         {12000000, 8000, 1500, 0x6, 0x1},
784
785         /* 11.025k */
786         {11289600, 11025, 1024, 0x18, 0x0},
787         {16934400, 11025, 1536, 0x19, 0x0},
788         {12000000, 11025, 1088, 0x19, 0x1},
789
790         /* 16k */
791         {12288000, 16000, 768, 0xa, 0x0},
792         {18432000, 16000, 1152, 0xb, 0x0},
793         {12000000, 16000, 750, 0xa, 0x1},
794
795         /* 22.05k */
796         {11289600, 22050, 512, 0x1a, 0x0},
797         {16934400, 22050, 768, 0x1b, 0x0},
798         {12000000, 22050, 544, 0x1b, 0x1},
799
800         /* 32k */
801         {12288000, 32000, 384, 0xc, 0x0},
802         {18432000, 32000, 576, 0xd, 0x0},
803         {12000000, 32000, 375, 0xa, 0x1},
804
805         /* 44.1k */
806         {11289600, 44100, 256, 0x10, 0x0},
807         {16934400, 44100, 384, 0x11, 0x0},
808         {12000000, 44100, 272, 0x11, 0x1},
809
810         /* 48k */
811         {12288000, 48000, 256, 0x0, 0x0},
812         {18432000, 48000, 384, 0x1, 0x0},
813         {12000000, 48000, 250, 0x0, 0x1},
814
815         /* 88.2k */
816         {11289600, 88200, 128, 0x1e, 0x0},
817         {16934400, 88200, 192, 0x1f, 0x0},
818         {12000000, 88200, 136, 0x1f, 0x1},
819
820         /* 96k */
821         {12288000, 96000, 128, 0xe, 0x0},
822         {18432000, 96000, 192, 0xf, 0x0},
823         {12000000, 96000, 125, 0xe, 0x1},
824 };
825
826 static inline int get_coeff(int mclk, int rate)
827 {
828         int i;
829
830         for (i = 0; i < ARRAY_SIZE(coeff_div); i++) {
831                 if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk)
832                         return i;
833         }
834
835         printk(KERN_ERR "wm8750: could not get coeff for mclk %d @ rate %d\n",
836                 mclk, rate);
837         return -EINVAL;
838 }
839
840 /* WM8750 supports numerous input clocks per sample rate */
841 static unsigned int wm8750_config_sysclk(struct snd_soc_codec_dai *dai,
842         struct snd_soc_clock_info *info, unsigned int clk)
843 {
844         dai->mclk = clk;
845         return dai->mclk;
846 }
847
848 static int wm8750_pcm_prepare(struct snd_pcm_substream *substream)
849 {
850         struct snd_soc_pcm_runtime *rtd = substream->private_data;
851         struct snd_soc_device *socdev = rtd->socdev;
852         struct snd_soc_codec *codec = socdev->codec;
853         u16 iface = 0, bfs, srate = 0;
854         int i = get_coeff(rtd->codec_dai->mclk,
855                 snd_soc_get_rate(rtd->codec_dai->dai_runtime.pcmrate));
856
857         /* is coefficient valid ? */
858         if (i < 0)
859                 return i;
860
861         bfs = SND_SOC_FSBD_REAL(rtd->codec_dai->dai_runtime.bfs);
862
863         /* set master/slave audio interface */
864         switch (rtd->codec_dai->dai_runtime.fmt & SND_SOC_DAIFMT_CLOCK_MASK) {
865         case SND_SOC_DAIFMT_CBM_CFM:
866                 iface = 0x0040;
867                 break;
868         case SND_SOC_DAIFMT_CBS_CFS:
869                 break;
870         }
871
872         /* interface format */
873         switch (rtd->codec_dai->dai_runtime.fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
874         case SND_SOC_DAIFMT_I2S:
875                 iface |= 0x0002;
876                 break;
877         case SND_SOC_DAIFMT_RIGHT_J:
878                 break;
879         case SND_SOC_DAIFMT_LEFT_J:
880                 iface |= 0x0001;
881                 break;
882         case SND_SOC_DAIFMT_DSP_A:
883                 iface |= 0x0003;
884                 break;
885         case SND_SOC_DAIFMT_DSP_B:
886                 iface |= 0x0013;
887                 break;
888         }
889
890         /* bit size */
891         switch (rtd->codec_dai->dai_runtime.pcmfmt) {
892         case SNDRV_PCM_FMTBIT_S16_LE:
893                 break;
894         case SNDRV_PCM_FMTBIT_S20_3LE:
895                 iface |= 0x0004;
896                 break;
897         case SNDRV_PCM_FMTBIT_S24_LE:
898                 iface |= 0x0008;
899                 break;
900         case SNDRV_PCM_FMTBIT_S32_LE:
901                 iface |= 0x000c;
902                 break;
903         }
904
905         /* clock inversion */
906         switch (rtd->codec_dai->dai_runtime.fmt & SND_SOC_DAIFMT_INV_MASK) {
907         case SND_SOC_DAIFMT_NB_NF:
908                 break;
909         case SND_SOC_DAIFMT_IB_IF:
910                 iface |= 0x0090;
911                 break;
912         case SND_SOC_DAIFMT_IB_NF:
913                 iface |= 0x0080;
914                 break;
915         case SND_SOC_DAIFMT_NB_IF:
916                 iface |= 0x0010;
917                 break;
918         }
919
920         /* set bclk divisor rate */
921         switch (bfs) {
922         case 1:
923                 break;
924         case 4:
925                 srate |= (0x1 << 7);
926                 break;
927         case 8:
928                 srate |= (0x2 << 7);
929                 break;
930         case 16:
931                 srate |= (0x3 << 7);
932                 break;
933         }
934
935         /* set iface & srate */
936         wm8750_write(codec, WM8750_IFACE, iface);
937         wm8750_write(codec, WM8750_SRATE, srate |
938                 (coeff_div[i].sr << 1) | coeff_div[i].usb);
939
940         return 0;
941 }
942
943 static int wm8750_mute(struct snd_soc_codec *codec,
944         struct snd_soc_codec_dai *dai, int mute)
945 {
946         u16 mute_reg = wm8750_read_reg_cache(codec, WM8750_ADCDAC) & 0xfff7;
947         if (mute)
948                 wm8750_write(codec, WM8750_ADCDAC, mute_reg | 0x8);
949         else
950                 wm8750_write(codec, WM8750_ADCDAC, mute_reg);
951         return 0;
952 }
953
954 static int wm8750_dapm_event(struct snd_soc_codec *codec, int event)
955 {
956         u16 pwr_reg = wm8750_read_reg_cache(codec, WM8750_PWR1) & 0xfe3e;
957
958         switch (event) {
959         case SNDRV_CTL_POWER_D0: /* full On */
960                 /* set vmid to 50k and unmute dac */
961                 wm8750_write(codec, WM8750_PWR1, pwr_reg | 0x00c0);
962                 break;
963         case SNDRV_CTL_POWER_D1: /* partial On */
964         case SNDRV_CTL_POWER_D2: /* partial On */
965                 /* set vmid to 5k for quick power up */
966                 wm8750_write(codec, WM8750_PWR1, pwr_reg | 0x01c1);
967                 break;
968         case SNDRV_CTL_POWER_D3hot: /* Off, with power */
969                 /* mute dac and set vmid to 500k, enable VREF */
970                 wm8750_write(codec, WM8750_PWR1, pwr_reg | 0x0141);
971                 break;
972         case SNDRV_CTL_POWER_D3cold: /* Off, without power */
973                 wm8750_write(codec, WM8750_PWR1, 0x0001);
974                 break;
975         }
976         codec->dapm_state = event;
977         return 0;
978 }
979
980 struct snd_soc_codec_dai wm8750_dai = {
981         .name = "WM8750",
982         .playback = {
983                 .stream_name = "Playback",
984                 .channels_min = 1,
985                 .channels_max = 2,
986         },
987         .capture = {
988                 .stream_name = "Capture",
989                 .channels_min = 1,
990                 .channels_max = 2,
991         },
992         .config_sysclk = wm8750_config_sysclk,
993         .digital_mute = wm8750_mute,
994         .ops = {
995                 .prepare = wm8750_pcm_prepare,
996         },
997         .caps = {
998                 .num_modes = ARRAY_SIZE(wm8750_modes),
999                 .mode = wm8750_modes,
1000         },
1001 };
1002 EXPORT_SYMBOL_GPL(wm8750_dai);
1003
1004 static void wm8750_work(void *data)
1005 {
1006         struct snd_soc_codec *codec = (struct snd_soc_codec *)data;
1007         wm8750_dapm_event(codec, codec->dapm_state);
1008 }
1009
1010 static int wm8750_suspend(struct platform_device *pdev, pm_message_t state)
1011 {
1012         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1013         struct snd_soc_codec *codec = socdev->codec;
1014
1015         wm8750_dapm_event(codec, SNDRV_CTL_POWER_D3cold);
1016         return 0;
1017 }
1018
1019 static int wm8750_resume(struct platform_device *pdev)
1020 {
1021         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1022         struct snd_soc_codec *codec = socdev->codec;
1023         int i;
1024         u8 data[2];
1025         u16 *cache = codec->reg_cache;
1026
1027         /* Sync reg_cache with the hardware */
1028         for (i = 0; i < ARRAY_SIZE(wm8750_reg); i++) {
1029                 if (i == WM8750_RESET)
1030                         continue;
1031                 data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001);
1032                 data[1] = cache[i] & 0x00ff;
1033                 codec->hw_write(codec->control_data, data, 2);
1034         }
1035
1036         wm8750_dapm_event(codec, SNDRV_CTL_POWER_D3hot);
1037
1038         /* charge wm8750 caps */
1039         if (codec->suspend_dapm_state == SNDRV_CTL_POWER_D0) {
1040                 wm8750_dapm_event(codec, SNDRV_CTL_POWER_D2);
1041                 codec->dapm_state = SNDRV_CTL_POWER_D0;
1042                 queue_delayed_work(wm8750_workq, &wm8750_dapm_work,
1043                          msecs_to_jiffies(1000));
1044         }
1045
1046         return 0;
1047 }
1048
1049 /*
1050  * initialise the WM8750 driver
1051  * register the mixer and dsp interfaces with the kernel
1052  */
1053 static int wm8750_init(struct snd_soc_device *socdev)
1054 {
1055         struct snd_soc_codec *codec = socdev->codec;
1056         int reg, ret = 0;
1057
1058         codec->name = "WM8750";
1059         codec->owner = THIS_MODULE;
1060         codec->read = wm8750_read_reg_cache;
1061         codec->write = wm8750_write;
1062         codec->dapm_event = wm8750_dapm_event;
1063         codec->dai = &wm8750_dai;
1064         codec->num_dai = 1;
1065         codec->reg_cache_size = ARRAY_SIZE(wm8750_reg);
1066
1067         codec->reg_cache =
1068                         kzalloc(sizeof(u16) * ARRAY_SIZE(wm8750_reg), GFP_KERNEL);
1069         if (codec->reg_cache == NULL)
1070                 return -ENOMEM;
1071         memcpy(codec->reg_cache, wm8750_reg,
1072                 sizeof(u16) * ARRAY_SIZE(wm8750_reg));
1073         codec->reg_cache_size = sizeof(u16) * ARRAY_SIZE(wm8750_reg);
1074
1075         wm8750_reset(codec);
1076
1077         /* register pcms */
1078         ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1);
1079         if (ret < 0) {
1080                 kfree(codec->reg_cache);
1081                 return ret;
1082         }
1083
1084         /* charge output caps */
1085         wm8750_dapm_event(codec, SNDRV_CTL_POWER_D2);
1086         codec->dapm_state = SNDRV_CTL_POWER_D3hot;
1087         queue_delayed_work(wm8750_workq, &wm8750_dapm_work,
1088                 msecs_to_jiffies(1000));
1089
1090         /* set the update bits */
1091         reg = wm8750_read_reg_cache(codec, WM8750_LDAC);
1092         wm8750_write(codec, WM8750_LDAC, reg | 0x0100);
1093         reg = wm8750_read_reg_cache(codec, WM8750_RDAC);
1094         wm8750_write(codec, WM8750_RDAC, reg | 0x0100);
1095         reg = wm8750_read_reg_cache(codec, WM8750_LOUT1V);
1096         wm8750_write(codec, WM8750_LOUT1V, reg | 0x0100);
1097         reg = wm8750_read_reg_cache(codec, WM8750_ROUT1V);
1098         wm8750_write(codec, WM8750_ROUT1V, reg | 0x0100);
1099         reg = wm8750_read_reg_cache(codec, WM8750_LOUT2V);
1100         wm8750_write(codec, WM8750_LOUT2V, reg | 0x0100);
1101         reg = wm8750_read_reg_cache(codec, WM8750_ROUT2V);
1102         wm8750_write(codec, WM8750_ROUT2V, reg | 0x0100);
1103         reg = wm8750_read_reg_cache(codec, WM8750_LINVOL);
1104         wm8750_write(codec, WM8750_LINVOL, reg | 0x0100);
1105         reg = wm8750_read_reg_cache(codec, WM8750_RINVOL);
1106         wm8750_write(codec, WM8750_RINVOL, reg | 0x0100);
1107
1108         wm8750_add_controls(codec);
1109         wm8750_add_widgets(codec);
1110         ret = snd_soc_register_card(socdev);
1111         if (ret < 0) {
1112                 snd_soc_free_pcms(socdev);
1113                 snd_soc_dapm_free(socdev);
1114         }
1115
1116         return ret;
1117 }
1118
1119 /* If the i2c layer weren't so broken, we could pass this kind of data
1120    around */
1121 static struct snd_soc_device *wm8750_socdev;
1122
1123 #if defined (CONFIG_I2C) || defined (CONFIG_I2C_MODULE)
1124
1125 /*
1126  * WM8731 2 wire address is determined by GPIO5
1127  * state during powerup.
1128  *    low  = 0x1a
1129  *    high = 0x1b
1130  */
1131 static unsigned short normal_i2c[] = { 0, I2C_CLIENT_END };
1132
1133 /* Magic definition of all other variables and things */
1134 I2C_CLIENT_INSMOD;
1135
1136 static struct i2c_driver wm8750_i2c_driver;
1137 static struct i2c_client client_template;
1138
1139 static int wm8750_codec_probe(struct i2c_adapter *adap, int addr, int kind)
1140 {
1141         struct snd_soc_device *socdev = wm8750_socdev;
1142         struct wm8750_setup_data *setup = socdev->codec_data;
1143         struct snd_soc_codec *codec = socdev->codec;
1144         struct i2c_client *i2c;
1145         int ret;
1146
1147         if (addr != setup->i2c_address)
1148                 return -ENODEV;
1149
1150         client_template.adapter = adap;
1151         client_template.addr = addr;
1152
1153         i2c = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
1154         if (i2c == NULL) {
1155                 kfree(codec);
1156                 return -ENOMEM;
1157         }
1158         memcpy(i2c, &client_template, sizeof(struct i2c_client));
1159         i2c_set_clientdata(i2c, codec);
1160         codec->control_data = i2c;
1161
1162         ret = i2c_attach_client(i2c);
1163         if (ret < 0) {
1164                 err("failed to attach codec at addr %x\n", addr);
1165                 goto err;
1166         }
1167
1168         ret = wm8750_init(socdev);
1169         if (ret < 0) {
1170         err("failed to initialise WM8750\n");
1171                 goto err;
1172         }
1173         return ret;
1174
1175 err:
1176         kfree(codec);
1177         kfree(i2c);
1178         return ret;
1179 }
1180
1181 static int wm8750_i2c_detach(struct i2c_client *client)
1182 {
1183         struct snd_soc_codec *codec = i2c_get_clientdata(client);
1184         i2c_detach_client(client);
1185         kfree(codec->reg_cache);
1186         kfree(client);
1187         return 0;
1188 }
1189
1190 static int wm8750_i2c_attach(struct i2c_adapter *adap)
1191 {
1192         return i2c_probe(adap, &addr_data, wm8750_codec_probe);
1193 }
1194
1195 /* corgi i2c codec control layer */
1196 static struct i2c_driver wm8750_i2c_driver = {
1197         .driver = {
1198                 .name = "WM8750 I2C Codec",
1199                 .owner = THIS_MODULE,
1200         },
1201         .id =             I2C_DRIVERID_WM8750,
1202         .attach_adapter = wm8750_i2c_attach,
1203         .detach_client =  wm8750_i2c_detach,
1204         .command =        NULL,
1205 };
1206
1207 static struct i2c_client client_template = {
1208         .name =   "WM8750",
1209         .driver = &wm8750_i2c_driver,
1210 };
1211 #endif
1212
1213 static int wm8750_probe(struct platform_device *pdev)
1214 {
1215         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1216         struct wm8750_setup_data *setup = socdev->codec_data;
1217         struct snd_soc_codec *codec;
1218         int ret = 0;
1219
1220         info("WM8750 Audio Codec %s", WM8750_VERSION);
1221         codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
1222         if (codec == NULL)
1223                 return -ENOMEM;
1224
1225         socdev->codec = codec;
1226         mutex_init(&codec->mutex);
1227         INIT_LIST_HEAD(&codec->dapm_widgets);
1228         INIT_LIST_HEAD(&codec->dapm_paths);
1229         wm8750_socdev = socdev;
1230         INIT_WORK(&wm8750_dapm_work, wm8750_work, codec);
1231         wm8750_workq = create_workqueue("wm8750");
1232         if (wm8750_workq == NULL) {
1233                 kfree(codec);
1234                 return -ENOMEM;
1235         }
1236 #if defined (CONFIG_I2C) || defined (CONFIG_I2C_MODULE)
1237         if (setup->i2c_address) {
1238                 normal_i2c[0] = setup->i2c_address;
1239                 codec->hw_write = (hw_write_t)i2c_master_send;
1240                 ret = i2c_add_driver(&wm8750_i2c_driver);
1241                 if (ret != 0)
1242                         printk(KERN_ERR "can't add i2c driver");
1243         }
1244 #else
1245                 /* Add other interfaces here */
1246 #endif
1247
1248         return ret;
1249 }
1250
1251 /* power down chip */
1252 static int wm8750_remove(struct platform_device *pdev)
1253 {
1254         struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1255         struct snd_soc_codec *codec = socdev->codec;
1256
1257         if (codec->control_data)
1258                 wm8750_dapm_event(codec, SNDRV_CTL_POWER_D3cold);
1259         if (wm8750_workq)
1260                 destroy_workqueue(wm8750_workq);
1261         snd_soc_free_pcms(socdev);
1262         snd_soc_dapm_free(socdev);
1263 #if defined (CONFIG_I2C) || defined (CONFIG_I2C_MODULE)
1264         i2c_del_driver(&wm8750_i2c_driver);
1265 #endif
1266         kfree(codec);
1267
1268         return 0;
1269 }
1270
1271 struct snd_soc_codec_device soc_codec_dev_wm8750 = {
1272         .probe =        wm8750_probe,
1273         .remove =       wm8750_remove,
1274         .suspend =      wm8750_suspend,
1275         .resume =       wm8750_resume,
1276 };
1277
1278 EXPORT_SYMBOL_GPL(soc_codec_dev_wm8750);
1279
1280 MODULE_DESCRIPTION("ASoC WM8750 driver");
1281 MODULE_AUTHOR("Liam Girdwood");
1282 MODULE_LICENSE("GPL");