1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* Copyright (c) 2014-2016, 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.
*/
#ifndef _CORESIGHT_QMI_H
#define _CORESIGHT_QMI_H
#include <soc/qcom/msm_qmi_interface.h>
#define CORESIGHT_QMI_SVC_ID (0x33)
#define CORESIGHT_QMI_VERSION (1)
#define CORESIGHT_QMI_GET_ETM_REQ_V01 (0x002B)
#define CORESIGHT_QMI_GET_ETM_RESP_V01 (0x002B)
#define CORESIGHT_QMI_SET_ETM_REQ_V01 (0x002C)
#define CORESIGHT_QMI_SET_ETM_RESP_V01 (0x002C)
#define CORESIGHT_QMI_GET_ETM_REQ_MAX_LEN (0)
#define CORESIGHT_QMI_GET_ETM_RESP_MAX_LEN (14)
#define CORESIGHT_QMI_SET_ETM_REQ_MAX_LEN (7)
#define CORESIGHT_QMI_SET_ETM_RESP_MAX_LEN (7)
#define TIMEOUT_MS (5000)
enum coresight_etm_state_enum_type_v01 {
/* To force a 32 bit signed enum. Do not change or use */
CORESIGHT_ETM_STATE_ENUM_TYPE_MIN_ENUM_VAL_V01 = INT_MIN,
CORESIGHT_ETM_STATE_DISABLED_V01 = 0,
CORESIGHT_ETM_STATE_ENABLED_V01 = 1,
CORESIGHT_ETM_STATE_ENUM_TYPE_MAX_ENUM_VAL_01 = INT_MAX,
};
struct coresight_get_etm_req_msg_v01 {
/*
* This element is a placeholder to prevent declaration of
* empty struct. Do not change.
*/
char __placeholder;
};
struct coresight_get_etm_resp_msg_v01 {
/* Mandatory */
/* QMI result Code */
struct qmi_response_type_v01 resp;
/* Optional */
/* ETM output state, must be set to true if state is being passed */
uint8_t state_valid;
/* Present when result code is QMI_RESULT_SUCCESS */
enum coresight_etm_state_enum_type_v01 state;
};
struct coresight_set_etm_req_msg_v01 {
/* Mandatory */
/* ETM output state */
enum coresight_etm_state_enum_type_v01 state;
};
struct coresight_set_etm_resp_msg_v01 {
/* Mandatory */
struct qmi_response_type_v01 resp;
};
static struct elem_info coresight_set_etm_req_msg_v01_ei[] = {
{
.data_type = QMI_UNSIGNED_4_BYTE,
.elem_len = 1,
.elem_size = sizeof(enum coresight_etm_state_enum_type_v01),
.is_array = NO_ARRAY,
.tlv_type = 0x01,
.offset = offsetof(struct coresight_set_etm_req_msg_v01,
state),
.ei_array = NULL,
},
{
.data_type = QMI_EOTI,
.elem_len = 0,
.elem_size = 0,
.is_array = NO_ARRAY,
.tlv_type = 0,
.offset = 0,
.ei_array = NULL,
},
};
static struct elem_info coresight_set_etm_resp_msg_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 coresight_set_etm_resp_msg_v01,
resp),
.ei_array = get_qmi_response_type_v01_ei(),
},
{
.data_type = QMI_EOTI,
.elem_len = 0,
.elem_size = 0,
.is_array = NO_ARRAY,
.tlv_type = 0,
.offset = 0,
.ei_array = NULL,
},
};
#endif
|