1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2012 Samsung Electronics
4 * R. Chandrasekar <rcsekar@samsung.com>
11 * DAI hardware audio formats.
13 * Describes the physical PCM data formating and clocking. Add new formats
16 #define SND_SOC_DAIFMT_I2S 1 /* I2S mode */
17 #define SND_SOC_DAIFMT_RIGHT_J 2 /* Right Justified mode */
18 #define SND_SOC_DAIFMT_LEFT_J 3 /* Left Justified mode */
19 #define SND_SOC_DAIFMT_DSP_A 4 /* L data MSB after FRM LRC */
20 #define SND_SOC_DAIFMT_DSP_B 5 /* L data MSB during FRM LRC */
21 #define SND_SOC_DAIFMT_AC97 6 /* AC97 */
22 #define SND_SOC_DAIFMT_PDM 7 /* Pulse density modulation */
24 /* left and right justified also known as MSB and LSB respectively */
25 #define SND_SOC_DAIFMT_MSB SND_SOC_DAIFMT_LEFT_J
26 #define SND_SOC_DAIFMT_LSB SND_SOC_DAIFMT_RIGHT_J
29 * DAI hardware signal inversions.
31 * Specifies whether the DAI can also support inverted clocks for the specified
34 #define SND_SOC_DAIFMT_NB_NF (1 << 8) /* normal bit clock + frame */
35 #define SND_SOC_DAIFMT_NB_IF (2 << 8) /* normal BCLK + inv FRM */
36 #define SND_SOC_DAIFMT_IB_NF (3 << 8) /* invert BCLK + nor FRM */
37 #define SND_SOC_DAIFMT_IB_IF (4 << 8) /* invert BCLK + FRM */
40 * DAI hardware clock masters.
42 * This is wrt the codec, the inverse is true for the interface
43 * i.e. if the codec is clk and FRM master then the interface is
44 * clk and frame slave.
46 #define SND_SOC_DAIFMT_CBM_CFM (1 << 12) /* codec clk & FRM master */
47 #define SND_SOC_DAIFMT_CBS_CFM (2 << 12) /* codec clk slave & FRM master */
48 #define SND_SOC_DAIFMT_CBM_CFS (3 << 12) /* codec clk master & frame slave */
49 #define SND_SOC_DAIFMT_CBS_CFS (4 << 12) /* codec clk & FRM slave */
51 #define SND_SOC_DAIFMT_FORMAT_MASK 0x000f
52 #define SND_SOC_DAIFMT_CLOCK_MASK 0x00f0
53 #define SND_SOC_DAIFMT_INV_MASK 0x0f00
54 #define SND_SOC_DAIFMT_MASTER_MASK 0xf000
57 * Master Clock Directions
59 #define SND_SOC_CLOCK_IN 0
60 #define SND_SOC_CLOCK_OUT 1
66 #define FIFO_LENGTH 64
70 unsigned int con; /* base + 0 , Control register */
71 unsigned int mod; /* Mode register */
72 unsigned int fic; /* FIFO control register */
73 unsigned int psr; /* Reserved */
74 unsigned int txd; /* Transmit data register */
75 unsigned int rxd; /* Receive Data Register */
78 /* This structure stores the i2s related information */
80 unsigned int rfs; /* LR clock frame size */
81 unsigned int bfs; /* Bit clock frame size */
82 unsigned int audio_pll_clk; /* Audio pll frequency in Hz */
83 unsigned int samplingrate; /* sampling rate */
84 unsigned int bitspersample; /* bits per sample */
85 unsigned int channels; /* audio channels */
86 unsigned int base_address; /* I2S Register Base */
87 unsigned int id; /* I2S controller id */
90 /* Operations for i2s devices */
93 * tx_data() - Transmit audio data
96 * @data: Data buffer to play
97 * @data_size: Size of data buffer in bytes
98 * @return 0 if OK, -ve on error
100 int (*tx_data)(struct udevice *dev, void *data, uint data_size);
103 #define i2s_get_ops(dev) ((struct i2s_ops *)(dev)->driver->ops)
106 * i2s_tx_data() - Transmit audio data
109 * @data: Data buffer to play
110 * @data_size: Size of data buffer in bytes
111 * @return 0 if OK, -ve on error
113 int i2s_tx_data(struct udevice *dev, void *data, uint data_size);
116 * Sends the given data through i2s tx
118 * @param pi2s_tx pointer of i2s transmitter parameter structure.
119 * @param data address of the data buffer
120 * @param data_size size of the data (in bytes)
121 * @return int value 0 for success, -1 in case of error
123 int i2s_transfer_tx_data(struct i2s_uc_priv *pi2s_tx, void *data,
126 #endif /* __I2S_H__ */