Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 1 | /* |
| 2 | * DA7210 ALSA Soc codec driver |
| 3 | * |
| 4 | * Copyright (c) 2009 Dialog Semiconductor |
| 5 | * Written by David Chen <Dajun.chen@diasemi.com> |
| 6 | * |
| 7 | * Copyright (C) 2009 Renesas Solutions Corp. |
| 8 | * Cleanups by Kuninori Morimoto <morimoto.kuninori@renesas.com> |
| 9 | * |
| 10 | * Tested on SuperH Ecovec24 board with S16/S24 LE in 48KHz using I2S |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License as published by the |
| 14 | * Free Software Foundation; either version 2 of the License, or (at your |
| 15 | * option) any later version. |
| 16 | */ |
| 17 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 18 | #include <linux/delay.h> |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 19 | #include <linux/i2c.h> |
| 20 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 22 | #include <sound/pcm.h> |
| 23 | #include <sound/pcm_params.h> |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 24 | #include <sound/soc.h> |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 25 | #include <sound/initval.h> |
Kuninori Morimoto | a7e7cd5 | 2010-07-21 14:12:16 +0900 | [diff] [blame] | 26 | #include <sound/tlv.h> |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 27 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 28 | /* DA7210 register space */ |
| 29 | #define DA7210_STATUS 0x02 |
| 30 | #define DA7210_STARTUP1 0x03 |
| 31 | #define DA7210_MIC_L 0x07 |
| 32 | #define DA7210_MIC_R 0x08 |
| 33 | #define DA7210_INMIX_L 0x0D |
| 34 | #define DA7210_INMIX_R 0x0E |
| 35 | #define DA7210_ADC_HPF 0x0F |
| 36 | #define DA7210_ADC 0x10 |
| 37 | #define DA7210_DAC_HPF 0x14 |
| 38 | #define DA7210_DAC_L 0x15 |
| 39 | #define DA7210_DAC_R 0x16 |
| 40 | #define DA7210_DAC_SEL 0x17 |
| 41 | #define DA7210_OUTMIX_L 0x1C |
| 42 | #define DA7210_OUTMIX_R 0x1D |
| 43 | #define DA7210_HP_L_VOL 0x21 |
| 44 | #define DA7210_HP_R_VOL 0x22 |
| 45 | #define DA7210_HP_CFG 0x23 |
| 46 | #define DA7210_DAI_SRC_SEL 0x25 |
| 47 | #define DA7210_DAI_CFG1 0x26 |
| 48 | #define DA7210_DAI_CFG3 0x28 |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 49 | #define DA7210_PLL_DIV1 0x29 |
| 50 | #define DA7210_PLL_DIV2 0x2A |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 51 | #define DA7210_PLL_DIV3 0x2B |
| 52 | #define DA7210_PLL 0x2C |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 53 | #define DA7210_A_HID_UNLOCK 0x8A |
| 54 | #define DA7210_A_TEST_UNLOCK 0x8B |
| 55 | #define DA7210_A_PLL1 0x90 |
| 56 | #define DA7210_A_CP_MODE 0xA7 |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 57 | |
| 58 | /* STARTUP1 bit fields */ |
| 59 | #define DA7210_SC_MST_EN (1 << 0) |
| 60 | |
| 61 | /* MIC_L bit fields */ |
| 62 | #define DA7210_MICBIAS_EN (1 << 6) |
| 63 | #define DA7210_MIC_L_EN (1 << 7) |
| 64 | |
| 65 | /* MIC_R bit fields */ |
| 66 | #define DA7210_MIC_R_EN (1 << 7) |
| 67 | |
| 68 | /* INMIX_L bit fields */ |
| 69 | #define DA7210_IN_L_EN (1 << 7) |
| 70 | |
| 71 | /* INMIX_R bit fields */ |
| 72 | #define DA7210_IN_R_EN (1 << 7) |
| 73 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 74 | /* ADC bit fields */ |
| 75 | #define DA7210_ADC_L_EN (1 << 3) |
| 76 | #define DA7210_ADC_R_EN (1 << 7) |
| 77 | |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 78 | /* DAC/ADC HPF fields */ |
| 79 | #define DA7210_VOICE_F0_MASK (0x7 << 4) |
| 80 | #define DA7210_VOICE_F0_25 (1 << 4) |
| 81 | #define DA7210_VOICE_EN (1 << 7) |
Mark Brown | c215143 | 2009-12-16 20:36:37 +0000 | [diff] [blame] | 82 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 83 | /* DAC_SEL bit fields */ |
| 84 | #define DA7210_DAC_L_SRC_DAI_L (4 << 0) |
| 85 | #define DA7210_DAC_L_EN (1 << 3) |
| 86 | #define DA7210_DAC_R_SRC_DAI_R (5 << 4) |
| 87 | #define DA7210_DAC_R_EN (1 << 7) |
| 88 | |
| 89 | /* OUTMIX_L bit fields */ |
| 90 | #define DA7210_OUT_L_EN (1 << 7) |
| 91 | |
| 92 | /* OUTMIX_R bit fields */ |
| 93 | #define DA7210_OUT_R_EN (1 << 7) |
| 94 | |
| 95 | /* HP_CFG bit fields */ |
| 96 | #define DA7210_HP_2CAP_MODE (1 << 1) |
| 97 | #define DA7210_HP_SENSE_EN (1 << 2) |
| 98 | #define DA7210_HP_L_EN (1 << 3) |
| 99 | #define DA7210_HP_MODE (1 << 6) |
| 100 | #define DA7210_HP_R_EN (1 << 7) |
| 101 | |
| 102 | /* DAI_SRC_SEL bit fields */ |
| 103 | #define DA7210_DAI_OUT_L_SRC (6 << 0) |
| 104 | #define DA7210_DAI_OUT_R_SRC (7 << 4) |
| 105 | |
| 106 | /* DAI_CFG1 bit fields */ |
| 107 | #define DA7210_DAI_WORD_S16_LE (0 << 0) |
| 108 | #define DA7210_DAI_WORD_S24_LE (2 << 0) |
| 109 | #define DA7210_DAI_FLEN_64BIT (1 << 2) |
| 110 | #define DA7210_DAI_MODE_MASTER (1 << 7) |
| 111 | |
| 112 | /* DAI_CFG3 bit fields */ |
| 113 | #define DA7210_DAI_FORMAT_I2SMODE (0 << 0) |
| 114 | #define DA7210_DAI_OE (1 << 3) |
| 115 | #define DA7210_DAI_EN (1 << 7) |
| 116 | |
| 117 | /*PLL_DIV3 bit fields */ |
| 118 | #define DA7210_MCLK_RANGE_10_20_MHZ (1 << 4) |
| 119 | #define DA7210_PLL_BYP (1 << 6) |
| 120 | |
| 121 | /* PLL bit fields */ |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 122 | #define DA7210_PLL_FS_MASK (0xF << 0) |
| 123 | #define DA7210_PLL_FS_8000 (0x1 << 0) |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 124 | #define DA7210_PLL_FS_11025 (0x2 << 0) |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 125 | #define DA7210_PLL_FS_12000 (0x3 << 0) |
| 126 | #define DA7210_PLL_FS_16000 (0x5 << 0) |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 127 | #define DA7210_PLL_FS_22050 (0x6 << 0) |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 128 | #define DA7210_PLL_FS_24000 (0x7 << 0) |
| 129 | #define DA7210_PLL_FS_32000 (0x9 << 0) |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 130 | #define DA7210_PLL_FS_44100 (0xA << 0) |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 131 | #define DA7210_PLL_FS_48000 (0xB << 0) |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 132 | #define DA7210_PLL_FS_88200 (0xE << 0) |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 133 | #define DA7210_PLL_FS_96000 (0xF << 0) |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 134 | #define DA7210_PLL_EN (0x1 << 7) |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 135 | |
| 136 | #define DA7210_VERSION "0.0.1" |
| 137 | |
Kuninori Morimoto | a7e7cd5 | 2010-07-21 14:12:16 +0900 | [diff] [blame] | 138 | /* |
| 139 | * Playback Volume |
| 140 | * |
| 141 | * max : 0x3F (+15.0 dB) |
| 142 | * (1.5 dB step) |
| 143 | * min : 0x11 (-54.0 dB) |
| 144 | * mute : 0x10 |
| 145 | * reserved : 0x00 - 0x0F |
| 146 | * |
| 147 | * ** FIXME ** |
| 148 | * |
| 149 | * Reserved area are considered as "mute". |
| 150 | * -> min = -79.5 dB |
| 151 | */ |
| 152 | static const DECLARE_TLV_DB_SCALE(hp_out_tlv, -7950, 150, 1); |
| 153 | |
| 154 | static const struct snd_kcontrol_new da7210_snd_controls[] = { |
| 155 | |
| 156 | SOC_DOUBLE_R_TLV("HeadPhone Playback Volume", |
| 157 | DA7210_HP_L_VOL, DA7210_HP_R_VOL, |
| 158 | 0, 0x3F, 0, hp_out_tlv), |
| 159 | }; |
| 160 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 161 | /* Codec private data */ |
| 162 | struct da7210_priv { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 163 | enum snd_soc_control_type control_type; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 164 | }; |
| 165 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 166 | /* |
| 167 | * Register cache |
| 168 | */ |
| 169 | static const u8 da7210_reg[] = { |
| 170 | 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R0 - R7 */ |
| 171 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, /* R8 - RF */ |
| 172 | 0x00, 0x00, 0x00, 0x00, 0x08, 0x10, 0x10, 0x54, /* R10 - R17 */ |
| 173 | 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R18 - R1F */ |
| 174 | 0x00, 0x00, 0x00, 0x02, 0x00, 0x76, 0x00, 0x00, /* R20 - R27 */ |
| 175 | 0x04, 0x00, 0x00, 0x30, 0x2A, 0x00, 0x40, 0x00, /* R28 - R2F */ |
| 176 | 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, /* R30 - R37 */ |
| 177 | 0x40, 0x00, 0x40, 0x00, 0x40, 0x00, 0x00, 0x00, /* R38 - R3F */ |
| 178 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R40 - R4F */ |
| 179 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R48 - R4F */ |
| 180 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R50 - R57 */ |
| 181 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R58 - R5F */ |
| 182 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R60 - R67 */ |
| 183 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R68 - R6F */ |
| 184 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* R70 - R77 */ |
| 185 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x54, 0x00, /* R78 - R7F */ |
| 186 | 0x00, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x00, /* R80 - R87 */ |
| 187 | 0x00, /* R88 */ |
| 188 | }; |
| 189 | |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 190 | static int da7210_volatile_register(struct snd_soc_codec *codec, |
| 191 | unsigned int reg) |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 192 | { |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 193 | switch (reg) { |
| 194 | case DA7210_STATUS: |
| 195 | return 1; |
| 196 | default: |
| 197 | return 0; |
| 198 | } |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 199 | } |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 200 | static int da7210_startup(struct snd_pcm_substream *substream, |
| 201 | struct snd_soc_dai *dai) |
| 202 | { |
| 203 | int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
| 204 | struct snd_soc_codec *codec = dai->codec; |
| 205 | |
| 206 | if (is_play) { |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 207 | /* Enable Out */ |
| 208 | snd_soc_update_bits(codec, DA7210_OUTMIX_L, 0x1F, 0x10); |
| 209 | snd_soc_update_bits(codec, DA7210_OUTMIX_R, 0x1F, 0x10); |
| 210 | |
| 211 | } else { |
| 212 | /* Volume 7 */ |
| 213 | snd_soc_update_bits(codec, DA7210_MIC_L, 0x7, 0x7); |
| 214 | snd_soc_update_bits(codec, DA7210_MIC_R, 0x7, 0x7); |
| 215 | |
| 216 | /* Enable Mic */ |
| 217 | snd_soc_update_bits(codec, DA7210_INMIX_L, 0x1F, 0x1); |
| 218 | snd_soc_update_bits(codec, DA7210_INMIX_R, 0x1F, 0x1); |
| 219 | } |
| 220 | |
| 221 | return 0; |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * Set PCM DAI word length. |
| 226 | */ |
| 227 | static int da7210_hw_params(struct snd_pcm_substream *substream, |
| 228 | struct snd_pcm_hw_params *params, |
| 229 | struct snd_soc_dai *dai) |
| 230 | { |
| 231 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 232 | struct snd_soc_codec *codec = rtd->codec; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 233 | u32 dai_cfg1; |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 234 | u32 hpf_reg, hpf_mask, hpf_value; |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 235 | u32 fs, bypass; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 236 | |
| 237 | /* set DAI source to Left and Right ADC */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 238 | snd_soc_write(codec, DA7210_DAI_SRC_SEL, |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 239 | DA7210_DAI_OUT_R_SRC | DA7210_DAI_OUT_L_SRC); |
| 240 | |
| 241 | /* Enable DAI */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 242 | snd_soc_write(codec, DA7210_DAI_CFG3, DA7210_DAI_OE | DA7210_DAI_EN); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 243 | |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 244 | dai_cfg1 = 0xFC & snd_soc_read(codec, DA7210_DAI_CFG1); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 245 | |
| 246 | switch (params_format(params)) { |
| 247 | case SNDRV_PCM_FORMAT_S16_LE: |
| 248 | dai_cfg1 |= DA7210_DAI_WORD_S16_LE; |
| 249 | break; |
| 250 | case SNDRV_PCM_FORMAT_S24_LE: |
| 251 | dai_cfg1 |= DA7210_DAI_WORD_S24_LE; |
| 252 | break; |
| 253 | default: |
| 254 | return -EINVAL; |
| 255 | } |
| 256 | |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 257 | snd_soc_write(codec, DA7210_DAI_CFG1, dai_cfg1); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 258 | |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 259 | hpf_reg = (SNDRV_PCM_STREAM_PLAYBACK == substream->stream) ? |
| 260 | DA7210_DAC_HPF : DA7210_ADC_HPF; |
| 261 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 262 | switch (params_rate(params)) { |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 263 | case 8000: |
| 264 | fs = DA7210_PLL_FS_8000; |
| 265 | hpf_mask = DA7210_VOICE_F0_MASK | DA7210_VOICE_EN; |
| 266 | hpf_value = DA7210_VOICE_F0_25 | DA7210_VOICE_EN; |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 267 | bypass = DA7210_PLL_BYP; |
| 268 | break; |
| 269 | case 11025: |
| 270 | fs = DA7210_PLL_FS_11025; |
| 271 | hpf_mask = DA7210_VOICE_F0_MASK | DA7210_VOICE_EN; |
| 272 | hpf_value = DA7210_VOICE_F0_25 | DA7210_VOICE_EN; |
| 273 | bypass = 0; |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 274 | break; |
| 275 | case 12000: |
| 276 | fs = DA7210_PLL_FS_12000; |
| 277 | hpf_mask = DA7210_VOICE_F0_MASK | DA7210_VOICE_EN; |
| 278 | hpf_value = DA7210_VOICE_F0_25 | DA7210_VOICE_EN; |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 279 | bypass = DA7210_PLL_BYP; |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 280 | break; |
| 281 | case 16000: |
| 282 | fs = DA7210_PLL_FS_16000; |
| 283 | hpf_mask = DA7210_VOICE_F0_MASK | DA7210_VOICE_EN; |
| 284 | hpf_value = DA7210_VOICE_F0_25 | DA7210_VOICE_EN; |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 285 | bypass = DA7210_PLL_BYP; |
| 286 | break; |
| 287 | case 22050: |
| 288 | fs = DA7210_PLL_FS_22050; |
| 289 | hpf_mask = DA7210_VOICE_EN; |
| 290 | hpf_value = 0; |
| 291 | bypass = 0; |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 292 | break; |
| 293 | case 32000: |
| 294 | fs = DA7210_PLL_FS_32000; |
| 295 | hpf_mask = DA7210_VOICE_EN; |
| 296 | hpf_value = 0; |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 297 | bypass = DA7210_PLL_BYP; |
| 298 | break; |
| 299 | case 44100: |
| 300 | fs = DA7210_PLL_FS_44100; |
| 301 | hpf_mask = DA7210_VOICE_EN; |
| 302 | hpf_value = 0; |
| 303 | bypass = 0; |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 304 | break; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 305 | case 48000: |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 306 | fs = DA7210_PLL_FS_48000; |
| 307 | hpf_mask = DA7210_VOICE_EN; |
| 308 | hpf_value = 0; |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 309 | bypass = DA7210_PLL_BYP; |
| 310 | break; |
| 311 | case 88200: |
| 312 | fs = DA7210_PLL_FS_88200; |
| 313 | hpf_mask = DA7210_VOICE_EN; |
| 314 | hpf_value = 0; |
| 315 | bypass = 0; |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 316 | break; |
| 317 | case 96000: |
| 318 | fs = DA7210_PLL_FS_96000; |
| 319 | hpf_mask = DA7210_VOICE_EN; |
| 320 | hpf_value = 0; |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 321 | bypass = DA7210_PLL_BYP; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 322 | break; |
| 323 | default: |
| 324 | return -EINVAL; |
| 325 | } |
| 326 | |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 327 | /* Disable active mode */ |
| 328 | snd_soc_update_bits(codec, DA7210_STARTUP1, DA7210_SC_MST_EN, 0); |
| 329 | |
Kuninori Morimoto | 3a9d620 | 2010-03-01 10:10:43 +0900 | [diff] [blame] | 330 | snd_soc_update_bits(codec, hpf_reg, hpf_mask, hpf_value); |
| 331 | snd_soc_update_bits(codec, DA7210_PLL, DA7210_PLL_FS_MASK, fs); |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 332 | snd_soc_update_bits(codec, DA7210_PLL_DIV3, DA7210_PLL_BYP, bypass); |
| 333 | |
| 334 | /* Enable active mode */ |
| 335 | snd_soc_update_bits(codec, DA7210_STARTUP1, |
| 336 | DA7210_SC_MST_EN, DA7210_SC_MST_EN); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 337 | |
| 338 | return 0; |
| 339 | } |
| 340 | |
| 341 | /* |
| 342 | * Set DAI mode and Format |
| 343 | */ |
| 344 | static int da7210_set_dai_fmt(struct snd_soc_dai *codec_dai, u32 fmt) |
| 345 | { |
| 346 | struct snd_soc_codec *codec = codec_dai->codec; |
| 347 | u32 dai_cfg1; |
| 348 | u32 dai_cfg3; |
| 349 | |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 350 | dai_cfg1 = 0x7f & snd_soc_read(codec, DA7210_DAI_CFG1); |
| 351 | dai_cfg3 = 0xfc & snd_soc_read(codec, DA7210_DAI_CFG3); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 352 | |
| 353 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 354 | case SND_SOC_DAIFMT_CBM_CFM: |
| 355 | dai_cfg1 |= DA7210_DAI_MODE_MASTER; |
| 356 | break; |
| 357 | default: |
| 358 | return -EINVAL; |
| 359 | } |
| 360 | |
| 361 | /* FIXME |
| 362 | * |
| 363 | * It support I2S only now |
| 364 | */ |
| 365 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 366 | case SND_SOC_DAIFMT_I2S: |
| 367 | dai_cfg3 |= DA7210_DAI_FORMAT_I2SMODE; |
| 368 | break; |
| 369 | default: |
| 370 | return -EINVAL; |
| 371 | } |
| 372 | |
| 373 | /* FIXME |
| 374 | * |
| 375 | * It support 64bit data transmission only now |
| 376 | */ |
| 377 | dai_cfg1 |= DA7210_DAI_FLEN_64BIT; |
| 378 | |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 379 | snd_soc_write(codec, DA7210_DAI_CFG1, dai_cfg1); |
| 380 | snd_soc_write(codec, DA7210_DAI_CFG3, dai_cfg3); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 381 | |
| 382 | return 0; |
| 383 | } |
| 384 | |
| 385 | #define DA7210_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE) |
| 386 | |
| 387 | /* DAI operations */ |
| 388 | static struct snd_soc_dai_ops da7210_dai_ops = { |
| 389 | .startup = da7210_startup, |
| 390 | .hw_params = da7210_hw_params, |
| 391 | .set_fmt = da7210_set_dai_fmt, |
| 392 | }; |
| 393 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 394 | static struct snd_soc_dai_driver da7210_dai = { |
| 395 | .name = "da7210-hifi", |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 396 | /* playback capabilities */ |
| 397 | .playback = { |
| 398 | .stream_name = "Playback", |
| 399 | .channels_min = 1, |
| 400 | .channels_max = 2, |
| 401 | .rates = SNDRV_PCM_RATE_8000_96000, |
| 402 | .formats = DA7210_FORMATS, |
| 403 | }, |
| 404 | /* capture capabilities */ |
| 405 | .capture = { |
| 406 | .stream_name = "Capture", |
| 407 | .channels_min = 1, |
| 408 | .channels_max = 2, |
| 409 | .rates = SNDRV_PCM_RATE_8000_96000, |
| 410 | .formats = DA7210_FORMATS, |
| 411 | }, |
| 412 | .ops = &da7210_dai_ops, |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 413 | .symmetric_rates = 1, |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 414 | }; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 415 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 416 | static int da7210_probe(struct snd_soc_codec *codec) |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 417 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 418 | struct da7210_priv *da7210 = snd_soc_codec_get_drvdata(codec); |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 419 | int ret; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 420 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 421 | dev_info(codec->dev, "DA7210 Audio Codec %s\n", DA7210_VERSION); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 422 | |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 423 | ret = snd_soc_codec_set_cache_io(codec, 8, 8, da7210->control_type); |
| 424 | if (ret < 0) { |
| 425 | dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret); |
| 426 | return ret; |
| 427 | } |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 428 | |
| 429 | /* FIXME |
| 430 | * |
| 431 | * This driver use fixed value here |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 432 | * And below settings expects MCLK = 12.288MHz |
| 433 | * |
| 434 | * When you select different MCLK, please check... |
| 435 | * DA7210_PLL_DIV1 val |
| 436 | * DA7210_PLL_DIV2 val |
| 437 | * DA7210_PLL_DIV3 val |
| 438 | * DA7210_PLL_DIV3 :: DA7210_MCLK_RANGExxx |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 439 | */ |
| 440 | |
| 441 | /* |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 442 | * make sure that DA7210 use bypass mode before start up |
| 443 | */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 444 | snd_soc_write(codec, DA7210_STARTUP1, 0); |
| 445 | snd_soc_write(codec, DA7210_PLL_DIV3, |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 446 | DA7210_MCLK_RANGE_10_20_MHZ | DA7210_PLL_BYP); |
| 447 | |
| 448 | /* |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 449 | * ADC settings |
| 450 | */ |
| 451 | |
| 452 | /* Enable Left & Right MIC PGA and Mic Bias */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 453 | snd_soc_write(codec, DA7210_MIC_L, DA7210_MIC_L_EN | DA7210_MICBIAS_EN); |
| 454 | snd_soc_write(codec, DA7210_MIC_R, DA7210_MIC_R_EN); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 455 | |
| 456 | /* Enable Left and Right input PGA */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 457 | snd_soc_write(codec, DA7210_INMIX_L, DA7210_IN_L_EN); |
| 458 | snd_soc_write(codec, DA7210_INMIX_R, DA7210_IN_R_EN); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 459 | |
| 460 | /* Enable Left and Right ADC */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 461 | snd_soc_write(codec, DA7210_ADC, DA7210_ADC_L_EN | DA7210_ADC_R_EN); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 462 | |
| 463 | /* |
| 464 | * DAC settings |
| 465 | */ |
| 466 | |
| 467 | /* Enable Left and Right DAC */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 468 | snd_soc_write(codec, DA7210_DAC_SEL, |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 469 | DA7210_DAC_L_SRC_DAI_L | DA7210_DAC_L_EN | |
| 470 | DA7210_DAC_R_SRC_DAI_R | DA7210_DAC_R_EN); |
| 471 | |
| 472 | /* Enable Left and Right out PGA */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 473 | snd_soc_write(codec, DA7210_OUTMIX_L, DA7210_OUT_L_EN); |
| 474 | snd_soc_write(codec, DA7210_OUTMIX_R, DA7210_OUT_R_EN); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 475 | |
| 476 | /* Enable Left and Right HeadPhone PGA */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 477 | snd_soc_write(codec, DA7210_HP_CFG, |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 478 | DA7210_HP_2CAP_MODE | DA7210_HP_SENSE_EN | |
| 479 | DA7210_HP_L_EN | DA7210_HP_MODE | DA7210_HP_R_EN); |
| 480 | |
| 481 | /* Diable PLL and bypass it */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 482 | snd_soc_write(codec, DA7210_PLL, DA7210_PLL_FS_48000); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 483 | |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 484 | /* |
| 485 | * If 48kHz sound came, it use bypass mode, |
| 486 | * and when it is 44.1kHz, it use PLL. |
| 487 | * |
| 488 | * This time, this driver sets PLL always ON |
| 489 | * and controls bypass/PLL mode by switching |
| 490 | * DA7210_PLL_DIV3 :: DA7210_PLL_BYP bit. |
| 491 | * see da7210_hw_params |
| 492 | */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 493 | snd_soc_write(codec, DA7210_PLL_DIV1, 0xE5); /* MCLK = 12.288MHz */ |
| 494 | snd_soc_write(codec, DA7210_PLL_DIV2, 0x99); |
| 495 | snd_soc_write(codec, DA7210_PLL_DIV3, 0x0A | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 496 | DA7210_MCLK_RANGE_10_20_MHZ | DA7210_PLL_BYP); |
Kuninori Morimoto | 960b3b4 | 2010-03-11 11:37:44 +0900 | [diff] [blame] | 497 | snd_soc_update_bits(codec, DA7210_PLL, DA7210_PLL_EN, DA7210_PLL_EN); |
| 498 | |
| 499 | /* As suggested by Dialog */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 500 | snd_soc_write(codec, DA7210_A_HID_UNLOCK, 0x8B); /* unlock */ |
| 501 | snd_soc_write(codec, DA7210_A_TEST_UNLOCK, 0xB4); |
| 502 | snd_soc_write(codec, DA7210_A_PLL1, 0x01); |
| 503 | snd_soc_write(codec, DA7210_A_CP_MODE, 0x7C); |
| 504 | snd_soc_write(codec, DA7210_A_HID_UNLOCK, 0x00); /* re-lock */ |
| 505 | snd_soc_write(codec, DA7210_A_TEST_UNLOCK, 0x00); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 506 | |
| 507 | /* Activate all enabled subsystem */ |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 508 | snd_soc_write(codec, DA7210_STARTUP1, DA7210_SC_MST_EN); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 509 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 510 | snd_soc_add_controls(codec, da7210_snd_controls, |
| 511 | ARRAY_SIZE(da7210_snd_controls)); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 512 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 513 | dev_info(codec->dev, "DA7210 Audio Codec %s\n", DA7210_VERSION); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 514 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 515 | return 0; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 516 | } |
| 517 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 518 | static struct snd_soc_codec_driver soc_codec_dev_da7210 = { |
Kuninori Morimoto | 4c62ed9 | 2010-09-16 13:07:06 +0900 | [diff] [blame] | 519 | .probe = da7210_probe, |
Kuninori Morimoto | 4c62ed9 | 2010-09-16 13:07:06 +0900 | [diff] [blame] | 520 | .reg_cache_size = ARRAY_SIZE(da7210_reg), |
| 521 | .reg_word_size = sizeof(u8), |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 522 | .reg_cache_default = da7210_reg, |
Axel Lin | 40a4971 | 2011-10-12 07:16:25 +0800 | [diff] [blame^] | 523 | .volatile_register = da7210_volatile_register, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 524 | }; |
| 525 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 526 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
Mark Brown | 735fe4c | 2010-01-12 14:13:00 +0000 | [diff] [blame] | 527 | static int __devinit da7210_i2c_probe(struct i2c_client *i2c, |
| 528 | const struct i2c_device_id *id) |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 529 | { |
| 530 | struct da7210_priv *da7210; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 531 | int ret; |
| 532 | |
| 533 | da7210 = kzalloc(sizeof(struct da7210_priv), GFP_KERNEL); |
| 534 | if (!da7210) |
| 535 | return -ENOMEM; |
| 536 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 537 | i2c_set_clientdata(i2c, da7210); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 538 | da7210->control_type = SND_SOC_I2C; |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 539 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 540 | ret = snd_soc_register_codec(&i2c->dev, |
| 541 | &soc_codec_dev_da7210, &da7210_dai, 1); |
| 542 | if (ret < 0) |
Axel Lin | 085efd2 | 2010-07-23 05:53:45 +0000 | [diff] [blame] | 543 | kfree(da7210); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 544 | |
| 545 | return ret; |
| 546 | } |
| 547 | |
Mark Brown | 735fe4c | 2010-01-12 14:13:00 +0000 | [diff] [blame] | 548 | static int __devexit da7210_i2c_remove(struct i2c_client *client) |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 549 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 550 | snd_soc_unregister_codec(&client->dev); |
| 551 | kfree(i2c_get_clientdata(client)); |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 552 | return 0; |
| 553 | } |
| 554 | |
| 555 | static const struct i2c_device_id da7210_i2c_id[] = { |
| 556 | { "da7210", 0 }, |
| 557 | { } |
| 558 | }; |
| 559 | MODULE_DEVICE_TABLE(i2c, da7210_i2c_id); |
| 560 | |
| 561 | /* I2C codec control layer */ |
| 562 | static struct i2c_driver da7210_i2c_driver = { |
| 563 | .driver = { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 564 | .name = "da7210-codec", |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 565 | .owner = THIS_MODULE, |
| 566 | }, |
Kuninori Morimoto | 4c62ed9 | 2010-09-16 13:07:06 +0900 | [diff] [blame] | 567 | .probe = da7210_i2c_probe, |
| 568 | .remove = __devexit_p(da7210_i2c_remove), |
| 569 | .id_table = da7210_i2c_id, |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 570 | }; |
| 571 | #endif |
| 572 | |
Kuninori Morimoto | 9861545 | 2009-12-14 13:21:56 +0900 | [diff] [blame] | 573 | static int __init da7210_modinit(void) |
| 574 | { |
| 575 | int ret = 0; |
| 576 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
| 577 | ret = i2c_add_driver(&da7210_i2c_driver); |
| 578 | #endif |
| 579 | return ret; |
| 580 | } |
| 581 | module_init(da7210_modinit); |
| 582 | |
| 583 | static void __exit da7210_exit(void) |
| 584 | { |
| 585 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
| 586 | i2c_del_driver(&da7210_i2c_driver); |
| 587 | #endif |
| 588 | } |
| 589 | module_exit(da7210_exit); |
| 590 | |
| 591 | MODULE_DESCRIPTION("ASoC DA7210 driver"); |
| 592 | MODULE_AUTHOR("David Chen, Kuninori Morimoto"); |
| 593 | MODULE_LICENSE("GPL"); |