Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Freescale ALSA SoC Digital Audio Interface (SAI) driver. |
| 3 | * |
| 4 | * Copyright 2012-2013 Freescale Semiconductor, Inc. |
| 5 | * |
| 6 | * This program is free software, you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation, either version 2 of the License, or(at your |
| 9 | * option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <linux/clk.h> |
| 14 | #include <linux/delay.h> |
| 15 | #include <linux/dmaengine.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/of_address.h> |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 18 | #include <linux/regmap.h> |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 19 | #include <linux/slab.h> |
| 20 | #include <sound/core.h> |
| 21 | #include <sound/dmaengine_pcm.h> |
| 22 | #include <sound/pcm_params.h> |
| 23 | |
| 24 | #include "fsl_sai.h" |
Nicolin Chen | c754064 | 2014-04-01 19:34:09 +0800 | [diff] [blame] | 25 | #include "imx-pcm.h" |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 26 | |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 27 | #define FSL_SAI_FLAGS (FSL_SAI_CSR_SEIE |\ |
| 28 | FSL_SAI_CSR_FEIE) |
| 29 | |
| 30 | static irqreturn_t fsl_sai_isr(int irq, void *devid) |
| 31 | { |
| 32 | struct fsl_sai *sai = (struct fsl_sai *)devid; |
| 33 | struct device *dev = &sai->pdev->dev; |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 34 | u32 flags, xcsr, mask; |
| 35 | bool irq_none = true; |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 36 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 37 | /* |
| 38 | * Both IRQ status bits and IRQ mask bits are in the xCSR but |
| 39 | * different shifts. And we here create a mask only for those |
| 40 | * IRQs that we activated. |
| 41 | */ |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 42 | mask = (FSL_SAI_FLAGS >> FSL_SAI_CSR_xIE_SHIFT) << FSL_SAI_CSR_xF_SHIFT; |
| 43 | |
| 44 | /* Tx IRQ */ |
| 45 | regmap_read(sai->regmap, FSL_SAI_TCSR, &xcsr); |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 46 | flags = xcsr & mask; |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 47 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 48 | if (flags) |
| 49 | irq_none = false; |
| 50 | else |
| 51 | goto irq_rx; |
| 52 | |
| 53 | if (flags & FSL_SAI_CSR_WSF) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 54 | dev_dbg(dev, "isr: Start of Tx word detected\n"); |
| 55 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 56 | if (flags & FSL_SAI_CSR_SEF) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 57 | dev_warn(dev, "isr: Tx Frame sync error detected\n"); |
| 58 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 59 | if (flags & FSL_SAI_CSR_FEF) { |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 60 | dev_warn(dev, "isr: Transmit underrun detected\n"); |
| 61 | /* FIFO reset for safety */ |
| 62 | xcsr |= FSL_SAI_CSR_FR; |
| 63 | } |
| 64 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 65 | if (flags & FSL_SAI_CSR_FWF) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 66 | dev_dbg(dev, "isr: Enabled transmit FIFO is empty\n"); |
| 67 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 68 | if (flags & FSL_SAI_CSR_FRF) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 69 | dev_dbg(dev, "isr: Transmit FIFO watermark has been reached\n"); |
| 70 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 71 | flags &= FSL_SAI_CSR_xF_W_MASK; |
| 72 | xcsr &= ~FSL_SAI_CSR_xF_MASK; |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 73 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 74 | if (flags) |
| 75 | regmap_write(sai->regmap, FSL_SAI_TCSR, flags | xcsr); |
| 76 | |
| 77 | irq_rx: |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 78 | /* Rx IRQ */ |
| 79 | regmap_read(sai->regmap, FSL_SAI_RCSR, &xcsr); |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 80 | flags = xcsr & mask; |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 81 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 82 | if (flags) |
| 83 | irq_none = false; |
| 84 | else |
| 85 | goto out; |
| 86 | |
| 87 | if (flags & FSL_SAI_CSR_WSF) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 88 | dev_dbg(dev, "isr: Start of Rx word detected\n"); |
| 89 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 90 | if (flags & FSL_SAI_CSR_SEF) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 91 | dev_warn(dev, "isr: Rx Frame sync error detected\n"); |
| 92 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 93 | if (flags & FSL_SAI_CSR_FEF) { |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 94 | dev_warn(dev, "isr: Receive overflow detected\n"); |
| 95 | /* FIFO reset for safety */ |
| 96 | xcsr |= FSL_SAI_CSR_FR; |
| 97 | } |
| 98 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 99 | if (flags & FSL_SAI_CSR_FWF) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 100 | dev_dbg(dev, "isr: Enabled receive FIFO is full\n"); |
| 101 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 102 | if (flags & FSL_SAI_CSR_FRF) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 103 | dev_dbg(dev, "isr: Receive FIFO watermark has been reached\n"); |
| 104 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 105 | flags &= FSL_SAI_CSR_xF_W_MASK; |
| 106 | xcsr &= ~FSL_SAI_CSR_xF_MASK; |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 107 | |
Nicolin Chen | 413312a | 2014-03-28 19:39:25 +0800 | [diff] [blame] | 108 | if (flags) |
| 109 | regmap_write(sai->regmap, FSL_SAI_TCSR, flags | xcsr); |
| 110 | |
| 111 | out: |
| 112 | if (irq_none) |
| 113 | return IRQ_NONE; |
| 114 | else |
| 115 | return IRQ_HANDLED; |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 116 | } |
| 117 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 118 | static int fsl_sai_set_dai_sysclk_tr(struct snd_soc_dai *cpu_dai, |
| 119 | int clk_id, unsigned int freq, int fsl_dir) |
| 120 | { |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 121 | struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai); |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 122 | bool tx = fsl_dir == FSL_FMT_TRANSMITTER; |
| 123 | u32 val_cr2 = 0; |
Xiubo Li | 633ff8f | 2014-01-08 16:13:05 +0800 | [diff] [blame] | 124 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 125 | switch (clk_id) { |
| 126 | case FSL_SAI_CLK_BUS: |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 127 | val_cr2 |= FSL_SAI_CR2_MSEL_BUS; |
| 128 | break; |
| 129 | case FSL_SAI_CLK_MAST1: |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 130 | val_cr2 |= FSL_SAI_CR2_MSEL_MCLK1; |
| 131 | break; |
| 132 | case FSL_SAI_CLK_MAST2: |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 133 | val_cr2 |= FSL_SAI_CR2_MSEL_MCLK2; |
| 134 | break; |
| 135 | case FSL_SAI_CLK_MAST3: |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 136 | val_cr2 |= FSL_SAI_CR2_MSEL_MCLK3; |
| 137 | break; |
| 138 | default: |
| 139 | return -EINVAL; |
| 140 | } |
Xiubo Li | 633ff8f | 2014-01-08 16:13:05 +0800 | [diff] [blame] | 141 | |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 142 | regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx), |
| 143 | FSL_SAI_CR2_MSEL_MASK, val_cr2); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | static int fsl_sai_set_dai_sysclk(struct snd_soc_dai *cpu_dai, |
| 149 | int clk_id, unsigned int freq, int dir) |
| 150 | { |
Nicolin Chen | 4e3a99f | 2013-12-20 16:41:05 +0800 | [diff] [blame] | 151 | int ret; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 152 | |
| 153 | if (dir == SND_SOC_CLOCK_IN) |
| 154 | return 0; |
| 155 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 156 | ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq, |
| 157 | FSL_FMT_TRANSMITTER); |
| 158 | if (ret) { |
Nicolin Chen | 190af12 | 2013-12-20 16:41:04 +0800 | [diff] [blame] | 159 | dev_err(cpu_dai->dev, "Cannot set tx sysclk: %d\n", ret); |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 160 | return ret; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | ret = fsl_sai_set_dai_sysclk_tr(cpu_dai, clk_id, freq, |
| 164 | FSL_FMT_RECEIVER); |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 165 | if (ret) |
Nicolin Chen | 190af12 | 2013-12-20 16:41:04 +0800 | [diff] [blame] | 166 | dev_err(cpu_dai->dev, "Cannot set rx sysclk: %d\n", ret); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 167 | |
Nicolin Chen | 1fb2d9d | 2013-12-20 16:41:00 +0800 | [diff] [blame] | 168 | return ret; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | static int fsl_sai_set_dai_fmt_tr(struct snd_soc_dai *cpu_dai, |
| 172 | unsigned int fmt, int fsl_dir) |
| 173 | { |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 174 | struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai); |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 175 | bool tx = fsl_dir == FSL_FMT_TRANSMITTER; |
| 176 | u32 val_cr2 = 0, val_cr4 = 0; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 177 | |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 178 | if (!sai->big_endian_data) |
Xiubo Li | 72aa62b | 2013-12-31 15:33:22 +0800 | [diff] [blame] | 179 | val_cr4 |= FSL_SAI_CR4_MF; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 180 | |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 181 | /* DAI mode */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 182 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { |
| 183 | case SND_SOC_DAIFMT_I2S: |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 184 | /* |
| 185 | * Frame low, 1clk before data, one word length for frame sync, |
| 186 | * frame sync starts one serial clock cycle earlier, |
| 187 | * that is, together with the last bit of the previous |
| 188 | * data word. |
| 189 | */ |
Nicolin Chen | ef33bc3 | 2014-04-04 15:09:47 +0800 | [diff] [blame] | 190 | val_cr2 |= FSL_SAI_CR2_BCP; |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 191 | val_cr4 |= FSL_SAI_CR4_FSE | FSL_SAI_CR4_FSP; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 192 | break; |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 193 | case SND_SOC_DAIFMT_LEFT_J: |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 194 | /* |
| 195 | * Frame high, one word length for frame sync, |
| 196 | * frame sync asserts with the first bit of the frame. |
| 197 | */ |
Nicolin Chen | ef33bc3 | 2014-04-04 15:09:47 +0800 | [diff] [blame] | 198 | val_cr2 |= FSL_SAI_CR2_BCP; |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 199 | break; |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 200 | case SND_SOC_DAIFMT_DSP_A: |
| 201 | /* |
| 202 | * Frame high, 1clk before data, one bit for frame sync, |
| 203 | * frame sync starts one serial clock cycle earlier, |
| 204 | * that is, together with the last bit of the previous |
| 205 | * data word. |
| 206 | */ |
Nicolin Chen | ef33bc3 | 2014-04-04 15:09:47 +0800 | [diff] [blame] | 207 | val_cr2 |= FSL_SAI_CR2_BCP; |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 208 | val_cr4 |= FSL_SAI_CR4_FSE; |
| 209 | sai->is_dsp_mode = true; |
| 210 | break; |
| 211 | case SND_SOC_DAIFMT_DSP_B: |
| 212 | /* |
| 213 | * Frame high, one bit for frame sync, |
| 214 | * frame sync asserts with the first bit of the frame. |
| 215 | */ |
Nicolin Chen | ef33bc3 | 2014-04-04 15:09:47 +0800 | [diff] [blame] | 216 | val_cr2 |= FSL_SAI_CR2_BCP; |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 217 | sai->is_dsp_mode = true; |
| 218 | break; |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 219 | case SND_SOC_DAIFMT_RIGHT_J: |
| 220 | /* To be done */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 221 | default: |
| 222 | return -EINVAL; |
| 223 | } |
| 224 | |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 225 | /* DAI clock inversion */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 226 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
| 227 | case SND_SOC_DAIFMT_IB_IF: |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 228 | /* Invert both clocks */ |
| 229 | val_cr2 ^= FSL_SAI_CR2_BCP; |
| 230 | val_cr4 ^= FSL_SAI_CR4_FSP; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 231 | break; |
| 232 | case SND_SOC_DAIFMT_IB_NF: |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 233 | /* Invert bit clock */ |
| 234 | val_cr2 ^= FSL_SAI_CR2_BCP; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 235 | break; |
| 236 | case SND_SOC_DAIFMT_NB_IF: |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 237 | /* Invert frame clock */ |
| 238 | val_cr4 ^= FSL_SAI_CR4_FSP; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 239 | break; |
| 240 | case SND_SOC_DAIFMT_NB_NF: |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 241 | /* Nothing to do for both normal cases */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 242 | break; |
| 243 | default: |
| 244 | return -EINVAL; |
| 245 | } |
| 246 | |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 247 | /* DAI clock master masks */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 248 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { |
| 249 | case SND_SOC_DAIFMT_CBS_CFS: |
| 250 | val_cr2 |= FSL_SAI_CR2_BCD_MSTR; |
| 251 | val_cr4 |= FSL_SAI_CR4_FSD_MSTR; |
| 252 | break; |
| 253 | case SND_SOC_DAIFMT_CBM_CFM: |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 254 | break; |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 255 | case SND_SOC_DAIFMT_CBS_CFM: |
| 256 | val_cr2 |= FSL_SAI_CR2_BCD_MSTR; |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 257 | break; |
| 258 | case SND_SOC_DAIFMT_CBM_CFS: |
Xiubo Li | 13cde09 | 2014-02-25 17:54:51 +0800 | [diff] [blame] | 259 | val_cr4 |= FSL_SAI_CR4_FSD_MSTR; |
| 260 | break; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 261 | default: |
| 262 | return -EINVAL; |
| 263 | } |
| 264 | |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 265 | regmap_update_bits(sai->regmap, FSL_SAI_xCR2(tx), |
| 266 | FSL_SAI_CR2_BCP | FSL_SAI_CR2_BCD_MSTR, val_cr2); |
| 267 | regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx), |
| 268 | FSL_SAI_CR4_MF | FSL_SAI_CR4_FSE | |
| 269 | FSL_SAI_CR4_FSP | FSL_SAI_CR4_FSD_MSTR, val_cr4); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 270 | |
| 271 | return 0; |
| 272 | } |
| 273 | |
| 274 | static int fsl_sai_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt) |
| 275 | { |
Nicolin Chen | 4e3a99f | 2013-12-20 16:41:05 +0800 | [diff] [blame] | 276 | int ret; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 277 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 278 | ret = fsl_sai_set_dai_fmt_tr(cpu_dai, fmt, FSL_FMT_TRANSMITTER); |
| 279 | if (ret) { |
Nicolin Chen | 190af12 | 2013-12-20 16:41:04 +0800 | [diff] [blame] | 280 | dev_err(cpu_dai->dev, "Cannot set tx format: %d\n", ret); |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 281 | return ret; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | ret = fsl_sai_set_dai_fmt_tr(cpu_dai, fmt, FSL_FMT_RECEIVER); |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 285 | if (ret) |
Nicolin Chen | 190af12 | 2013-12-20 16:41:04 +0800 | [diff] [blame] | 286 | dev_err(cpu_dai->dev, "Cannot set rx format: %d\n", ret); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 287 | |
Nicolin Chen | 1fb2d9d | 2013-12-20 16:41:00 +0800 | [diff] [blame] | 288 | return ret; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | static int fsl_sai_hw_params(struct snd_pcm_substream *substream, |
| 292 | struct snd_pcm_hw_params *params, |
| 293 | struct snd_soc_dai *cpu_dai) |
| 294 | { |
Nicolin Chen | 4e3a99f | 2013-12-20 16:41:05 +0800 | [diff] [blame] | 295 | struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai); |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 296 | bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 297 | unsigned int channels = params_channels(params); |
Nicolin Chen | 1d70030 | 2013-12-20 16:41:01 +0800 | [diff] [blame] | 298 | u32 word_width = snd_pcm_format_width(params_format(params)); |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 299 | u32 val_cr4 = 0, val_cr5 = 0; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 300 | |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 301 | if (!sai->is_dsp_mode) |
| 302 | val_cr4 |= FSL_SAI_CR4_SYWD(word_width); |
| 303 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 304 | val_cr5 |= FSL_SAI_CR5_WNW(word_width); |
| 305 | val_cr5 |= FSL_SAI_CR5_W0W(word_width); |
| 306 | |
| 307 | if (sai->big_endian_data) |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 308 | val_cr5 |= FSL_SAI_CR5_FBT(0); |
Xiubo Li | 72aa62b | 2013-12-31 15:33:22 +0800 | [diff] [blame] | 309 | else |
| 310 | val_cr5 |= FSL_SAI_CR5_FBT(word_width - 1); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 311 | |
| 312 | val_cr4 |= FSL_SAI_CR4_FRSZ(channels); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 313 | |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 314 | regmap_update_bits(sai->regmap, FSL_SAI_xCR4(tx), |
| 315 | FSL_SAI_CR4_SYWD_MASK | FSL_SAI_CR4_FRSZ_MASK, |
| 316 | val_cr4); |
| 317 | regmap_update_bits(sai->regmap, FSL_SAI_xCR5(tx), |
| 318 | FSL_SAI_CR5_WNW_MASK | FSL_SAI_CR5_W0W_MASK | |
| 319 | FSL_SAI_CR5_FBT_MASK, val_cr5); |
| 320 | regmap_write(sai->regmap, FSL_SAI_xMR(tx), ~0UL - ((1 << channels) - 1)); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 321 | |
| 322 | return 0; |
| 323 | } |
| 324 | |
| 325 | static int fsl_sai_trigger(struct snd_pcm_substream *substream, int cmd, |
| 326 | struct snd_soc_dai *cpu_dai) |
| 327 | { |
| 328 | struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai); |
Nicolin Chen | e6b3984 | 2014-04-01 11:17:06 +0800 | [diff] [blame] | 329 | bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 330 | u32 tcsr, rcsr; |
Xiubo Li | 496a39d | 2013-12-31 15:33:21 +0800 | [diff] [blame] | 331 | |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 332 | /* |
| 333 | * The transmitter bit clock and frame sync are to be |
| 334 | * used by both the transmitter and receiver. |
| 335 | */ |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 336 | regmap_update_bits(sai->regmap, FSL_SAI_TCR2, FSL_SAI_CR2_SYNC, |
| 337 | ~FSL_SAI_CR2_SYNC); |
| 338 | regmap_update_bits(sai->regmap, FSL_SAI_RCR2, FSL_SAI_CR2_SYNC, |
| 339 | FSL_SAI_CR2_SYNC); |
Xiubo Li | 496a39d | 2013-12-31 15:33:21 +0800 | [diff] [blame] | 340 | |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 341 | regmap_read(sai->regmap, FSL_SAI_TCSR, &tcsr); |
| 342 | regmap_read(sai->regmap, FSL_SAI_RCSR, &rcsr); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 343 | |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 344 | /* |
| 345 | * It is recommended that the transmitter is the last enabled |
| 346 | * and the first disabled. |
| 347 | */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 348 | switch (cmd) { |
| 349 | case SNDRV_PCM_TRIGGER_START: |
| 350 | case SNDRV_PCM_TRIGGER_RESUME: |
| 351 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
Nicolin Chen | e6b3984 | 2014-04-01 11:17:06 +0800 | [diff] [blame] | 352 | if (!(tcsr & FSL_SAI_CSR_FRDE || rcsr & FSL_SAI_CSR_FRDE)) { |
| 353 | regmap_update_bits(sai->regmap, FSL_SAI_RCSR, |
| 354 | FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE); |
| 355 | regmap_update_bits(sai->regmap, FSL_SAI_TCSR, |
| 356 | FSL_SAI_CSR_TERE, FSL_SAI_CSR_TERE); |
| 357 | } |
Xiubo Li | e5d0fa9 | 2013-12-25 12:40:04 +0800 | [diff] [blame] | 358 | |
Nicolin Chen | e6b3984 | 2014-04-01 11:17:06 +0800 | [diff] [blame] | 359 | regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx), |
Nicolin Chen | 8abba5d | 2014-04-01 11:17:07 +0800 | [diff] [blame] | 360 | FSL_SAI_CSR_xIE_MASK, FSL_SAI_FLAGS); |
| 361 | regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx), |
Nicolin Chen | e6b3984 | 2014-04-01 11:17:06 +0800 | [diff] [blame] | 362 | FSL_SAI_CSR_FRDE, FSL_SAI_CSR_FRDE); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 363 | break; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 364 | case SNDRV_PCM_TRIGGER_STOP: |
| 365 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 366 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
Nicolin Chen | e6b3984 | 2014-04-01 11:17:06 +0800 | [diff] [blame] | 367 | regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx), |
| 368 | FSL_SAI_CSR_FRDE, 0); |
Nicolin Chen | 8abba5d | 2014-04-01 11:17:07 +0800 | [diff] [blame] | 369 | regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx), |
| 370 | FSL_SAI_CSR_xIE_MASK, 0); |
Xiubo Li | e5d0fa9 | 2013-12-25 12:40:04 +0800 | [diff] [blame] | 371 | |
Nicolin Chen | f84526c | 2014-04-11 22:10:00 +0800 | [diff] [blame] | 372 | /* Check if the opposite FRDE is also disabled */ |
| 373 | if (!(tx ? rcsr & FSL_SAI_CSR_FRDE : tcsr & FSL_SAI_CSR_FRDE)) { |
Nicolin Chen | e6b3984 | 2014-04-01 11:17:06 +0800 | [diff] [blame] | 374 | regmap_update_bits(sai->regmap, FSL_SAI_TCSR, |
| 375 | FSL_SAI_CSR_TERE, 0); |
| 376 | regmap_update_bits(sai->regmap, FSL_SAI_RCSR, |
| 377 | FSL_SAI_CSR_TERE, 0); |
| 378 | } |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 379 | break; |
| 380 | default: |
| 381 | return -EINVAL; |
| 382 | } |
| 383 | |
| 384 | return 0; |
| 385 | } |
| 386 | |
| 387 | static int fsl_sai_startup(struct snd_pcm_substream *substream, |
| 388 | struct snd_soc_dai *cpu_dai) |
| 389 | { |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 390 | struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai); |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 391 | bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
Nicolin Chen | ca3e35c | 2014-04-10 23:26:15 +0800 | [diff] [blame] | 392 | struct device *dev = &sai->pdev->dev; |
Nicolin Chen | ca3e35c | 2014-04-10 23:26:15 +0800 | [diff] [blame] | 393 | int ret; |
| 394 | |
| 395 | ret = clk_prepare_enable(sai->bus_clk); |
| 396 | if (ret) { |
| 397 | dev_err(dev, "failed to enable bus clock: %d\n", ret); |
| 398 | return ret; |
| 399 | } |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 400 | |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 401 | regmap_update_bits(sai->regmap, FSL_SAI_xCR3(tx), FSL_SAI_CR3_TRCE, |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 402 | FSL_SAI_CR3_TRCE); |
| 403 | |
| 404 | return 0; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | static void fsl_sai_shutdown(struct snd_pcm_substream *substream, |
| 408 | struct snd_soc_dai *cpu_dai) |
| 409 | { |
| 410 | struct fsl_sai *sai = snd_soc_dai_get_drvdata(cpu_dai); |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 411 | bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 412 | |
Nicolin Chen | 2a266f8 | 2014-04-11 18:30:09 +0800 | [diff] [blame] | 413 | regmap_update_bits(sai->regmap, FSL_SAI_xCR3(tx), FSL_SAI_CR3_TRCE, 0); |
Nicolin Chen | ca3e35c | 2014-04-10 23:26:15 +0800 | [diff] [blame] | 414 | |
| 415 | clk_disable_unprepare(sai->bus_clk); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | static const struct snd_soc_dai_ops fsl_sai_pcm_dai_ops = { |
| 419 | .set_sysclk = fsl_sai_set_dai_sysclk, |
| 420 | .set_fmt = fsl_sai_set_dai_fmt, |
| 421 | .hw_params = fsl_sai_hw_params, |
| 422 | .trigger = fsl_sai_trigger, |
| 423 | .startup = fsl_sai_startup, |
| 424 | .shutdown = fsl_sai_shutdown, |
| 425 | }; |
| 426 | |
| 427 | static int fsl_sai_dai_probe(struct snd_soc_dai *cpu_dai) |
| 428 | { |
| 429 | struct fsl_sai *sai = dev_get_drvdata(cpu_dai->dev); |
Xiubo Li | e6dc12d | 2013-12-25 11:20:14 +0800 | [diff] [blame] | 430 | |
Nicolin Chen | 8abba5d | 2014-04-01 11:17:07 +0800 | [diff] [blame] | 431 | regmap_update_bits(sai->regmap, FSL_SAI_TCSR, 0xffffffff, 0x0); |
| 432 | regmap_update_bits(sai->regmap, FSL_SAI_RCSR, 0xffffffff, 0x0); |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 433 | regmap_update_bits(sai->regmap, FSL_SAI_TCR1, FSL_SAI_CR1_RFW_MASK, |
| 434 | FSL_SAI_MAXBURST_TX * 2); |
| 435 | regmap_update_bits(sai->regmap, FSL_SAI_RCR1, FSL_SAI_CR1_RFW_MASK, |
| 436 | FSL_SAI_MAXBURST_RX - 1); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 437 | |
Xiubo Li | dd9f406 | 2013-12-20 12:35:33 +0800 | [diff] [blame] | 438 | snd_soc_dai_init_dma_data(cpu_dai, &sai->dma_params_tx, |
| 439 | &sai->dma_params_rx); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 440 | |
| 441 | snd_soc_dai_set_drvdata(cpu_dai, sai); |
| 442 | |
| 443 | return 0; |
| 444 | } |
| 445 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 446 | static struct snd_soc_dai_driver fsl_sai_dai = { |
| 447 | .probe = fsl_sai_dai_probe, |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 448 | .playback = { |
| 449 | .channels_min = 1, |
| 450 | .channels_max = 2, |
| 451 | .rates = SNDRV_PCM_RATE_8000_96000, |
| 452 | .formats = FSL_SAI_FORMATS, |
| 453 | }, |
| 454 | .capture = { |
| 455 | .channels_min = 1, |
| 456 | .channels_max = 2, |
| 457 | .rates = SNDRV_PCM_RATE_8000_96000, |
| 458 | .formats = FSL_SAI_FORMATS, |
| 459 | }, |
| 460 | .ops = &fsl_sai_pcm_dai_ops, |
| 461 | }; |
| 462 | |
| 463 | static const struct snd_soc_component_driver fsl_component = { |
| 464 | .name = "fsl-sai", |
| 465 | }; |
| 466 | |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 467 | static bool fsl_sai_readable_reg(struct device *dev, unsigned int reg) |
| 468 | { |
| 469 | switch (reg) { |
| 470 | case FSL_SAI_TCSR: |
| 471 | case FSL_SAI_TCR1: |
| 472 | case FSL_SAI_TCR2: |
| 473 | case FSL_SAI_TCR3: |
| 474 | case FSL_SAI_TCR4: |
| 475 | case FSL_SAI_TCR5: |
| 476 | case FSL_SAI_TFR: |
| 477 | case FSL_SAI_TMR: |
| 478 | case FSL_SAI_RCSR: |
| 479 | case FSL_SAI_RCR1: |
| 480 | case FSL_SAI_RCR2: |
| 481 | case FSL_SAI_RCR3: |
| 482 | case FSL_SAI_RCR4: |
| 483 | case FSL_SAI_RCR5: |
| 484 | case FSL_SAI_RDR: |
| 485 | case FSL_SAI_RFR: |
| 486 | case FSL_SAI_RMR: |
| 487 | return true; |
| 488 | default: |
| 489 | return false; |
| 490 | } |
| 491 | } |
| 492 | |
| 493 | static bool fsl_sai_volatile_reg(struct device *dev, unsigned int reg) |
| 494 | { |
| 495 | switch (reg) { |
| 496 | case FSL_SAI_TFR: |
| 497 | case FSL_SAI_RFR: |
| 498 | case FSL_SAI_TDR: |
| 499 | case FSL_SAI_RDR: |
| 500 | return true; |
| 501 | default: |
| 502 | return false; |
| 503 | } |
| 504 | |
| 505 | } |
| 506 | |
| 507 | static bool fsl_sai_writeable_reg(struct device *dev, unsigned int reg) |
| 508 | { |
| 509 | switch (reg) { |
| 510 | case FSL_SAI_TCSR: |
| 511 | case FSL_SAI_TCR1: |
| 512 | case FSL_SAI_TCR2: |
| 513 | case FSL_SAI_TCR3: |
| 514 | case FSL_SAI_TCR4: |
| 515 | case FSL_SAI_TCR5: |
| 516 | case FSL_SAI_TDR: |
| 517 | case FSL_SAI_TMR: |
| 518 | case FSL_SAI_RCSR: |
| 519 | case FSL_SAI_RCR1: |
| 520 | case FSL_SAI_RCR2: |
| 521 | case FSL_SAI_RCR3: |
| 522 | case FSL_SAI_RCR4: |
| 523 | case FSL_SAI_RCR5: |
| 524 | case FSL_SAI_RMR: |
| 525 | return true; |
| 526 | default: |
| 527 | return false; |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | static struct regmap_config fsl_sai_regmap_config = { |
| 532 | .reg_bits = 32, |
| 533 | .reg_stride = 4, |
| 534 | .val_bits = 32, |
| 535 | |
| 536 | .max_register = FSL_SAI_RMR, |
| 537 | .readable_reg = fsl_sai_readable_reg, |
| 538 | .volatile_reg = fsl_sai_volatile_reg, |
| 539 | .writeable_reg = fsl_sai_writeable_reg, |
| 540 | }; |
| 541 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 542 | static int fsl_sai_probe(struct platform_device *pdev) |
| 543 | { |
Nicolin Chen | 4e3a99f | 2013-12-20 16:41:05 +0800 | [diff] [blame] | 544 | struct device_node *np = pdev->dev.of_node; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 545 | struct fsl_sai *sai; |
| 546 | struct resource *res; |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 547 | void __iomem *base; |
Nicolin Chen | ca3e35c | 2014-04-10 23:26:15 +0800 | [diff] [blame] | 548 | char tmp[8]; |
| 549 | int irq, ret, i; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 550 | |
| 551 | sai = devm_kzalloc(&pdev->dev, sizeof(*sai), GFP_KERNEL); |
| 552 | if (!sai) |
| 553 | return -ENOMEM; |
| 554 | |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 555 | sai->pdev = pdev; |
| 556 | |
Nicolin Chen | c754064 | 2014-04-01 19:34:09 +0800 | [diff] [blame] | 557 | if (of_device_is_compatible(pdev->dev.of_node, "fsl,imx6sx-sai")) |
| 558 | sai->sai_on_imx = true; |
| 559 | |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 560 | sai->big_endian_regs = of_property_read_bool(np, "big-endian-regs"); |
| 561 | if (sai->big_endian_regs) |
| 562 | fsl_sai_regmap_config.val_format_endian = REGMAP_ENDIAN_BIG; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 563 | |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 564 | sai->big_endian_data = of_property_read_bool(np, "big-endian-data"); |
| 565 | |
| 566 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 567 | base = devm_ioremap_resource(&pdev->dev, res); |
| 568 | if (IS_ERR(base)) |
| 569 | return PTR_ERR(base); |
| 570 | |
| 571 | sai->regmap = devm_regmap_init_mmio_clk(&pdev->dev, |
Nicolin Chen | ca3e35c | 2014-04-10 23:26:15 +0800 | [diff] [blame] | 572 | "bus", base, &fsl_sai_regmap_config); |
| 573 | |
| 574 | /* Compatible with old DTB cases */ |
| 575 | if (IS_ERR(sai->regmap)) |
| 576 | sai->regmap = devm_regmap_init_mmio_clk(&pdev->dev, |
| 577 | "sai", base, &fsl_sai_regmap_config); |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 578 | if (IS_ERR(sai->regmap)) { |
| 579 | dev_err(&pdev->dev, "regmap init failed\n"); |
| 580 | return PTR_ERR(sai->regmap); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 581 | } |
| 582 | |
Nicolin Chen | ca3e35c | 2014-04-10 23:26:15 +0800 | [diff] [blame] | 583 | /* No error out for old DTB cases but only mark the clock NULL */ |
| 584 | sai->bus_clk = devm_clk_get(&pdev->dev, "bus"); |
| 585 | if (IS_ERR(sai->bus_clk)) { |
| 586 | dev_err(&pdev->dev, "failed to get bus clock: %ld\n", |
| 587 | PTR_ERR(sai->bus_clk)); |
| 588 | sai->bus_clk = NULL; |
| 589 | } |
| 590 | |
| 591 | for (i = 0; i < FSL_SAI_MCLK_MAX; i++) { |
| 592 | sprintf(tmp, "mclk%d", i + 1); |
| 593 | sai->mclk_clk[i] = devm_clk_get(&pdev->dev, tmp); |
| 594 | if (IS_ERR(sai->mclk_clk[i])) { |
| 595 | dev_err(&pdev->dev, "failed to get mclk%d clock: %ld\n", |
| 596 | i + 1, PTR_ERR(sai->mclk_clk[i])); |
| 597 | sai->mclk_clk[i] = NULL; |
| 598 | } |
| 599 | } |
| 600 | |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 601 | irq = platform_get_irq(pdev, 0); |
| 602 | if (irq < 0) { |
| 603 | dev_err(&pdev->dev, "no irq for node %s\n", np->full_name); |
| 604 | return irq; |
| 605 | } |
| 606 | |
| 607 | ret = devm_request_irq(&pdev->dev, irq, fsl_sai_isr, 0, np->name, sai); |
| 608 | if (ret) { |
| 609 | dev_err(&pdev->dev, "failed to claim irq %u\n", irq); |
| 610 | return ret; |
| 611 | } |
| 612 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 613 | sai->dma_params_rx.addr = res->start + FSL_SAI_RDR; |
| 614 | sai->dma_params_tx.addr = res->start + FSL_SAI_TDR; |
| 615 | sai->dma_params_rx.maxburst = FSL_SAI_MAXBURST_RX; |
| 616 | sai->dma_params_tx.maxburst = FSL_SAI_MAXBURST_TX; |
| 617 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 618 | platform_set_drvdata(pdev, sai); |
| 619 | |
| 620 | ret = devm_snd_soc_register_component(&pdev->dev, &fsl_component, |
| 621 | &fsl_sai_dai, 1); |
| 622 | if (ret) |
| 623 | return ret; |
| 624 | |
Nicolin Chen | c754064 | 2014-04-01 19:34:09 +0800 | [diff] [blame] | 625 | if (sai->sai_on_imx) |
| 626 | return imx_pcm_dma_init(pdev); |
| 627 | else |
| 628 | return devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, |
| 629 | SND_DMAENGINE_PCM_FLAG_NO_RESIDUE); |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | static const struct of_device_id fsl_sai_ids[] = { |
| 633 | { .compatible = "fsl,vf610-sai", }, |
Nicolin Chen | c754064 | 2014-04-01 19:34:09 +0800 | [diff] [blame] | 634 | { .compatible = "fsl,imx6sx-sai", }, |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 635 | { /* sentinel */ } |
| 636 | }; |
| 637 | |
| 638 | static struct platform_driver fsl_sai_driver = { |
| 639 | .probe = fsl_sai_probe, |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 640 | .driver = { |
| 641 | .name = "fsl-sai", |
| 642 | .owner = THIS_MODULE, |
| 643 | .of_match_table = fsl_sai_ids, |
| 644 | }, |
| 645 | }; |
| 646 | module_platform_driver(fsl_sai_driver); |
| 647 | |
| 648 | MODULE_DESCRIPTION("Freescale Soc SAI Interface"); |
| 649 | MODULE_AUTHOR("Xiubo Li, <Li.Xiubo@freescale.com>"); |
| 650 | MODULE_ALIAS("platform:fsl-sai"); |
| 651 | MODULE_LICENSE("GPL"); |