Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 Emilio López <emilio@elopez.com.ar> |
| 3 | * Copyright 2014 Jon Smirl <jonsmirl@gmail.com> |
| 4 | * Copyright 2015 Maxime Ripard <maxime.ripard@free-electrons.com> |
Adam Sampson | 474d147 | 2015-10-27 21:00:45 +0000 | [diff] [blame] | 5 | * Copyright 2015 Adam Sampson <ats@offog.org> |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 6 | * |
| 7 | * Based on the Allwinner SDK driver, released under the GPL. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | */ |
| 19 | |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/platform_device.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/of.h> |
| 27 | #include <linux/of_platform.h> |
| 28 | #include <linux/of_address.h> |
| 29 | #include <linux/clk.h> |
| 30 | #include <linux/regmap.h> |
Hans de Goede | 4059262 | 2015-12-11 19:43:57 +0100 | [diff] [blame] | 31 | #include <linux/gpio/consumer.h> |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 32 | |
| 33 | #include <sound/core.h> |
| 34 | #include <sound/pcm.h> |
| 35 | #include <sound/pcm_params.h> |
| 36 | #include <sound/soc.h> |
| 37 | #include <sound/tlv.h> |
| 38 | #include <sound/initval.h> |
| 39 | #include <sound/dmaengine_pcm.h> |
| 40 | |
Chen-Yu Tsai | bd720ec | 2016-11-03 15:55:45 +0800 | [diff] [blame^] | 41 | /* Codec DAC digital controls and FIFO registers */ |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 42 | #define SUN4I_CODEC_DAC_DPC (0x00) |
| 43 | #define SUN4I_CODEC_DAC_DPC_EN_DA (31) |
| 44 | #define SUN4I_CODEC_DAC_DPC_DVOL (12) |
| 45 | #define SUN4I_CODEC_DAC_FIFOC (0x04) |
| 46 | #define SUN4I_CODEC_DAC_FIFOC_DAC_FS (29) |
| 47 | #define SUN4I_CODEC_DAC_FIFOC_FIR_VERSION (28) |
| 48 | #define SUN4I_CODEC_DAC_FIFOC_SEND_LASAT (26) |
| 49 | #define SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE (24) |
| 50 | #define SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT (21) |
| 51 | #define SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL (8) |
| 52 | #define SUN4I_CODEC_DAC_FIFOC_MONO_EN (6) |
| 53 | #define SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS (5) |
| 54 | #define SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN (4) |
| 55 | #define SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH (0) |
| 56 | #define SUN4I_CODEC_DAC_FIFOS (0x08) |
| 57 | #define SUN4I_CODEC_DAC_TXDATA (0x0c) |
Chen-Yu Tsai | bd720ec | 2016-11-03 15:55:45 +0800 | [diff] [blame^] | 58 | |
| 59 | /* Codec DAC side analog signal controls */ |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 60 | #define SUN4I_CODEC_DAC_ACTL (0x10) |
| 61 | #define SUN4I_CODEC_DAC_ACTL_DACAENR (31) |
| 62 | #define SUN4I_CODEC_DAC_ACTL_DACAENL (30) |
| 63 | #define SUN4I_CODEC_DAC_ACTL_MIXEN (29) |
| 64 | #define SUN4I_CODEC_DAC_ACTL_LDACLMIXS (15) |
| 65 | #define SUN4I_CODEC_DAC_ACTL_RDACRMIXS (14) |
| 66 | #define SUN4I_CODEC_DAC_ACTL_LDACRMIXS (13) |
| 67 | #define SUN4I_CODEC_DAC_ACTL_DACPAS (8) |
| 68 | #define SUN4I_CODEC_DAC_ACTL_MIXPAS (7) |
| 69 | #define SUN4I_CODEC_DAC_ACTL_PA_MUTE (6) |
| 70 | #define SUN4I_CODEC_DAC_ACTL_PA_VOL (0) |
| 71 | #define SUN4I_CODEC_DAC_TUNE (0x14) |
| 72 | #define SUN4I_CODEC_DAC_DEBUG (0x18) |
| 73 | |
Chen-Yu Tsai | bd720ec | 2016-11-03 15:55:45 +0800 | [diff] [blame^] | 74 | /* Codec ADC digital controls and FIFO registers */ |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 75 | #define SUN4I_CODEC_ADC_FIFOC (0x1c) |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 76 | #define SUN4I_CODEC_ADC_FIFOC_ADC_FS (29) |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 77 | #define SUN4I_CODEC_ADC_FIFOC_EN_AD (28) |
| 78 | #define SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE (24) |
| 79 | #define SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL (8) |
| 80 | #define SUN4I_CODEC_ADC_FIFOC_MONO_EN (7) |
| 81 | #define SUN4I_CODEC_ADC_FIFOC_RX_SAMPLE_BITS (6) |
| 82 | #define SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN (4) |
| 83 | #define SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH (0) |
| 84 | #define SUN4I_CODEC_ADC_FIFOS (0x20) |
| 85 | #define SUN4I_CODEC_ADC_RXDATA (0x24) |
Chen-Yu Tsai | bd720ec | 2016-11-03 15:55:45 +0800 | [diff] [blame^] | 86 | |
| 87 | /* Codec ADC side analog signal controls */ |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 88 | #define SUN4I_CODEC_ADC_ACTL (0x28) |
| 89 | #define SUN4I_CODEC_ADC_ACTL_ADC_R_EN (31) |
| 90 | #define SUN4I_CODEC_ADC_ACTL_ADC_L_EN (30) |
| 91 | #define SUN4I_CODEC_ADC_ACTL_PREG1EN (29) |
| 92 | #define SUN4I_CODEC_ADC_ACTL_PREG2EN (28) |
| 93 | #define SUN4I_CODEC_ADC_ACTL_VMICEN (27) |
| 94 | #define SUN4I_CODEC_ADC_ACTL_VADCG (20) |
| 95 | #define SUN4I_CODEC_ADC_ACTL_ADCIS (17) |
| 96 | #define SUN4I_CODEC_ADC_ACTL_PA_EN (4) |
| 97 | #define SUN4I_CODEC_ADC_ACTL_DDE (3) |
| 98 | #define SUN4I_CODEC_ADC_DEBUG (0x2c) |
| 99 | |
Chen-Yu Tsai | bd720ec | 2016-11-03 15:55:45 +0800 | [diff] [blame^] | 100 | /* FIFO counters */ |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 101 | #define SUN4I_CODEC_DAC_TXCNT (0x30) |
| 102 | #define SUN4I_CODEC_ADC_RXCNT (0x34) |
Chen-Yu Tsai | bd720ec | 2016-11-03 15:55:45 +0800 | [diff] [blame^] | 103 | |
| 104 | /* Calibration register (sun7i only) */ |
Danny Milosavljevic | 4f0c4e9 | 2016-09-22 09:13:12 +0200 | [diff] [blame] | 105 | #define SUN7I_CODEC_AC_DAC_CAL (0x38) |
Chen-Yu Tsai | bd720ec | 2016-11-03 15:55:45 +0800 | [diff] [blame^] | 106 | |
| 107 | /* Microphone controls (sun7i only) */ |
Danny Milosavljevic | 4f0c4e9 | 2016-09-22 09:13:12 +0200 | [diff] [blame] | 108 | #define SUN7I_CODEC_AC_MIC_PHONE_CAL (0x3c) |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 109 | |
| 110 | struct sun4i_codec { |
| 111 | struct device *dev; |
| 112 | struct regmap *regmap; |
| 113 | struct clk *clk_apb; |
| 114 | struct clk *clk_module; |
Hans de Goede | 4059262 | 2015-12-11 19:43:57 +0100 | [diff] [blame] | 115 | struct gpio_desc *gpio_pa; |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 116 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 117 | struct snd_dmaengine_dai_dma_data capture_dma_data; |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 118 | struct snd_dmaengine_dai_dma_data playback_dma_data; |
| 119 | }; |
| 120 | |
| 121 | static void sun4i_codec_start_playback(struct sun4i_codec *scodec) |
| 122 | { |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 123 | /* Flush TX FIFO */ |
| 124 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 125 | BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH), |
| 126 | BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH)); |
| 127 | |
| 128 | /* Enable DAC DRQ */ |
| 129 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 130 | BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN), |
| 131 | BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN)); |
| 132 | } |
| 133 | |
| 134 | static void sun4i_codec_stop_playback(struct sun4i_codec *scodec) |
| 135 | { |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 136 | /* Disable DAC DRQ */ |
| 137 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 138 | BIT(SUN4I_CODEC_DAC_FIFOC_DAC_DRQ_EN), |
| 139 | 0); |
| 140 | } |
| 141 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 142 | static void sun4i_codec_start_capture(struct sun4i_codec *scodec) |
| 143 | { |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 144 | /* Enable ADC DRQ */ |
| 145 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC, |
| 146 | BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN), |
| 147 | BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN)); |
| 148 | } |
| 149 | |
| 150 | static void sun4i_codec_stop_capture(struct sun4i_codec *scodec) |
| 151 | { |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 152 | /* Disable ADC DRQ */ |
| 153 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC, |
| 154 | BIT(SUN4I_CODEC_ADC_FIFOC_ADC_DRQ_EN), 0); |
| 155 | } |
| 156 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 157 | static int sun4i_codec_trigger(struct snd_pcm_substream *substream, int cmd, |
| 158 | struct snd_soc_dai *dai) |
| 159 | { |
| 160 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 161 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card); |
| 162 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 163 | switch (cmd) { |
| 164 | case SNDRV_PCM_TRIGGER_START: |
| 165 | case SNDRV_PCM_TRIGGER_RESUME: |
| 166 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 167 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 168 | sun4i_codec_start_playback(scodec); |
| 169 | else |
| 170 | sun4i_codec_start_capture(scodec); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 171 | break; |
| 172 | |
| 173 | case SNDRV_PCM_TRIGGER_STOP: |
| 174 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 175 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 176 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 177 | sun4i_codec_stop_playback(scodec); |
| 178 | else |
| 179 | sun4i_codec_stop_capture(scodec); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 180 | break; |
| 181 | |
| 182 | default: |
| 183 | return -EINVAL; |
| 184 | } |
| 185 | |
| 186 | return 0; |
| 187 | } |
| 188 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 189 | static int sun4i_codec_prepare_capture(struct snd_pcm_substream *substream, |
| 190 | struct snd_soc_dai *dai) |
| 191 | { |
| 192 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 193 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card); |
| 194 | |
| 195 | |
| 196 | /* Flush RX FIFO */ |
| 197 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC, |
| 198 | BIT(SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH), |
| 199 | BIT(SUN4I_CODEC_ADC_FIFOC_FIFO_FLUSH)); |
| 200 | |
| 201 | |
| 202 | /* Set RX FIFO trigger level */ |
| 203 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC, |
| 204 | 0xf << SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL, |
| 205 | 0x7 << SUN4I_CODEC_ADC_FIFOC_RX_TRIG_LEVEL); |
| 206 | |
| 207 | /* |
| 208 | * FIXME: Undocumented in the datasheet, but |
| 209 | * Allwinner's code mentions that it is related |
| 210 | * related to microphone gain |
| 211 | */ |
| 212 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_ACTL, |
| 213 | 0x3 << 25, |
| 214 | 0x1 << 25); |
| 215 | |
| 216 | if (of_device_is_compatible(scodec->dev->of_node, |
| 217 | "allwinner,sun7i-a20-codec")) |
| 218 | /* FIXME: Undocumented bits */ |
| 219 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_TUNE, |
| 220 | 0x3 << 8, |
| 221 | 0x1 << 8); |
| 222 | |
| 223 | /* Fill most significant bits with valid data MSB */ |
| 224 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC, |
| 225 | BIT(SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE), |
| 226 | BIT(SUN4I_CODEC_ADC_FIFOC_RX_FIFO_MODE)); |
| 227 | |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | static int sun4i_codec_prepare_playback(struct snd_pcm_substream *substream, |
| 232 | struct snd_soc_dai *dai) |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 233 | { |
| 234 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 235 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card); |
| 236 | u32 val; |
| 237 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 238 | /* Flush the TX FIFO */ |
| 239 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 240 | BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH), |
| 241 | BIT(SUN4I_CODEC_DAC_FIFOC_FIFO_FLUSH)); |
| 242 | |
| 243 | /* Set TX FIFO Empty Trigger Level */ |
| 244 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 245 | 0x3f << SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL, |
| 246 | 0xf << SUN4I_CODEC_DAC_FIFOC_TX_TRIG_LEVEL); |
| 247 | |
| 248 | if (substream->runtime->rate > 32000) |
| 249 | /* Use 64 bits FIR filter */ |
| 250 | val = 0; |
| 251 | else |
| 252 | /* Use 32 bits FIR filter */ |
| 253 | val = BIT(SUN4I_CODEC_DAC_FIFOC_FIR_VERSION); |
| 254 | |
| 255 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 256 | BIT(SUN4I_CODEC_DAC_FIFOC_FIR_VERSION), |
| 257 | val); |
| 258 | |
| 259 | /* Send zeros when we have an underrun */ |
| 260 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 261 | BIT(SUN4I_CODEC_DAC_FIFOC_SEND_LASAT), |
| 262 | 0); |
| 263 | |
| 264 | return 0; |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 265 | }; |
| 266 | |
| 267 | static int sun4i_codec_prepare(struct snd_pcm_substream *substream, |
| 268 | struct snd_soc_dai *dai) |
| 269 | { |
| 270 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 271 | return sun4i_codec_prepare_playback(substream, dai); |
| 272 | |
| 273 | return sun4i_codec_prepare_capture(substream, dai); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | static unsigned long sun4i_codec_get_mod_freq(struct snd_pcm_hw_params *params) |
| 277 | { |
| 278 | unsigned int rate = params_rate(params); |
| 279 | |
| 280 | switch (rate) { |
| 281 | case 176400: |
| 282 | case 88200: |
| 283 | case 44100: |
| 284 | case 33075: |
| 285 | case 22050: |
| 286 | case 14700: |
| 287 | case 11025: |
| 288 | case 7350: |
| 289 | return 22579200; |
| 290 | |
| 291 | case 192000: |
| 292 | case 96000: |
| 293 | case 48000: |
| 294 | case 32000: |
| 295 | case 24000: |
| 296 | case 16000: |
| 297 | case 12000: |
| 298 | case 8000: |
| 299 | return 24576000; |
| 300 | |
| 301 | default: |
| 302 | return 0; |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | static int sun4i_codec_get_hw_rate(struct snd_pcm_hw_params *params) |
| 307 | { |
| 308 | unsigned int rate = params_rate(params); |
| 309 | |
| 310 | switch (rate) { |
| 311 | case 192000: |
| 312 | case 176400: |
| 313 | return 6; |
| 314 | |
| 315 | case 96000: |
| 316 | case 88200: |
| 317 | return 7; |
| 318 | |
| 319 | case 48000: |
| 320 | case 44100: |
| 321 | return 0; |
| 322 | |
| 323 | case 32000: |
| 324 | case 33075: |
| 325 | return 1; |
| 326 | |
| 327 | case 24000: |
| 328 | case 22050: |
| 329 | return 2; |
| 330 | |
| 331 | case 16000: |
| 332 | case 14700: |
| 333 | return 3; |
| 334 | |
| 335 | case 12000: |
| 336 | case 11025: |
| 337 | return 4; |
| 338 | |
| 339 | case 8000: |
| 340 | case 7350: |
| 341 | return 5; |
| 342 | |
| 343 | default: |
| 344 | return -EINVAL; |
| 345 | } |
| 346 | } |
| 347 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 348 | static int sun4i_codec_hw_params_capture(struct sun4i_codec *scodec, |
| 349 | struct snd_pcm_hw_params *params, |
| 350 | unsigned int hwrate) |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 351 | { |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 352 | /* Set ADC sample rate */ |
| 353 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC, |
| 354 | 7 << SUN4I_CODEC_ADC_FIFOC_ADC_FS, |
| 355 | hwrate << SUN4I_CODEC_ADC_FIFOC_ADC_FS); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 356 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 357 | /* Set the number of channels we want to use */ |
| 358 | if (params_channels(params) == 1) |
| 359 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC, |
| 360 | BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN), |
| 361 | BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN)); |
| 362 | else |
| 363 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_ADC_FIFOC, |
| 364 | BIT(SUN4I_CODEC_ADC_FIFOC_MONO_EN), 0); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 365 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 366 | return 0; |
| 367 | } |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 368 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 369 | static int sun4i_codec_hw_params_playback(struct sun4i_codec *scodec, |
| 370 | struct snd_pcm_hw_params *params, |
| 371 | unsigned int hwrate) |
| 372 | { |
| 373 | u32 val; |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 374 | |
| 375 | /* Set DAC sample rate */ |
| 376 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 377 | 7 << SUN4I_CODEC_DAC_FIFOC_DAC_FS, |
| 378 | hwrate << SUN4I_CODEC_DAC_FIFOC_DAC_FS); |
| 379 | |
| 380 | /* Set the number of channels we want to use */ |
| 381 | if (params_channels(params) == 1) |
| 382 | val = BIT(SUN4I_CODEC_DAC_FIFOC_MONO_EN); |
| 383 | else |
| 384 | val = 0; |
| 385 | |
| 386 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 387 | BIT(SUN4I_CODEC_DAC_FIFOC_MONO_EN), |
| 388 | val); |
| 389 | |
| 390 | /* Set the number of sample bits to either 16 or 24 bits */ |
| 391 | if (hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS)->min == 32) { |
| 392 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 393 | BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS), |
| 394 | BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS)); |
| 395 | |
| 396 | /* Set TX FIFO mode to padding the LSBs with 0 */ |
| 397 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 398 | BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE), |
| 399 | 0); |
| 400 | |
| 401 | scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; |
| 402 | } else { |
| 403 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 404 | BIT(SUN4I_CODEC_DAC_FIFOC_TX_SAMPLE_BITS), |
| 405 | 0); |
| 406 | |
| 407 | /* Set TX FIFO mode to repeat the MSB */ |
| 408 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 409 | BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE), |
| 410 | BIT(SUN4I_CODEC_DAC_FIFOC_TX_FIFO_MODE)); |
| 411 | |
| 412 | scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES; |
| 413 | } |
| 414 | |
| 415 | return 0; |
| 416 | } |
| 417 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 418 | static int sun4i_codec_hw_params(struct snd_pcm_substream *substream, |
| 419 | struct snd_pcm_hw_params *params, |
| 420 | struct snd_soc_dai *dai) |
| 421 | { |
| 422 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 423 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card); |
| 424 | unsigned long clk_freq; |
Maxime Ripard | 8400ddf | 2015-12-01 12:06:47 +0100 | [diff] [blame] | 425 | int ret, hwrate; |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 426 | |
| 427 | clk_freq = sun4i_codec_get_mod_freq(params); |
| 428 | if (!clk_freq) |
| 429 | return -EINVAL; |
| 430 | |
Maxime Ripard | 8400ddf | 2015-12-01 12:06:47 +0100 | [diff] [blame] | 431 | ret = clk_set_rate(scodec->clk_module, clk_freq); |
| 432 | if (ret) |
| 433 | return ret; |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 434 | |
| 435 | hwrate = sun4i_codec_get_hw_rate(params); |
| 436 | if (hwrate < 0) |
| 437 | return hwrate; |
| 438 | |
| 439 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 440 | return sun4i_codec_hw_params_playback(scodec, params, |
| 441 | hwrate); |
| 442 | |
| 443 | return sun4i_codec_hw_params_capture(scodec, params, |
| 444 | hwrate); |
| 445 | } |
| 446 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 447 | static int sun4i_codec_startup(struct snd_pcm_substream *substream, |
| 448 | struct snd_soc_dai *dai) |
| 449 | { |
| 450 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 451 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card); |
| 452 | |
| 453 | /* |
| 454 | * Stop issuing DRQ when we have room for less than 16 samples |
| 455 | * in our TX FIFO |
| 456 | */ |
| 457 | regmap_update_bits(scodec->regmap, SUN4I_CODEC_DAC_FIFOC, |
| 458 | 3 << SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT, |
| 459 | 3 << SUN4I_CODEC_DAC_FIFOC_DRQ_CLR_CNT); |
| 460 | |
| 461 | return clk_prepare_enable(scodec->clk_module); |
| 462 | } |
| 463 | |
| 464 | static void sun4i_codec_shutdown(struct snd_pcm_substream *substream, |
| 465 | struct snd_soc_dai *dai) |
| 466 | { |
| 467 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 468 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(rtd->card); |
| 469 | |
| 470 | clk_disable_unprepare(scodec->clk_module); |
| 471 | } |
| 472 | |
| 473 | static const struct snd_soc_dai_ops sun4i_codec_dai_ops = { |
| 474 | .startup = sun4i_codec_startup, |
| 475 | .shutdown = sun4i_codec_shutdown, |
| 476 | .trigger = sun4i_codec_trigger, |
| 477 | .hw_params = sun4i_codec_hw_params, |
| 478 | .prepare = sun4i_codec_prepare, |
| 479 | }; |
| 480 | |
| 481 | static struct snd_soc_dai_driver sun4i_codec_dai = { |
| 482 | .name = "Codec", |
| 483 | .ops = &sun4i_codec_dai_ops, |
| 484 | .playback = { |
| 485 | .stream_name = "Codec Playback", |
| 486 | .channels_min = 1, |
| 487 | .channels_max = 2, |
| 488 | .rate_min = 8000, |
| 489 | .rate_max = 192000, |
| 490 | .rates = SNDRV_PCM_RATE_8000_48000 | |
| 491 | SNDRV_PCM_RATE_96000 | |
Maxime Ripard | debb972 | 2015-09-29 21:43:18 +0200 | [diff] [blame] | 492 | SNDRV_PCM_RATE_192000, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 493 | .formats = SNDRV_PCM_FMTBIT_S16_LE | |
| 494 | SNDRV_PCM_FMTBIT_S32_LE, |
| 495 | .sig_bits = 24, |
| 496 | }, |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 497 | .capture = { |
| 498 | .stream_name = "Codec Capture", |
| 499 | .channels_min = 1, |
| 500 | .channels_max = 2, |
| 501 | .rate_min = 8000, |
| 502 | .rate_max = 192000, |
| 503 | .rates = SNDRV_PCM_RATE_8000_48000 | |
| 504 | SNDRV_PCM_RATE_96000 | |
| 505 | SNDRV_PCM_RATE_192000 | |
| 506 | SNDRV_PCM_RATE_KNOT, |
| 507 | .formats = SNDRV_PCM_FMTBIT_S16_LE | |
| 508 | SNDRV_PCM_FMTBIT_S32_LE, |
| 509 | .sig_bits = 24, |
| 510 | }, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 511 | }; |
| 512 | |
| 513 | /*** Codec ***/ |
| 514 | static const struct snd_kcontrol_new sun4i_codec_pa_mute = |
| 515 | SOC_DAPM_SINGLE("Switch", SUN4I_CODEC_DAC_ACTL, |
| 516 | SUN4I_CODEC_DAC_ACTL_PA_MUTE, 1, 0); |
| 517 | |
| 518 | static DECLARE_TLV_DB_SCALE(sun4i_codec_pa_volume_scale, -6300, 100, 1); |
| 519 | |
Danny Milosavljevic | c9e902f | 2016-09-24 22:05:01 +0200 | [diff] [blame] | 520 | static const struct snd_kcontrol_new sun4i_codec_controls[] = { |
Adam Sampson | 474d147 | 2015-10-27 21:00:45 +0000 | [diff] [blame] | 521 | SOC_SINGLE_TLV("Power Amplifier Volume", SUN4I_CODEC_DAC_ACTL, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 522 | SUN4I_CODEC_DAC_ACTL_PA_VOL, 0x3F, 0, |
| 523 | sun4i_codec_pa_volume_scale), |
| 524 | }; |
| 525 | |
| 526 | static const struct snd_kcontrol_new sun4i_codec_left_mixer_controls[] = { |
| 527 | SOC_DAPM_SINGLE("Left DAC Playback Switch", SUN4I_CODEC_DAC_ACTL, |
| 528 | SUN4I_CODEC_DAC_ACTL_LDACLMIXS, 1, 0), |
| 529 | }; |
| 530 | |
| 531 | static const struct snd_kcontrol_new sun4i_codec_right_mixer_controls[] = { |
| 532 | SOC_DAPM_SINGLE("Right DAC Playback Switch", SUN4I_CODEC_DAC_ACTL, |
| 533 | SUN4I_CODEC_DAC_ACTL_RDACRMIXS, 1, 0), |
| 534 | SOC_DAPM_SINGLE("Left DAC Playback Switch", SUN4I_CODEC_DAC_ACTL, |
| 535 | SUN4I_CODEC_DAC_ACTL_LDACRMIXS, 1, 0), |
| 536 | }; |
| 537 | |
| 538 | static const struct snd_kcontrol_new sun4i_codec_pa_mixer_controls[] = { |
| 539 | SOC_DAPM_SINGLE("DAC Playback Switch", SUN4I_CODEC_DAC_ACTL, |
| 540 | SUN4I_CODEC_DAC_ACTL_DACPAS, 1, 0), |
| 541 | SOC_DAPM_SINGLE("Mixer Playback Switch", SUN4I_CODEC_DAC_ACTL, |
| 542 | SUN4I_CODEC_DAC_ACTL_MIXPAS, 1, 0), |
| 543 | }; |
| 544 | |
Hans de Goede | e6415b4 | 2015-12-11 19:43:56 +0100 | [diff] [blame] | 545 | static const struct snd_soc_dapm_widget sun4i_codec_codec_dapm_widgets[] = { |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 546 | /* Digital parts of the ADCs */ |
| 547 | SND_SOC_DAPM_SUPPLY("ADC", SUN4I_CODEC_ADC_FIFOC, |
| 548 | SUN4I_CODEC_ADC_FIFOC_EN_AD, 0, |
| 549 | NULL, 0), |
| 550 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 551 | /* Digital parts of the DACs */ |
| 552 | SND_SOC_DAPM_SUPPLY("DAC", SUN4I_CODEC_DAC_DPC, |
| 553 | SUN4I_CODEC_DAC_DPC_EN_DA, 0, |
| 554 | NULL, 0), |
| 555 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 556 | /* Analog parts of the ADCs */ |
| 557 | SND_SOC_DAPM_ADC("Left ADC", "Codec Capture", SUN4I_CODEC_ADC_ACTL, |
| 558 | SUN4I_CODEC_ADC_ACTL_ADC_L_EN, 0), |
| 559 | SND_SOC_DAPM_ADC("Right ADC", "Codec Capture", SUN4I_CODEC_ADC_ACTL, |
| 560 | SUN4I_CODEC_ADC_ACTL_ADC_R_EN, 0), |
| 561 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 562 | /* Analog parts of the DACs */ |
| 563 | SND_SOC_DAPM_DAC("Left DAC", "Codec Playback", SUN4I_CODEC_DAC_ACTL, |
| 564 | SUN4I_CODEC_DAC_ACTL_DACAENL, 0), |
| 565 | SND_SOC_DAPM_DAC("Right DAC", "Codec Playback", SUN4I_CODEC_DAC_ACTL, |
| 566 | SUN4I_CODEC_DAC_ACTL_DACAENR, 0), |
| 567 | |
| 568 | /* Mixers */ |
| 569 | SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0, |
| 570 | sun4i_codec_left_mixer_controls, |
| 571 | ARRAY_SIZE(sun4i_codec_left_mixer_controls)), |
| 572 | SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0, |
| 573 | sun4i_codec_right_mixer_controls, |
| 574 | ARRAY_SIZE(sun4i_codec_right_mixer_controls)), |
| 575 | |
| 576 | /* Global Mixer Enable */ |
| 577 | SND_SOC_DAPM_SUPPLY("Mixer Enable", SUN4I_CODEC_DAC_ACTL, |
| 578 | SUN4I_CODEC_DAC_ACTL_MIXEN, 0, NULL, 0), |
| 579 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 580 | /* VMIC */ |
| 581 | SND_SOC_DAPM_SUPPLY("VMIC", SUN4I_CODEC_ADC_ACTL, |
| 582 | SUN4I_CODEC_ADC_ACTL_VMICEN, 0, NULL, 0), |
| 583 | |
| 584 | /* Mic Pre-Amplifiers */ |
| 585 | SND_SOC_DAPM_PGA("MIC1 Pre-Amplifier", SUN4I_CODEC_ADC_ACTL, |
| 586 | SUN4I_CODEC_ADC_ACTL_PREG1EN, 0, NULL, 0), |
| 587 | |
Adam Sampson | 474d147 | 2015-10-27 21:00:45 +0000 | [diff] [blame] | 588 | /* Power Amplifier */ |
| 589 | SND_SOC_DAPM_MIXER("Power Amplifier", SUN4I_CODEC_ADC_ACTL, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 590 | SUN4I_CODEC_ADC_ACTL_PA_EN, 0, |
| 591 | sun4i_codec_pa_mixer_controls, |
| 592 | ARRAY_SIZE(sun4i_codec_pa_mixer_controls)), |
Adam Sampson | 474d147 | 2015-10-27 21:00:45 +0000 | [diff] [blame] | 593 | SND_SOC_DAPM_SWITCH("Power Amplifier Mute", SND_SOC_NOPM, 0, 0, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 594 | &sun4i_codec_pa_mute), |
| 595 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 596 | SND_SOC_DAPM_INPUT("Mic1"), |
| 597 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 598 | SND_SOC_DAPM_OUTPUT("HP Right"), |
| 599 | SND_SOC_DAPM_OUTPUT("HP Left"), |
| 600 | }; |
| 601 | |
Hans de Goede | e6415b4 | 2015-12-11 19:43:56 +0100 | [diff] [blame] | 602 | static const struct snd_soc_dapm_route sun4i_codec_codec_dapm_routes[] = { |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 603 | /* Left ADC / DAC Routes */ |
| 604 | { "Left ADC", NULL, "ADC" }, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 605 | { "Left DAC", NULL, "DAC" }, |
| 606 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 607 | /* Right ADC / DAC Routes */ |
| 608 | { "Right ADC", NULL, "ADC" }, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 609 | { "Right DAC", NULL, "DAC" }, |
| 610 | |
| 611 | /* Right Mixer Routes */ |
| 612 | { "Right Mixer", NULL, "Mixer Enable" }, |
| 613 | { "Right Mixer", "Left DAC Playback Switch", "Left DAC" }, |
| 614 | { "Right Mixer", "Right DAC Playback Switch", "Right DAC" }, |
| 615 | |
| 616 | /* Left Mixer Routes */ |
| 617 | { "Left Mixer", NULL, "Mixer Enable" }, |
| 618 | { "Left Mixer", "Left DAC Playback Switch", "Left DAC" }, |
| 619 | |
Adam Sampson | 474d147 | 2015-10-27 21:00:45 +0000 | [diff] [blame] | 620 | /* Power Amplifier Routes */ |
| 621 | { "Power Amplifier", "Mixer Playback Switch", "Left Mixer" }, |
| 622 | { "Power Amplifier", "Mixer Playback Switch", "Right Mixer" }, |
| 623 | { "Power Amplifier", "DAC Playback Switch", "Left DAC" }, |
| 624 | { "Power Amplifier", "DAC Playback Switch", "Right DAC" }, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 625 | |
Adam Sampson | 474d147 | 2015-10-27 21:00:45 +0000 | [diff] [blame] | 626 | /* Headphone Output Routes */ |
| 627 | { "Power Amplifier Mute", "Switch", "Power Amplifier" }, |
| 628 | { "HP Right", NULL, "Power Amplifier Mute" }, |
| 629 | { "HP Left", NULL, "Power Amplifier Mute" }, |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 630 | |
| 631 | /* Mic1 Routes */ |
| 632 | { "Left ADC", NULL, "MIC1 Pre-Amplifier" }, |
| 633 | { "Right ADC", NULL, "MIC1 Pre-Amplifier" }, |
| 634 | { "MIC1 Pre-Amplifier", NULL, "Mic1"}, |
| 635 | { "Mic1", NULL, "VMIC" }, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 636 | }; |
| 637 | |
| 638 | static struct snd_soc_codec_driver sun4i_codec_codec = { |
Kuninori Morimoto | 180f58f | 2016-08-08 08:46:41 +0000 | [diff] [blame] | 639 | .component_driver = { |
Danny Milosavljevic | c9e902f | 2016-09-24 22:05:01 +0200 | [diff] [blame] | 640 | .controls = sun4i_codec_controls, |
| 641 | .num_controls = ARRAY_SIZE(sun4i_codec_controls), |
Kuninori Morimoto | 180f58f | 2016-08-08 08:46:41 +0000 | [diff] [blame] | 642 | .dapm_widgets = sun4i_codec_codec_dapm_widgets, |
| 643 | .num_dapm_widgets = ARRAY_SIZE(sun4i_codec_codec_dapm_widgets), |
| 644 | .dapm_routes = sun4i_codec_codec_dapm_routes, |
| 645 | .num_dapm_routes = ARRAY_SIZE(sun4i_codec_codec_dapm_routes), |
| 646 | }, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 647 | }; |
| 648 | |
| 649 | static const struct snd_soc_component_driver sun4i_codec_component = { |
| 650 | .name = "sun4i-codec", |
| 651 | }; |
| 652 | |
| 653 | #define SUN4I_CODEC_RATES SNDRV_PCM_RATE_8000_192000 |
| 654 | #define SUN4I_CODEC_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ |
| 655 | SNDRV_PCM_FMTBIT_S32_LE) |
| 656 | |
| 657 | static int sun4i_codec_dai_probe(struct snd_soc_dai *dai) |
| 658 | { |
| 659 | struct snd_soc_card *card = snd_soc_dai_get_drvdata(dai); |
| 660 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(card); |
| 661 | |
| 662 | snd_soc_dai_init_dma_data(dai, &scodec->playback_dma_data, |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 663 | &scodec->capture_dma_data); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 664 | |
| 665 | return 0; |
| 666 | } |
| 667 | |
| 668 | static struct snd_soc_dai_driver dummy_cpu_dai = { |
| 669 | .name = "sun4i-codec-cpu-dai", |
| 670 | .probe = sun4i_codec_dai_probe, |
| 671 | .playback = { |
| 672 | .stream_name = "Playback", |
| 673 | .channels_min = 1, |
| 674 | .channels_max = 2, |
| 675 | .rates = SUN4I_CODEC_RATES, |
| 676 | .formats = SUN4I_CODEC_FORMATS, |
| 677 | .sig_bits = 24, |
| 678 | }, |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 679 | .capture = { |
| 680 | .stream_name = "Capture", |
| 681 | .channels_min = 1, |
| 682 | .channels_max = 2, |
| 683 | .rates = SUN4I_CODEC_RATES, |
| 684 | .formats = SUN4I_CODEC_FORMATS, |
| 685 | .sig_bits = 24, |
| 686 | }, |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 687 | }; |
| 688 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 689 | static struct snd_soc_dai_link *sun4i_codec_create_link(struct device *dev, |
| 690 | int *num_links) |
| 691 | { |
| 692 | struct snd_soc_dai_link *link = devm_kzalloc(dev, sizeof(*link), |
| 693 | GFP_KERNEL); |
| 694 | if (!link) |
| 695 | return NULL; |
| 696 | |
| 697 | link->name = "cdc"; |
| 698 | link->stream_name = "CDC PCM"; |
| 699 | link->codec_dai_name = "Codec"; |
| 700 | link->cpu_dai_name = dev_name(dev); |
| 701 | link->codec_name = dev_name(dev); |
| 702 | link->platform_name = dev_name(dev); |
| 703 | link->dai_fmt = SND_SOC_DAIFMT_I2S; |
| 704 | |
| 705 | *num_links = 1; |
| 706 | |
| 707 | return link; |
| 708 | }; |
| 709 | |
Hans de Goede | 4059262 | 2015-12-11 19:43:57 +0100 | [diff] [blame] | 710 | static int sun4i_codec_spk_event(struct snd_soc_dapm_widget *w, |
| 711 | struct snd_kcontrol *k, int event) |
| 712 | { |
| 713 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(w->dapm->card); |
| 714 | |
| 715 | if (scodec->gpio_pa) |
| 716 | gpiod_set_value_cansleep(scodec->gpio_pa, |
| 717 | !!SND_SOC_DAPM_EVENT_ON(event)); |
| 718 | |
| 719 | return 0; |
| 720 | } |
| 721 | |
| 722 | static const struct snd_soc_dapm_widget sun4i_codec_card_dapm_widgets[] = { |
| 723 | SND_SOC_DAPM_SPK("Speaker", sun4i_codec_spk_event), |
| 724 | }; |
| 725 | |
| 726 | static const struct snd_soc_dapm_route sun4i_codec_card_dapm_routes[] = { |
Hans de Goede | 6b803c6 | 2015-12-22 23:00:17 +0100 | [diff] [blame] | 727 | { "Speaker", NULL, "HP Right" }, |
| 728 | { "Speaker", NULL, "HP Left" }, |
Hans de Goede | 4059262 | 2015-12-11 19:43:57 +0100 | [diff] [blame] | 729 | }; |
| 730 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 731 | static struct snd_soc_card *sun4i_codec_create_card(struct device *dev) |
| 732 | { |
| 733 | struct snd_soc_card *card; |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 734 | |
| 735 | card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL); |
| 736 | if (!card) |
Chen-Yu Tsai | 85915b6 | 2016-10-31 14:42:09 +0800 | [diff] [blame] | 737 | return ERR_PTR(-ENOMEM); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 738 | |
| 739 | card->dai_link = sun4i_codec_create_link(dev, &card->num_links); |
| 740 | if (!card->dai_link) |
Chen-Yu Tsai | 85915b6 | 2016-10-31 14:42:09 +0800 | [diff] [blame] | 741 | return ERR_PTR(-ENOMEM); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 742 | |
| 743 | card->dev = dev; |
| 744 | card->name = "sun4i-codec"; |
Hans de Goede | 4059262 | 2015-12-11 19:43:57 +0100 | [diff] [blame] | 745 | card->dapm_widgets = sun4i_codec_card_dapm_widgets; |
| 746 | card->num_dapm_widgets = ARRAY_SIZE(sun4i_codec_card_dapm_widgets); |
| 747 | card->dapm_routes = sun4i_codec_card_dapm_routes; |
| 748 | card->num_dapm_routes = ARRAY_SIZE(sun4i_codec_card_dapm_routes); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 749 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 750 | return card; |
| 751 | }; |
| 752 | |
Chen-Yu Tsai | 2f2a346 | 2016-11-03 15:55:43 +0800 | [diff] [blame] | 753 | static const struct regmap_config sun4i_codec_regmap_config = { |
| 754 | .reg_bits = 32, |
| 755 | .reg_stride = 4, |
| 756 | .val_bits = 32, |
| 757 | .max_register = SUN4I_CODEC_ADC_RXCNT, |
| 758 | }; |
| 759 | |
| 760 | static const struct regmap_config sun7i_codec_regmap_config = { |
| 761 | .reg_bits = 32, |
| 762 | .reg_stride = 4, |
| 763 | .val_bits = 32, |
| 764 | .max_register = SUN7I_CODEC_AC_MIC_PHONE_CAL, |
| 765 | }; |
| 766 | |
| 767 | struct sun4i_codec_quirks { |
| 768 | const struct regmap_config *regmap_config; |
| 769 | }; |
| 770 | |
| 771 | static const struct sun4i_codec_quirks sun4i_codec_quirks = { |
| 772 | .regmap_config = &sun4i_codec_regmap_config, |
| 773 | }; |
| 774 | |
| 775 | static const struct sun4i_codec_quirks sun7i_codec_quirks = { |
| 776 | .regmap_config = &sun7i_codec_regmap_config, |
| 777 | }; |
| 778 | |
| 779 | static const struct of_device_id sun4i_codec_of_match[] = { |
| 780 | { |
| 781 | .compatible = "allwinner,sun4i-a10-codec", |
| 782 | .data = &sun4i_codec_quirks, |
| 783 | }, |
| 784 | { |
| 785 | .compatible = "allwinner,sun7i-a20-codec", |
| 786 | .data = &sun7i_codec_quirks, |
| 787 | }, |
| 788 | {} |
| 789 | }; |
| 790 | MODULE_DEVICE_TABLE(of, sun4i_codec_of_match); |
| 791 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 792 | static int sun4i_codec_probe(struct platform_device *pdev) |
| 793 | { |
| 794 | struct snd_soc_card *card; |
| 795 | struct sun4i_codec *scodec; |
Danny Milosavljevic | c1d5065 | 2016-09-22 09:13:13 +0200 | [diff] [blame] | 796 | const struct sun4i_codec_quirks *quirks; |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 797 | struct resource *res; |
| 798 | void __iomem *base; |
| 799 | int ret; |
| 800 | |
| 801 | scodec = devm_kzalloc(&pdev->dev, sizeof(*scodec), GFP_KERNEL); |
| 802 | if (!scodec) |
| 803 | return -ENOMEM; |
| 804 | |
| 805 | scodec->dev = &pdev->dev; |
| 806 | |
| 807 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 808 | base = devm_ioremap_resource(&pdev->dev, res); |
| 809 | if (IS_ERR(base)) { |
| 810 | dev_err(&pdev->dev, "Failed to map the registers\n"); |
| 811 | return PTR_ERR(base); |
| 812 | } |
| 813 | |
Danny Milosavljevic | c1d5065 | 2016-09-22 09:13:13 +0200 | [diff] [blame] | 814 | quirks = of_device_get_match_data(&pdev->dev); |
| 815 | if (quirks == NULL) { |
| 816 | dev_err(&pdev->dev, "Failed to determine the quirks to use\n"); |
| 817 | return -ENODEV; |
| 818 | } |
| 819 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 820 | scodec->regmap = devm_regmap_init_mmio(&pdev->dev, base, |
Danny Milosavljevic | c1d5065 | 2016-09-22 09:13:13 +0200 | [diff] [blame] | 821 | quirks->regmap_config); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 822 | if (IS_ERR(scodec->regmap)) { |
| 823 | dev_err(&pdev->dev, "Failed to create our regmap\n"); |
| 824 | return PTR_ERR(scodec->regmap); |
| 825 | } |
| 826 | |
| 827 | /* Get the clocks from the DT */ |
| 828 | scodec->clk_apb = devm_clk_get(&pdev->dev, "apb"); |
| 829 | if (IS_ERR(scodec->clk_apb)) { |
| 830 | dev_err(&pdev->dev, "Failed to get the APB clock\n"); |
| 831 | return PTR_ERR(scodec->clk_apb); |
| 832 | } |
| 833 | |
| 834 | scodec->clk_module = devm_clk_get(&pdev->dev, "codec"); |
| 835 | if (IS_ERR(scodec->clk_module)) { |
| 836 | dev_err(&pdev->dev, "Failed to get the module clock\n"); |
| 837 | return PTR_ERR(scodec->clk_module); |
| 838 | } |
| 839 | |
| 840 | /* Enable the bus clock */ |
| 841 | if (clk_prepare_enable(scodec->clk_apb)) { |
| 842 | dev_err(&pdev->dev, "Failed to enable the APB clock\n"); |
| 843 | return -EINVAL; |
| 844 | } |
| 845 | |
Hans de Goede | 4059262 | 2015-12-11 19:43:57 +0100 | [diff] [blame] | 846 | scodec->gpio_pa = devm_gpiod_get_optional(&pdev->dev, "allwinner,pa", |
| 847 | GPIOD_OUT_LOW); |
| 848 | if (IS_ERR(scodec->gpio_pa)) { |
| 849 | ret = PTR_ERR(scodec->gpio_pa); |
| 850 | if (ret != -EPROBE_DEFER) |
| 851 | dev_err(&pdev->dev, "Failed to get pa gpio: %d\n", ret); |
| 852 | return ret; |
| 853 | } |
| 854 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 855 | /* DMA configuration for TX FIFO */ |
| 856 | scodec->playback_dma_data.addr = res->start + SUN4I_CODEC_DAC_TXDATA; |
| 857 | scodec->playback_dma_data.maxburst = 4; |
| 858 | scodec->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES; |
| 859 | |
Maxime Ripard | 1fb34b4 | 2015-11-30 16:37:47 +0100 | [diff] [blame] | 860 | /* DMA configuration for RX FIFO */ |
| 861 | scodec->capture_dma_data.addr = res->start + SUN4I_CODEC_ADC_RXDATA; |
| 862 | scodec->capture_dma_data.maxburst = 4; |
| 863 | scodec->capture_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES; |
| 864 | |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 865 | ret = snd_soc_register_codec(&pdev->dev, &sun4i_codec_codec, |
| 866 | &sun4i_codec_dai, 1); |
| 867 | if (ret) { |
| 868 | dev_err(&pdev->dev, "Failed to register our codec\n"); |
| 869 | goto err_clk_disable; |
| 870 | } |
| 871 | |
| 872 | ret = devm_snd_soc_register_component(&pdev->dev, |
| 873 | &sun4i_codec_component, |
| 874 | &dummy_cpu_dai, 1); |
| 875 | if (ret) { |
| 876 | dev_err(&pdev->dev, "Failed to register our DAI\n"); |
| 877 | goto err_unregister_codec; |
| 878 | } |
| 879 | |
| 880 | ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0); |
| 881 | if (ret) { |
| 882 | dev_err(&pdev->dev, "Failed to register against DMAEngine\n"); |
| 883 | goto err_unregister_codec; |
| 884 | } |
| 885 | |
| 886 | card = sun4i_codec_create_card(&pdev->dev); |
Chen-Yu Tsai | 85915b6 | 2016-10-31 14:42:09 +0800 | [diff] [blame] | 887 | if (IS_ERR(card)) { |
| 888 | ret = PTR_ERR(card); |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 889 | dev_err(&pdev->dev, "Failed to create our card\n"); |
| 890 | goto err_unregister_codec; |
| 891 | } |
| 892 | |
| 893 | platform_set_drvdata(pdev, card); |
| 894 | snd_soc_card_set_drvdata(card, scodec); |
| 895 | |
| 896 | ret = snd_soc_register_card(card); |
| 897 | if (ret) { |
| 898 | dev_err(&pdev->dev, "Failed to register our card\n"); |
| 899 | goto err_unregister_codec; |
| 900 | } |
| 901 | |
| 902 | return 0; |
| 903 | |
| 904 | err_unregister_codec: |
| 905 | snd_soc_unregister_codec(&pdev->dev); |
| 906 | err_clk_disable: |
| 907 | clk_disable_unprepare(scodec->clk_apb); |
| 908 | return ret; |
| 909 | } |
| 910 | |
| 911 | static int sun4i_codec_remove(struct platform_device *pdev) |
| 912 | { |
| 913 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 914 | struct sun4i_codec *scodec = snd_soc_card_get_drvdata(card); |
| 915 | |
| 916 | snd_soc_unregister_card(card); |
| 917 | snd_soc_unregister_codec(&pdev->dev); |
| 918 | clk_disable_unprepare(scodec->clk_apb); |
| 919 | |
| 920 | return 0; |
| 921 | } |
| 922 | |
| 923 | static struct platform_driver sun4i_codec_driver = { |
| 924 | .driver = { |
| 925 | .name = "sun4i-codec", |
Emilio López | 45fb6b6 | 2015-09-12 15:26:24 +0200 | [diff] [blame] | 926 | .of_match_table = sun4i_codec_of_match, |
| 927 | }, |
| 928 | .probe = sun4i_codec_probe, |
| 929 | .remove = sun4i_codec_remove, |
| 930 | }; |
| 931 | module_platform_driver(sun4i_codec_driver); |
| 932 | |
| 933 | MODULE_DESCRIPTION("Allwinner A10 codec driver"); |
| 934 | MODULE_AUTHOR("Emilio López <emilio@elopez.com.ar>"); |
| 935 | MODULE_AUTHOR("Jon Smirl <jonsmirl@gmail.com>"); |
| 936 | MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>"); |
| 937 | MODULE_LICENSE("GPL"); |