2 * ak4642.c -- AK4642/AK4643 ALSA Soc Audio driver
4 * Copyright (C) 2009 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
7 * Based on wm8731.c by Richard Purdie
8 * Based on ak4535.c by Richard Purdie
9 * Based on wm8753.c by Liam Girdwood
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
18 * This is very simple driver.
19 * It can use headphone output / stereo input only
26 #include <linux/delay.h>
27 #include <linux/i2c.h>
28 #include <linux/slab.h>
29 #include <linux/module.h>
30 #include <sound/soc.h>
31 #include <sound/initval.h>
32 #include <sound/tlv.h>
73 #define PMVCM (1 << 6) /* VCOM Power Management */
74 #define PMMIN (1 << 5) /* MIN Input Power Management */
75 #define PMDAC (1 << 2) /* DAC Power Management */
76 #define PMADL (1 << 0) /* MIC Amp Lch and ADC Lch Power Management */
79 #define HPMTN (1 << 6)
80 #define PMHPL (1 << 5)
81 #define PMHPR (1 << 4)
82 #define MS (1 << 3) /* master/slave select */
84 #define PMPLL (1 << 0)
86 #define PMHP_MASK (PMHPL | PMHPR)
87 #define PMHP PMHP_MASK
90 #define PMADR (1 << 0) /* MIC L / ADC R Power Management */
93 #define MINS (1 << 6) /* Switch from MIN to Speaker */
94 #define DACL (1 << 4) /* Switch from DAC to Stereo or Receiver */
95 #define PMMP (1 << 2) /* MPWR pin Power Management */
96 #define MGAIN0 (1 << 0) /* MIC amp gain*/
99 #define ZTM(param) ((param & 0x3) << 4) /* ALC Zoro Crossing TimeOut */
100 #define WTM(param) (((param & 0x4) << 4) | ((param & 0x3) << 2))
103 #define ALC (1 << 5) /* ALC Enable */
104 #define LMTH0 (1 << 0) /* ALC Limiter / Recovery Level */
107 #define PLL3 (1 << 7)
108 #define PLL2 (1 << 6)
109 #define PLL1 (1 << 5)
110 #define PLL0 (1 << 4)
111 #define PLL_MASK (PLL3 | PLL2 | PLL1 | PLL0)
113 #define BCKO_MASK (1 << 3)
114 #define BCKO_64 BCKO_MASK
116 #define DIF_MASK (3 << 0)
118 #define RIGHT_J (1 << 0)
119 #define LEFT_J (2 << 0)
127 #define FS_MASK (FS0 | FS1 | FS2 | FS3)
130 #define BST1 (1 << 3)
133 #define DACH (1 << 0)
136 * Playback Volume (table 39)
138 * max : 0x00 : +12.0 dB
140 * min : 0xFE : -115.0 dB
143 static const DECLARE_TLV_DB_SCALE(out_tlv
, -11550, 50, 1);
145 static const struct snd_kcontrol_new ak4642_snd_controls
[] = {
147 SOC_DOUBLE_R_TLV("Digital Playback Volume", L_DVC
, R_DVC
,
148 0, 0xFF, 1, out_tlv
),
151 static const struct snd_kcontrol_new ak4642_headphone_control
=
152 SOC_DAPM_SINGLE("Switch", PW_MGMT2
, 6, 1, 0);
154 static const struct snd_kcontrol_new ak4642_lout_mixer_controls
[] = {
155 SOC_DAPM_SINGLE("DACL", SG_SL1
, 4, 1, 0),
158 static const struct snd_soc_dapm_widget ak4642_dapm_widgets
[] = {
161 SND_SOC_DAPM_OUTPUT("HPOUTL"),
162 SND_SOC_DAPM_OUTPUT("HPOUTR"),
163 SND_SOC_DAPM_OUTPUT("LINEOUT"),
165 SND_SOC_DAPM_PGA("HPL Out", PW_MGMT2
, 5, 0, NULL
, 0),
166 SND_SOC_DAPM_PGA("HPR Out", PW_MGMT2
, 4, 0, NULL
, 0),
167 SND_SOC_DAPM_SWITCH("Headphone Enable", SND_SOC_NOPM
, 0, 0,
168 &ak4642_headphone_control
),
170 SND_SOC_DAPM_PGA("DACH", MD_CTL4
, 0, 0, NULL
, 0),
172 SND_SOC_DAPM_MIXER("LINEOUT Mixer", PW_MGMT1
, 3, 0,
173 &ak4642_lout_mixer_controls
[0],
174 ARRAY_SIZE(ak4642_lout_mixer_controls
)),
177 SND_SOC_DAPM_DAC("DAC", "HiFi Playback", PW_MGMT1
, 2, 0),
180 static const struct snd_soc_dapm_route ak4642_intercon
[] = {
183 {"HPOUTL", NULL
, "HPL Out"},
184 {"HPOUTR", NULL
, "HPR Out"},
185 {"LINEOUT", NULL
, "LINEOUT Mixer"},
187 {"HPL Out", NULL
, "Headphone Enable"},
188 {"HPR Out", NULL
, "Headphone Enable"},
190 {"Headphone Enable", "Switch", "DACH"},
192 {"DACH", NULL
, "DAC"},
194 {"LINEOUT Mixer", "DACL", "DAC"},
197 /* codec private data */
200 enum snd_soc_control_type control_type
;
204 * ak4642 register cache
206 static const u8 ak4642_reg
[] = {
207 0x00, 0x00, 0x01, 0x00,
208 0x02, 0x00, 0x00, 0x00,
209 0xe1, 0xe1, 0x18, 0x00,
210 0xe1, 0x18, 0x11, 0x08,
211 0x00, 0x00, 0x00, 0x00,
212 0x00, 0x00, 0x00, 0x00,
213 0x00, 0x00, 0x00, 0x00,
214 0x00, 0x00, 0x00, 0x00,
215 0x00, 0x00, 0x00, 0x00,
219 static const u8 ak4648_reg
[] = {
220 0x00, 0x00, 0x01, 0x00,
221 0x02, 0x00, 0x00, 0x00,
222 0xe1, 0xe1, 0x18, 0x00,
223 0xe1, 0x18, 0x11, 0xb8,
224 0x00, 0x00, 0x00, 0x00,
225 0x00, 0x00, 0x00, 0x00,
226 0x00, 0x00, 0x00, 0x00,
227 0x00, 0x00, 0x00, 0x00,
228 0x00, 0x00, 0x00, 0x00,
229 0x00, 0x88, 0x88, 0x08,
232 static int ak4642_dai_startup(struct snd_pcm_substream
*substream
,
233 struct snd_soc_dai
*dai
)
235 int is_play
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
236 struct snd_soc_codec
*codec
= dai
->codec
;
240 * start headphone output
243 * Audio I/F Format :MSB justified (ADC & DAC)
244 * Bass Boost Level : Middle
246 * This operation came from example code of
247 * "ASAHI KASEI AK4642" (japanese) manual p97.
249 snd_soc_write(codec
, L_IVC
, 0x91); /* volume */
250 snd_soc_write(codec
, R_IVC
, 0x91); /* volume */
256 * Audio I/F Format:MSB justified (ADC & DAC)
259 * ALC setting:Refer to Table 35
262 * This operation came from example code of
263 * "ASAHI KASEI AK4642" (japanese) manual p94.
265 snd_soc_write(codec
, SG_SL1
, PMMP
| MGAIN0
);
266 snd_soc_write(codec
, TIMER
, ZTM(0x3) | WTM(0x3));
267 snd_soc_write(codec
, ALC_CTL1
, ALC
| LMTH0
);
268 snd_soc_update_bits(codec
, PW_MGMT1
, PMADL
, PMADL
);
269 snd_soc_update_bits(codec
, PW_MGMT3
, PMADR
, PMADR
);
275 static void ak4642_dai_shutdown(struct snd_pcm_substream
*substream
,
276 struct snd_soc_dai
*dai
)
278 int is_play
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
;
279 struct snd_soc_codec
*codec
= dai
->codec
;
283 /* stop stereo input */
284 snd_soc_update_bits(codec
, PW_MGMT1
, PMADL
, 0);
285 snd_soc_update_bits(codec
, PW_MGMT3
, PMADR
, 0);
286 snd_soc_update_bits(codec
, ALC_CTL1
, ALC
, 0);
290 static int ak4642_dai_set_sysclk(struct snd_soc_dai
*codec_dai
,
291 int clk_id
, unsigned int freq
, int dir
)
293 struct snd_soc_codec
*codec
= codec_dai
->codec
;
307 pll
= PLL2
| PLL1
| PLL0
;
313 pll
= PLL3
| PLL2
| PLL0
;
318 snd_soc_update_bits(codec
, MD_CTL1
, PLL_MASK
, pll
);
323 static int ak4642_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
325 struct snd_soc_codec
*codec
= dai
->codec
;
329 data
= MCKO
| PMPLL
; /* use MCKO */
332 /* set master/slave audio interface */
333 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
334 case SND_SOC_DAIFMT_CBM_CFM
:
338 case SND_SOC_DAIFMT_CBS_CFS
:
343 snd_soc_update_bits(codec
, PW_MGMT2
, MS
| MCKO
| PMPLL
, data
);
344 snd_soc_update_bits(codec
, MD_CTL1
, BCKO_MASK
, bcko
);
348 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
349 case SND_SOC_DAIFMT_LEFT_J
:
352 case SND_SOC_DAIFMT_I2S
:
356 * Please add RIGHT_J / DSP support here
362 snd_soc_update_bits(codec
, MD_CTL1
, DIF_MASK
, data
);
367 static int ak4642_dai_hw_params(struct snd_pcm_substream
*substream
,
368 struct snd_pcm_hw_params
*params
,
369 struct snd_soc_dai
*dai
)
371 struct snd_soc_codec
*codec
= dai
->codec
;
374 switch (params_rate(params
)) {
394 rate
= FS2
| FS1
| FS0
;
400 rate
= FS3
| FS2
| FS1
;
406 rate
= FS3
| FS2
| FS1
| FS0
;
409 rate
= FS3
| FS1
| FS0
;
415 snd_soc_update_bits(codec
, MD_CTL2
, FS_MASK
, rate
);
420 static int ak4642_set_bias_level(struct snd_soc_codec
*codec
,
421 enum snd_soc_bias_level level
)
424 case SND_SOC_BIAS_OFF
:
425 snd_soc_write(codec
, PW_MGMT1
, 0x00);
428 snd_soc_update_bits(codec
, PW_MGMT1
, PMVCM
, PMVCM
);
431 codec
->dapm
.bias_level
= level
;
436 static const struct snd_soc_dai_ops ak4642_dai_ops
= {
437 .startup
= ak4642_dai_startup
,
438 .shutdown
= ak4642_dai_shutdown
,
439 .set_sysclk
= ak4642_dai_set_sysclk
,
440 .set_fmt
= ak4642_dai_set_fmt
,
441 .hw_params
= ak4642_dai_hw_params
,
444 static struct snd_soc_dai_driver ak4642_dai
= {
445 .name
= "ak4642-hifi",
447 .stream_name
= "Playback",
450 .rates
= SNDRV_PCM_RATE_8000_48000
,
451 .formats
= SNDRV_PCM_FMTBIT_S16_LE
},
453 .stream_name
= "Capture",
456 .rates
= SNDRV_PCM_RATE_8000_48000
,
457 .formats
= SNDRV_PCM_FMTBIT_S16_LE
},
458 .ops
= &ak4642_dai_ops
,
459 .symmetric_rates
= 1,
462 static int ak4642_resume(struct snd_soc_codec
*codec
)
464 snd_soc_cache_sync(codec
);
469 static int ak4642_probe(struct snd_soc_codec
*codec
)
471 struct ak4642_priv
*ak4642
= snd_soc_codec_get_drvdata(codec
);
474 ret
= snd_soc_codec_set_cache_io(codec
, 8, 8, ak4642
->control_type
);
476 dev_err(codec
->dev
, "Failed to set cache I/O: %d\n", ret
);
480 snd_soc_add_codec_controls(codec
, ak4642_snd_controls
,
481 ARRAY_SIZE(ak4642_snd_controls
));
483 ak4642_set_bias_level(codec
, SND_SOC_BIAS_STANDBY
);
488 static int ak4642_remove(struct snd_soc_codec
*codec
)
490 ak4642_set_bias_level(codec
, SND_SOC_BIAS_OFF
);
494 static struct snd_soc_codec_driver soc_codec_dev_ak4642
= {
495 .probe
= ak4642_probe
,
496 .remove
= ak4642_remove
,
497 .resume
= ak4642_resume
,
498 .set_bias_level
= ak4642_set_bias_level
,
499 .reg_cache_default
= ak4642_reg
, /* ak4642 reg */
500 .reg_cache_size
= ARRAY_SIZE(ak4642_reg
), /* ak4642 reg */
501 .reg_word_size
= sizeof(u8
),
502 .dapm_widgets
= ak4642_dapm_widgets
,
503 .num_dapm_widgets
= ARRAY_SIZE(ak4642_dapm_widgets
),
504 .dapm_routes
= ak4642_intercon
,
505 .num_dapm_routes
= ARRAY_SIZE(ak4642_intercon
),
508 static struct snd_soc_codec_driver soc_codec_dev_ak4648
= {
509 .probe
= ak4642_probe
,
510 .remove
= ak4642_remove
,
511 .resume
= ak4642_resume
,
512 .set_bias_level
= ak4642_set_bias_level
,
513 .reg_cache_default
= ak4648_reg
, /* ak4648 reg */
514 .reg_cache_size
= ARRAY_SIZE(ak4648_reg
), /* ak4648 reg */
515 .reg_word_size
= sizeof(u8
),
516 .dapm_widgets
= ak4642_dapm_widgets
,
517 .num_dapm_widgets
= ARRAY_SIZE(ak4642_dapm_widgets
),
518 .dapm_routes
= ak4642_intercon
,
519 .num_dapm_routes
= ARRAY_SIZE(ak4642_intercon
),
522 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
523 static __devinit
int ak4642_i2c_probe(struct i2c_client
*i2c
,
524 const struct i2c_device_id
*id
)
526 struct ak4642_priv
*ak4642
;
529 ak4642
= devm_kzalloc(&i2c
->dev
, sizeof(struct ak4642_priv
),
534 i2c_set_clientdata(i2c
, ak4642
);
535 ak4642
->control_type
= SND_SOC_I2C
;
537 ret
= snd_soc_register_codec(&i2c
->dev
,
538 (struct snd_soc_codec_driver
*)id
->driver_data
,
543 static __devexit
int ak4642_i2c_remove(struct i2c_client
*client
)
545 snd_soc_unregister_codec(&client
->dev
);
549 static const struct i2c_device_id ak4642_i2c_id
[] = {
550 { "ak4642", (kernel_ulong_t
)&soc_codec_dev_ak4642
},
551 { "ak4643", (kernel_ulong_t
)&soc_codec_dev_ak4642
},
552 { "ak4648", (kernel_ulong_t
)&soc_codec_dev_ak4648
},
555 MODULE_DEVICE_TABLE(i2c
, ak4642_i2c_id
);
557 static struct i2c_driver ak4642_i2c_driver
= {
559 .name
= "ak4642-codec",
560 .owner
= THIS_MODULE
,
562 .probe
= ak4642_i2c_probe
,
563 .remove
= __devexit_p(ak4642_i2c_remove
),
564 .id_table
= ak4642_i2c_id
,
568 static int __init
ak4642_modinit(void)
571 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
572 ret
= i2c_add_driver(&ak4642_i2c_driver
);
577 module_init(ak4642_modinit
);
579 static void __exit
ak4642_exit(void)
581 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
582 i2c_del_driver(&ak4642_i2c_driver
);
586 module_exit(ak4642_exit
);
588 MODULE_DESCRIPTION("Soc AK4642 driver");
589 MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
590 MODULE_LICENSE("GPL");