blob: cc4fca47dbc6f032433dad7dc1972e6081acec49 [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 Jonsson116a6352020-08-20 17:25:23 +020060 ETHOSU_CORE_MSG_MAX
61};
62
63/**
64 * struct ethosu_core_msg - Message header
65 */
66struct ethosu_core_msg {
Jonny Svärd7c24c772021-01-14 19:53:17 +010067 uint32_t magic;
Kristofer Jonsson116a6352020-08-20 17:25:23 +020068 uint32_t type;
69 uint32_t length;
70};
71
72/**
73 * struct ethosu_core_queue_header - Message queue header
74 */
75struct ethosu_core_queue_header {
76 uint32_t size;
77 uint32_t read;
78 uint32_t write;
79};
80
81/**
82 * struct ethosu_core_queue - Message queue
83 *
84 * Dynamically sized message queue.
85 */
86struct ethosu_core_queue {
87 struct ethosu_core_queue_header header;
88 uint8_t data[];
89};
90
Kristofer Jonsson35de9e62022-03-08 13:25:45 +010091/**
92 * enum ethosu_core_status - Status
93 */
Kristofer Jonsson116a6352020-08-20 17:25:23 +020094enum ethosu_core_status {
95 ETHOSU_CORE_STATUS_OK,
96 ETHOSU_CORE_STATUS_ERROR
97};
98
Kristofer Jonsson35de9e62022-03-08 13:25:45 +010099/**
100 * struct ethosu_core_buffer - Buffer descriptor
101 *
102 * Pointer and size to a buffer withing the Ethos-U
103 * address space.
104 */
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200105struct ethosu_core_buffer {
106 uint32_t ptr;
107 uint32_t size;
108};
109
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100110/**
111 * enum ethosu_core_network_type - Network buffer type
112 */
113enum ethosu_core_network_type {
114 ETHOSU_CORE_NETWORK_BUFFER = 1,
115 ETHOSU_CORE_NETWORK_INDEX
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200116};
117
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100118/**
119 * struct ethosu_core_network_buffer - Network buffer
120 */
121struct ethosu_core_network_buffer {
122 uint32_t type;
123 union {
124 struct ethosu_core_buffer buffer;
125 uint32_t index;
126 };
127};
128
129/**
130 * struct ethosu_core_inference_req - Inference request
131 */
132struct ethosu_core_inference_req {
133 uint64_t user_arg;
134 uint32_t ifm_count;
135 struct ethosu_core_buffer ifm[ETHOSU_CORE_BUFFER_MAX];
136 uint32_t ofm_count;
137 struct ethosu_core_buffer ofm[ETHOSU_CORE_BUFFER_MAX];
138 struct ethosu_core_network_buffer network;
139 uint8_t pmu_event_config[ETHOSU_CORE_PMU_MAX];
140 uint32_t pmu_cycle_counter_enable;
141};
142
143/**
144 * struct ethosu_core_inference_rsp - Inference response
145 */
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200146struct ethosu_core_inference_rsp {
147 uint64_t user_arg;
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200148 uint32_t ofm_count;
149 uint32_t ofm_size[ETHOSU_CORE_BUFFER_MAX];
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200150 uint32_t status;
Per Åstrandf7e407a2020-10-23 21:25:05 +0200151 uint8_t pmu_event_config[ETHOSU_CORE_PMU_MAX];
152 uint32_t pmu_event_count[ETHOSU_CORE_PMU_MAX];
153 uint32_t pmu_cycle_counter_enable;
154 uint64_t pmu_cycle_counter_count;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200155};
156
Jonny Svärd7c24c772021-01-14 19:53:17 +0100157/**
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100158 * struct ethosu_core_msg_version - Message protocol version
Jonny Svärd7c24c772021-01-14 19:53:17 +0100159 */
160struct ethosu_core_msg_version {
161 uint8_t major;
162 uint8_t minor;
163 uint8_t patch;
164 uint8_t _reserved;
165};
166
167/**
Davide Grohmann35ce6c82021-06-01 15:03:51 +0200168 * struct ethosu_core_capabilities_req - Message capabilities request
169 */
170struct ethosu_core_capabilities_req {
171 uint64_t user_arg;
172};
173
174/**
175 * struct ethosu_core_capabilities_rsp - Message capabilities response
176 */
177struct ethosu_core_msg_capabilities_rsp {
178 uint64_t user_arg;
179 uint32_t version_status;
180 uint32_t version_minor;
181 uint32_t version_major;
182 uint32_t product_major;
183 uint32_t arch_patch_rev;
184 uint32_t arch_minor_rev;
185 uint32_t arch_major_rev;
186 uint32_t driver_patch_rev;
187 uint32_t driver_minor_rev;
188 uint32_t driver_major_rev;
189 uint32_t macs_per_cc;
190 uint32_t cmd_stream_version;
Davide Grohmann35ce6c82021-06-01 15:03:51 +0200191 uint32_t custom_dma;
192};
193
194/**
Jonny Svärd7c24c772021-01-14 19:53:17 +0100195 * enum ethosu_core_msg_err_type - Error types
196 */
197enum ethosu_core_msg_err_type {
198 ETHOSU_CORE_MSG_ERR_GENERIC = 0,
199 ETHOSU_CORE_MSG_ERR_UNSUPPORTED_TYPE,
200 ETHOSU_CORE_MSG_ERR_INVALID_PAYLOAD,
201 ETHOSU_CORE_MSG_ERR_INVALID_SIZE,
202 ETHOSU_CORE_MSG_ERR_INVALID_MAGIC,
203 ETHOSU_CORE_MSG_ERR_MAX
204};
205
206/**
207 * struct ethosu_core_msg_err - Error message struct
208 */
209struct ethosu_core_msg_err {
210 uint32_t type; /* optional use of extra error code */
211 char msg[128];
212};
Per Åstrandc823bcf2021-01-12 13:11:13 +0100213#ifdef __cplusplus
214} /*namespace EthosU */
215#endif
Jonny Svärd7c24c772021-01-14 19:53:17 +0100216
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200217#endif