summaryrefslogtreecommitdiff
path: root/chip/ish/hbm.h
blob: 85afd5f3d5f7de5206d4f6a69174eaa66d73f72d (plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* Copyright 2018 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef __HBM_H
#define __HBM_H

#include <stdint.h>
#include <stddef.h>

#include "heci_client.h"

#define HBM_MAJOR_VERSION			1
#ifdef HECI_ENABLE_DMA
#define HBM_MINOR_VERSION			2
#else
#define HBM_MINOR_VERSION			0
#endif

#define __packed __attribute__((packed))

#define HECI_MSG_REPONSE_FLAG			0x80

enum HECI_BUS_MSG {
	/* requests */
	HECI_BUS_MSG_VERSION_REQ		= 1,
	HECI_BUS_MSG_HOST_STOP_REQ		= 2,
	HECI_BUS_MSG_ME_STOP_REQ		= 3,
	HECI_BUS_MSG_HOST_ENUM_REQ		= 4,
	HECI_BUS_MSG_HOST_CLIENT_PROP_REQ	= 5,
	HECI_BUS_MSG_CLIENT_CONNECT_REQ		= 6,
	HECI_BUS_MSG_CLIENT_DISCONNECT_REQ	= 7,
	HECI_BUS_MSG_FLOW_CONTROL		= 8,
	HECI_BUS_MSG_RESET_REQ			= 9,
	HECI_BUS_MSG_ADD_CLIENT_REQ		= 0x0A,
	HECI_BUS_MSG_DMA_REQ			= 0x10,
	HECI_BUS_MSG_DMA_ALLOC_NOTIFY		= 0x11,
	HECI_BUS_MSG_DMA_XFER_REQ		= 0x12,

	/* responses */
	HECI_BUS_MSG_VERSION_RESP		=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_VERSION_REQ),
	HECI_BUS_MSG_HOST_STOP_RESP		=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_HOST_STOP_REQ),
	HECI_BUS_MSG_HOST_ENUM_RESP		=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_HOST_ENUM_REQ),
	HECI_BUS_MSG_HOST_CLIENT_PROP_RESP	=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_HOST_CLIENT_PROP_REQ),
	HECI_BUS_MSG_CLIENT_CONNECT_RESP	=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_CLIENT_CONNECT_REQ),
	HECI_BUS_MSG_CLIENT_DISCONNECT_RESP	= 
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_CLIENT_DISCONNECT_REQ),
	HECI_BUS_MSG_RESET_RESP			=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_RESET_REQ),
	HECI_BUS_MSG_ADD_CLIENT_RESP		=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_ADD_CLIENT_REQ),
	HECI_BUS_MSG_DMA_RESP			=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_DMA_REQ),
	HECI_BUS_MSG_DMA_ALLOC_RESP		=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_DMA_ALLOC_NOTIFY),
	HECI_BUS_MSG_DMA_XFER_RESP		=
		(HECI_MSG_REPONSE_FLAG | HECI_BUS_MSG_DMA_XFER_REQ)
};

enum {
	HECI_CONNECT_STATUS_SUCCESS           = 0,
	HECI_CONNECT_STATUS_CLIENT_NOT_FOUND  = 1,
	HECI_CONNECT_STATUS_ALREADY_EXISTS    = 2,
	HECI_CONNECT_STATUS_REJECTED          = 3,
	HECI_CONNECT_STATUS_INVALID_PARAMETER = 4,
	HECI_CONNECT_STATUS_INACTIVE_CLIENT   = 5,
};

struct hbm_version {
	uint8_t minor;
	uint8_t major;
} __packed;

struct hbm_version_req {
	uint8_t reserved;
	struct hbm_version version;
} __packed;

struct hbm_version_res {
	uint8_t supported;
	struct hbm_version version;
} __packed;

struct hbm_enum_req {
	uint8_t reserved[3];
} __packed;

struct hbm_enum_res {
	uint8_t reserved[3];
	uint8_t valid_addresses[32];
} __packed;

struct hbm_client_prop_req {
	uint8_t address;
	uint8_t reserved[2];
} __packed;

#define CLIENT_DMA_ENABLE	0x80

struct hbm_client_properties {
	struct heci_guid protocol_name; /* heci client protocol ID */
	uint8_t protocol_version;	/* protocol version */
	/* max connection from host to client. currently only 1 is allowed */
	uint8_t max_number_of_connections;
	uint8_t fixed_address;	/* not yet supported */
	uint8_t single_recv_buf; /* not yet supported */
	uint32_t max_msg_length; /* max payload size */
	/* not yet supported. [7] enable/disable, [6:0] dma length */
	uint8_t dma_hdr_len;
	uint8_t reserved4;
	uint8_t reserved5;
	uint8_t reserved6;
} __packed;

struct hbm_client_prop_res {
	uint8_t address;
	uint8_t status;
	uint8_t reserved[1];
	struct hbm_client_properties client_prop;
} __packed;

struct hbm_client_connect_req {
	uint8_t fw_addr;
	uint8_t host_addr;
	uint8_t reserved;
} __packed;

struct hbm_client_connect_res {
	uint8_t fw_addr;
	uint8_t host_addr;
	uint8_t status;
} __packed;

struct hbm_flow_control {
	uint8_t fw_addr;
	uint8_t host_addr;
	uint8_t reserved[5];
} __packed;

struct hbm_client_disconnect_req {
	uint8_t fw_addr;
	uint8_t host_addr;
	uint8_t reserved;
} __packed;

struct hbm_client_disconnect_res {
	uint8_t fw_addr;
	uint8_t host_addr;
	uint8_t status;
} __packed;

struct hbm_host_stop_req {
	uint8_t reason;
	uint8_t reserved[2];
};

struct hbm_host_stop_res {
	uint8_t reserved[3];
};

/* host bus message : host -> ish */
struct hbm_h2i {
	uint8_t cmd;
	union {
		struct hbm_version_req			ver_req;
		struct hbm_enum_req			enum_req;
		struct hbm_client_prop_req		client_prop_req;
		struct hbm_client_connect_req		client_connect_req;
		struct hbm_flow_control			flow_ctrl;
		struct hbm_client_disconnect_req	client_disconnect_req;
		struct hbm_host_stop_req		host_stop_req;
	} data;
} __packed;

/* host bus message : i2h -> host */
struct hbm_i2h {
	uint8_t cmd;
	union {
		struct hbm_version_res			ver_res;
		struct hbm_enum_res			enum_res;
		struct hbm_client_prop_res		client_prop_res;
		struct hbm_client_connect_res		client_connect_res;
		struct hbm_flow_control			flow_ctrl;
		struct hbm_client_disconnect_res	client_disconnect_res;
		struct hbm_host_stop_res		host_stop_res;
	} data;
} __packed;

#endif /* __HBM_H */