blob: d21e0a7833fb1442303e5047c921b04d764675b5 [file] [log] [blame]
Kristofer Jonsson49bdee82020-04-06 13:21:21 +02001/*
2 * Copyright (c) 2019-2020 Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 * Licensed under the Apache License, Version 2.0 (the License); you may
7 * not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
14 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020019/******************************************************************************
20 * Includes
21 ******************************************************************************/
22
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020023#include "ethosu_driver.h"
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020024#include "ethosu_common.h"
Bhavik Pateldae5be02020-06-18 15:25:15 +020025#include "ethosu_config.h"
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020026#include "ethosu_device.h"
Per Åstrand25d78c02020-04-21 14:19:44 +020027
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020028#include <assert.h>
Per Åstrand25d78c02020-04-21 14:19:44 +020029#include <cmsis_compiler.h>
Per Åstrand14ccfee2020-09-25 10:40:20 +020030#include <inttypes.h>
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020031#include <stdbool.h>
Bhavik Patelbf7ae632020-06-11 21:00:16 +020032#include <stddef.h>
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020033#include <stdio.h>
34#include <stdlib.h>
35
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020036/******************************************************************************
37 * Defines
38 ******************************************************************************/
39
40#define MACS_PER_CYCLE_LOG2_MASK 0x000F
41#define SHRAM_SIZE_MASK 0xFF00
42#define SHRAM_SIZE_RIGHT_SHIFT 8
43#define BYTES_IN_32_BITS 4
44#define CUSTOM_OPTION_LENGTH_32_BIT_WORD 1
45#define DRIVER_ACTION_LENGTH_32_BIT_WORD 1
46#define OPTIMIZER_CONFIG_LENGTH_32_BIT_WORD 2
47#define ETHOSU_FOURCC ('1' << 24 | 'P' << 16 | 'O' << 8 | 'C') // "Custom Operator Payload 1"
48#define APB_START_ADDR_MASK 0x0FFF
49#define APB_NUM_REG_BIT_SHIFT 12
50#define BYTES_1KB 1024
51#define PRODUCT_MAJOR_ETHOSU55 (4)
52#define MASK_16_BYTE_ALIGN (0xF)
53#define FAST_MEMORY_BASE_ADDR_INDEX 2
54
55/******************************************************************************
56 * Types
57 ******************************************************************************/
58
59// Driver actions
60enum DRIVER_ACTION_e
61{
62 RESERVED = 0,
63 OPTIMIZER_CONFIG = 1,
64 COMMAND_STREAM = 2,
65 READ_APB_REG = 3,
66 DUMP_SHRAM = 4,
67 NOP = 5,
68};
69
70// Custom data struct
71struct custom_data_s
72{
73 union
74 {
75 // Driver action data
76 struct
77 {
78 // Driver action command (valid values in DRIVER_ACTION_e)
79 uint8_t driver_action_command;
80
81 // reserved
82 uint8_t reserved;
83
84 // Driver action data
85 union
86 {
87 // DA_CMD_OPT_CFG
88 struct
89 {
90 uint16_t rel_nbr : 4;
91 uint16_t patch_nbr : 4;
92 uint16_t opt_cfg_reserved : 8;
93 };
94
95 // DA_CMD_CMSTRM
96 struct
97 {
98 uint16_t length;
99 };
100
101 // DA_CMD_READAPB
102 struct
103 {
104 uint16_t start_address : 12;
105 uint16_t nbr_reg_minus1 : 4;
106 };
107
108 uint16_t driver_action_data;
109 };
110 };
111
112 uint32_t word;
113 };
114};
115
116// optimizer config struct
117struct opt_cfg_s
118{
119 struct custom_data_s da_data;
120 union
121 {
122 struct
123 {
124 uint32_t macs_per_cc : 4;
125 uint32_t cmd_stream_version : 4;
126 uint32_t shram_size : 8;
127 uint32_t reserved1 : 16;
128 };
129 uint32_t npu_cfg;
130 };
131 union
132 {
133 struct
134 {
135 uint32_t version_status : 4;
136 uint32_t version_minor : 4;
137 uint32_t version_major : 4;
138 uint32_t product_major : 4;
139 uint32_t arch_patch_rev : 4;
140 uint32_t arch_minor_rev : 8;
141 uint32_t arch_major_rev : 4;
142 };
143 uint32_t ethosu_id;
144 };
145};
146
147/******************************************************************************
148 * Functions
149 ******************************************************************************/
150
Kristofer Jonssonef387ea2020-08-25 16:32:21 +0200151struct ethosu_driver ethosu_drv = {
Kristofer Jonsson4dc73dc2020-10-16 12:33:47 +0200152 .dev = {.base_address = NULL, .reset = 0, .pmccntr = {0}, .pmu_evcntr = {0, 0, 0, 0}, .pmu_evtypr = {0, 0, 0, 0}},
Bhavik Patel5f8dad12020-09-30 09:06:52 +0200153 .abort_inference = false,
154 .status_error = false};
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200155
156// IRQ
157static volatile bool irq_triggered = false;
158#if defined(CPU_CORTEX_M3) || defined(CPU_CORTEX_M4) || defined(CPU_CORTEX_M7) || defined(CPU_CORTEX_M33) || \
159 defined(CPU_CORTEX_M55)
Per Åstrand25d78c02020-04-21 14:19:44 +0200160void ethosu_irq_handler(void)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200161{
162 uint8_t irq_raised = 0;
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200163
164 LOG_DEBUG("Interrupt. status=0x%08x, qread=%d\n",
165 ethosu_read_reg(&ethosu_drv.dev, NPU_REG_STATUS),
166 ethosu_read_reg(&ethosu_drv.dev, NPU_REG_QREAD));
167
168 // Verify that interrupt has been raised
Bhavik Pateldae5be02020-06-18 15:25:15 +0200169 (void)ethosu_is_irq_raised(&ethosu_drv.dev, &irq_raised);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200170 ASSERT(irq_raised == 1);
171 irq_triggered = true;
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200172
173 // Clear interrupt
Bhavik Pateldae5be02020-06-18 15:25:15 +0200174 (void)ethosu_clear_irq_status(&ethosu_drv.dev);
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200175
Bhavik Patel5f8dad12020-09-30 09:06:52 +0200176 // Verify that interrupt has been successfully cleared
Bhavik Pateldae5be02020-06-18 15:25:15 +0200177 (void)ethosu_is_irq_raised(&ethosu_drv.dev, &irq_raised);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200178 ASSERT(irq_raised == 0);
Bhavik Patel5f8dad12020-09-30 09:06:52 +0200179
180 if (ethosu_status_has_error(&ethosu_drv.dev))
181 {
182 ethosu_soft_reset(&ethosu_drv.dev);
183 ethosu_drv.status_error = true;
184 }
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200185}
186
Bhavik Pateldae5be02020-06-18 15:25:15 +0200187static inline void wait_for_irq(struct ethosu_driver *drv)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200188{
189 while (1)
190 {
191 __disable_irq();
Bhavik Pateldae5be02020-06-18 15:25:15 +0200192 if (irq_triggered || drv->abort_inference)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200193 {
194 __enable_irq();
195 break;
196 }
197
Per Åstrand25d78c02020-04-21 14:19:44 +0200198 __WFI();
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200199
200 __enable_irq();
201 }
202}
203#else
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200204// Just polling the status register
Bhavik Pateldae5be02020-06-18 15:25:15 +0200205static inline void wait_for_irq(struct ethosu_driver *drv)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200206{
207 uint8_t irq_raised = 0;
208
209 for (int i = 0; i < 5000; ++i)
210 {
Bhavik Pateldae5be02020-06-18 15:25:15 +0200211 (void)ethosu_is_irq_raised(&drv->dev, &irq_raised);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200212 if (1 == irq_raised)
213 {
214 break;
215 }
216 }
217 ASSERT(1 == irq_raised);
218
219 irq_triggered = true;
220}
221#endif
222
Bhavik Pateldae5be02020-06-18 15:25:15 +0200223static int handle_optimizer_config(struct ethosu_driver *drv, struct opt_cfg_s *opt_cfg_p);
224static int handle_command_stream(struct ethosu_driver *drv,
225 const uint8_t *cmd_stream,
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200226 const int cms_length,
227 const uint64_t *base_addr,
228 const int num_base_addr);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200229static int read_apb_reg(struct ethosu_driver *drv, uint16_t);
230static int dump_shram(struct ethosu_driver *drv);
231static void dump_npu_register(struct ethosu_driver *drv, int npu_reg, int npu_reg_end);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200232static void dump_command_stream(const uint32_t *cmd_stream, const int cms_length, int qread);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200233static void npu_axi_init(struct ethosu_driver *drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200234
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200235int ethosu_init_v2(const void *base_address, const void *fast_memory, const size_t fast_memory_size)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200236{
237 int return_code = 0;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200238
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200239 LOG_INFO("%s. base_address=%p, fast_memory=%p, fast_memory_size=%zu\n",
240 __FUNCTION__,
241 base_address,
242 fast_memory,
243 fast_memory_size);
244
Per Åstrandc6c1db12020-09-28 08:41:45 +0200245 ethosu_drv.fast_memory = (uint32_t)fast_memory;
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200246 ethosu_drv.fast_memory_size = fast_memory_size;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200247
Bhavik Pateldae5be02020-06-18 15:25:15 +0200248 if (ETHOSU_SUCCESS != ethosu_dev_init(&ethosu_drv.dev, base_address))
249 {
250 LOG_ERR("Failed in ethosu_dev_init");
251 return -1;
252 }
253
254 if (ETHOSU_SUCCESS != ethosu_set_clock_and_power(&ethosu_drv.dev, ETHOSU_CLOCK_Q_DISABLE, ETHOSU_POWER_Q_DISABLE))
Bhavik Patele645fed2020-06-12 14:46:47 +0200255 {
256 LOG_ERR("Failed to disable clock-q & power-q for Ethos-U\n");
257 return -1;
258 }
259
Bhavik Pateldae5be02020-06-18 15:25:15 +0200260 ethosu_soft_reset(&ethosu_drv.dev);
Kristofer Jonssondaa0d202020-05-12 12:23:16 +0200261
Bhavik Pateldae5be02020-06-18 15:25:15 +0200262 if (ETHOSU_SUCCESS != ethosu_wait_for_reset(&ethosu_drv.dev))
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200263 {
264 LOG_ERR("Failed reset of Ethos-U\n");
265 return -1;
266 }
Bhavik Patel5f8dad12020-09-30 09:06:52 +0200267 ethosu_drv.status_error = false;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200268
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200269 return return_code;
270}
271
272int ethosu_get_version(struct ethosu_version *version)
273{
274 int return_code = 0;
275
276 if (NULL != version)
277 {
278 struct ethosu_id id;
279 struct ethosu_config cfg;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200280 (void)ethosu_get_id(&ethosu_drv.dev, &id);
281 (void)ethosu_get_config(&ethosu_drv.dev, &cfg);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200282
283 version->id.version_status = id.version_status;
284 version->id.version_minor = id.version_minor;
285 version->id.version_major = id.version_major;
286 version->id.product_major = id.product_major;
287 version->id.arch_patch_rev = id.arch_patch_rev;
288 version->id.arch_minor_rev = id.arch_minor_rev;
289 version->id.arch_major_rev = id.arch_major_rev;
290 version->id.driver_patch_rev = ETHOSU_DRIVER_VERSION_PATCH;
291 version->id.driver_minor_rev = ETHOSU_DRIVER_VERSION_MINOR;
292 version->id.driver_major_rev = ETHOSU_DRIVER_VERSION_MAJOR;
293 version->cfg.macs_per_cc = cfg.macs_per_cc;
294 version->cfg.cmd_stream_version = cfg.cmd_stream_version;
295 version->cfg.shram_size = cfg.shram_size;
296 }
297 else
298 {
299 return_code = -1;
300 }
301
302 return return_code;
303}
304
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200305int ethosu_invoke_v2(const void *custom_data_ptr,
306 const int custom_data_size,
307 const uint64_t *base_addr,
308 const size_t *base_addr_size,
309 const int num_base_addr)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200310{
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200311 const struct custom_data_s *data_ptr = custom_data_ptr;
312 const struct custom_data_s *data_end = custom_data_ptr + custom_data_size;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200313 int return_code = 0;
314
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200315 LOG_INFO("%s\n", __FUNCTION__);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200316
317 // First word in custom_data_ptr should contain "Custom Operator Payload 1"
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200318 if (data_ptr->word != ETHOSU_FOURCC)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200319 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200320 LOG_ERR("Custom Operator Payload: %" PRIu32 " is not correct, expected %x\n", data_ptr->word, ETHOSU_FOURCC);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200321 return -1;
322 }
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200323
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200324 // Custom data length must be a multiple of 32 bits
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200325 if ((custom_data_size % BYTES_IN_32_BITS) != 0)
326 {
327 LOG_ERR("ethosu_invoke ERROR custom_data_size=0x%x not a multiple of 4\n", custom_data_size);
328 return -1;
329 }
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200330
331 ++data_ptr;
332
333 // Adjust base address to fast memory area
Per Åstrandc8019012020-09-28 08:44:42 +0200334 if (ethosu_drv.fast_memory != 0 && num_base_addr >= FAST_MEMORY_BASE_ADDR_INDEX)
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200335 {
336 uint64_t *fast_memory = (uint64_t *)&base_addr[FAST_MEMORY_BASE_ADDR_INDEX];
337
338 if (base_addr_size != NULL && base_addr_size[FAST_MEMORY_BASE_ADDR_INDEX] > ethosu_drv.fast_memory_size)
339 {
Kristofer Jonsson4c94b302020-11-06 10:33:21 +0100340 LOG_ERR("Fast memory area too small. fast_memory_size=%u, base_addr_size=%u\n",
341 ethosu_drv.fast_memory_size,
342 base_addr_size[FAST_MEMORY_BASE_ADDR_INDEX]);
343 return -1;
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200344 }
Kristofer Jonsson4c94b302020-11-06 10:33:21 +0100345
346 *fast_memory = ethosu_drv.fast_memory;
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200347 }
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200348
Bhavik Patel5f8dad12020-09-30 09:06:52 +0200349 if (ethosu_drv.dev.reset != ethosu_read_reg(&ethosu_drv.dev, NPU_REG_PROT))
350 {
351 ethosu_soft_reset(&ethosu_drv.dev);
352 }
353 ethosu_drv.status_error = false;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200354 ethosu_set_clock_and_power(&ethosu_drv.dev, ETHOSU_CLOCK_Q_ENABLE, ETHOSU_POWER_Q_DISABLE);
Bhavik Patel5da40922020-07-15 10:06:43 +0200355 ethosu_restore_pmu_config(&ethosu_drv.dev);
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200356
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200357 while (data_ptr < data_end)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200358 {
Bhavik Patele645fed2020-06-12 14:46:47 +0200359 int ret = 0;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200360 switch (data_ptr->driver_action_command)
361 {
362 case OPTIMIZER_CONFIG:
363 LOG_INFO("ethosu_invoke OPTIMIZER_CONFIG\n");
364 struct opt_cfg_s *opt_cfg_p = (struct opt_cfg_s *)data_ptr;
365
Bhavik Pateldae5be02020-06-18 15:25:15 +0200366 ret = handle_optimizer_config(&ethosu_drv, opt_cfg_p);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200367 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD + OPTIMIZER_CONFIG_LENGTH_32_BIT_WORD;
368 break;
369 case COMMAND_STREAM:
370 LOG_INFO("ethosu_invoke COMMAND_STREAM\n");
371 void *command_stream = (uint8_t *)(data_ptr) + sizeof(struct custom_data_s);
372 int cms_length = (data_ptr->reserved << 16) | data_ptr->length;
373
Bhavik Pateldae5be02020-06-18 15:25:15 +0200374 ethosu_drv.abort_inference = false;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200375 // It is safe to clear this flag without atomic, because npu is not running.
376 irq_triggered = false;
377
Bhavik Pateldae5be02020-06-18 15:25:15 +0200378 ret = handle_command_stream(&ethosu_drv, command_stream, cms_length, base_addr, num_base_addr);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200379
Bhavik Pateldae5be02020-06-18 15:25:15 +0200380 if (return_code == -1 && ethosu_drv.abort_inference)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200381 {
382 uint32_t qread = 0;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200383 ethosu_get_qread(&ethosu_drv.dev, &qread);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200384 LOG_ERR("NPU timeout\n");
385 dump_command_stream(command_stream, cms_length, qread);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200386 dump_npu_register(&ethosu_drv, 0x200, 0x2BF);
387 dump_npu_register(&ethosu_drv, 0x800, 0xB3F);
388 dump_shram(&ethosu_drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200389 }
390
391 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD + cms_length;
392 break;
393 case READ_APB_REG:
394 LOG_INFO("ethosu_invoke READ_APB_REG\n");
Bhavik Pateldae5be02020-06-18 15:25:15 +0200395 ret = read_apb_reg(&ethosu_drv, data_ptr->driver_action_data);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200396 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
397 break;
398 case DUMP_SHRAM:
399 LOG_INFO("ethosu_invoke DUMP_SHRAM\n");
Bhavik Pateldae5be02020-06-18 15:25:15 +0200400 ret = dump_shram(&ethosu_drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200401 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
402 break;
403 case NOP:
404 LOG_INFO("ethosu_invoke NOP\n");
405 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
406 break;
407 default:
408 LOG_ERR("ethosu_invoke UNSUPPORTED driver_action_command %d \n", data_ptr->driver_action_command);
Bhavik Patele645fed2020-06-12 14:46:47 +0200409 ret = -1;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200410 break;
411 }
Bhavik Patele645fed2020-06-12 14:46:47 +0200412 if (ret != 0)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200413 {
Bhavik Patele645fed2020-06-12 14:46:47 +0200414 return_code = -1;
415 break;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200416 }
417 }
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200418
Bhavik Patel5f8dad12020-09-30 09:06:52 +0200419 if (!ethosu_drv.status_error)
420 {
Kristofer Jonsson4dc73dc2020-10-16 12:33:47 +0200421 ethosu_save_pmu_counters(&ethosu_drv.dev);
Bhavik Patel5f8dad12020-09-30 09:06:52 +0200422 ethosu_set_clock_and_power(&ethosu_drv.dev, ETHOSU_CLOCK_Q_ENABLE, ETHOSU_POWER_Q_ENABLE);
423 }
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200424
Bhavik Patele645fed2020-06-12 14:46:47 +0200425 return return_code;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200426}
427
428void ethosu_abort(void)
429{
Bhavik Pateldae5be02020-06-18 15:25:15 +0200430 ethosu_drv.abort_inference = true;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200431}
432
Bhavik Pateldae5be02020-06-18 15:25:15 +0200433static int handle_optimizer_config(struct ethosu_driver *drv, struct opt_cfg_s *opt_cfg_p)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200434{
435 struct ethosu_config cfg;
436 struct ethosu_id id;
437 int return_code = 0;
438
439 LOG_INFO("handle_optimizer_config:\n");
440 LOG_INFO("Optimizer release nbr: %d patch: %d\n", opt_cfg_p->da_data.rel_nbr, opt_cfg_p->da_data.patch_nbr);
441 LOG_INFO("Optimizer config cmd_stream_version: %d macs_per_cc: %d shram_size: %d\n",
442 opt_cfg_p->cmd_stream_version,
443 opt_cfg_p->macs_per_cc,
444 opt_cfg_p->shram_size);
445 LOG_INFO("Optimizer config Ethos-U version: %d.%d.%d\n",
446 opt_cfg_p->arch_major_rev,
447 opt_cfg_p->arch_minor_rev,
448 opt_cfg_p->arch_patch_rev);
449
Bhavik Pateldae5be02020-06-18 15:25:15 +0200450 (void)ethosu_get_config(&drv->dev, &cfg);
451 (void)ethosu_get_id(&drv->dev, &id);
Per Åstrand14ccfee2020-09-25 10:40:20 +0200452 LOG_INFO("Ethos-U config cmd_stream_version: %" PRIu32 " macs_per_cc: %" PRIu32 " shram_size: %" PRIu32 "\n",
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200453 cfg.cmd_stream_version,
454 cfg.macs_per_cc,
455 cfg.shram_size);
Per Åstrand14ccfee2020-09-25 10:40:20 +0200456 LOG_INFO("Ethos-U version: %" PRIu32 ".%" PRIu32 ".%" PRIu32 "\n",
457 id.arch_major_rev,
458 id.arch_minor_rev,
459 id.arch_patch_rev);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200460
461 if ((cfg.macs_per_cc != opt_cfg_p->macs_per_cc) || (cfg.shram_size != opt_cfg_p->shram_size) ||
462 (cfg.cmd_stream_version != opt_cfg_p->cmd_stream_version))
463 {
464 if (cfg.macs_per_cc != opt_cfg_p->macs_per_cc)
465 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200466 LOG_ERR("NPU config mismatch: npu.macs_per_cc=%" PRIu32 " optimizer.macs_per_cc=%d\n",
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200467 cfg.macs_per_cc,
468 opt_cfg_p->macs_per_cc);
469 }
470 if (cfg.shram_size != opt_cfg_p->shram_size)
471 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200472 LOG_ERR("NPU config mismatch: npu.shram_size=%" PRIu32 " optimizer.shram_size=%d\n",
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200473 cfg.shram_size,
474 opt_cfg_p->shram_size);
475 }
476 if (cfg.cmd_stream_version != opt_cfg_p->cmd_stream_version)
477 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200478 LOG_ERR("NPU config mismatch: npu.cmd_stream_version=%" PRIu32 " optimizer.cmd_stream_version=%d\n",
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200479 cfg.cmd_stream_version,
480 opt_cfg_p->cmd_stream_version);
481 }
482 return_code = -1;
483 }
484
Bhavik Patel790ef362020-06-03 10:05:28 +0200485 if ((id.product_major == PRODUCT_MAJOR_ETHOSU55) &&
Douglas Troha60d50ae2020-06-15 12:48:10 +0200486 ((id.arch_major_rev != opt_cfg_p->arch_major_rev) || (id.arch_minor_rev != opt_cfg_p->arch_minor_rev)))
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200487 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200488 LOG_ERR("NPU arch mismatch: npu.arch=%" PRIu32 ".%" PRIu32 ".%" PRIu32 " optimizer.arch=%d.%d.%d\n",
Bhavik Patel790ef362020-06-03 10:05:28 +0200489 id.arch_major_rev,
490 id.arch_minor_rev,
491 id.arch_patch_rev,
492 opt_cfg_p->arch_major_rev,
493 opt_cfg_p->arch_minor_rev,
494 opt_cfg_p->arch_patch_rev);
495 return_code = -1;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200496 }
497
498#if !defined(LOG_ENABLED)
499 UNUSED(opt_cfg_p);
500#endif
501 return return_code;
502}
503
Bhavik Pateldae5be02020-06-18 15:25:15 +0200504static void npu_axi_init(struct ethosu_driver *drv)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200505{
Bhavik Pateldae5be02020-06-18 15:25:15 +0200506 ethosu_set_qconfig(&drv->dev, NPU_QCONFIG);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200507
Bhavik Pateldae5be02020-06-18 15:25:15 +0200508 ethosu_set_regioncfg(&drv->dev, 0, NPU_REGIONCFG_0);
509 ethosu_set_regioncfg(&drv->dev, 1, NPU_REGIONCFG_1);
510 ethosu_set_regioncfg(&drv->dev, 2, NPU_REGIONCFG_2);
511 ethosu_set_regioncfg(&drv->dev, 3, NPU_REGIONCFG_3);
512 ethosu_set_regioncfg(&drv->dev, 4, NPU_REGIONCFG_4);
513 ethosu_set_regioncfg(&drv->dev, 5, NPU_REGIONCFG_5);
514 ethosu_set_regioncfg(&drv->dev, 6, NPU_REGIONCFG_6);
515 ethosu_set_regioncfg(&drv->dev, 7, NPU_REGIONCFG_7);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200516
Bhavik Pateldae5be02020-06-18 15:25:15 +0200517 (void)ethosu_set_axi_limit0(&drv->dev,
518 AXI_LIMIT0_MAX_BEATS_BYTES,
Bhavik Patel790ef362020-06-03 10:05:28 +0200519 AXI_LIMIT0_MEM_TYPE,
520 AXI_LIMIT0_MAX_OUTSTANDING_READS,
521 AXI_LIMIT0_MAX_OUTSTANDING_WRITES);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200522 (void)ethosu_set_axi_limit1(&drv->dev,
523 AXI_LIMIT1_MAX_BEATS_BYTES,
Bhavik Patel790ef362020-06-03 10:05:28 +0200524 AXI_LIMIT1_MEM_TYPE,
525 AXI_LIMIT1_MAX_OUTSTANDING_READS,
526 AXI_LIMIT1_MAX_OUTSTANDING_WRITES);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200527 (void)ethosu_set_axi_limit2(&drv->dev,
528 AXI_LIMIT2_MAX_BEATS_BYTES,
Bhavik Patel790ef362020-06-03 10:05:28 +0200529 AXI_LIMIT2_MEM_TYPE,
530 AXI_LIMIT2_MAX_OUTSTANDING_READS,
531 AXI_LIMIT2_MAX_OUTSTANDING_WRITES);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200532 (void)ethosu_set_axi_limit3(&drv->dev,
533 AXI_LIMIT3_MAX_BEATS_BYTES,
Bhavik Patel790ef362020-06-03 10:05:28 +0200534 AXI_LIMIT3_MEM_TYPE,
535 AXI_LIMIT3_MAX_OUTSTANDING_READS,
536 AXI_LIMIT3_MAX_OUTSTANDING_WRITES);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200537}
538
Bhavik Pateldae5be02020-06-18 15:25:15 +0200539static int handle_command_stream(struct ethosu_driver *drv,
540 const uint8_t *cmd_stream,
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200541 const int cms_length,
542 const uint64_t *base_addr,
543 const int num_base_addr)
544{
545 uint32_t qread = 0;
546 uint32_t cms_bytes = cms_length * BYTES_IN_32_BITS;
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200547 LOG_INFO("handle_command_stream: cmd_stream=%p, cms_length %d\n", cmd_stream, cms_length);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200548
Bhavik Patelbf7ae632020-06-11 21:00:16 +0200549 if (0 != ((ptrdiff_t)cmd_stream & MASK_16_BYTE_ALIGN))
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200550 {
Bhavik Patelbf7ae632020-06-11 21:00:16 +0200551 LOG_ERR("Error: Command stream addr %p not aligned to 16 bytes\n", cmd_stream);
552 return -1;
553 }
554
555 bool base_addr_invalid = false;
556 for (int i = 0; i < num_base_addr; i++)
557 {
558 if (0 != (base_addr[i] & MASK_16_BYTE_ALIGN))
559 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200560 LOG_ERR("Error: Base addr %d: 0x%llx not aligned to 16 bytes\n", i, base_addr[i]);
Bhavik Patelbf7ae632020-06-11 21:00:16 +0200561 base_addr_invalid = true;
562 }
563 }
564 if (base_addr_invalid)
565 {
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200566 return -1;
567 }
Bhavik Pateldae5be02020-06-18 15:25:15 +0200568 npu_axi_init(drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200569
Bhavik Pateldae5be02020-06-18 15:25:15 +0200570 if (ETHOSU_SUCCESS != ethosu_run_command_stream(&drv->dev, cmd_stream, cms_bytes, base_addr, num_base_addr))
Bhavik Patel790ef362020-06-03 10:05:28 +0200571 {
572 return -1;
573 }
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200574
Bhavik Pateldae5be02020-06-18 15:25:15 +0200575 wait_for_irq(drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200576
Bhavik Patel5f8dad12020-09-30 09:06:52 +0200577 if (drv->status_error)
578 {
579 return -1;
580 }
581
Bhavik Pateldae5be02020-06-18 15:25:15 +0200582 (void)ethosu_get_qread(&drv->dev, &qread);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200583 if (qread != cms_bytes)
584 {
Kristofer Jonsson4dc73dc2020-10-16 12:33:47 +0200585 LOG_WARN(
Per Åstrand14ccfee2020-09-25 10:40:20 +0200586 "Failure: IRQ received but qread (%" PRIu32 ") not at end of stream (%" PRIu32 ").\n", qread, cms_bytes);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200587 return -1;
588 }
589
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200590 return 0;
591}
592
Bhavik Pateldae5be02020-06-18 15:25:15 +0200593static int read_apb_reg(struct ethosu_driver *drv, uint16_t da_data)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200594{
595 uint32_t *reg_p;
596 uint32_t start_address = (uint32_t)(da_data & APB_START_ADDR_MASK);
597 uint16_t num_reg = (da_data >> APB_NUM_REG_BIT_SHIFT) + 1;
598
599 reg_p = (uint32_t *)malloc(num_reg * sizeof(uint32_t));
600 if (reg_p == NULL)
601 {
602 LOG_INFO("read_apb_reg, Error! memory not allocated.");
603 return -1;
604 }
605
Bhavik Pateldae5be02020-06-18 15:25:15 +0200606 if (ETHOSU_SUCCESS == ethosu_read_apb_reg(&drv->dev, start_address, num_reg, reg_p))
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200607 {
608 for (int i = 0; i < num_reg; i++)
609 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200610 LOG_INFO(
611 "NPU_REG ADDR 0x%04" PRIu32 " = 0x%08" PRIu32 "\n", (start_address + (i * BYTES_IN_32_BITS)), reg_p[i]);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200612 }
613 }
614 else
615 {
616 free(reg_p);
617 return -1;
618 }
619
620 free(reg_p);
621 return 0;
622}
623
Bhavik Pateldae5be02020-06-18 15:25:15 +0200624static int dump_shram(struct ethosu_driver *drv)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200625{
626 struct ethosu_config cfg;
627 uint32_t *shram_p;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200628 (void)ethosu_get_config(&drv->dev, &cfg);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200629
Per Åstrand14ccfee2020-09-25 10:40:20 +0200630 LOG_INFO("dump_shram size = %" PRIu32 " KB\n", cfg.shram_size);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200631
632 shram_p = (uint32_t *)malloc(BYTES_1KB);
633 if (shram_p == NULL)
634 {
635 LOG_ERR("read_shram, Error! memory not allocated.");
636 return -1;
637 }
638
639 for (uint32_t i = 0; i < cfg.shram_size; i++)
640 {
Bhavik Pateldae5be02020-06-18 15:25:15 +0200641 ethosu_get_shram_data(&drv->dev, i, (uint32_t *)shram_p);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200642 // Output 1KB of SHRAM
Per Åstrand14ccfee2020-09-25 10:40:20 +0200643 LOG_INFO("***SHRAM SECTION %" PRIu32 "***\n", i);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200644 for (int j = 0; j < (BYTES_1KB / BYTES_IN_32_BITS); j++)
645 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200646 LOG_INFO("[0x%04" PRIx32 "] %" PRIx32 "\n", (i * 1024 + j * 4), shram_p[j]);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200647 }
648 }
649 free(shram_p);
650
651 return 0;
652}
653
654typedef struct
655{
656 int number;
657 const char *name;
658} name_lookup_t;
659
660static const name_lookup_t npu_reg_name_tbl[] = {
661 {0x200, "KERNEL_X"},
662 {0x204, "KERNEL_Y"},
663 {0x208, "KERNEL_W_M1"},
664 {0x20C, "KERNEL_H_M1"},
665 {0x210, "OFM_CBLK_WIDTH_M1"},
666 {0x214, "OFM_CBLK_HEIGHT_M1"},
667 {0x218, "OFM_CBLK_DEPTH_M1"},
668 {0x21c, "IFM_CBLK_DEPTH_M1"},
669 {0x220, "OFM_X"},
670 {0x224, "OFM_Y"},
671 {0x228, "OFM_Z"},
672 {0x22C, "IFM_Z"},
673 {0x230, "PAD_TOP"},
674 {0x234, "PAD_LEFT"},
675 {0x238, "IFM_CBLK_WIDTH"},
676 {0x23C, "IFM_CBLK_HEIGHT"},
677 {0x240, "DMA_IFM_SRC"},
678 {0x244, "DMA_IFM_SRC_HI"},
679 {0x248, "DMA_IFM_DST"},
680 {0x24c, "DMA_OFM_SRC"},
681 {0x250, "DMA_OFM_DST"},
682 {0x254, "DMA_OFM_DST_HI"},
683 {0x258, "DMA_WEIGHT_SRC"},
684 {0x25c, "DMA_WEIGHT_SRC_HI"},
685 {0x260, "DMA_CMD_SRC"},
686 {0x264, "DMA_CMD_SRC_HI"},
687 {0x268, "DMA_CMD_SIZE"},
688 {0x26c, "DMA_M2M_SRC"},
689 {0x270, "DMA_M2M_SRC_HI"},
690 {0x274, "DMA_M2M_DST"},
691 {0x278, "DMA_M2M_DST_HI"},
692 {0x27c, "CURRENT_QREAD"},
693 {0x280, "DMA_SCALE_SRC"},
694 {0x284, "DMA_SCALE_SRC_HI"},
695 {0x2BC, "CURRENT_CMD"},
696 {0x800, "IFM_PAD_TOP"},
697 {0x804, "IFM_PAD_LEFT"},
698 {0x808, "IFM_PAD_RIGHT"},
699 {0x80C, "IFM_PAD_BOTTOM"},
700 {0x810, "IFM_DEPTH_M1"},
701 {0x814, "IFM_PRECISION"},
702 {0x81C, "IFM_UPSCALE"},
703 {0x824, "IFM_ZERO_POINT"},
704 {0x828, "IFM_WIDTH0_M1"},
705 {0x82C, "IFM_HEIGHT0_M1"},
706 {0x830, "IFM_HEIGHT1_M1"},
707 {0x834, "IFM_IB_END"},
708 {0x83C, "IFM_REGION"},
709 {0x844, "OFM_WIDTH_M1"},
710 {0x848, "OFM_HEIGHT_M1"},
711 {0x84C, "OFM_DEPTH_M1"},
712 {0x850, "OFM_PRECISION"},
713 {0x854, "OFM_BLK_WIDTH_M1"},
714 {0x858, "OFM_BLK_HEIGHT_M1"},
715 {0x85C, "OFM_BLK_DEPTH_M1"},
716 {0x860, "OFM_ZERO_POINT"},
717 {0x868, "OFM_WIDTH0_M1"},
718 {0x86C, "OFM_HEIGHT0_M1"},
719 {0x870, "OFM_HEIGHT1_M1"},
720 {0x87C, "OFM_REGION"},
721 {0x880, "KERNEL_WIDTH_M1"},
722 {0x884, "KERNEL_HEIGHT_M1"},
723 {0x888, "KERNEL_STRIDE"},
724 {0x88C, "PARALLEL_MODE"},
725 {0x890, "ACC_FORMAT"},
726 {0x894, "ACTIVATION"},
727 {0x898, "ACTIVATION_MIN"},
728 {0x89C, "ACTIVATION_MAX"},
729 {0x8A0, "WEIGHT_REGION"},
730 {0x8A4, "SCALE_REGION"},
731 {0x8B4, "AB_START"},
732 {0x8BC, "BLOCKDEP"},
733 {0x8C0, "DMA0_SRC_REGION"},
734 {0x8C4, "DMA0_DST_REGION"},
735 {0x8C8, "DMA0_SIZE0"},
736 {0x8CC, "DMA0_SIZE1"},
737 {0x900, "IFM2_BROADCAST"},
738 {0x904, "IFM2_SCALAR"},
739 {0x924, "IFM2_ZERO_POINT"},
740 {0x928, "IFM2_WIDTH0_M1"},
741 {0x92C, "IFM2_HEIGHT0_M1"},
742 {0x930, "IFM2_HEIGHT1_M1"},
743 {0x934, "IFM2_IB_START"},
744 {0x93C, "IFM2_REGION"},
745 {0xA00, "IFM_BASE0"},
746 {0xA04, "IFM_BASE0_HI"},
747 {0xA08, "IFM_BASE1"},
748 {0xA0C, "IFM_BASE1_HI"},
749 {0xA10, "IFM_BASE2"},
750 {0xA14, "IFM_BASE2_HI"},
751 {0xA18, "IFM_BASE3"},
752 {0xA1C, "IFM_BASE3_HI"},
753 {0xA20, "IFM_STRIDE_X"},
754 {0xA24, "IFM_STRIDE_X_HI"},
755 {0xA28, "IFM_STRIDE_Y"},
756 {0xA2C, "IFM_STRIDE_Y_HI"},
757 {0xA30, "IFM_STRIDE_C"},
758 {0xA34, "IFM_STRIDE_C_HI"},
759 {0xA40, "OFM_BASE0"},
760 {0xA44, "OFM_BASE0_HI"},
761 {0xA48, "OFM_BASE1"},
762 {0xA4C, "OFM_BASE1_HI"},
763 {0xA50, "OFM_BASE2"},
764 {0xA54, "OFM_BASE2_HI"},
765 {0xA58, "OFM_BASE3"},
766 {0xA5C, "OFM_BASE3_HI"},
767 {0xA60, "OFM_STRIDE_X"},
768 {0xA64, "OFM_STRIDE_X_HI"},
769 {0xA68, "OFM_STRIDE_Y"},
770 {0xA6C, "OFM_STRIDE_Y_HI"},
771 {0xA70, "OFM_STRIDE_C"},
772 {0xA74, "OFM_STRIDE_C_HI"},
773 {0xA80, "WEIGHT_BASE"},
774 {0xA84, "WEIGHT_BASE_HI"},
775 {0xA88, "WEIGHT_LENGTH"},
776 {0xA8C, "WEIGHT_LENGTH_HI"},
777 {0xA90, "SCALE_BASE"},
778 {0xA94, "SCALE_BASE_HI"},
779 {0xA98, "SCALE_LENGTH"},
780 {0xAA0, "OFM_SCALE"},
781 {0xAA4, "OFM_SCALE_SHIFT"},
782 {0xAA8, "OPA_SCALE "},
783 {0xAB0, "OPB_SCALE"},
784 {0xAC0, "DMA0_SRC"},
785 {0xAC4, "DMA0_SRC_HI"},
786 {0xAC8, "DMA0_DST"},
787 {0xACC, "DMA0_DST_HI"},
788 {0xAD0, "DMA0_LEN"},
789 {0xAD4, "DMA0_LEN_HI"},
790 {0xAD8, "DMA0_SKIP0"},
791 {0xADC, "DMA0_SKIP0_HI"},
792 {0xAE0, "DMA0_SKIP1"},
793 {0xAE4, "DMA0_SKIP1_HI"},
794 {0xB00, "IFM2_BASE0"},
795 {0xB04, "IFM2_BASE0_HI"},
796 {0xB08, "IFM2_BASE1"},
797 {0xB0C, "IFM2_BASE1_HI"},
798 {0xB10, "IFM2_BASE2"},
799 {0xB14, "IFM2_BASE2_HI"},
800 {0xB18, "IFM2_BASE3"},
801 {0xB1C, "IFM2_BASE3_HI"},
802 {0xB20, "IFM2_STRIDE_X"},
803 {0xB24, "IFM2_STRIDE_X_HI"},
804 {0xB28, "IFM2_STRIDE_Y"},
805 {0xB2C, "IFM2_STRIDE_Y_HI"},
806 {0xB30, "IFM2_STRIDE_C"},
807 {0xB34, "IFM2_STRIDE_C_HI"},
808 {0xB40, "WEIGHT1_BASE"},
809 {0xB44, "WEIGHT1_BASE_HI"},
810 {0xB48, "WEIGHT1_LENGTH"},
811 {0xB4C, "WEIGHT1_LENGTH_HI"},
812 {0xB50, "SCALE1_BASE"},
813 {0xB54, "SCALE1_BASE_HI"},
814 {0xB58, "SCALE1_LENGTH"},
815};
816
817static const char *lookup_name(const name_lookup_t *lookup_table, int lookup_table_count, int find)
818{
819 int n;
820 for (n = 0; n < lookup_table_count; n++)
821 {
822 if (lookup_table[n].number == find)
823 {
824 return lookup_table[n].name;
825 }
826 }
827 // Not found
828 return 0;
829}
830
Bhavik Pateldae5be02020-06-18 15:25:15 +0200831static void dump_npu_register(struct ethosu_driver *drv, int npu_reg, int npu_reg_end)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200832{
833 unsigned int reg_val;
834 const char *reg_name;
835 int npu_reg_name_tbl_count = sizeof(npu_reg_name_tbl) / sizeof(npu_reg_name_tbl[0]);
836
837 LOG_INFO("dump_register %X - %X\n", npu_reg, npu_reg_end);
838 for (; npu_reg <= npu_reg_end; npu_reg += sizeof(int))
839 {
Bhavik Pateldae5be02020-06-18 15:25:15 +0200840 reg_val = ethosu_read_reg(&drv->dev, npu_reg);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200841 reg_name = lookup_name(npu_reg_name_tbl, npu_reg_name_tbl_count, npu_reg);
842 LOG_INFO("[0x%.4X] 0x%.8X\t%s\n", npu_reg, reg_val, (reg_name) ? reg_name : "");
843 }
844}
845
846static const name_lookup_t cmd0_name_tbl[] = {
847 {0x000, "NPU_OP_STOP"},
848 {0x001, "NPU_OP_IRQ"},
849 {0x002, "NPU_OP_CONV"},
850 {0x003, "NPU_OP_DEPTHWISE"},
851 {0x004, "NPU_OP_VECTOR_PROD"},
852 {0x005, "NPU_OP_POOL"},
853 {0x006, "NPU_OP_ELEMENTWISE"},
854 {0x010, "NPU_OP_DMA_START"},
855 {0x011, "NPU_OP_DMA_WAIT"},
856 {0x012, "NPU_OP_KERNEL_WAIT"},
857 {0x100, "NPU_SET_IFM_PAD_TOP"},
858 {0x101, "NPU_SET_IFM_PAD_LEFT"},
859 {0x102, "NPU_SET_IFM_PAD_RIGHT"},
860 {0x103, "NPU_SET_IFM_PAD_BOTTOM"},
861 {0x104, "NPU_SET_IFM_DEPTH_M1"},
862 {0x105, "NPU_SET_IFM_PRECISION"},
863 {0x107, "NPU_SET_IFM_UPSCALE"},
864 {0x109, "NPU_SET_IFM_ZERO_POINT"},
865 {0x10A, "NPU_SET_IFM_WIDTH0_M1"},
866 {0x10B, "NPU_SET_IFM_HEIGHT0_M1"},
867 {0x10C, "NPU_SET_IFM_HEIGHT1_M1"},
868 {0x10D, "NPU_SET_IFM_IB_END"},
869 {0x10F, "NPU_SET_IFM_REGION"},
870 {0x110, "NPU_SET_OFM_BATCH_SIZE_M1"},
871 {0x111, "NPU_SET_OFM_WIDTH_M1"},
872 {0x112, "NPU_SET_OFM_HEIGHT_M1"},
873 {0x113, "NPU_SET_OFM_DEPTH_M1"},
874 {0x114, "NPU_SET_OFM_PRECISION"},
875 {0x115, "NPU_SET_OFM_BLK_WIDTH_M1"},
876 {0x116, "NPU_SET_OFM_BLK_HEIGHT_M1"},
877 {0x117, "NPU_SET_OFM_BLK_DEPTH_M1"},
878 {0x118, "NPU_SET_OFM_ZERO_POINT"},
879 {0x11A, "NPU_SET_OFM_WIDTH0_M1"},
880 {0x11B, "NPU_SET_OFM_HEIGHT0_M1"},
881 {0x11C, "NPU_SET_OFM_HEIGHT1_M1"},
882 {0x11F, "NPU_SET_OFM_REGION"},
883 {0x120, "NPU_SET_KERNEL_WIDTH_M1"},
884 {0x121, "NPU_SET_KERNEL_HEIGHT_M1"},
885 {0x122, "NPU_SET_KERNEL_STRIDE"},
886 {0x124, "NPU_SET_ACC_FORMAT"},
887 {0x125, "NPU_SET_ACTIVATION"},
888 {0x126, "NPU_SET_ACTIVATION_MIN"},
889 {0x127, "NPU_SET_ACTIVATION_MAX"},
890 {0x128, "NPU_SET_WEIGHT_REGION"},
891 {0x129, "NPU_SET_SCALE_REGION"},
892 {0x12D, "NPU_SET_AB_START"},
893 {0x12F, "NPU_SET_BLOCKDEP"},
894 {0x130, "NPU_SET_DMA0_SRC_REGION"},
895 {0x131, "NPU_SET_DMA0_DST_REGION"},
896 {0x180, "NPU_SET_IFM2_BROADCAST"},
897 {0x181, "NPU_SET_IFM2_SCALAR"},
898 {0x185, "NPU_SET_IFM2_PRECISION"},
899 {0x189, "NPU_SET_IFM2_ZERO_POINT"},
900 {0x18A, "NPU_SET_IFM2_WIDTH0_M1"},
901 {0x18B, "NPU_SET_IFM2_HEIGHT0_M1"},
902 {0x18C, "NPU_SET_IFM2_HEIGHT1_M1"},
903 {0x18D, "NPU_SET_IFM2_IB_START"},
904 {0x18F, "NPU_SET_IFM2_REGION"},
905};
906
907static const name_lookup_t cmd1_name_tbl[] = {
908 {0x000, "NPU_SET_IFM_BASE0"}, {0x001, "NPU_SET_IFM_BASE1"}, {0x002, "NPU_SET_IFM_BASE2"},
909 {0x003, "NPU_SET_IFM_BASE3"}, {0x004, "NPU_SET_IFM_STRIDE_X"}, {0x005, "NPU_SET_IFM_STRIDE_Y"},
910 {0x006, "NPU_SET_IFM_STRIDE_C"}, {0x007, "NPU_SET_IFM_STRIDE_N"}, {0x010, "NPU_SET_OFM_BASE0"},
911 {0x011, "NPU_SET_OFM_BASE1"}, {0x012, "NPU_SET_OFM_BASE2"}, {0x013, "NPU_SET_OFM_BASE3"},
912 {0x014, "NPU_SET_OFM_STRIDE_X"}, {0x015, "NPU_SET_OFM_STRIDE_Y"}, {0x016, "NPU_SET_OFM_STRIDE_C"},
913 {0x017, "NPU_SET_OFM_STRIDE_N"}, {0x020, "NPU_SET_WEIGHT_BASE"}, {0x021, "NPU_SET_WEIGHT_LENGTH"},
914 {0x022, "NPU_SET_SCALE_BASE"}, {0x023, "NPU_SET_SCALE_LENGTH"}, {0x024, "NPU_SET_OFM_SCALE"},
915 {0x025, "NPU_SET_OPA_SCALE"}, {0x026, "NPU_SET_OPB_SCALE"}, {0x030, "NPU_SET_DMA0_SRC"},
916 {0x031, "NPU_SET_DMA0_DST"}, {0x032, "NPU_SET_DMA0_LEN"}, {0x080, "NPU_SET_IFM2_BASE0"},
917 {0x081, "NPU_SET_IFM2_BASE1"}, {0x082, "NPU_SET_IFM2_BASE2"}, {0x083, "NPU_SET_IFM2_BASE3"},
918 {0x084, "NPU_SET_IFM2_STRIDE_X"}, {0x085, "NPU_SET_IFM2_STRIDE_Y"}, {0x086, "NPU_SET_IFM2_STRIDE_C"},
919};
920
921static void dump_command_stream(const uint32_t *cmd_stream, const int cms_length, int qread)
922{
923 int n;
924 int offset;
925 uint32_t cmd_val;
926 const uint8_t *cmd_ptr;
927 const char *cmd_name;
928 int cmd0_name_tbl_count = sizeof(cmd0_name_tbl) / sizeof(cmd0_name_tbl[0]);
929 int cmd1_name_tbl_count = sizeof(cmd1_name_tbl) / sizeof(cmd1_name_tbl[0]);
930
931 LOG_INFO("dump_command_stream cmd_stream = 0x%8p cms_length = %d\n", cmd_stream, cms_length);
932 for (n = 0; n < cms_length; n++)
933 {
934 // Offset
935 offset = n * sizeof(int);
936 LOG_INFO("[%.4d] ", offset);
937 // Command
938 cmd_ptr = (const uint8_t *)&cmd_stream[n];
939 LOG_INFO("0x%.2X 0x%.2X 0x%.2X 0x%.2X ", cmd_ptr[0], cmd_ptr[1], cmd_ptr[2], cmd_ptr[3]);
940 // Command name and payload
941 if (cmd_stream[n] & 0x4000)
942 {
943 cmd_name = lookup_name(cmd1_name_tbl, cmd1_name_tbl_count, cmd_stream[n] & 0x3FF);
944 n++;
945 cmd_val = cmd_stream[n];
946 cmd_ptr = (const uint8_t *)&cmd_stream[n];
947 LOG_INFO("0x%.2X 0x%.2X 0x%.2X 0x%.2X ", cmd_ptr[0], cmd_ptr[1], cmd_ptr[2], cmd_ptr[3]);
948 }
949 else
950 {
951 cmd_val = cmd_stream[n] >> 16;
952 cmd_name = lookup_name(cmd0_name_tbl, cmd0_name_tbl_count, cmd_stream[n] & 0x3FF);
953 }
954 if (cmd_name)
955 {
Per Åstrand14ccfee2020-09-25 10:40:20 +0200956 LOG_INFO("\t%s 0x%.8" PRIX32, cmd_name, cmd_val);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200957 }
958 if (offset == qread)
959 {
960 LOG_INFO(" <<== QREAD\n");
961 }
962 else
963 {
964 LOG_INFO("\n");
965 }
966 }
967}