123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 and
- * only version 2 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- */
- #include <linux/qmi_encdec.h>
- #include <soc/qcom/msm_qmi_interface.h>
- #include "wcd_spi_ctl_v01.h"
- struct elem_info wcd_spi_req_access_msg_v01_ei[] = {
- {
- .data_type = QMI_OPT_FLAG,
- .elem_len = 1,
- .elem_size = sizeof(u8),
- .is_array = NO_ARRAY,
- .tlv_type = 0x10,
- .offset = offsetof(struct wcd_spi_req_access_msg_v01,
- reason_valid),
- },
- {
- .data_type = QMI_UNSIGNED_8_BYTE,
- .elem_len = 1,
- .elem_size = sizeof(u64),
- .is_array = NO_ARRAY,
- .tlv_type = 0x10,
- .offset = offsetof(struct wcd_spi_req_access_msg_v01,
- reason),
- },
- {
- .data_type = QMI_EOTI,
- .is_array = NO_ARRAY,
- .tlv_type = QMI_COMMON_TLV_TYPE,
- },
- };
- struct elem_info wcd_spi_req_access_resp_v01_ei[] = {
- {
- .data_type = QMI_STRUCT,
- .elem_len = 1,
- .elem_size = sizeof(struct qmi_response_type_v01),
- .is_array = NO_ARRAY,
- .tlv_type = 0x02,
- .offset = offsetof(struct wcd_spi_req_access_resp_v01,
- resp),
- .ei_array = get_qmi_response_type_v01_ei(),
- },
- {
- .data_type = QMI_EOTI,
- .is_array = NO_ARRAY,
- .tlv_type = QMI_COMMON_TLV_TYPE,
- },
- };
- struct elem_info wcd_spi_rel_access_msg_v01_ei[] = {
- {
- .data_type = QMI_EOTI,
- .is_array = NO_ARRAY,
- .tlv_type = QMI_COMMON_TLV_TYPE,
- },
- };
- struct elem_info wcd_spi_rel_access_resp_v01_ei[] = {
- {
- .data_type = QMI_STRUCT,
- .elem_len = 1,
- .elem_size = sizeof(struct qmi_response_type_v01),
- .is_array = NO_ARRAY,
- .tlv_type = 0x02,
- .offset = offsetof(struct wcd_spi_rel_access_resp_v01,
- resp),
- .ei_array = get_qmi_response_type_v01_ei(),
- },
- {
- .data_type = QMI_EOTI,
- .is_array = NO_ARRAY,
- .tlv_type = QMI_COMMON_TLV_TYPE,
- },
- };
- struct elem_info wcd_spi_buff_msg_v01_ei[] = {
- {
- .data_type = QMI_UNSIGNED_4_BYTE,
- .elem_len = WCD_SPI_BUFF_CHANNELS_MAX_V01,
- .elem_size = sizeof(u32),
- .is_array = STATIC_ARRAY,
- .tlv_type = 0x01,
- .offset = offsetof(struct wcd_spi_buff_msg_v01,
- buff_addr_1),
- },
- {
- .data_type = QMI_OPT_FLAG,
- .elem_len = 1,
- .elem_size = sizeof(u8),
- .is_array = NO_ARRAY,
- .tlv_type = 0x10,
- .offset = offsetof(struct wcd_spi_buff_msg_v01,
- buff_addr_2_valid),
- },
- {
- .data_type = QMI_UNSIGNED_4_BYTE,
- .elem_len = WCD_SPI_BUFF_CHANNELS_MAX_V01,
- .elem_size = sizeof(u32),
- .is_array = STATIC_ARRAY,
- .tlv_type = 0x10,
- .offset = offsetof(struct wcd_spi_buff_msg_v01,
- buff_addr_2),
- },
- {
- .data_type = QMI_EOTI,
- .is_array = NO_ARRAY,
- .tlv_type = QMI_COMMON_TLV_TYPE,
- },
- };
- struct elem_info wcd_spi_buff_resp_v01_ei[] = {
- {
- .data_type = QMI_STRUCT,
- .elem_len = 1,
- .elem_size = sizeof(struct qmi_response_type_v01),
- .is_array = NO_ARRAY,
- .tlv_type = 0x02,
- .offset = offsetof(struct wcd_spi_buff_resp_v01,
- resp),
- .ei_array = get_qmi_response_type_v01_ei(),
- },
- {
- .data_type = QMI_EOTI,
- .is_array = NO_ARRAY,
- .tlv_type = QMI_COMMON_TLV_TYPE,
- },
- };
|