ASoC: Intel: Update request-reply IPC model
[linux-2.6-block.git] / sound / soc / fsl / fsl_sai.h
CommitLineData
dbbeaad4 1/* SPDX-License-Identifier: GPL-2.0 */
43550821
XL
2/*
3 * Copyright 2012-2013 Freescale Semiconductor, Inc.
43550821
XL
4 */
5
6#ifndef __FSL_SAI_H
7#define __FSL_SAI_H
8
9#include <sound/dmaengine_pcm.h>
10
11#define FSL_SAI_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
12 SNDRV_PCM_FMTBIT_S20_3LE |\
9b7493d0
ZW
13 SNDRV_PCM_FMTBIT_S24_LE |\
14 SNDRV_PCM_FMTBIT_S32_LE)
43550821 15
78957fc3
XL
16/* SAI Register Map Register */
17#define FSL_SAI_TCSR 0x00 /* SAI Transmit Control */
18#define FSL_SAI_TCR1 0x04 /* SAI Transmit Configuration 1 */
19#define FSL_SAI_TCR2 0x08 /* SAI Transmit Configuration 2 */
20#define FSL_SAI_TCR3 0x0c /* SAI Transmit Configuration 3 */
21#define FSL_SAI_TCR4 0x10 /* SAI Transmit Configuration 4 */
22#define FSL_SAI_TCR5 0x14 /* SAI Transmit Configuration 5 */
23#define FSL_SAI_TDR 0x20 /* SAI Transmit Data */
24#define FSL_SAI_TFR 0x40 /* SAI Transmit FIFO */
25#define FSL_SAI_TMR 0x60 /* SAI Transmit Mask */
26#define FSL_SAI_RCSR 0x80 /* SAI Receive Control */
27#define FSL_SAI_RCR1 0x84 /* SAI Receive Configuration 1 */
28#define FSL_SAI_RCR2 0x88 /* SAI Receive Configuration 2 */
29#define FSL_SAI_RCR3 0x8c /* SAI Receive Configuration 3 */
30#define FSL_SAI_RCR4 0x90 /* SAI Receive Configuration 4 */
31#define FSL_SAI_RCR5 0x94 /* SAI Receive Configuration 5 */
32#define FSL_SAI_RDR 0xa0 /* SAI Receive Data */
33#define FSL_SAI_RFR 0xc0 /* SAI Receive FIFO */
34#define FSL_SAI_RMR 0xe0 /* SAI Receive Mask */
35
e6b39846
NC
36#define FSL_SAI_xCSR(tx) (tx ? FSL_SAI_TCSR : FSL_SAI_RCSR)
37#define FSL_SAI_xCR1(tx) (tx ? FSL_SAI_TCR1 : FSL_SAI_RCR1)
38#define FSL_SAI_xCR2(tx) (tx ? FSL_SAI_TCR2 : FSL_SAI_RCR2)
39#define FSL_SAI_xCR3(tx) (tx ? FSL_SAI_TCR3 : FSL_SAI_RCR3)
40#define FSL_SAI_xCR4(tx) (tx ? FSL_SAI_TCR4 : FSL_SAI_RCR4)
41#define FSL_SAI_xCR5(tx) (tx ? FSL_SAI_TCR5 : FSL_SAI_RCR5)
42#define FSL_SAI_xDR(tx) (tx ? FSL_SAI_TDR : FSL_SAI_RDR)
43#define FSL_SAI_xFR(tx) (tx ? FSL_SAI_TFR : FSL_SAI_RFR)
44#define FSL_SAI_xMR(tx) (tx ? FSL_SAI_TMR : FSL_SAI_RMR)
45
dcfcf2c2 46/* SAI Transmit/Receive Control Register */
43550821 47#define FSL_SAI_CSR_TERE BIT(31)
e2681a1b 48#define FSL_SAI_CSR_FR BIT(25)
376d1a92 49#define FSL_SAI_CSR_SR BIT(24)
e2681a1b
NC
50#define FSL_SAI_CSR_xF_SHIFT 16
51#define FSL_SAI_CSR_xF_W_SHIFT 18
52#define FSL_SAI_CSR_xF_MASK (0x1f << FSL_SAI_CSR_xF_SHIFT)
53#define FSL_SAI_CSR_xF_W_MASK (0x7 << FSL_SAI_CSR_xF_W_SHIFT)
54#define FSL_SAI_CSR_WSF BIT(20)
55#define FSL_SAI_CSR_SEF BIT(19)
56#define FSL_SAI_CSR_FEF BIT(18)
43550821 57#define FSL_SAI_CSR_FWF BIT(17)
e2681a1b
NC
58#define FSL_SAI_CSR_FRF BIT(16)
59#define FSL_SAI_CSR_xIE_SHIFT 8
8abba5d6 60#define FSL_SAI_CSR_xIE_MASK (0x1f << FSL_SAI_CSR_xIE_SHIFT)
e2681a1b
NC
61#define FSL_SAI_CSR_WSIE BIT(12)
62#define FSL_SAI_CSR_SEIE BIT(11)
63#define FSL_SAI_CSR_FEIE BIT(10)
64#define FSL_SAI_CSR_FWIE BIT(9)
43550821
XL
65#define FSL_SAI_CSR_FRIE BIT(8)
66#define FSL_SAI_CSR_FRDE BIT(0)
67
dcfcf2c2 68/* SAI Transmit and Receive Configuration 1 Register */
78957fc3 69#define FSL_SAI_CR1_RFW_MASK 0x1f
43550821 70
dcfcf2c2 71/* SAI Transmit and Receive Configuration 2 Register */
43550821 72#define FSL_SAI_CR2_SYNC BIT(30)
c3ecef21 73#define FSL_SAI_CR2_MSEL_MASK (0x3 << 26)
43550821
XL
74#define FSL_SAI_CR2_MSEL_BUS 0
75#define FSL_SAI_CR2_MSEL_MCLK1 BIT(26)
76#define FSL_SAI_CR2_MSEL_MCLK2 BIT(27)
77#define FSL_SAI_CR2_MSEL_MCLK3 (BIT(26) | BIT(27))
c3ecef21 78#define FSL_SAI_CR2_MSEL(ID) ((ID) << 26)
43550821
XL
79#define FSL_SAI_CR2_BCP BIT(25)
80#define FSL_SAI_CR2_BCD_MSTR BIT(24)
c3ecef21 81#define FSL_SAI_CR2_DIV_MASK 0xff
43550821 82
dcfcf2c2 83/* SAI Transmit and Receive Configuration 3 Register */
43550821
XL
84#define FSL_SAI_CR3_TRCE BIT(16)
85#define FSL_SAI_CR3_WDFL(x) (x)
86#define FSL_SAI_CR3_WDFL_MASK 0x1f
87
dcfcf2c2 88/* SAI Transmit and Receive Configuration 4 Register */
43550821
XL
89#define FSL_SAI_CR4_FRSZ(x) (((x) - 1) << 16)
90#define FSL_SAI_CR4_FRSZ_MASK (0x1f << 16)
91#define FSL_SAI_CR4_SYWD(x) (((x) - 1) << 8)
92#define FSL_SAI_CR4_SYWD_MASK (0x1f << 8)
93#define FSL_SAI_CR4_MF BIT(4)
94#define FSL_SAI_CR4_FSE BIT(3)
95#define FSL_SAI_CR4_FSP BIT(1)
96#define FSL_SAI_CR4_FSD_MSTR BIT(0)
97
dcfcf2c2 98/* SAI Transmit and Receive Configuration 5 Register */
43550821
XL
99#define FSL_SAI_CR5_WNW(x) (((x) - 1) << 24)
100#define FSL_SAI_CR5_WNW_MASK (0x1f << 24)
101#define FSL_SAI_CR5_W0W(x) (((x) - 1) << 16)
102#define FSL_SAI_CR5_W0W_MASK (0x1f << 16)
103#define FSL_SAI_CR5_FBT(x) ((x) << 8)
104#define FSL_SAI_CR5_FBT_MASK (0x1f << 8)
105
106/* SAI type */
107#define FSL_SAI_DMA BIT(0)
108#define FSL_SAI_USE_AC97 BIT(1)
109#define FSL_SAI_NET BIT(2)
110#define FSL_SAI_TRA_SYN BIT(3)
111#define FSL_SAI_REC_SYN BIT(4)
112#define FSL_SAI_USE_I2S_SLAVE BIT(5)
113
114#define FSL_FMT_TRANSMITTER 0
115#define FSL_FMT_RECEIVER 1
116
117/* SAI clock sources */
118#define FSL_SAI_CLK_BUS 0
119#define FSL_SAI_CLK_MAST1 1
120#define FSL_SAI_CLK_MAST2 2
121#define FSL_SAI_CLK_MAST3 3
122
c3ecef21 123#define FSL_SAI_MCLK_MAX 4
ca3e35c7 124
43550821
XL
125/* SAI data transfer numbers per DMA request */
126#define FSL_SAI_MAXBURST_TX 6
127#define FSL_SAI_MAXBURST_RX 6
128
89c9679f
LS
129struct fsl_sai_soc_data {
130 bool use_imx_pcm;
bd517707 131 unsigned int fifo_depth;
89c9679f
LS
132};
133
43550821 134struct fsl_sai {
e2681a1b 135 struct platform_device *pdev;
78957fc3 136 struct regmap *regmap;
ca3e35c7
NC
137 struct clk *bus_clk;
138 struct clk *mclk_clk[FSL_SAI_MCLK_MAX];
43550821 139
c3ecef21 140 bool is_slave_mode;
eadb0019 141 bool is_lsb_first;
a3f7dcc9 142 bool is_dsp_mode;
08fdf65e 143 bool synchronous[2];
43550821 144
c3ecef21
ZW
145 unsigned int mclk_id[2];
146 unsigned int mclk_streams;
c1df2964
ZW
147 unsigned int slots;
148 unsigned int slot_width;
149
89c9679f 150 const struct fsl_sai_soc_data *soc_data;
43550821
XL
151 struct snd_dmaengine_dai_dma_data dma_params_rx;
152 struct snd_dmaengine_dai_dma_data dma_params_tx;
153};
154
08fdf65e
NC
155#define TX 1
156#define RX 0
157
43550821 158#endif /* __FSL_SAI_H */