blob: 76fe35ef8f6916031b07892630ef9ddf13122716 [file] [log] [blame]
Kristofer Jonsson116a6352020-08-20 17:25:23 +02001/*
Kristofer Jonsson35de9e62022-03-08 13:25:45 +01002 * Copyright (c) 2020-2022 Arm Limited.
Kristofer Jonsson116a6352020-08-20 17:25:23 +02003 *
4 * This program is free software and is provided to you under the terms of the
5 * GNU General Public License version 2 as published by the Free Software
6 * Foundation, and any use by you of this program is subject to the terms
7 * of such GNU licence.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
17 *
18 * SPDX-License-Identifier: GPL-2.0-only
19 */
20
21#ifndef ETHOSU_CORE_INTERFACE_H
22#define ETHOSU_CORE_INTERFACE_H
23
24#ifdef __KERNEL__
25#include <linux/types.h>
26#else
27#include <stdint.h>
28#endif
29
Per Åstrandc823bcf2021-01-12 13:11:13 +010030#ifdef __cplusplus
31namespace EthosU {
32#endif
33
Kristofer Jonssonb74492c2020-09-10 13:26:01 +020034/** Maximum number of IFM/OFM buffers per inference */
35#define ETHOSU_CORE_BUFFER_MAX 16
36
Per Åstrandf7e407a2020-10-23 21:25:05 +020037/** Maximum number of PMU counters to be returned for inference */
Jonny Svärdb5aa9042021-12-17 17:08:10 +010038#define ETHOSU_CORE_PMU_MAX 8
Per Åstrandf7e407a2020-10-23 21:25:05 +020039
Jonny Svärd7c24c772021-01-14 19:53:17 +010040#define ETHOSU_CORE_MSG_MAGIC 0x41457631
41#define ETHOSU_CORE_MSG_VERSION_MAJOR 0
42#define ETHOSU_CORE_MSG_VERSION_MINOR 2
43#define ETHOSU_CORE_MSG_VERSION_PATCH 0
44
Kristofer Jonsson116a6352020-08-20 17:25:23 +020045/**
46 * enum ethosu_core_msg_type - Message types
47 *
48 * Types for the messages sent between the host and the core subsystem.
49 */
50enum ethosu_core_msg_type {
Jonny Svärd7c24c772021-01-14 19:53:17 +010051 ETHOSU_CORE_MSG_ERR = 1,
52 ETHOSU_CORE_MSG_PING,
Kristofer Jonsson116a6352020-08-20 17:25:23 +020053 ETHOSU_CORE_MSG_PONG,
54 ETHOSU_CORE_MSG_INFERENCE_REQ,
55 ETHOSU_CORE_MSG_INFERENCE_RSP,
Jonny Svärd7c24c772021-01-14 19:53:17 +010056 ETHOSU_CORE_MSG_VERSION_REQ,
57 ETHOSU_CORE_MSG_VERSION_RSP,
Davide Grohmann35ce6c82021-06-01 15:03:51 +020058 ETHOSU_CORE_MSG_CAPABILITIES_REQ,
59 ETHOSU_CORE_MSG_CAPABILITIES_RSP,
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +010060 ETHOSU_CORE_MSG_NETWORK_INFO_REQ,
61 ETHOSU_CORE_MSG_NETWORK_INFO_RSP,
Kristofer Jonsson116a6352020-08-20 17:25:23 +020062 ETHOSU_CORE_MSG_MAX
63};
64
65/**
66 * struct ethosu_core_msg - Message header
67 */
68struct ethosu_core_msg {
Jonny Svärd7c24c772021-01-14 19:53:17 +010069 uint32_t magic;
Kristofer Jonsson116a6352020-08-20 17:25:23 +020070 uint32_t type;
71 uint32_t length;
72};
73
74/**
75 * struct ethosu_core_queue_header - Message queue header
76 */
77struct ethosu_core_queue_header {
78 uint32_t size;
79 uint32_t read;
80 uint32_t write;
81};
82
83/**
84 * struct ethosu_core_queue - Message queue
85 *
86 * Dynamically sized message queue.
87 */
88struct ethosu_core_queue {
89 struct ethosu_core_queue_header header;
90 uint8_t data[];
91};
92
Kristofer Jonsson35de9e62022-03-08 13:25:45 +010093/**
94 * enum ethosu_core_status - Status
95 */
Kristofer Jonsson116a6352020-08-20 17:25:23 +020096enum ethosu_core_status {
97 ETHOSU_CORE_STATUS_OK,
Davide Grohmann82d22582022-04-25 12:52:38 +020098 ETHOSU_CORE_STATUS_ERROR,
99 ETHOSU_CORE_STATUS_RUNNING,
100 ETHOSU_CORE_STATUS_REJECTED,
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200101};
102
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100103/**
104 * struct ethosu_core_buffer - Buffer descriptor
105 *
106 * Pointer and size to a buffer withing the Ethos-U
107 * address space.
108 */
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200109struct ethosu_core_buffer {
110 uint32_t ptr;
111 uint32_t size;
112};
113
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100114/**
115 * enum ethosu_core_network_type - Network buffer type
116 */
117enum ethosu_core_network_type {
118 ETHOSU_CORE_NETWORK_BUFFER = 1,
119 ETHOSU_CORE_NETWORK_INDEX
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200120};
121
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100122/**
123 * struct ethosu_core_network_buffer - Network buffer
124 */
125struct ethosu_core_network_buffer {
126 uint32_t type;
127 union {
128 struct ethosu_core_buffer buffer;
129 uint32_t index;
130 };
131};
132
133/**
134 * struct ethosu_core_inference_req - Inference request
135 */
136struct ethosu_core_inference_req {
137 uint64_t user_arg;
138 uint32_t ifm_count;
139 struct ethosu_core_buffer ifm[ETHOSU_CORE_BUFFER_MAX];
140 uint32_t ofm_count;
141 struct ethosu_core_buffer ofm[ETHOSU_CORE_BUFFER_MAX];
142 struct ethosu_core_network_buffer network;
143 uint8_t pmu_event_config[ETHOSU_CORE_PMU_MAX];
144 uint32_t pmu_cycle_counter_enable;
145};
146
147/**
148 * struct ethosu_core_inference_rsp - Inference response
149 */
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200150struct ethosu_core_inference_rsp {
151 uint64_t user_arg;
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200152 uint32_t ofm_count;
153 uint32_t ofm_size[ETHOSU_CORE_BUFFER_MAX];
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200154 uint32_t status;
Per Åstrandf7e407a2020-10-23 21:25:05 +0200155 uint8_t pmu_event_config[ETHOSU_CORE_PMU_MAX];
156 uint32_t pmu_event_count[ETHOSU_CORE_PMU_MAX];
157 uint32_t pmu_cycle_counter_enable;
158 uint64_t pmu_cycle_counter_count;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200159};
160
Jonny Svärd7c24c772021-01-14 19:53:17 +0100161/**
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +0100162 * struct ethosu_core_network_info_req - Network information request
163 */
164struct ethosu_core_network_info_req {
165 uint64_t user_arg;
166 struct ethosu_core_network_buffer network;
167};
168
169/**
170 * struct ethosu_core_network_info_rsp - Network information response
171 */
172struct ethosu_core_network_info_rsp {
173 uint64_t user_arg;
174 char desc[32];
175 uint32_t ifm_count;
176 uint32_t ifm_size[ETHOSU_CORE_BUFFER_MAX];
177 uint32_t ofm_count;
178 uint32_t ofm_size[ETHOSU_CORE_BUFFER_MAX];
179 uint32_t status;
180};
181
182/**
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100183 * struct ethosu_core_msg_version - Message protocol version
Jonny Svärd7c24c772021-01-14 19:53:17 +0100184 */
185struct ethosu_core_msg_version {
186 uint8_t major;
187 uint8_t minor;
188 uint8_t patch;
189 uint8_t _reserved;
190};
191
192/**
Davide Grohmann35ce6c82021-06-01 15:03:51 +0200193 * struct ethosu_core_capabilities_req - Message capabilities request
194 */
195struct ethosu_core_capabilities_req {
196 uint64_t user_arg;
197};
198
199/**
200 * struct ethosu_core_capabilities_rsp - Message capabilities response
201 */
202struct ethosu_core_msg_capabilities_rsp {
203 uint64_t user_arg;
204 uint32_t version_status;
205 uint32_t version_minor;
206 uint32_t version_major;
207 uint32_t product_major;
208 uint32_t arch_patch_rev;
209 uint32_t arch_minor_rev;
210 uint32_t arch_major_rev;
211 uint32_t driver_patch_rev;
212 uint32_t driver_minor_rev;
213 uint32_t driver_major_rev;
214 uint32_t macs_per_cc;
215 uint32_t cmd_stream_version;
Davide Grohmann35ce6c82021-06-01 15:03:51 +0200216 uint32_t custom_dma;
217};
218
219/**
Jonny Svärd7c24c772021-01-14 19:53:17 +0100220 * enum ethosu_core_msg_err_type - Error types
221 */
222enum ethosu_core_msg_err_type {
223 ETHOSU_CORE_MSG_ERR_GENERIC = 0,
224 ETHOSU_CORE_MSG_ERR_UNSUPPORTED_TYPE,
225 ETHOSU_CORE_MSG_ERR_INVALID_PAYLOAD,
226 ETHOSU_CORE_MSG_ERR_INVALID_SIZE,
227 ETHOSU_CORE_MSG_ERR_INVALID_MAGIC,
228 ETHOSU_CORE_MSG_ERR_MAX
229};
230
231/**
232 * struct ethosu_core_msg_err - Error message struct
233 */
234struct ethosu_core_msg_err {
235 uint32_t type; /* optional use of extra error code */
236 char msg[128];
237};
Per Åstrandc823bcf2021-01-12 13:11:13 +0100238#ifdef __cplusplus
239} /*namespace EthosU */
240#endif
Jonny Svärd7c24c772021-01-14 19:53:17 +0100241
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200242#endif