Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012-2013 Freescale Semiconductor, Inc. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | */ |
| 8 | |
| 9 | #ifndef __FSL_SAI_H |
| 10 | #define __FSL_SAI_H |
| 11 | |
| 12 | #include <sound/dmaengine_pcm.h> |
| 13 | |
| 14 | #define FSL_SAI_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\ |
| 15 | SNDRV_PCM_FMTBIT_S20_3LE |\ |
Zidan Wang | 9b7493d | 2015-08-11 11:14:26 +0800 | [diff] [blame] | 16 | SNDRV_PCM_FMTBIT_S24_LE |\ |
| 17 | SNDRV_PCM_FMTBIT_S32_LE) |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 18 | |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 19 | /* SAI Register Map Register */ |
| 20 | #define FSL_SAI_TCSR 0x00 /* SAI Transmit Control */ |
| 21 | #define FSL_SAI_TCR1 0x04 /* SAI Transmit Configuration 1 */ |
| 22 | #define FSL_SAI_TCR2 0x08 /* SAI Transmit Configuration 2 */ |
| 23 | #define FSL_SAI_TCR3 0x0c /* SAI Transmit Configuration 3 */ |
| 24 | #define FSL_SAI_TCR4 0x10 /* SAI Transmit Configuration 4 */ |
| 25 | #define FSL_SAI_TCR5 0x14 /* SAI Transmit Configuration 5 */ |
| 26 | #define FSL_SAI_TDR 0x20 /* SAI Transmit Data */ |
| 27 | #define FSL_SAI_TFR 0x40 /* SAI Transmit FIFO */ |
| 28 | #define FSL_SAI_TMR 0x60 /* SAI Transmit Mask */ |
| 29 | #define FSL_SAI_RCSR 0x80 /* SAI Receive Control */ |
| 30 | #define FSL_SAI_RCR1 0x84 /* SAI Receive Configuration 1 */ |
| 31 | #define FSL_SAI_RCR2 0x88 /* SAI Receive Configuration 2 */ |
| 32 | #define FSL_SAI_RCR3 0x8c /* SAI Receive Configuration 3 */ |
| 33 | #define FSL_SAI_RCR4 0x90 /* SAI Receive Configuration 4 */ |
| 34 | #define FSL_SAI_RCR5 0x94 /* SAI Receive Configuration 5 */ |
| 35 | #define FSL_SAI_RDR 0xa0 /* SAI Receive Data */ |
| 36 | #define FSL_SAI_RFR 0xc0 /* SAI Receive FIFO */ |
| 37 | #define FSL_SAI_RMR 0xe0 /* SAI Receive Mask */ |
| 38 | |
Nicolin Chen | e6b3984 | 2014-04-01 11:17:06 +0800 | [diff] [blame] | 39 | #define FSL_SAI_xCSR(tx) (tx ? FSL_SAI_TCSR : FSL_SAI_RCSR) |
| 40 | #define FSL_SAI_xCR1(tx) (tx ? FSL_SAI_TCR1 : FSL_SAI_RCR1) |
| 41 | #define FSL_SAI_xCR2(tx) (tx ? FSL_SAI_TCR2 : FSL_SAI_RCR2) |
| 42 | #define FSL_SAI_xCR3(tx) (tx ? FSL_SAI_TCR3 : FSL_SAI_RCR3) |
| 43 | #define FSL_SAI_xCR4(tx) (tx ? FSL_SAI_TCR4 : FSL_SAI_RCR4) |
| 44 | #define FSL_SAI_xCR5(tx) (tx ? FSL_SAI_TCR5 : FSL_SAI_RCR5) |
| 45 | #define FSL_SAI_xDR(tx) (tx ? FSL_SAI_TDR : FSL_SAI_RDR) |
| 46 | #define FSL_SAI_xFR(tx) (tx ? FSL_SAI_TFR : FSL_SAI_RFR) |
| 47 | #define FSL_SAI_xMR(tx) (tx ? FSL_SAI_TMR : FSL_SAI_RMR) |
| 48 | |
Xiubo Li | dcfcf2c | 2015-08-12 14:38:18 +0800 | [diff] [blame] | 49 | /* SAI Transmit/Receive Control Register */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 50 | #define FSL_SAI_CSR_TERE BIT(31) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 51 | #define FSL_SAI_CSR_FR BIT(25) |
Nicolin Chen | 376d1a9 | 2014-08-05 17:20:21 +0800 | [diff] [blame] | 52 | #define FSL_SAI_CSR_SR BIT(24) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 53 | #define FSL_SAI_CSR_xF_SHIFT 16 |
| 54 | #define FSL_SAI_CSR_xF_W_SHIFT 18 |
| 55 | #define FSL_SAI_CSR_xF_MASK (0x1f << FSL_SAI_CSR_xF_SHIFT) |
| 56 | #define FSL_SAI_CSR_xF_W_MASK (0x7 << FSL_SAI_CSR_xF_W_SHIFT) |
| 57 | #define FSL_SAI_CSR_WSF BIT(20) |
| 58 | #define FSL_SAI_CSR_SEF BIT(19) |
| 59 | #define FSL_SAI_CSR_FEF BIT(18) |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 60 | #define FSL_SAI_CSR_FWF BIT(17) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 61 | #define FSL_SAI_CSR_FRF BIT(16) |
| 62 | #define FSL_SAI_CSR_xIE_SHIFT 8 |
Nicolin Chen | 8abba5d | 2014-04-01 11:17:07 +0800 | [diff] [blame] | 63 | #define FSL_SAI_CSR_xIE_MASK (0x1f << FSL_SAI_CSR_xIE_SHIFT) |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 64 | #define FSL_SAI_CSR_WSIE BIT(12) |
| 65 | #define FSL_SAI_CSR_SEIE BIT(11) |
| 66 | #define FSL_SAI_CSR_FEIE BIT(10) |
| 67 | #define FSL_SAI_CSR_FWIE BIT(9) |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 68 | #define FSL_SAI_CSR_FRIE BIT(8) |
| 69 | #define FSL_SAI_CSR_FRDE BIT(0) |
| 70 | |
Xiubo Li | dcfcf2c | 2015-08-12 14:38:18 +0800 | [diff] [blame] | 71 | /* SAI Transmit and Receive Configuration 1 Register */ |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 72 | #define FSL_SAI_CR1_RFW_MASK 0x1f |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 73 | |
Xiubo Li | dcfcf2c | 2015-08-12 14:38:18 +0800 | [diff] [blame] | 74 | /* SAI Transmit and Receive Configuration 2 Register */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 75 | #define FSL_SAI_CR2_SYNC BIT(30) |
Zidan Wang | c3ecef2 | 2015-05-11 18:24:41 +0800 | [diff] [blame] | 76 | #define FSL_SAI_CR2_MSEL_MASK (0x3 << 26) |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 77 | #define FSL_SAI_CR2_MSEL_BUS 0 |
| 78 | #define FSL_SAI_CR2_MSEL_MCLK1 BIT(26) |
| 79 | #define FSL_SAI_CR2_MSEL_MCLK2 BIT(27) |
| 80 | #define FSL_SAI_CR2_MSEL_MCLK3 (BIT(26) | BIT(27)) |
Zidan Wang | c3ecef2 | 2015-05-11 18:24:41 +0800 | [diff] [blame] | 81 | #define FSL_SAI_CR2_MSEL(ID) ((ID) << 26) |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 82 | #define FSL_SAI_CR2_BCP BIT(25) |
| 83 | #define FSL_SAI_CR2_BCD_MSTR BIT(24) |
Zidan Wang | c3ecef2 | 2015-05-11 18:24:41 +0800 | [diff] [blame] | 84 | #define FSL_SAI_CR2_DIV_MASK 0xff |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 85 | |
Xiubo Li | dcfcf2c | 2015-08-12 14:38:18 +0800 | [diff] [blame] | 86 | /* SAI Transmit and Receive Configuration 3 Register */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 87 | #define FSL_SAI_CR3_TRCE BIT(16) |
| 88 | #define FSL_SAI_CR3_WDFL(x) (x) |
| 89 | #define FSL_SAI_CR3_WDFL_MASK 0x1f |
| 90 | |
Xiubo Li | dcfcf2c | 2015-08-12 14:38:18 +0800 | [diff] [blame] | 91 | /* SAI Transmit and Receive Configuration 4 Register */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 92 | #define FSL_SAI_CR4_FRSZ(x) (((x) - 1) << 16) |
| 93 | #define FSL_SAI_CR4_FRSZ_MASK (0x1f << 16) |
| 94 | #define FSL_SAI_CR4_SYWD(x) (((x) - 1) << 8) |
| 95 | #define FSL_SAI_CR4_SYWD_MASK (0x1f << 8) |
| 96 | #define FSL_SAI_CR4_MF BIT(4) |
| 97 | #define FSL_SAI_CR4_FSE BIT(3) |
| 98 | #define FSL_SAI_CR4_FSP BIT(1) |
| 99 | #define FSL_SAI_CR4_FSD_MSTR BIT(0) |
| 100 | |
Xiubo Li | dcfcf2c | 2015-08-12 14:38:18 +0800 | [diff] [blame] | 101 | /* SAI Transmit and Receive Configuration 5 Register */ |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 102 | #define FSL_SAI_CR5_WNW(x) (((x) - 1) << 24) |
| 103 | #define FSL_SAI_CR5_WNW_MASK (0x1f << 24) |
| 104 | #define FSL_SAI_CR5_W0W(x) (((x) - 1) << 16) |
| 105 | #define FSL_SAI_CR5_W0W_MASK (0x1f << 16) |
| 106 | #define FSL_SAI_CR5_FBT(x) ((x) << 8) |
| 107 | #define FSL_SAI_CR5_FBT_MASK (0x1f << 8) |
| 108 | |
| 109 | /* SAI type */ |
| 110 | #define FSL_SAI_DMA BIT(0) |
| 111 | #define FSL_SAI_USE_AC97 BIT(1) |
| 112 | #define FSL_SAI_NET BIT(2) |
| 113 | #define FSL_SAI_TRA_SYN BIT(3) |
| 114 | #define FSL_SAI_REC_SYN BIT(4) |
| 115 | #define FSL_SAI_USE_I2S_SLAVE BIT(5) |
| 116 | |
| 117 | #define FSL_FMT_TRANSMITTER 0 |
| 118 | #define FSL_FMT_RECEIVER 1 |
| 119 | |
| 120 | /* SAI clock sources */ |
| 121 | #define FSL_SAI_CLK_BUS 0 |
| 122 | #define FSL_SAI_CLK_MAST1 1 |
| 123 | #define FSL_SAI_CLK_MAST2 2 |
| 124 | #define FSL_SAI_CLK_MAST3 3 |
| 125 | |
Zidan Wang | c3ecef2 | 2015-05-11 18:24:41 +0800 | [diff] [blame] | 126 | #define FSL_SAI_MCLK_MAX 4 |
Nicolin Chen | ca3e35c | 2014-04-10 23:26:15 +0800 | [diff] [blame] | 127 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 128 | /* SAI data transfer numbers per DMA request */ |
| 129 | #define FSL_SAI_MAXBURST_TX 6 |
| 130 | #define FSL_SAI_MAXBURST_RX 6 |
| 131 | |
| 132 | struct fsl_sai { |
Nicolin Chen | e2681a1 | 2014-03-27 19:06:59 +0800 | [diff] [blame] | 133 | struct platform_device *pdev; |
Xiubo Li | 78957fc | 2014-02-08 14:38:28 +0800 | [diff] [blame] | 134 | struct regmap *regmap; |
Nicolin Chen | ca3e35c | 2014-04-10 23:26:15 +0800 | [diff] [blame] | 135 | struct clk *bus_clk; |
| 136 | struct clk *mclk_clk[FSL_SAI_MCLK_MAX]; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 137 | |
Zidan Wang | c3ecef2 | 2015-05-11 18:24:41 +0800 | [diff] [blame] | 138 | bool is_slave_mode; |
Xiubo Li | eadb001 | 2014-08-29 15:12:12 +0800 | [diff] [blame] | 139 | bool is_lsb_first; |
Xiubo Li | a3f7dcc | 2014-02-27 08:45:01 +0800 | [diff] [blame] | 140 | bool is_dsp_mode; |
Nicolin Chen | c754064 | 2014-04-01 19:34:09 +0800 | [diff] [blame] | 141 | bool sai_on_imx; |
Nicolin Chen | 08fdf65 | 2014-08-05 15:32:05 +0800 | [diff] [blame] | 142 | bool synchronous[2]; |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 143 | |
Zidan Wang | c3ecef2 | 2015-05-11 18:24:41 +0800 | [diff] [blame] | 144 | unsigned int mclk_id[2]; |
| 145 | unsigned int mclk_streams; |
Zidan Wang | c1df296 | 2015-11-24 15:31:54 +0800 | [diff] [blame] | 146 | unsigned int slots; |
| 147 | unsigned int slot_width; |
| 148 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 149 | struct snd_dmaengine_dai_dma_data dma_params_rx; |
| 150 | struct snd_dmaengine_dai_dma_data dma_params_tx; |
| 151 | }; |
| 152 | |
Nicolin Chen | 08fdf65 | 2014-08-05 15:32:05 +0800 | [diff] [blame] | 153 | #define TX 1 |
| 154 | #define RX 0 |
| 155 | |
Xiubo Li | 4355082 | 2013-12-17 11:24:38 +0800 | [diff] [blame] | 156 | #endif /* __FSL_SAI_H */ |