blob: dc4fe4f5239d6ff668c75a4e17afa383f9058eee [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Mark Brown0a1bf552009-05-23 11:18:41 +01002/*
3 * wm8974.c -- WM8974 ALSA Soc Audio driver
4 *
Mark Brown8b83a192009-06-30 19:37:02 +01005 * Copyright 2006-2009 Wolfson Microelectronics PLC.
Mark Brown0a1bf552009-05-23 11:18:41 +01006 *
Mark Brown9a185b92011-10-06 11:10:01 +01007 * Author: Liam Girdwood <Liam.Girdwood@wolfsonmicro.com>
Mark Brown0a1bf552009-05-23 11:18:41 +01008 */
9
10#include <linux/module.h>
Mark Brown0a1bf552009-05-23 11:18:41 +010011#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/delay.h>
14#include <linux/pm.h>
15#include <linux/i2c.h>
Mark Browne40e0b52013-11-08 14:01:39 +000016#include <linux/regmap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Mark Brown0a1bf552009-05-23 11:18:41 +010018#include <sound/core.h>
19#include <sound/pcm.h>
20#include <sound/pcm_params.h>
21#include <sound/soc.h>
Mark Brown0a1bf552009-05-23 11:18:41 +010022#include <sound/initval.h>
Mark Browna5f8d2f2009-06-30 19:30:33 +010023#include <sound/tlv.h>
Mark Brown0a1bf552009-05-23 11:18:41 +010024
25#include "wm8974.h"
26
Mans Rullgard51b2bb32016-01-25 12:36:43 +000027struct wm8974_priv {
28 unsigned int mclk;
29 unsigned int fs;
30};
31
Mark Browne40e0b52013-11-08 14:01:39 +000032static const struct reg_default wm8974_reg_defaults[] = {
33 { 0, 0x0000 }, { 1, 0x0000 }, { 2, 0x0000 }, { 3, 0x0000 },
34 { 4, 0x0050 }, { 5, 0x0000 }, { 6, 0x0140 }, { 7, 0x0000 },
35 { 8, 0x0000 }, { 9, 0x0000 }, { 10, 0x0000 }, { 11, 0x00ff },
36 { 12, 0x0000 }, { 13, 0x0000 }, { 14, 0x0100 }, { 15, 0x00ff },
37 { 16, 0x0000 }, { 17, 0x0000 }, { 18, 0x012c }, { 19, 0x002c },
38 { 20, 0x002c }, { 21, 0x002c }, { 22, 0x002c }, { 23, 0x0000 },
39 { 24, 0x0032 }, { 25, 0x0000 }, { 26, 0x0000 }, { 27, 0x0000 },
40 { 28, 0x0000 }, { 29, 0x0000 }, { 30, 0x0000 }, { 31, 0x0000 },
41 { 32, 0x0038 }, { 33, 0x000b }, { 34, 0x0032 }, { 35, 0x0000 },
42 { 36, 0x0008 }, { 37, 0x000c }, { 38, 0x0093 }, { 39, 0x00e9 },
43 { 40, 0x0000 }, { 41, 0x0000 }, { 42, 0x0000 }, { 43, 0x0000 },
44 { 44, 0x0003 }, { 45, 0x0010 }, { 46, 0x0000 }, { 47, 0x0000 },
45 { 48, 0x0000 }, { 49, 0x0002 }, { 50, 0x0000 }, { 51, 0x0000 },
46 { 52, 0x0000 }, { 53, 0x0000 }, { 54, 0x0039 }, { 55, 0x0000 },
47 { 56, 0x0000 },
Mark Brown0a1bf552009-05-23 11:18:41 +010048};
49
Mark Browndf1ef7a2009-06-30 19:01:09 +010050#define WM8974_POWER1_BIASEN 0x08
Guennadi Liakhovetski48c03ce2009-12-17 14:51:35 +010051#define WM8974_POWER1_BUFIOEN 0x04
Mark Browndf1ef7a2009-06-30 19:01:09 +010052
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +000053#define wm8974_reset(c) snd_soc_component_write(c, WM8974_RESET, 0)
Mark Brown0a1bf552009-05-23 11:18:41 +010054
55static const char *wm8974_companding[] = {"Off", "NC", "u-law", "A-law" };
56static const char *wm8974_deemp[] = {"None", "32kHz", "44.1kHz", "48kHz" };
57static const char *wm8974_eqmode[] = {"Capture", "Playback" };
58static const char *wm8974_bw[] = {"Narrow", "Wide" };
59static const char *wm8974_eq1[] = {"80Hz", "105Hz", "135Hz", "175Hz" };
60static const char *wm8974_eq2[] = {"230Hz", "300Hz", "385Hz", "500Hz" };
61static const char *wm8974_eq3[] = {"650Hz", "850Hz", "1.1kHz", "1.4kHz" };
62static const char *wm8974_eq4[] = {"1.8kHz", "2.4kHz", "3.2kHz", "4.1kHz" };
63static const char *wm8974_eq5[] = {"5.3kHz", "6.9kHz", "9kHz", "11.7kHz" };
64static const char *wm8974_alc[] = {"ALC", "Limiter" };
65
66static const struct soc_enum wm8974_enum[] = {
67 SOC_ENUM_SINGLE(WM8974_COMP, 1, 4, wm8974_companding), /* adc */
68 SOC_ENUM_SINGLE(WM8974_COMP, 3, 4, wm8974_companding), /* dac */
69 SOC_ENUM_SINGLE(WM8974_DAC, 4, 4, wm8974_deemp),
70 SOC_ENUM_SINGLE(WM8974_EQ1, 8, 2, wm8974_eqmode),
71
72 SOC_ENUM_SINGLE(WM8974_EQ1, 5, 4, wm8974_eq1),
73 SOC_ENUM_SINGLE(WM8974_EQ2, 8, 2, wm8974_bw),
74 SOC_ENUM_SINGLE(WM8974_EQ2, 5, 4, wm8974_eq2),
75 SOC_ENUM_SINGLE(WM8974_EQ3, 8, 2, wm8974_bw),
76
77 SOC_ENUM_SINGLE(WM8974_EQ3, 5, 4, wm8974_eq3),
78 SOC_ENUM_SINGLE(WM8974_EQ4, 8, 2, wm8974_bw),
79 SOC_ENUM_SINGLE(WM8974_EQ4, 5, 4, wm8974_eq4),
80 SOC_ENUM_SINGLE(WM8974_EQ5, 8, 2, wm8974_bw),
81
82 SOC_ENUM_SINGLE(WM8974_EQ5, 5, 4, wm8974_eq5),
83 SOC_ENUM_SINGLE(WM8974_ALC3, 8, 2, wm8974_alc),
84};
85
Mark Brown8a123ee2009-06-30 21:10:34 +010086static const char *wm8974_auxmode_text[] = { "Buffer", "Mixer" };
87
Takashi Iwaide461bd2014-02-18 10:43:31 +010088static SOC_ENUM_SINGLE_DECL(wm8974_auxmode,
89 WM8974_INPUT, 3, wm8974_auxmode_text);
Mark Brown8a123ee2009-06-30 21:10:34 +010090
Mark Browna5f8d2f2009-06-30 19:30:33 +010091static const DECLARE_TLV_DB_SCALE(digital_tlv, -12750, 50, 1);
92static const DECLARE_TLV_DB_SCALE(eq_tlv, -1200, 100, 0);
93static const DECLARE_TLV_DB_SCALE(inpga_tlv, -1200, 75, 0);
94static const DECLARE_TLV_DB_SCALE(spk_tlv, -5700, 100, 0);
95
Mark Brown0a1bf552009-05-23 11:18:41 +010096static const struct snd_kcontrol_new wm8974_snd_controls[] = {
97
98SOC_SINGLE("Digital Loopback Switch", WM8974_COMP, 0, 1, 0),
99
100SOC_ENUM("DAC Companding", wm8974_enum[1]),
101SOC_ENUM("ADC Companding", wm8974_enum[0]),
102
103SOC_ENUM("Playback De-emphasis", wm8974_enum[2]),
104SOC_SINGLE("DAC Inversion Switch", WM8974_DAC, 0, 1, 0),
105
Mark Browna5f8d2f2009-06-30 19:30:33 +0100106SOC_SINGLE_TLV("PCM Volume", WM8974_DACVOL, 0, 255, 0, digital_tlv),
Mark Brown0a1bf552009-05-23 11:18:41 +0100107
108SOC_SINGLE("High Pass Filter Switch", WM8974_ADC, 8, 1, 0),
109SOC_SINGLE("High Pass Cut Off", WM8974_ADC, 4, 7, 0),
javier Martin25cbf462009-07-21 11:15:06 +0200110SOC_SINGLE("ADC Inversion Switch", WM8974_ADC, 0, 1, 0),
Mark Brown0a1bf552009-05-23 11:18:41 +0100111
Mark Browna5f8d2f2009-06-30 19:30:33 +0100112SOC_SINGLE_TLV("Capture Volume", WM8974_ADCVOL, 0, 255, 0, digital_tlv),
Mark Brown0a1bf552009-05-23 11:18:41 +0100113
114SOC_ENUM("Equaliser Function", wm8974_enum[3]),
115SOC_ENUM("EQ1 Cut Off", wm8974_enum[4]),
Mark Browna5f8d2f2009-06-30 19:30:33 +0100116SOC_SINGLE_TLV("EQ1 Volume", WM8974_EQ1, 0, 24, 1, eq_tlv),
Mark Brown0a1bf552009-05-23 11:18:41 +0100117
Masanari Iidac46d5c02012-11-02 23:25:30 +0900118SOC_ENUM("Equaliser EQ2 Bandwidth", wm8974_enum[5]),
Mark Brown0a1bf552009-05-23 11:18:41 +0100119SOC_ENUM("EQ2 Cut Off", wm8974_enum[6]),
Mark Browna5f8d2f2009-06-30 19:30:33 +0100120SOC_SINGLE_TLV("EQ2 Volume", WM8974_EQ2, 0, 24, 1, eq_tlv),
Mark Brown0a1bf552009-05-23 11:18:41 +0100121
Masanari Iidac46d5c02012-11-02 23:25:30 +0900122SOC_ENUM("Equaliser EQ3 Bandwidth", wm8974_enum[7]),
Mark Brown0a1bf552009-05-23 11:18:41 +0100123SOC_ENUM("EQ3 Cut Off", wm8974_enum[8]),
Mark Browna5f8d2f2009-06-30 19:30:33 +0100124SOC_SINGLE_TLV("EQ3 Volume", WM8974_EQ3, 0, 24, 1, eq_tlv),
Mark Brown0a1bf552009-05-23 11:18:41 +0100125
Masanari Iidac46d5c02012-11-02 23:25:30 +0900126SOC_ENUM("Equaliser EQ4 Bandwidth", wm8974_enum[9]),
Mark Brown0a1bf552009-05-23 11:18:41 +0100127SOC_ENUM("EQ4 Cut Off", wm8974_enum[10]),
Mark Browna5f8d2f2009-06-30 19:30:33 +0100128SOC_SINGLE_TLV("EQ4 Volume", WM8974_EQ4, 0, 24, 1, eq_tlv),
Mark Brown0a1bf552009-05-23 11:18:41 +0100129
Masanari Iidaa895d572013-04-09 02:06:50 +0900130SOC_ENUM("Equaliser EQ5 Bandwidth", wm8974_enum[11]),
Mark Brown0a1bf552009-05-23 11:18:41 +0100131SOC_ENUM("EQ5 Cut Off", wm8974_enum[12]),
Mark Browna5f8d2f2009-06-30 19:30:33 +0100132SOC_SINGLE_TLV("EQ5 Volume", WM8974_EQ5, 0, 24, 1, eq_tlv),
Mark Brown0a1bf552009-05-23 11:18:41 +0100133
134SOC_SINGLE("DAC Playback Limiter Switch", WM8974_DACLIM1, 8, 1, 0),
135SOC_SINGLE("DAC Playback Limiter Decay", WM8974_DACLIM1, 4, 15, 0),
136SOC_SINGLE("DAC Playback Limiter Attack", WM8974_DACLIM1, 0, 15, 0),
137
138SOC_SINGLE("DAC Playback Limiter Threshold", WM8974_DACLIM2, 4, 7, 0),
139SOC_SINGLE("DAC Playback Limiter Boost", WM8974_DACLIM2, 0, 15, 0),
140
141SOC_SINGLE("ALC Enable Switch", WM8974_ALC1, 8, 1, 0),
142SOC_SINGLE("ALC Capture Max Gain", WM8974_ALC1, 3, 7, 0),
143SOC_SINGLE("ALC Capture Min Gain", WM8974_ALC1, 0, 7, 0),
144
145SOC_SINGLE("ALC Capture ZC Switch", WM8974_ALC2, 8, 1, 0),
146SOC_SINGLE("ALC Capture Hold", WM8974_ALC2, 4, 7, 0),
147SOC_SINGLE("ALC Capture Target", WM8974_ALC2, 0, 15, 0),
148
149SOC_ENUM("ALC Capture Mode", wm8974_enum[13]),
150SOC_SINGLE("ALC Capture Decay", WM8974_ALC3, 4, 15, 0),
151SOC_SINGLE("ALC Capture Attack", WM8974_ALC3, 0, 15, 0),
152
153SOC_SINGLE("ALC Capture Noise Gate Switch", WM8974_NGATE, 3, 1, 0),
154SOC_SINGLE("ALC Capture Noise Gate Threshold", WM8974_NGATE, 0, 7, 0),
155
156SOC_SINGLE("Capture PGA ZC Switch", WM8974_INPPGA, 7, 1, 0),
Mark Browna5f8d2f2009-06-30 19:30:33 +0100157SOC_SINGLE_TLV("Capture PGA Volume", WM8974_INPPGA, 0, 63, 0, inpga_tlv),
Mark Brown0a1bf552009-05-23 11:18:41 +0100158
159SOC_SINGLE("Speaker Playback ZC Switch", WM8974_SPKVOL, 7, 1, 0),
160SOC_SINGLE("Speaker Playback Switch", WM8974_SPKVOL, 6, 1, 1),
Mark Brown8a123ee2009-06-30 21:10:34 +0100161SOC_SINGLE_TLV("Speaker Playback Volume", WM8974_SPKVOL, 0, 63, 0, spk_tlv),
162
163SOC_ENUM("Aux Mode", wm8974_auxmode),
Mark Brown0a1bf552009-05-23 11:18:41 +0100164
165SOC_SINGLE("Capture Boost(+20dB)", WM8974_ADCBOOST, 8, 1, 0),
Mark Brown8a123ee2009-06-30 21:10:34 +0100166SOC_SINGLE("Mono Playback Switch", WM8974_MONOMIX, 6, 1, 1),
Guennadi Liakhovetskib2c3e922010-01-29 15:31:06 +0100167
168/* DAC / ADC oversampling */
169SOC_SINGLE("DAC 128x Oversampling Switch", WM8974_DAC, 8, 1, 0),
170SOC_SINGLE("ADC 128x Oversampling Switch", WM8974_ADC, 8, 1, 0),
Mark Brown0a1bf552009-05-23 11:18:41 +0100171};
172
Mark Brown0a1bf552009-05-23 11:18:41 +0100173/* Speaker Output Mixer */
174static const struct snd_kcontrol_new wm8974_speaker_mixer_controls[] = {
175SOC_DAPM_SINGLE("Line Bypass Switch", WM8974_SPKMIX, 1, 1, 0),
176SOC_DAPM_SINGLE("Aux Playback Switch", WM8974_SPKMIX, 5, 1, 0),
Mark Brown759512f2010-04-23 17:39:23 +0100177SOC_DAPM_SINGLE("PCM Playback Switch", WM8974_SPKMIX, 0, 1, 0),
Mark Brown0a1bf552009-05-23 11:18:41 +0100178};
179
180/* Mono Output Mixer */
181static const struct snd_kcontrol_new wm8974_mono_mixer_controls[] = {
182SOC_DAPM_SINGLE("Line Bypass Switch", WM8974_MONOMIX, 1, 1, 0),
183SOC_DAPM_SINGLE("Aux Playback Switch", WM8974_MONOMIX, 2, 1, 0),
Mark Brown8a123ee2009-06-30 21:10:34 +0100184SOC_DAPM_SINGLE("PCM Playback Switch", WM8974_MONOMIX, 0, 1, 0),
185};
186
187/* Boost mixer */
188static const struct snd_kcontrol_new wm8974_boost_mixer[] = {
189SOC_DAPM_SINGLE("Aux Switch", WM8974_INPPGA, 6, 1, 0),
190};
191
192/* Input PGA */
193static const struct snd_kcontrol_new wm8974_inpga[] = {
194SOC_DAPM_SINGLE("Aux Switch", WM8974_INPUT, 2, 1, 0),
195SOC_DAPM_SINGLE("MicN Switch", WM8974_INPUT, 1, 1, 0),
196SOC_DAPM_SINGLE("MicP Switch", WM8974_INPUT, 0, 1, 0),
Mark Brown0a1bf552009-05-23 11:18:41 +0100197};
198
199/* AUX Input boost vol */
200static const struct snd_kcontrol_new wm8974_aux_boost_controls =
201SOC_DAPM_SINGLE("Aux Volume", WM8974_ADCBOOST, 0, 7, 0);
202
203/* Mic Input boost vol */
204static const struct snd_kcontrol_new wm8974_mic_boost_controls =
205SOC_DAPM_SINGLE("Mic Volume", WM8974_ADCBOOST, 4, 7, 0);
206
Mark Brown0a1bf552009-05-23 11:18:41 +0100207static const struct snd_soc_dapm_widget wm8974_dapm_widgets[] = {
208SND_SOC_DAPM_MIXER("Speaker Mixer", WM8974_POWER3, 2, 0,
209 &wm8974_speaker_mixer_controls[0],
210 ARRAY_SIZE(wm8974_speaker_mixer_controls)),
211SND_SOC_DAPM_MIXER("Mono Mixer", WM8974_POWER3, 3, 0,
212 &wm8974_mono_mixer_controls[0],
213 ARRAY_SIZE(wm8974_mono_mixer_controls)),
214SND_SOC_DAPM_DAC("DAC", "HiFi Playback", WM8974_POWER3, 0, 0),
Mark Brown8a123ee2009-06-30 21:10:34 +0100215SND_SOC_DAPM_ADC("ADC", "HiFi Capture", WM8974_POWER2, 0, 0),
Mark Brown0a1bf552009-05-23 11:18:41 +0100216SND_SOC_DAPM_PGA("Aux Input", WM8974_POWER1, 6, 0, NULL, 0),
217SND_SOC_DAPM_PGA("SpkN Out", WM8974_POWER3, 5, 0, NULL, 0),
218SND_SOC_DAPM_PGA("SpkP Out", WM8974_POWER3, 6, 0, NULL, 0),
219SND_SOC_DAPM_PGA("Mono Out", WM8974_POWER3, 7, 0, NULL, 0),
Mark Brown0a1bf552009-05-23 11:18:41 +0100220
Mark Brown8a123ee2009-06-30 21:10:34 +0100221SND_SOC_DAPM_MIXER("Input PGA", WM8974_POWER2, 2, 0, wm8974_inpga,
222 ARRAY_SIZE(wm8974_inpga)),
223SND_SOC_DAPM_MIXER("Boost Mixer", WM8974_POWER2, 4, 0,
224 wm8974_boost_mixer, ARRAY_SIZE(wm8974_boost_mixer)),
Mark Brown0a1bf552009-05-23 11:18:41 +0100225
Mark Brown48dd2312011-10-27 09:47:09 +0200226SND_SOC_DAPM_SUPPLY("Mic Bias", WM8974_POWER1, 4, 0, NULL, 0),
Mark Brown0a1bf552009-05-23 11:18:41 +0100227
228SND_SOC_DAPM_INPUT("MICN"),
229SND_SOC_DAPM_INPUT("MICP"),
230SND_SOC_DAPM_INPUT("AUX"),
231SND_SOC_DAPM_OUTPUT("MONOOUT"),
232SND_SOC_DAPM_OUTPUT("SPKOUTP"),
233SND_SOC_DAPM_OUTPUT("SPKOUTN"),
234};
235
Mark Browna2bd6912011-12-29 11:10:27 +0000236static const struct snd_soc_dapm_route wm8974_dapm_routes[] = {
Mark Brown0a1bf552009-05-23 11:18:41 +0100237 /* Mono output mixer */
238 {"Mono Mixer", "PCM Playback Switch", "DAC"},
239 {"Mono Mixer", "Aux Playback Switch", "Aux Input"},
240 {"Mono Mixer", "Line Bypass Switch", "Boost Mixer"},
241
242 /* Speaker output mixer */
243 {"Speaker Mixer", "PCM Playback Switch", "DAC"},
244 {"Speaker Mixer", "Aux Playback Switch", "Aux Input"},
245 {"Speaker Mixer", "Line Bypass Switch", "Boost Mixer"},
246
247 /* Outputs */
248 {"Mono Out", NULL, "Mono Mixer"},
249 {"MONOOUT", NULL, "Mono Out"},
250 {"SpkN Out", NULL, "Speaker Mixer"},
251 {"SpkP Out", NULL, "Speaker Mixer"},
252 {"SPKOUTN", NULL, "SpkN Out"},
253 {"SPKOUTP", NULL, "SpkP Out"},
254
255 /* Boost Mixer */
Mark Brown8a123ee2009-06-30 21:10:34 +0100256 {"ADC", NULL, "Boost Mixer"},
257 {"Boost Mixer", "Aux Switch", "Aux Input"},
258 {"Boost Mixer", NULL, "Input PGA"},
259 {"Boost Mixer", NULL, "MICP"},
260
261 /* Input PGA */
262 {"Input PGA", "Aux Switch", "Aux Input"},
263 {"Input PGA", "MicN Switch", "MICN"},
264 {"Input PGA", "MicP Switch", "MICP"},
Mark Brown0a1bf552009-05-23 11:18:41 +0100265
266 /* Inputs */
Mark Brown8a123ee2009-06-30 21:10:34 +0100267 {"Aux Input", NULL, "AUX"},
Mark Brown0a1bf552009-05-23 11:18:41 +0100268};
269
Mark Brown0a1bf552009-05-23 11:18:41 +0100270struct pll_ {
Mark Brownc36b2fc2009-09-30 14:31:38 +0100271 unsigned int pre_div:1;
Mark Brown0a1bf552009-05-23 11:18:41 +0100272 unsigned int n:4;
273 unsigned int k;
274};
275
Mark Brown91d0c3e2009-06-30 19:02:32 +0100276/* The size in bits of the pll divide multiplied by 10
277 * to allow rounding later */
278#define FIXED_PLL_SIZE ((1 << 24) * 10)
279
Mark Brownc36b2fc2009-09-30 14:31:38 +0100280static void pll_factors(struct pll_ *pll_div,
281 unsigned int target, unsigned int source)
Mark Brown91d0c3e2009-06-30 19:02:32 +0100282{
283 unsigned long long Kpart;
284 unsigned int K, Ndiv, Nmod;
285
Mark Brownc36b2fc2009-09-30 14:31:38 +0100286 /* There is a fixed divide by 4 in the output path */
287 target *= 4;
288
Mark Brown91d0c3e2009-06-30 19:02:32 +0100289 Ndiv = target / source;
290 if (Ndiv < 6) {
Mark Brownc36b2fc2009-09-30 14:31:38 +0100291 source /= 2;
292 pll_div->pre_div = 1;
Mark Brown91d0c3e2009-06-30 19:02:32 +0100293 Ndiv = target / source;
294 } else
Mark Brownc36b2fc2009-09-30 14:31:38 +0100295 pll_div->pre_div = 0;
Mark Brown91d0c3e2009-06-30 19:02:32 +0100296
297 if ((Ndiv < 6) || (Ndiv > 12))
298 printk(KERN_WARNING
Mark Brown8b83a192009-06-30 19:37:02 +0100299 "WM8974 N value %u outwith recommended range!\n",
Mark Brown91d0c3e2009-06-30 19:02:32 +0100300 Ndiv);
301
Mark Brownc36b2fc2009-09-30 14:31:38 +0100302 pll_div->n = Ndiv;
Mark Brown91d0c3e2009-06-30 19:02:32 +0100303 Nmod = target % source;
304 Kpart = FIXED_PLL_SIZE * (long long)Nmod;
305
306 do_div(Kpart, source);
307
308 K = Kpart & 0xFFFFFFFF;
309
310 /* Check if we need to round */
311 if ((K % 10) >= 5)
312 K += 5;
313
314 /* Move down to proper range now rounding is done */
315 K /= 10;
316
Mark Brownc36b2fc2009-09-30 14:31:38 +0100317 pll_div->k = K;
Mark Brown91d0c3e2009-06-30 19:02:32 +0100318}
Mark Brown0a1bf552009-05-23 11:18:41 +0100319
Mark Brown85488032009-09-05 18:52:16 +0100320static int wm8974_set_dai_pll(struct snd_soc_dai *codec_dai, int pll_id,
321 int source, unsigned int freq_in, unsigned int freq_out)
Mark Brown0a1bf552009-05-23 11:18:41 +0100322{
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000323 struct snd_soc_component *component = codec_dai->component;
Mark Brownc36b2fc2009-09-30 14:31:38 +0100324 struct pll_ pll_div;
Mark Brown0a1bf552009-05-23 11:18:41 +0100325 u16 reg;
326
Mark Brown1a55b3f2009-05-23 11:31:40 +0100327 if (freq_in == 0 || freq_out == 0) {
Mark Brown91d0c3e2009-06-30 19:02:32 +0100328 /* Clock CODEC directly from MCLK */
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000329 reg = snd_soc_component_read32(component, WM8974_CLOCK);
330 snd_soc_component_write(component, WM8974_CLOCK, reg & 0x0ff);
Mark Brown91d0c3e2009-06-30 19:02:32 +0100331
332 /* Turn off PLL */
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000333 reg = snd_soc_component_read32(component, WM8974_POWER1);
334 snd_soc_component_write(component, WM8974_POWER1, reg & 0x1df);
Mark Brown0a1bf552009-05-23 11:18:41 +0100335 return 0;
336 }
337
Mark Brownc36b2fc2009-09-30 14:31:38 +0100338 pll_factors(&pll_div, freq_out, freq_in);
Mark Brown1a55b3f2009-05-23 11:31:40 +0100339
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000340 snd_soc_component_write(component, WM8974_PLLN, (pll_div.pre_div << 4) | pll_div.n);
341 snd_soc_component_write(component, WM8974_PLLK1, pll_div.k >> 18);
342 snd_soc_component_write(component, WM8974_PLLK2, (pll_div.k >> 9) & 0x1ff);
343 snd_soc_component_write(component, WM8974_PLLK3, pll_div.k & 0x1ff);
344 reg = snd_soc_component_read32(component, WM8974_POWER1);
345 snd_soc_component_write(component, WM8974_POWER1, reg | 0x020);
Mark Brown91d0c3e2009-06-30 19:02:32 +0100346
347 /* Run CODEC from PLL instead of MCLK */
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000348 reg = snd_soc_component_read32(component, WM8974_CLOCK);
349 snd_soc_component_write(component, WM8974_CLOCK, reg | 0x100);
Mark Brown91d0c3e2009-06-30 19:02:32 +0100350
351 return 0;
Mark Brown0a1bf552009-05-23 11:18:41 +0100352}
353
354/*
355 * Configure WM8974 clock dividers.
356 */
357static int wm8974_set_dai_clkdiv(struct snd_soc_dai *codec_dai,
358 int div_id, int div)
359{
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000360 struct snd_soc_component *component = codec_dai->component;
Mark Brown0a1bf552009-05-23 11:18:41 +0100361 u16 reg;
362
363 switch (div_id) {
364 case WM8974_OPCLKDIV:
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000365 reg = snd_soc_component_read32(component, WM8974_GPIO) & 0x1cf;
366 snd_soc_component_write(component, WM8974_GPIO, reg | div);
Mark Brown0a1bf552009-05-23 11:18:41 +0100367 break;
368 case WM8974_MCLKDIV:
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000369 reg = snd_soc_component_read32(component, WM8974_CLOCK) & 0x11f;
370 snd_soc_component_write(component, WM8974_CLOCK, reg | div);
Mark Brown0a1bf552009-05-23 11:18:41 +0100371 break;
Mark Brown0a1bf552009-05-23 11:18:41 +0100372 case WM8974_BCLKDIV:
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000373 reg = snd_soc_component_read32(component, WM8974_CLOCK) & 0x1e3;
374 snd_soc_component_write(component, WM8974_CLOCK, reg | div);
Mark Brown0a1bf552009-05-23 11:18:41 +0100375 break;
376 default:
377 return -EINVAL;
378 }
379
380 return 0;
381}
382
Mans Rullgard51b2bb32016-01-25 12:36:43 +0000383static unsigned int wm8974_get_mclkdiv(unsigned int f_in, unsigned int f_out,
384 int *mclkdiv)
385{
386 unsigned int ratio = 2 * f_in / f_out;
387
388 if (ratio <= 2) {
389 *mclkdiv = WM8974_MCLKDIV_1;
390 ratio = 2;
391 } else if (ratio == 3) {
392 *mclkdiv = WM8974_MCLKDIV_1_5;
393 } else if (ratio == 4) {
394 *mclkdiv = WM8974_MCLKDIV_2;
395 } else if (ratio <= 6) {
396 *mclkdiv = WM8974_MCLKDIV_3;
397 ratio = 6;
398 } else if (ratio <= 8) {
399 *mclkdiv = WM8974_MCLKDIV_4;
400 ratio = 8;
401 } else if (ratio <= 12) {
402 *mclkdiv = WM8974_MCLKDIV_6;
403 ratio = 12;
404 } else if (ratio <= 16) {
405 *mclkdiv = WM8974_MCLKDIV_8;
406 ratio = 16;
407 } else {
408 *mclkdiv = WM8974_MCLKDIV_12;
409 ratio = 24;
410 }
411
412 return f_out * ratio / 2;
413}
414
415static int wm8974_update_clocks(struct snd_soc_dai *dai)
416{
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000417 struct snd_soc_component *component = dai->component;
418 struct wm8974_priv *priv = snd_soc_component_get_drvdata(component);
Mans Rullgard51b2bb32016-01-25 12:36:43 +0000419 unsigned int fs256;
420 unsigned int fpll = 0;
421 unsigned int f;
422 int mclkdiv;
423
424 if (!priv->mclk || !priv->fs)
425 return 0;
426
427 fs256 = 256 * priv->fs;
428
429 f = wm8974_get_mclkdiv(priv->mclk, fs256, &mclkdiv);
430
431 if (f != priv->mclk) {
432 /* The PLL performs best around 90MHz */
433 fpll = wm8974_get_mclkdiv(22500000, fs256, &mclkdiv);
434 }
435
436 wm8974_set_dai_pll(dai, 0, 0, priv->mclk, fpll);
437 wm8974_set_dai_clkdiv(dai, WM8974_MCLKDIV, mclkdiv);
438
439 return 0;
440}
441
442static int wm8974_set_dai_sysclk(struct snd_soc_dai *dai, int clk_id,
443 unsigned int freq, int dir)
444{
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000445 struct snd_soc_component *component = dai->component;
446 struct wm8974_priv *priv = snd_soc_component_get_drvdata(component);
Mans Rullgard51b2bb32016-01-25 12:36:43 +0000447
448 if (dir != SND_SOC_CLOCK_IN)
449 return -EINVAL;
450
451 priv->mclk = freq;
452
453 return wm8974_update_clocks(dai);
454}
455
Mark Brown0a1bf552009-05-23 11:18:41 +0100456static int wm8974_set_dai_fmt(struct snd_soc_dai *codec_dai,
457 unsigned int fmt)
458{
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000459 struct snd_soc_component *component = codec_dai->component;
Mark Brown0a1bf552009-05-23 11:18:41 +0100460 u16 iface = 0;
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000461 u16 clk = snd_soc_component_read32(component, WM8974_CLOCK) & 0x1fe;
Mark Brown0a1bf552009-05-23 11:18:41 +0100462
463 /* set master/slave audio interface */
464 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
465 case SND_SOC_DAIFMT_CBM_CFM:
466 clk |= 0x0001;
467 break;
468 case SND_SOC_DAIFMT_CBS_CFS:
469 break;
470 default:
471 return -EINVAL;
472 }
473
474 /* interface format */
475 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
476 case SND_SOC_DAIFMT_I2S:
477 iface |= 0x0010;
478 break;
479 case SND_SOC_DAIFMT_RIGHT_J:
480 break;
481 case SND_SOC_DAIFMT_LEFT_J:
482 iface |= 0x0008;
483 break;
484 case SND_SOC_DAIFMT_DSP_A:
485 iface |= 0x00018;
486 break;
487 default:
488 return -EINVAL;
489 }
490
491 /* clock inversion */
492 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
493 case SND_SOC_DAIFMT_NB_NF:
494 break;
495 case SND_SOC_DAIFMT_IB_IF:
496 iface |= 0x0180;
497 break;
498 case SND_SOC_DAIFMT_IB_NF:
499 iface |= 0x0100;
500 break;
501 case SND_SOC_DAIFMT_NB_IF:
502 iface |= 0x0080;
503 break;
504 default:
505 return -EINVAL;
506 }
507
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000508 snd_soc_component_write(component, WM8974_IFACE, iface);
509 snd_soc_component_write(component, WM8974_CLOCK, clk);
Mark Brown0a1bf552009-05-23 11:18:41 +0100510 return 0;
511}
512
513static int wm8974_pcm_hw_params(struct snd_pcm_substream *substream,
514 struct snd_pcm_hw_params *params,
515 struct snd_soc_dai *dai)
516{
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000517 struct snd_soc_component *component = dai->component;
518 struct wm8974_priv *priv = snd_soc_component_get_drvdata(component);
519 u16 iface = snd_soc_component_read32(component, WM8974_IFACE) & 0x19f;
520 u16 adn = snd_soc_component_read32(component, WM8974_ADD) & 0x1f1;
Mans Rullgard51b2bb32016-01-25 12:36:43 +0000521 int err;
522
523 priv->fs = params_rate(params);
524 err = wm8974_update_clocks(dai);
525 if (err)
526 return err;
Mark Brown0a1bf552009-05-23 11:18:41 +0100527
528 /* bit size */
Mark Brown6afdc9a2014-07-31 12:53:50 +0100529 switch (params_width(params)) {
530 case 16:
Mark Brown0a1bf552009-05-23 11:18:41 +0100531 break;
Mark Brown6afdc9a2014-07-31 12:53:50 +0100532 case 20:
Mark Brown0a1bf552009-05-23 11:18:41 +0100533 iface |= 0x0020;
534 break;
Mark Brown6afdc9a2014-07-31 12:53:50 +0100535 case 24:
Mark Brown0a1bf552009-05-23 11:18:41 +0100536 iface |= 0x0040;
537 break;
Mark Brown6afdc9a2014-07-31 12:53:50 +0100538 case 32:
Mark Brown0a1bf552009-05-23 11:18:41 +0100539 iface |= 0x0060;
540 break;
541 }
542
543 /* filter coefficient */
544 switch (params_rate(params)) {
Guennadi Liakhovetskib3172f22009-12-24 01:13:51 +0100545 case 8000:
Mark Brown0a1bf552009-05-23 11:18:41 +0100546 adn |= 0x5 << 1;
547 break;
Guennadi Liakhovetskib3172f22009-12-24 01:13:51 +0100548 case 11025:
Mark Brown0a1bf552009-05-23 11:18:41 +0100549 adn |= 0x4 << 1;
550 break;
Guennadi Liakhovetskib3172f22009-12-24 01:13:51 +0100551 case 16000:
Mark Brown0a1bf552009-05-23 11:18:41 +0100552 adn |= 0x3 << 1;
553 break;
Guennadi Liakhovetskib3172f22009-12-24 01:13:51 +0100554 case 22050:
Mark Brown0a1bf552009-05-23 11:18:41 +0100555 adn |= 0x2 << 1;
556 break;
Guennadi Liakhovetskib3172f22009-12-24 01:13:51 +0100557 case 32000:
Mark Brown0a1bf552009-05-23 11:18:41 +0100558 adn |= 0x1 << 1;
559 break;
Guennadi Liakhovetskib3172f22009-12-24 01:13:51 +0100560 case 44100:
561 case 48000:
Mark Brown0a1bf552009-05-23 11:18:41 +0100562 break;
563 }
564
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000565 snd_soc_component_write(component, WM8974_IFACE, iface);
566 snd_soc_component_write(component, WM8974_ADD, adn);
Mark Brown0a1bf552009-05-23 11:18:41 +0100567 return 0;
568}
569
570static int wm8974_mute(struct snd_soc_dai *dai, int mute)
571{
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000572 struct snd_soc_component *component = dai->component;
573 u16 mute_reg = snd_soc_component_read32(component, WM8974_DAC) & 0xffbf;
Mark Brown0a1bf552009-05-23 11:18:41 +0100574
Mark Brown1a55b3f2009-05-23 11:31:40 +0100575 if (mute)
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000576 snd_soc_component_write(component, WM8974_DAC, mute_reg | 0x40);
Mark Brown0a1bf552009-05-23 11:18:41 +0100577 else
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000578 snd_soc_component_write(component, WM8974_DAC, mute_reg);
Mark Brown0a1bf552009-05-23 11:18:41 +0100579 return 0;
580}
581
582/* liam need to make this lower power with dapm */
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000583static int wm8974_set_bias_level(struct snd_soc_component *component,
Mark Brown0a1bf552009-05-23 11:18:41 +0100584 enum snd_soc_bias_level level)
585{
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000586 u16 power1 = snd_soc_component_read32(component, WM8974_POWER1) & ~0x3;
Mark Browndf1ef7a2009-06-30 19:01:09 +0100587
Mark Brown0a1bf552009-05-23 11:18:41 +0100588 switch (level) {
589 case SND_SOC_BIAS_ON:
Mark Brown0a1bf552009-05-23 11:18:41 +0100590 case SND_SOC_BIAS_PREPARE:
Mark Browndf1ef7a2009-06-30 19:01:09 +0100591 power1 |= 0x1; /* VMID 50k */
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000592 snd_soc_component_write(component, WM8974_POWER1, power1);
Mark Brown0a1bf552009-05-23 11:18:41 +0100593 break;
Mark Browndf1ef7a2009-06-30 19:01:09 +0100594
Mark Brown0a1bf552009-05-23 11:18:41 +0100595 case SND_SOC_BIAS_STANDBY:
Mark Browndf1ef7a2009-06-30 19:01:09 +0100596 power1 |= WM8974_POWER1_BIASEN | WM8974_POWER1_BUFIOEN;
597
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000598 if (snd_soc_component_get_bias_level(component) == SND_SOC_BIAS_OFF) {
599 regcache_sync(dev_get_regmap(component->dev, NULL));
Axel Lin0bad3d82011-10-07 21:52:42 +0800600
Mark Browndf1ef7a2009-06-30 19:01:09 +0100601 /* Initial cap charge at VMID 5k */
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000602 snd_soc_component_write(component, WM8974_POWER1, power1 | 0x3);
Mark Browndf1ef7a2009-06-30 19:01:09 +0100603 mdelay(100);
604 }
605
606 power1 |= 0x2; /* VMID 500k */
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000607 snd_soc_component_write(component, WM8974_POWER1, power1);
Mark Brown0a1bf552009-05-23 11:18:41 +0100608 break;
Mark Browndf1ef7a2009-06-30 19:01:09 +0100609
Mark Brown0a1bf552009-05-23 11:18:41 +0100610 case SND_SOC_BIAS_OFF:
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000611 snd_soc_component_write(component, WM8974_POWER1, 0);
612 snd_soc_component_write(component, WM8974_POWER2, 0);
613 snd_soc_component_write(component, WM8974_POWER3, 0);
Mark Brown0a1bf552009-05-23 11:18:41 +0100614 break;
615 }
Mark Browndf1ef7a2009-06-30 19:01:09 +0100616
Mark Brown0a1bf552009-05-23 11:18:41 +0100617 return 0;
618}
619
Mark Brown1a55b3f2009-05-23 11:31:40 +0100620#define WM8974_RATES (SNDRV_PCM_RATE_8000_48000)
Mark Brown0a1bf552009-05-23 11:18:41 +0100621
622#define WM8974_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
623 SNDRV_PCM_FMTBIT_S24_LE)
624
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100625static const struct snd_soc_dai_ops wm8974_ops = {
Mark Brown0a1bf552009-05-23 11:18:41 +0100626 .hw_params = wm8974_pcm_hw_params,
627 .digital_mute = wm8974_mute,
628 .set_fmt = wm8974_set_dai_fmt,
629 .set_clkdiv = wm8974_set_dai_clkdiv,
630 .set_pll = wm8974_set_dai_pll,
Mans Rullgard51b2bb32016-01-25 12:36:43 +0000631 .set_sysclk = wm8974_set_dai_sysclk,
Mark Brown0a1bf552009-05-23 11:18:41 +0100632};
633
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000634static struct snd_soc_dai_driver wm8974_dai = {
635 .name = "wm8974-hifi",
Mark Brown0a1bf552009-05-23 11:18:41 +0100636 .playback = {
637 .stream_name = "Playback",
638 .channels_min = 1,
Mark Brown33d81af2009-06-30 19:01:52 +0100639 .channels_max = 2, /* Only 1 channel of data */
Mark Brown0a1bf552009-05-23 11:18:41 +0100640 .rates = WM8974_RATES,
641 .formats = WM8974_FORMATS,},
642 .capture = {
643 .stream_name = "Capture",
644 .channels_min = 1,
Mark Brown33d81af2009-06-30 19:01:52 +0100645 .channels_max = 2, /* Only 1 channel of data */
Mark Brown0a1bf552009-05-23 11:18:41 +0100646 .rates = WM8974_RATES,
647 .formats = WM8974_FORMATS,},
648 .ops = &wm8974_ops,
Mark Browncb11d392009-06-30 19:36:39 +0100649 .symmetric_rates = 1,
Mark Brown0a1bf552009-05-23 11:18:41 +0100650};
Mark Brown0a1bf552009-05-23 11:18:41 +0100651
Mark Browne40e0b52013-11-08 14:01:39 +0000652static const struct regmap_config wm8974_regmap = {
653 .reg_bits = 7,
654 .val_bits = 9,
655
656 .max_register = WM8974_MONOMIX,
657 .reg_defaults = wm8974_reg_defaults,
658 .num_reg_defaults = ARRAY_SIZE(wm8974_reg_defaults),
Mans Rullgard1ea5998a2015-12-11 11:27:08 +0000659 .cache_type = REGCACHE_FLAT,
Mark Browne40e0b52013-11-08 14:01:39 +0000660};
661
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000662static int wm8974_probe(struct snd_soc_component *component)
Mark Brown0a1bf552009-05-23 11:18:41 +0100663{
Mark Brown0a1bf552009-05-23 11:18:41 +0100664 int ret = 0;
665
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000666 ret = wm8974_reset(component);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000667 if (ret < 0) {
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000668 dev_err(component->dev, "Failed to issue reset\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000669 return ret;
670 }
671
Mark Brown0a1bf552009-05-23 11:18:41 +0100672 return 0;
673}
674
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000675static const struct snd_soc_component_driver soc_component_dev_wm8974 = {
676 .probe = wm8974_probe,
677 .set_bias_level = wm8974_set_bias_level,
678 .controls = wm8974_snd_controls,
679 .num_controls = ARRAY_SIZE(wm8974_snd_controls),
680 .dapm_widgets = wm8974_dapm_widgets,
681 .num_dapm_widgets = ARRAY_SIZE(wm8974_dapm_widgets),
682 .dapm_routes = wm8974_dapm_routes,
683 .num_dapm_routes = ARRAY_SIZE(wm8974_dapm_routes),
684 .suspend_bias_off = 1,
685 .idle_bias_on = 1,
686 .use_pmdown_time = 1,
687 .endianness = 1,
688 .non_legacy_dai_naming = 1,
Mark Brown0a1bf552009-05-23 11:18:41 +0100689};
Mark Brown0a1bf552009-05-23 11:18:41 +0100690
Bill Pemberton7a79e942012-12-07 09:26:37 -0500691static int wm8974_i2c_probe(struct i2c_client *i2c,
692 const struct i2c_device_id *id)
Mark Brown4fcbbb62009-05-23 12:27:03 +0100693{
Mans Rullgard51b2bb32016-01-25 12:36:43 +0000694 struct wm8974_priv *priv;
Mark Browne40e0b52013-11-08 14:01:39 +0000695 struct regmap *regmap;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000696 int ret;
Mark Brown4fcbbb62009-05-23 12:27:03 +0100697
Mans Rullgard51b2bb32016-01-25 12:36:43 +0000698 priv = devm_kzalloc(&i2c->dev, sizeof(*priv), GFP_KERNEL);
699 if (!priv)
700 return -ENOMEM;
701
702 i2c_set_clientdata(i2c, priv);
703
Mark Browne40e0b52013-11-08 14:01:39 +0000704 regmap = devm_regmap_init_i2c(i2c, &wm8974_regmap);
705 if (IS_ERR(regmap))
706 return PTR_ERR(regmap);
707
Kuninori Morimoto3e32a3f2018-01-29 03:06:52 +0000708 ret = devm_snd_soc_register_component(&i2c->dev,
709 &soc_component_dev_wm8974, &wm8974_dai, 1);
Mark Brownc2562a82011-12-29 11:11:25 +0000710
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000711 return ret;
Mark Brown4fcbbb62009-05-23 12:27:03 +0100712}
713
Mark Brown4fcbbb62009-05-23 12:27:03 +0100714static const struct i2c_device_id wm8974_i2c_id[] = {
715 { "wm8974", 0 },
716 { }
717};
718MODULE_DEVICE_TABLE(i2c, wm8974_i2c_id);
719
Mans Rullgard2005bd82015-12-16 13:02:55 +0000720static const struct of_device_id wm8974_of_match[] = {
721 { .compatible = "wlf,wm8974", },
722 { }
723};
724MODULE_DEVICE_TABLE(of, wm8974_of_match);
725
Mark Brown4fcbbb62009-05-23 12:27:03 +0100726static struct i2c_driver wm8974_i2c_driver = {
727 .driver = {
Mark Brown091edcc2011-12-02 22:08:49 +0000728 .name = "wm8974",
Mans Rullgard2005bd82015-12-16 13:02:55 +0000729 .of_match_table = wm8974_of_match,
Mark Brown4fcbbb62009-05-23 12:27:03 +0100730 },
731 .probe = wm8974_i2c_probe,
Mark Brown4fcbbb62009-05-23 12:27:03 +0100732 .id_table = wm8974_i2c_id,
733};
734
Sachin Kamat2be59412012-08-06 17:25:59 +0530735module_i2c_driver(wm8974_i2c_driver);
Mark Brown0a1bf552009-05-23 11:18:41 +0100736
737MODULE_DESCRIPTION("ASoC WM8974 driver");
738MODULE_AUTHOR("Liam Girdwood");
739MODULE_LICENSE("GPL");