123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /* SPDX-License-Identifier: GPL-2.0-only */
- /* Copyright (c) 2012-2017, 2019 The Linux Foundation. All rights reserved.
- */
- #ifndef __MSM_DAI_Q6_PDATA_H__
- #define __MSM_DAI_Q6_PDATA_H__
- #define MSM_MI2S_SD0 (1 << 0)
- #define MSM_MI2S_SD1 (1 << 1)
- #define MSM_MI2S_SD2 (1 << 2)
- #define MSM_MI2S_SD3 (1 << 3)
- #define MSM_MI2S_SD4 (1 << 4)
- #define MSM_MI2S_SD5 (1 << 5)
- #define MSM_MI2S_SD6 (1 << 6)
- #define MSM_MI2S_SD7 (1 << 7)
- #define MSM_MI2S_CAP_RX 0
- #define MSM_MI2S_CAP_TX 1
- #define MSM_PRIM_MI2S 0
- #define MSM_SEC_MI2S 1
- #define MSM_TERT_MI2S 2
- #define MSM_QUAT_MI2S 3
- #define MSM_QUIN_MI2S 4
- #define MSM_SENARY_MI2S 5
- #define MSM_SEC_MI2S_SD1 6
- #define MSM_INT0_MI2S 7
- #define MSM_INT1_MI2S 8
- #define MSM_INT2_MI2S 9
- #define MSM_INT3_MI2S 10
- #define MSM_INT4_MI2S 11
- #define MSM_INT5_MI2S 12
- #define MSM_INT6_MI2S 13
- #define MSM_MI2S_MIN MSM_PRIM_MI2S
- #define MSM_MI2S_MAX MSM_INT6_MI2S
- #define MSM_DISPLAY_PORT 0
- #define MSM_DISPLAY_PORT1 1
- #define MSM_PRIM_META_MI2S 0
- #define MSM_SEC_META_MI2S 1
- #define MSM_META_MI2S_MIN MSM_PRIM_META_MI2S
- #define MSM_META_MI2S_MAX MSM_SEC_META_MI2S
- #define MAX_NUM_I2S_META_PORT_MEMBER_PORTS 4
- struct msm_dai_auxpcm_config {
- u16 mode;
- u16 sync;
- u16 frame;
- u16 quant;
- u16 num_slots;
- u16 *slot_mapping;
- u16 data;
- u32 pcm_clk_rate;
- };
- struct msm_dai_auxpcm_pdata {
- struct msm_dai_auxpcm_config mode_8k;
- struct msm_dai_auxpcm_config mode_16k;
- struct msm_dai_auxpcm_config mode_32k;
- struct msm_dai_auxpcm_config mode_48k;
- };
- struct msm_mi2s_pdata {
- u16 rx_sd_lines;
- u16 tx_sd_lines;
- u16 intf_id;
- };
- struct msm_meta_mi2s_pdata {
- u32 num_member_ports;
- u32 member_port[MAX_NUM_I2S_META_PORT_MEMBER_PORTS];
- u32 sd_lines[MAX_NUM_I2S_META_PORT_MEMBER_PORTS];
- u16 intf_id;
- };
- struct msm_i2s_data {
- u32 capability; /* RX or TX */
- u16 sd_lines;
- };
- struct msm_dai_tdm_group_config {
- u16 group_id;
- u16 num_ports;
- u16 *port_id;
- u32 clk_rate;
- };
- struct msm_dai_tdm_config {
- u16 sync_mode;
- u16 sync_src;
- u16 data_out;
- u16 invert_sync;
- u16 data_delay;
- u32 data_align;
- u16 header_start_offset;
- u16 header_width;
- u16 header_num_frame_repeat;
- };
- struct msm_dai_tdm_pdata {
- struct msm_dai_tdm_group_config group_config;
- struct msm_dai_tdm_config config;
- };
- #endif
|