msm-dai-q6-v2.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* Copyright (c) 2012-2017, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef __MSM_DAI_Q6_PDATA_H__
  13. #define __MSM_DAI_Q6_PDATA_H__
  14. #define MSM_MI2S_SD0 (1 << 0)
  15. #define MSM_MI2S_SD1 (1 << 1)
  16. #define MSM_MI2S_SD2 (1 << 2)
  17. #define MSM_MI2S_SD3 (1 << 3)
  18. #define MSM_MI2S_CAP_RX 0
  19. #define MSM_MI2S_CAP_TX 1
  20. #define MSM_PRIM_MI2S 0
  21. #define MSM_SEC_MI2S 1
  22. #define MSM_TERT_MI2S 2
  23. #define MSM_QUAT_MI2S 3
  24. #define MSM_QUIN_MI2S 4
  25. #define MSM_SEC_MI2S_SD1 5
  26. #define MSM_SENARY_MI2S 6
  27. #define MSM_INT0_MI2S 7
  28. #define MSM_INT1_MI2S 8
  29. #define MSM_INT2_MI2S 9
  30. #define MSM_INT3_MI2S 10
  31. #define MSM_INT4_MI2S 11
  32. #define MSM_INT5_MI2S 12
  33. #define MSM_INT6_MI2S 13
  34. #define MSM_MI2S_MIN MSM_PRIM_MI2S
  35. #define MSM_MI2S_MAX MSM_INT6_MI2S
  36. struct msm_dai_auxpcm_config {
  37. u16 mode;
  38. u16 sync;
  39. u16 frame;
  40. u16 quant;
  41. u16 num_slots;
  42. u16 *slot_mapping;
  43. u16 data;
  44. u32 pcm_clk_rate;
  45. };
  46. struct msm_dai_auxpcm_pdata {
  47. struct msm_dai_auxpcm_config mode_8k;
  48. struct msm_dai_auxpcm_config mode_16k;
  49. };
  50. struct msm_mi2s_pdata {
  51. u16 rx_sd_lines;
  52. u16 tx_sd_lines;
  53. u16 intf_id;
  54. };
  55. struct msm_i2s_data {
  56. u32 capability; /* RX or TX */
  57. u16 sd_lines;
  58. };
  59. struct msm_dai_tdm_group_config {
  60. u16 group_id;
  61. u16 num_ports;
  62. u16 *port_id;
  63. u32 clk_rate;
  64. };
  65. struct msm_dai_tdm_config {
  66. u16 sync_mode;
  67. u16 sync_src;
  68. u16 data_out;
  69. u16 invert_sync;
  70. u16 data_delay;
  71. u32 data_align;
  72. u16 header_start_offset;
  73. u16 header_width;
  74. u16 header_num_frame_repeat;
  75. };
  76. struct msm_dai_tdm_pdata {
  77. struct msm_dai_tdm_group_config group_config;
  78. struct msm_dai_tdm_config config;
  79. };
  80. #endif