wcd_spi_ctl_v01.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* Copyright (c) 2018-2019, 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. */
  13. #include <linux/qmi_encdec.h>
  14. #include <soc/qcom/msm_qmi_interface.h>
  15. #include "wcd_spi_ctl_v01.h"
  16. struct elem_info wcd_spi_req_access_msg_v01_ei[] = {
  17. {
  18. .data_type = QMI_OPT_FLAG,
  19. .elem_len = 1,
  20. .elem_size = sizeof(u8),
  21. .is_array = NO_ARRAY,
  22. .tlv_type = 0x10,
  23. .offset = offsetof(struct wcd_spi_req_access_msg_v01,
  24. reason_valid),
  25. },
  26. {
  27. .data_type = QMI_UNSIGNED_8_BYTE,
  28. .elem_len = 1,
  29. .elem_size = sizeof(u64),
  30. .is_array = NO_ARRAY,
  31. .tlv_type = 0x10,
  32. .offset = offsetof(struct wcd_spi_req_access_msg_v01,
  33. reason),
  34. },
  35. {
  36. .data_type = QMI_EOTI,
  37. .is_array = NO_ARRAY,
  38. .tlv_type = QMI_COMMON_TLV_TYPE,
  39. },
  40. };
  41. struct elem_info wcd_spi_req_access_resp_v01_ei[] = {
  42. {
  43. .data_type = QMI_STRUCT,
  44. .elem_len = 1,
  45. .elem_size = sizeof(struct qmi_response_type_v01),
  46. .is_array = NO_ARRAY,
  47. .tlv_type = 0x02,
  48. .offset = offsetof(struct wcd_spi_req_access_resp_v01,
  49. resp),
  50. .ei_array = get_qmi_response_type_v01_ei(),
  51. },
  52. {
  53. .data_type = QMI_EOTI,
  54. .is_array = NO_ARRAY,
  55. .tlv_type = QMI_COMMON_TLV_TYPE,
  56. },
  57. };
  58. struct elem_info wcd_spi_rel_access_msg_v01_ei[] = {
  59. {
  60. .data_type = QMI_EOTI,
  61. .is_array = NO_ARRAY,
  62. .tlv_type = QMI_COMMON_TLV_TYPE,
  63. },
  64. };
  65. struct elem_info wcd_spi_rel_access_resp_v01_ei[] = {
  66. {
  67. .data_type = QMI_STRUCT,
  68. .elem_len = 1,
  69. .elem_size = sizeof(struct qmi_response_type_v01),
  70. .is_array = NO_ARRAY,
  71. .tlv_type = 0x02,
  72. .offset = offsetof(struct wcd_spi_rel_access_resp_v01,
  73. resp),
  74. .ei_array = get_qmi_response_type_v01_ei(),
  75. },
  76. {
  77. .data_type = QMI_EOTI,
  78. .is_array = NO_ARRAY,
  79. .tlv_type = QMI_COMMON_TLV_TYPE,
  80. },
  81. };
  82. struct elem_info wcd_spi_buff_msg_v01_ei[] = {
  83. {
  84. .data_type = QMI_UNSIGNED_4_BYTE,
  85. .elem_len = WCD_SPI_BUFF_CHANNELS_MAX_V01,
  86. .elem_size = sizeof(u32),
  87. .is_array = STATIC_ARRAY,
  88. .tlv_type = 0x01,
  89. .offset = offsetof(struct wcd_spi_buff_msg_v01,
  90. buff_addr_1),
  91. },
  92. {
  93. .data_type = QMI_OPT_FLAG,
  94. .elem_len = 1,
  95. .elem_size = sizeof(u8),
  96. .is_array = NO_ARRAY,
  97. .tlv_type = 0x10,
  98. .offset = offsetof(struct wcd_spi_buff_msg_v01,
  99. buff_addr_2_valid),
  100. },
  101. {
  102. .data_type = QMI_UNSIGNED_4_BYTE,
  103. .elem_len = WCD_SPI_BUFF_CHANNELS_MAX_V01,
  104. .elem_size = sizeof(u32),
  105. .is_array = STATIC_ARRAY,
  106. .tlv_type = 0x10,
  107. .offset = offsetof(struct wcd_spi_buff_msg_v01,
  108. buff_addr_2),
  109. },
  110. {
  111. .data_type = QMI_EOTI,
  112. .is_array = NO_ARRAY,
  113. .tlv_type = QMI_COMMON_TLV_TYPE,
  114. },
  115. };
  116. struct elem_info wcd_spi_buff_resp_v01_ei[] = {
  117. {
  118. .data_type = QMI_STRUCT,
  119. .elem_len = 1,
  120. .elem_size = sizeof(struct qmi_response_type_v01),
  121. .is_array = NO_ARRAY,
  122. .tlv_type = 0x02,
  123. .offset = offsetof(struct wcd_spi_buff_resp_v01,
  124. resp),
  125. .ei_array = get_qmi_response_type_v01_ei(),
  126. },
  127. {
  128. .data_type = QMI_EOTI,
  129. .is_array = NO_ARRAY,
  130. .tlv_type = QMI_COMMON_TLV_TYPE,
  131. },
  132. };