blob: 763d392f12a1c359bb065b7128c9bf0c46587afb [file] [log] [blame]
Cliff Caib7138212008-09-05 18:09:57 +08001/*
2 * File: sound/soc/codecs/ssm2602.c
3 * Author: Cliff Cai <Cliff.Cai@analog.com>
4 *
5 * Created: Tue June 06 2008
6 * Description: Driver for ssm2602 sound chip
7 *
8 * Modified:
9 * Copyright 2008 Analog Devices Inc.
10 *
11 * Bugs: Enter bugs at http://blackfin.uclinux.org/
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, see the file COPYING, or write
25 * to the Free Software Foundation, Inc.,
26 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27 */
28
29#include <linux/module.h>
30#include <linux/moduleparam.h>
31#include <linux/init.h>
32#include <linux/delay.h>
33#include <linux/pm.h>
34#include <linux/i2c.h>
Mike Frysingerb39e2852011-04-07 02:05:11 -040035#include <linux/spi/spi.h>
Cliff Caib7138212008-09-05 18:09:57 +080036#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Cliff Caib7138212008-09-05 18:09:57 +080038#include <sound/core.h>
39#include <sound/pcm.h>
40#include <sound/pcm_params.h>
41#include <sound/soc.h>
Cliff Caib7138212008-09-05 18:09:57 +080042#include <sound/initval.h>
43
44#include "ssm2602.h"
45
Cliff Caib7138212008-09-05 18:09:57 +080046#define SSM2602_VERSION "0.1"
47
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -070048enum ssm2602_type {
49 SSM2602,
50 SSM2604,
51};
52
Cliff Caib7138212008-09-05 18:09:57 +080053/* codec private data */
54struct ssm2602_priv {
55 unsigned int sysclk;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000056 enum snd_soc_control_type control_type;
Cliff Caib7138212008-09-05 18:09:57 +080057 struct snd_pcm_substream *master_substream;
58 struct snd_pcm_substream *slave_substream;
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -070059
60 enum ssm2602_type type;
Cliff Caib7138212008-09-05 18:09:57 +080061};
62
63/*
64 * ssm2602 register cache
65 * We can't read the ssm2602 register space when we are
66 * using 2 wire for device control, so we cache them instead.
67 * There is no point in caching the reset register
68 */
69static const u16 ssm2602_reg[SSM2602_CACHEREGNUM] = {
Lars-Peter Clausen7164bdb2011-05-08 09:24:41 -070070 0x0097, 0x0097, 0x0079, 0x0079,
71 0x000a, 0x0008, 0x009f, 0x000a,
Cliff Caib7138212008-09-05 18:09:57 +080072 0x0000, 0x0000
73};
74
Cliff Cai93547e82011-03-27 17:22:57 -040075#define ssm2602_reset(c) snd_soc_write(c, SSM2602_RESET, 0)
Cliff Caib7138212008-09-05 18:09:57 +080076
77/*Appending several "None"s just for OSS mixer use*/
78static const char *ssm2602_input_select[] = {
79 "Line", "Mic", "None", "None", "None",
80 "None", "None", "None",
81};
82
83static const char *ssm2602_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"};
84
85static const struct soc_enum ssm2602_enum[] = {
86 SOC_ENUM_SINGLE(SSM2602_APANA, 2, 2, ssm2602_input_select),
87 SOC_ENUM_SINGLE(SSM2602_APDIGI, 1, 4, ssm2602_deemph),
88};
89
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -070090static const struct snd_kcontrol_new ssm260x_snd_controls[] = {
Cliff Caib7138212008-09-05 18:09:57 +080091SOC_DOUBLE_R("Capture Volume", SSM2602_LINVOL, SSM2602_RINVOL, 0, 31, 0),
92SOC_DOUBLE_R("Capture Switch", SSM2602_LINVOL, SSM2602_RINVOL, 7, 1, 1),
93
Cliff Caib7138212008-09-05 18:09:57 +080094SOC_SINGLE("ADC High Pass Filter Switch", SSM2602_APDIGI, 0, 1, 1),
95SOC_SINGLE("Store DC Offset Switch", SSM2602_APDIGI, 4, 1, 0),
96
Cliff Caib7138212008-09-05 18:09:57 +080097SOC_ENUM("Playback De-emphasis", ssm2602_enum[1]),
98};
99
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700100static const struct snd_kcontrol_new ssm2602_snd_controls[] = {
101SOC_DOUBLE_R("Master Playback Volume", SSM2602_LOUT1V, SSM2602_ROUT1V,
102 0, 127, 0),
103SOC_DOUBLE_R("Master Playback ZC Switch", SSM2602_LOUT1V, SSM2602_ROUT1V,
104 7, 1, 0),
105
106SOC_SINGLE("Sidetone Playback Volume", SSM2602_APANA, 6, 3, 1),
107
108SOC_SINGLE("Mic Boost (+20dB)", SSM2602_APANA, 0, 1, 0),
109SOC_SINGLE("Mic Boost2 (+20dB)", SSM2602_APANA, 8, 1, 0),
110SOC_SINGLE("Mic Switch", SSM2602_APANA, 1, 1, 1),
111};
112
Cliff Caib7138212008-09-05 18:09:57 +0800113/* Output Mixer */
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700114static const struct snd_kcontrol_new ssm260x_output_mixer_controls[] = {
Cliff Caib7138212008-09-05 18:09:57 +0800115SOC_DAPM_SINGLE("Line Bypass Switch", SSM2602_APANA, 3, 1, 0),
Cliff Caib7138212008-09-05 18:09:57 +0800116SOC_DAPM_SINGLE("HiFi Playback Switch", SSM2602_APANA, 4, 1, 0),
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700117SOC_DAPM_SINGLE("Mic Sidetone Switch", SSM2602_APANA, 5, 1, 0),
Cliff Caib7138212008-09-05 18:09:57 +0800118};
119
120/* Input mux */
121static const struct snd_kcontrol_new ssm2602_input_mux_controls =
122SOC_DAPM_ENUM("Input Select", ssm2602_enum[0]);
123
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700124static const struct snd_soc_dapm_widget ssm260x_dapm_widgets[] = {
Cliff Caib7138212008-09-05 18:09:57 +0800125SND_SOC_DAPM_DAC("DAC", "HiFi Playback", SSM2602_PWR, 3, 1),
Cliff Caib7138212008-09-05 18:09:57 +0800126SND_SOC_DAPM_ADC("ADC", "HiFi Capture", SSM2602_PWR, 2, 1),
Cliff Caib7138212008-09-05 18:09:57 +0800127SND_SOC_DAPM_PGA("Line Input", SSM2602_PWR, 0, 1, NULL, 0),
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700128
Lars-Peter Clausen2a438012011-05-08 09:24:45 -0700129SND_SOC_DAPM_SUPPLY("Digital Core Power", SSM2602_ACTIVE, 0, 0, 0, 0),
130
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700131SND_SOC_DAPM_OUTPUT("LOUT"),
132SND_SOC_DAPM_OUTPUT("ROUT"),
Cliff Caib7138212008-09-05 18:09:57 +0800133SND_SOC_DAPM_INPUT("RLINEIN"),
134SND_SOC_DAPM_INPUT("LLINEIN"),
135};
136
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700137static const struct snd_soc_dapm_widget ssm2602_dapm_widgets[] = {
138SND_SOC_DAPM_MIXER("Output Mixer", SSM2602_PWR, 4, 1,
139 ssm260x_output_mixer_controls,
140 ARRAY_SIZE(ssm260x_output_mixer_controls)),
141
142SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM, 0, 0, &ssm2602_input_mux_controls),
143SND_SOC_DAPM_MICBIAS("Mic Bias", SSM2602_PWR, 1, 1),
144
145SND_SOC_DAPM_OUTPUT("LHPOUT"),
146SND_SOC_DAPM_OUTPUT("RHPOUT"),
147SND_SOC_DAPM_INPUT("MICIN"),
148};
149
150static const struct snd_soc_dapm_widget ssm2604_dapm_widgets[] = {
151SND_SOC_DAPM_MIXER("Output Mixer", SND_SOC_NOPM, 0, 0,
152 ssm260x_output_mixer_controls,
153 ARRAY_SIZE(ssm260x_output_mixer_controls) - 1), /* Last element is the mic */
154};
155
156static const struct snd_soc_dapm_route ssm260x_routes[] = {
Lars-Peter Clausen2a438012011-05-08 09:24:45 -0700157 {"DAC", NULL, "Digital Core Power"},
158 {"ADC", NULL, "Digital Core Power"},
159
Cliff Caib7138212008-09-05 18:09:57 +0800160 {"Output Mixer", "Line Bypass Switch", "Line Input"},
161 {"Output Mixer", "HiFi Playback Switch", "DAC"},
Cliff Caib7138212008-09-05 18:09:57 +0800162
Cliff Caib7138212008-09-05 18:09:57 +0800163 {"ROUT", NULL, "Output Mixer"},
Cliff Caib7138212008-09-05 18:09:57 +0800164 {"LOUT", NULL, "Output Mixer"},
165
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700166 {"Line Input", NULL, "LLINEIN"},
167 {"Line Input", NULL, "RLINEIN"},
168};
169
170static const struct snd_soc_dapm_route ssm2602_routes[] = {
171 {"Output Mixer", "Mic Sidetone Switch", "Mic Bias"},
172
173 {"RHPOUT", NULL, "Output Mixer"},
174 {"LHPOUT", NULL, "Output Mixer"},
175
Cliff Caib7138212008-09-05 18:09:57 +0800176 {"Input Mux", "Line", "Line Input"},
177 {"Input Mux", "Mic", "Mic Bias"},
178 {"ADC", NULL, "Input Mux"},
179
Cliff Caib7138212008-09-05 18:09:57 +0800180 {"Mic Bias", NULL, "MICIN"},
181};
182
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700183static const struct snd_soc_dapm_route ssm2604_routes[] = {
184 {"ADC", NULL, "Line Input"},
185};
Cliff Caib7138212008-09-05 18:09:57 +0800186
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200187struct ssm2602_coeff {
Cliff Caib7138212008-09-05 18:09:57 +0800188 u32 mclk;
189 u32 rate;
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200190 u8 srate;
Cliff Caib7138212008-09-05 18:09:57 +0800191};
192
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200193#define SSM2602_COEFF_SRATE(sr, bosr, usb) (((sr) << 2) | ((bosr) << 1) | (usb))
194
195/* codec mclk clock coefficients */
196static const struct ssm2602_coeff ssm2602_coeff_table[] = {
Cliff Caib7138212008-09-05 18:09:57 +0800197 /* 48k */
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200198 {12288000, 48000, SSM2602_COEFF_SRATE(0x0, 0x0, 0x0)},
199 {18432000, 48000, SSM2602_COEFF_SRATE(0x0, 0x1, 0x0)},
200 {12000000, 48000, SSM2602_COEFF_SRATE(0x0, 0x0, 0x1)},
Cliff Caib7138212008-09-05 18:09:57 +0800201
202 /* 32k */
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200203 {12288000, 32000, SSM2602_COEFF_SRATE(0x6, 0x0, 0x0)},
204 {18432000, 32000, SSM2602_COEFF_SRATE(0x6, 0x1, 0x0)},
205 {12000000, 32000, SSM2602_COEFF_SRATE(0x6, 0x0, 0x1)},
Cliff Caib7138212008-09-05 18:09:57 +0800206
207 /* 8k */
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200208 {12288000, 8000, SSM2602_COEFF_SRATE(0x3, 0x0, 0x0)},
209 {18432000, 8000, SSM2602_COEFF_SRATE(0x3, 0x1, 0x0)},
210 {11289600, 8000, SSM2602_COEFF_SRATE(0xb, 0x0, 0x0)},
211 {16934400, 8000, SSM2602_COEFF_SRATE(0xb, 0x1, 0x0)},
212 {12000000, 8000, SSM2602_COEFF_SRATE(0x3, 0x0, 0x1)},
Cliff Caib7138212008-09-05 18:09:57 +0800213
214 /* 96k */
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200215 {12288000, 96000, SSM2602_COEFF_SRATE(0x7, 0x0, 0x0)},
216 {18432000, 96000, SSM2602_COEFF_SRATE(0x7, 0x1, 0x0)},
217 {12000000, 96000, SSM2602_COEFF_SRATE(0x7, 0x0, 0x1)},
Cliff Caib7138212008-09-05 18:09:57 +0800218
219 /* 44.1k */
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200220 {11289600, 44100, SSM2602_COEFF_SRATE(0x8, 0x0, 0x0)},
221 {16934400, 44100, SSM2602_COEFF_SRATE(0x8, 0x1, 0x0)},
222 {12000000, 44100, SSM2602_COEFF_SRATE(0x8, 0x1, 0x1)},
Cliff Caib7138212008-09-05 18:09:57 +0800223
224 /* 88.2k */
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200225 {11289600, 88200, SSM2602_COEFF_SRATE(0xf, 0x0, 0x0)},
226 {16934400, 88200, SSM2602_COEFF_SRATE(0xf, 0x1, 0x0)},
227 {12000000, 88200, SSM2602_COEFF_SRATE(0xf, 0x1, 0x1)},
Cliff Caib7138212008-09-05 18:09:57 +0800228};
229
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200230static inline int ssm2602_get_coeff(int mclk, int rate)
Cliff Caib7138212008-09-05 18:09:57 +0800231{
232 int i;
233
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200234 for (i = 0; i < ARRAY_SIZE(ssm2602_coeff_table); i++) {
235 if (ssm2602_coeff_table[i].rate == rate &&
236 ssm2602_coeff_table[i].mclk == mclk)
237 return ssm2602_coeff_table[i].srate;
Cliff Caib7138212008-09-05 18:09:57 +0800238 }
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200239 return -EINVAL;
Cliff Caib7138212008-09-05 18:09:57 +0800240}
241
242static int ssm2602_hw_params(struct snd_pcm_substream *substream,
Mark Browndee89c42008-11-18 22:11:38 +0000243 struct snd_pcm_hw_params *params,
244 struct snd_soc_dai *dai)
Cliff Caib7138212008-09-05 18:09:57 +0800245{
Cliff Caib7138212008-09-05 18:09:57 +0800246 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000247 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900248 struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec);
Cliff Cai93547e82011-03-27 17:22:57 -0400249 u16 iface = snd_soc_read(codec, SSM2602_IFACE) & 0xfff3;
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200250 int srate = ssm2602_get_coeff(ssm2602->sysclk, params_rate(params));
Cliff Caib7138212008-09-05 18:09:57 +0800251
Karl Beldanfaab5a32008-11-20 15:39:27 +0100252 if (substream == ssm2602->slave_substream) {
Cliff Cai93547e82011-03-27 17:22:57 -0400253 dev_dbg(codec->dev, "Ignoring hw_params for slave substream\n");
Karl Beldanfaab5a32008-11-20 15:39:27 +0100254 return 0;
255 }
256
Lars-Peter Clausen0b4cd2e2011-05-05 16:59:10 +0200257 if (srate < 0)
258 return srate;
Cliff Caib7138212008-09-05 18:09:57 +0800259
Cliff Cai93547e82011-03-27 17:22:57 -0400260 snd_soc_write(codec, SSM2602_SRATE, srate);
Cliff Caib7138212008-09-05 18:09:57 +0800261
262 /* bit size */
263 switch (params_format(params)) {
264 case SNDRV_PCM_FORMAT_S16_LE:
265 break;
266 case SNDRV_PCM_FORMAT_S20_3LE:
267 iface |= 0x0004;
268 break;
269 case SNDRV_PCM_FORMAT_S24_LE:
270 iface |= 0x0008;
271 break;
272 case SNDRV_PCM_FORMAT_S32_LE:
273 iface |= 0x000c;
274 break;
275 }
Cliff Cai93547e82011-03-27 17:22:57 -0400276 snd_soc_write(codec, SSM2602_IFACE, iface);
Cliff Caib7138212008-09-05 18:09:57 +0800277 return 0;
278}
279
Mark Browndee89c42008-11-18 22:11:38 +0000280static int ssm2602_startup(struct snd_pcm_substream *substream,
281 struct snd_soc_dai *dai)
Cliff Caib7138212008-09-05 18:09:57 +0800282{
283 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000284 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900285 struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec);
Karl Beldanfaab5a32008-11-20 15:39:27 +0100286 struct i2c_client *i2c = codec->control_data;
Cliff Caib7138212008-09-05 18:09:57 +0800287 struct snd_pcm_runtime *master_runtime;
288
289 /* The DAI has shared clocks so if we already have a playback or
290 * capture going then constrain this substream to match it.
Karl Beldanfaab5a32008-11-20 15:39:27 +0100291 * TODO: the ssm2602 allows pairs of non-matching PB/REC rates
Cliff Caib7138212008-09-05 18:09:57 +0800292 */
293 if (ssm2602->master_substream) {
294 master_runtime = ssm2602->master_substream->runtime;
Karl Beldanfaab5a32008-11-20 15:39:27 +0100295 dev_dbg(&i2c->dev, "Constraining to %d bits at %dHz\n",
296 master_runtime->sample_bits,
297 master_runtime->rate);
298
Cliff Caif692fce2009-06-02 00:18:54 -0400299 if (master_runtime->rate != 0)
300 snd_pcm_hw_constraint_minmax(substream->runtime,
301 SNDRV_PCM_HW_PARAM_RATE,
302 master_runtime->rate,
303 master_runtime->rate);
Cliff Caib7138212008-09-05 18:09:57 +0800304
Cliff Caif692fce2009-06-02 00:18:54 -0400305 if (master_runtime->sample_bits != 0)
306 snd_pcm_hw_constraint_minmax(substream->runtime,
307 SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
308 master_runtime->sample_bits,
309 master_runtime->sample_bits);
Cliff Caib7138212008-09-05 18:09:57 +0800310
311 ssm2602->slave_substream = substream;
312 } else
313 ssm2602->master_substream = substream;
314
315 return 0;
316}
317
Mark Browndee89c42008-11-18 22:11:38 +0000318static void ssm2602_shutdown(struct snd_pcm_substream *substream,
319 struct snd_soc_dai *dai)
Cliff Caib7138212008-09-05 18:09:57 +0800320{
321 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000322 struct snd_soc_codec *codec = rtd->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900323 struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec);
Cliff Caif692fce2009-06-02 00:18:54 -0400324
Karl Beldanfaab5a32008-11-20 15:39:27 +0100325 if (ssm2602->master_substream == substream)
326 ssm2602->master_substream = ssm2602->slave_substream;
327
328 ssm2602->slave_substream = NULL;
Cliff Caib7138212008-09-05 18:09:57 +0800329}
330
Lars-Peter Clausen2a438012011-05-08 09:24:45 -0700331
Cliff Caib7138212008-09-05 18:09:57 +0800332static int ssm2602_mute(struct snd_soc_dai *dai, int mute)
333{
334 struct snd_soc_codec *codec = dai->codec;
Cliff Cai93547e82011-03-27 17:22:57 -0400335 u16 mute_reg = snd_soc_read(codec, SSM2602_APDIGI) & ~APDIGI_ENABLE_DAC_MUTE;
Cliff Caib7138212008-09-05 18:09:57 +0800336 if (mute)
Cliff Cai93547e82011-03-27 17:22:57 -0400337 snd_soc_write(codec, SSM2602_APDIGI,
Cliff Caib7138212008-09-05 18:09:57 +0800338 mute_reg | APDIGI_ENABLE_DAC_MUTE);
339 else
Cliff Cai93547e82011-03-27 17:22:57 -0400340 snd_soc_write(codec, SSM2602_APDIGI, mute_reg);
Cliff Caib7138212008-09-05 18:09:57 +0800341 return 0;
342}
343
344static int ssm2602_set_dai_sysclk(struct snd_soc_dai *codec_dai,
345 int clk_id, unsigned int freq, int dir)
346{
347 struct snd_soc_codec *codec = codec_dai->codec;
Mark Brownb2c812e2010-04-14 15:35:19 +0900348 struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec);
Cliff Caib7138212008-09-05 18:09:57 +0800349 switch (freq) {
350 case 11289600:
351 case 12000000:
352 case 12288000:
353 case 16934400:
354 case 18432000:
355 ssm2602->sysclk = freq;
356 return 0;
357 }
358 return -EINVAL;
359}
360
361static int ssm2602_set_dai_fmt(struct snd_soc_dai *codec_dai,
362 unsigned int fmt)
363{
364 struct snd_soc_codec *codec = codec_dai->codec;
365 u16 iface = 0;
366
367 /* set master/slave audio interface */
368 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
369 case SND_SOC_DAIFMT_CBM_CFM:
370 iface |= 0x0040;
371 break;
372 case SND_SOC_DAIFMT_CBS_CFS:
373 break;
374 default:
375 return -EINVAL;
376 }
377
378 /* interface format */
379 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
380 case SND_SOC_DAIFMT_I2S:
381 iface |= 0x0002;
382 break;
383 case SND_SOC_DAIFMT_RIGHT_J:
384 break;
385 case SND_SOC_DAIFMT_LEFT_J:
386 iface |= 0x0001;
387 break;
388 case SND_SOC_DAIFMT_DSP_A:
Jarkko Nikulac6913482008-12-22 10:57:33 +0200389 iface |= 0x0013;
Cliff Caib7138212008-09-05 18:09:57 +0800390 break;
391 case SND_SOC_DAIFMT_DSP_B:
Jarkko Nikulac6913482008-12-22 10:57:33 +0200392 iface |= 0x0003;
Cliff Caib7138212008-09-05 18:09:57 +0800393 break;
394 default:
395 return -EINVAL;
396 }
397
398 /* clock inversion */
399 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
400 case SND_SOC_DAIFMT_NB_NF:
401 break;
402 case SND_SOC_DAIFMT_IB_IF:
403 iface |= 0x0090;
404 break;
405 case SND_SOC_DAIFMT_IB_NF:
406 iface |= 0x0080;
407 break;
408 case SND_SOC_DAIFMT_NB_IF:
409 iface |= 0x0010;
410 break;
411 default:
412 return -EINVAL;
413 }
414
415 /* set iface */
Cliff Cai93547e82011-03-27 17:22:57 -0400416 snd_soc_write(codec, SSM2602_IFACE, iface);
Cliff Caib7138212008-09-05 18:09:57 +0800417 return 0;
418}
419
420static int ssm2602_set_bias_level(struct snd_soc_codec *codec,
421 enum snd_soc_bias_level level)
422{
Cliff Cai93547e82011-03-27 17:22:57 -0400423 u16 reg = snd_soc_read(codec, SSM2602_PWR) & 0xff7f;
Cliff Caib7138212008-09-05 18:09:57 +0800424
425 switch (level) {
426 case SND_SOC_BIAS_ON:
427 /* vref/mid, osc on, dac unmute */
Cliff Cai93547e82011-03-27 17:22:57 -0400428 snd_soc_write(codec, SSM2602_PWR, reg);
Cliff Caib7138212008-09-05 18:09:57 +0800429 break;
430 case SND_SOC_BIAS_PREPARE:
431 break;
432 case SND_SOC_BIAS_STANDBY:
433 /* everything off except vref/vmid, */
Cliff Cai93547e82011-03-27 17:22:57 -0400434 snd_soc_write(codec, SSM2602_PWR, reg | PWR_CLK_OUT_PDN);
Cliff Caib7138212008-09-05 18:09:57 +0800435 break;
436 case SND_SOC_BIAS_OFF:
437 /* everything off, dac mute, inactive */
Cliff Cai93547e82011-03-27 17:22:57 -0400438 snd_soc_write(codec, SSM2602_PWR, 0xffff);
Cliff Caib7138212008-09-05 18:09:57 +0800439 break;
440
441 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200442 codec->dapm.bias_level = level;
Cliff Caib7138212008-09-05 18:09:57 +0800443 return 0;
444}
445
Cliff Cai2552a712009-06-02 00:18:53 -0400446#define SSM2602_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_32000 |\
447 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\
448 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000)
Cliff Caib7138212008-09-05 18:09:57 +0800449
Karl Beldan5de27b62008-11-20 15:39:31 +0100450#define SSM2602_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\
451 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE)
452
Eric Miao6335d052009-03-03 09:41:00 +0800453static struct snd_soc_dai_ops ssm2602_dai_ops = {
454 .startup = ssm2602_startup,
Eric Miao6335d052009-03-03 09:41:00 +0800455 .hw_params = ssm2602_hw_params,
456 .shutdown = ssm2602_shutdown,
457 .digital_mute = ssm2602_mute,
458 .set_sysclk = ssm2602_set_dai_sysclk,
459 .set_fmt = ssm2602_set_dai_fmt,
460};
461
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000462static struct snd_soc_dai_driver ssm2602_dai = {
463 .name = "ssm2602-hifi",
Cliff Caib7138212008-09-05 18:09:57 +0800464 .playback = {
465 .stream_name = "Playback",
466 .channels_min = 2,
467 .channels_max = 2,
468 .rates = SSM2602_RATES,
Karl Beldan5de27b62008-11-20 15:39:31 +0100469 .formats = SSM2602_FORMATS,},
Cliff Caib7138212008-09-05 18:09:57 +0800470 .capture = {
471 .stream_name = "Capture",
472 .channels_min = 2,
473 .channels_max = 2,
474 .rates = SSM2602_RATES,
Karl Beldan5de27b62008-11-20 15:39:31 +0100475 .formats = SSM2602_FORMATS,},
Eric Miao6335d052009-03-03 09:41:00 +0800476 .ops = &ssm2602_dai_ops,
Cliff Caib7138212008-09-05 18:09:57 +0800477};
Cliff Caib7138212008-09-05 18:09:57 +0800478
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000479static int ssm2602_suspend(struct snd_soc_codec *codec, pm_message_t state)
Cliff Caib7138212008-09-05 18:09:57 +0800480{
Cliff Caib7138212008-09-05 18:09:57 +0800481 ssm2602_set_bias_level(codec, SND_SOC_BIAS_OFF);
482 return 0;
483}
484
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000485static int ssm2602_resume(struct snd_soc_codec *codec)
Cliff Caib7138212008-09-05 18:09:57 +0800486{
Cliff Cai93547e82011-03-27 17:22:57 -0400487 snd_soc_cache_sync(codec);
Cliff Caib7138212008-09-05 18:09:57 +0800488
Cliff Caib7138212008-09-05 18:09:57 +0800489 ssm2602_set_bias_level(codec, SND_SOC_BIAS_STANDBY);
Cliff Cai93547e82011-03-27 17:22:57 -0400490
Cliff Caib7138212008-09-05 18:09:57 +0800491 return 0;
492}
493
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000494static int ssm2602_probe(struct snd_soc_codec *codec)
Cliff Caib7138212008-09-05 18:09:57 +0800495{
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700496 struct snd_soc_dapm_context *dapm = &codec->dapm;
497 int ret, reg;
498
499 reg = snd_soc_read(codec, SSM2602_LOUT1V);
500 snd_soc_write(codec, SSM2602_LOUT1V, reg | LOUT1V_LRHP_BOTH);
501 reg = snd_soc_read(codec, SSM2602_ROUT1V);
502 snd_soc_write(codec, SSM2602_ROUT1V, reg | ROUT1V_RLHP_BOTH);
503
504 ret = snd_soc_add_controls(codec, ssm2602_snd_controls,
505 ARRAY_SIZE(ssm2602_snd_controls));
506 if (ret)
507 return ret;
508
509 ret = snd_soc_dapm_new_controls(dapm, ssm2602_dapm_widgets,
510 ARRAY_SIZE(ssm2602_dapm_widgets));
511 if (ret)
512 return ret;
513
514 return snd_soc_dapm_add_routes(dapm, ssm2602_routes,
515 ARRAY_SIZE(ssm2602_routes));
516}
517
518static int ssm2604_probe(struct snd_soc_codec *codec)
519{
520 struct snd_soc_dapm_context *dapm = &codec->dapm;
521 int ret;
522
523 ret = snd_soc_dapm_new_controls(dapm, ssm2604_dapm_widgets,
524 ARRAY_SIZE(ssm2604_dapm_widgets));
525 if (ret)
526 return ret;
527
528 return snd_soc_dapm_add_routes(dapm, ssm2604_routes,
529 ARRAY_SIZE(ssm2604_routes));
530}
531
532static int ssm260x_probe(struct snd_soc_codec *codec)
533{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000534 struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec);
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700535 int ret, reg;
Cliff Caib7138212008-09-05 18:09:57 +0800536
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000537 pr_info("ssm2602 Audio Codec %s", SSM2602_VERSION);
538
Cliff Cai93547e82011-03-27 17:22:57 -0400539 ret = snd_soc_codec_set_cache_io(codec, 7, 9, ssm2602->control_type);
540 if (ret < 0) {
541 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
542 return ret;
543 }
Cliff Caib7138212008-09-05 18:09:57 +0800544
Cliff Cai93547e82011-03-27 17:22:57 -0400545 ret = ssm2602_reset(codec);
546 if (ret < 0) {
547 dev_err(codec->dev, "Failed to issue reset: %d\n", ret);
548 return ret;
549 }
Cliff Caib7138212008-09-05 18:09:57 +0800550
Cliff Caib7138212008-09-05 18:09:57 +0800551 /* set the update bits */
Cliff Cai93547e82011-03-27 17:22:57 -0400552 reg = snd_soc_read(codec, SSM2602_LINVOL);
553 snd_soc_write(codec, SSM2602_LINVOL, reg | LINVOL_LRIN_BOTH);
554 reg = snd_soc_read(codec, SSM2602_RINVOL);
555 snd_soc_write(codec, SSM2602_RINVOL, reg | RINVOL_RLIN_BOTH);
Cliff Caib7138212008-09-05 18:09:57 +0800556 /*select Line in as default input*/
Cliff Cai93547e82011-03-27 17:22:57 -0400557 snd_soc_write(codec, SSM2602_APANA, APANA_SELECT_DAC |
Cliff Caib7138212008-09-05 18:09:57 +0800558 APANA_ENABLE_MIC_BOOST);
Cliff Caib7138212008-09-05 18:09:57 +0800559
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700560 switch (ssm2602->type) {
561 case SSM2602:
562 ret = ssm2602_probe(codec);
563 break;
564 case SSM2604:
565 ret = ssm2604_probe(codec);
566 break;
567 }
Cliff Caib7138212008-09-05 18:09:57 +0800568
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700569 return ret;
Cliff Caib7138212008-09-05 18:09:57 +0800570}
571
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000572/* remove everything here */
573static int ssm2602_remove(struct snd_soc_codec *codec)
574{
575 ssm2602_set_bias_level(codec, SND_SOC_BIAS_OFF);
576 return 0;
577}
578
579static struct snd_soc_codec_driver soc_codec_dev_ssm2602 = {
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700580 .probe = ssm260x_probe,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000581 .remove = ssm2602_remove,
582 .suspend = ssm2602_suspend,
583 .resume = ssm2602_resume,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000584 .set_bias_level = ssm2602_set_bias_level,
Lars-Peter Clausen8fc63fe2011-05-05 16:59:14 +0200585 .reg_cache_size = ARRAY_SIZE(ssm2602_reg),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000586 .reg_word_size = sizeof(u16),
587 .reg_cache_default = ssm2602_reg,
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700588
589 .controls = ssm260x_snd_controls,
590 .num_controls = ARRAY_SIZE(ssm260x_snd_controls),
591 .dapm_widgets = ssm260x_dapm_widgets,
592 .num_dapm_widgets = ARRAY_SIZE(ssm260x_dapm_widgets),
593 .dapm_routes = ssm260x_routes,
594 .num_dapm_routes = ARRAY_SIZE(ssm260x_routes),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000595};
Cliff Caib7138212008-09-05 18:09:57 +0800596
Mike Frysingerb39e2852011-04-07 02:05:11 -0400597#if defined(CONFIG_SPI_MASTER)
598static int __devinit ssm2602_spi_probe(struct spi_device *spi)
599{
600 struct ssm2602_priv *ssm2602;
601 int ret;
602
603 ssm2602 = kzalloc(sizeof(struct ssm2602_priv), GFP_KERNEL);
604 if (ssm2602 == NULL)
605 return -ENOMEM;
606
607 spi_set_drvdata(spi, ssm2602);
608 ssm2602->control_type = SND_SOC_SPI;
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700609 ssm2602->type = SSM2602;
Mike Frysingerb39e2852011-04-07 02:05:11 -0400610
611 ret = snd_soc_register_codec(&spi->dev,
612 &soc_codec_dev_ssm2602, &ssm2602_dai, 1);
613 if (ret < 0)
614 kfree(ssm2602);
615 return ret;
616}
617
618static int __devexit ssm2602_spi_remove(struct spi_device *spi)
619{
620 snd_soc_unregister_codec(&spi->dev);
621 kfree(spi_get_drvdata(spi));
622 return 0;
623}
624
625static struct spi_driver ssm2602_spi_driver = {
626 .driver = {
627 .name = "ssm2602",
628 .owner = THIS_MODULE,
629 },
630 .probe = ssm2602_spi_probe,
631 .remove = __devexit_p(ssm2602_spi_remove),
632};
633#endif
634
Cliff Caib7138212008-09-05 18:09:57 +0800635#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
636/*
637 * ssm2602 2 wire address is determined by GPIO5
638 * state during powerup.
639 * low = 0x1a
640 * high = 0x1b
641 */
Lars-Peter Clausen04b89452011-05-05 16:59:12 +0200642static int __devinit ssm2602_i2c_probe(struct i2c_client *i2c,
Cliff Caib7138212008-09-05 18:09:57 +0800643 const struct i2c_device_id *id)
644{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000645 struct ssm2602_priv *ssm2602;
Cliff Caib7138212008-09-05 18:09:57 +0800646 int ret;
647
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000648 ssm2602 = kzalloc(sizeof(struct ssm2602_priv), GFP_KERNEL);
649 if (ssm2602 == NULL)
650 return -ENOMEM;
Cliff Caib7138212008-09-05 18:09:57 +0800651
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000652 i2c_set_clientdata(i2c, ssm2602);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000653 ssm2602->control_type = SND_SOC_I2C;
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700654 ssm2602->type = id->driver_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000655
656 ret = snd_soc_register_codec(&i2c->dev,
657 &soc_codec_dev_ssm2602, &ssm2602_dai, 1);
Cliff Caib7138212008-09-05 18:09:57 +0800658 if (ret < 0)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000659 kfree(ssm2602);
Cliff Caib7138212008-09-05 18:09:57 +0800660 return ret;
661}
662
Lars-Peter Clausen04b89452011-05-05 16:59:12 +0200663static int __devexit ssm2602_i2c_remove(struct i2c_client *client)
Cliff Caib7138212008-09-05 18:09:57 +0800664{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000665 snd_soc_unregister_codec(&client->dev);
666 kfree(i2c_get_clientdata(client));
Cliff Caib7138212008-09-05 18:09:57 +0800667 return 0;
668}
669
670static const struct i2c_device_id ssm2602_i2c_id[] = {
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700671 { "ssm2602", SSM2602 },
Lars-Peter Clausen7dcf2762011-05-08 09:24:44 -0700672 { "ssm2603", SSM2602 },
Lars-Peter Clausenb1f7b2b2011-05-08 09:24:43 -0700673 { "ssm2604", SSM2604 },
Cliff Caib7138212008-09-05 18:09:57 +0800674 { }
675};
676MODULE_DEVICE_TABLE(i2c, ssm2602_i2c_id);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000677
Cliff Caib7138212008-09-05 18:09:57 +0800678/* corgi i2c codec control layer */
679static struct i2c_driver ssm2602_i2c_driver = {
680 .driver = {
Mike Frysinger2a161012011-03-27 00:44:10 -0400681 .name = "ssm2602",
Cliff Caib7138212008-09-05 18:09:57 +0800682 .owner = THIS_MODULE,
683 },
684 .probe = ssm2602_i2c_probe,
Lars-Peter Clausen04b89452011-05-05 16:59:12 +0200685 .remove = __devexit_p(ssm2602_i2c_remove),
Cliff Caib7138212008-09-05 18:09:57 +0800686 .id_table = ssm2602_i2c_id,
687};
Cliff Caib7138212008-09-05 18:09:57 +0800688#endif
689
Cliff Caib7138212008-09-05 18:09:57 +0800690
Takashi Iwaic9b3a402008-12-10 07:47:22 +0100691static int __init ssm2602_modinit(void)
Mark Brown64089b82008-12-08 19:17:58 +0000692{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000693 int ret = 0;
Mike Frysingerb39e2852011-04-07 02:05:11 -0400694
695#if defined(CONFIG_SPI_MASTER)
696 ret = spi_register_driver(&ssm2602_spi_driver);
697 if (ret)
698 return ret;
699#endif
700
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000701#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
702 ret = i2c_add_driver(&ssm2602_i2c_driver);
Mike Frysingerb39e2852011-04-07 02:05:11 -0400703 if (ret)
704 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000705#endif
Mike Frysingerb39e2852011-04-07 02:05:11 -0400706
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000707 return ret;
Mark Brown64089b82008-12-08 19:17:58 +0000708}
709module_init(ssm2602_modinit);
710
711static void __exit ssm2602_exit(void)
712{
Mike Frysingerb39e2852011-04-07 02:05:11 -0400713#if defined(CONFIG_SPI_MASTER)
714 spi_unregister_driver(&ssm2602_spi_driver);
715#endif
716
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000717#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
718 i2c_del_driver(&ssm2602_i2c_driver);
719#endif
Mark Brown64089b82008-12-08 19:17:58 +0000720}
721module_exit(ssm2602_exit);
722
Lars-Peter Clausen7dcf2762011-05-08 09:24:44 -0700723MODULE_DESCRIPTION("ASoC SSM2602/SSM2603/SSM2604 driver");
Cliff Caib7138212008-09-05 18:09:57 +0800724MODULE_AUTHOR("Cliff Cai");
725MODULE_LICENSE("GPL");