blob: 4398d33182468b7da8abc6b6a7e4abdfefa885f3 [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>
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020030#include <stdbool.h>
Bhavik Patelbf7ae632020-06-11 21:00:16 +020031#include <stddef.h>
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020032#include <stdint.h>
33#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 = {
152 .dev = {.base_address = NULL, .pmccntr = 0, .pmu_evcntr = {0, 0, 0, 0}, .pmu_evtypr = {0, 0, 0, 0}},
153 .abort_inference = false};
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200154
155// IRQ
156static volatile bool irq_triggered = false;
157#if defined(CPU_CORTEX_M3) || defined(CPU_CORTEX_M4) || defined(CPU_CORTEX_M7) || defined(CPU_CORTEX_M33) || \
158 defined(CPU_CORTEX_M55)
Per Åstrand25d78c02020-04-21 14:19:44 +0200159void ethosu_irq_handler(void)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200160{
161 uint8_t irq_raised = 0;
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200162
163 LOG_DEBUG("Interrupt. status=0x%08x, qread=%d\n",
164 ethosu_read_reg(&ethosu_drv.dev, NPU_REG_STATUS),
165 ethosu_read_reg(&ethosu_drv.dev, NPU_REG_QREAD));
166
167 // Verify that interrupt has been raised
Bhavik Pateldae5be02020-06-18 15:25:15 +0200168 (void)ethosu_is_irq_raised(&ethosu_drv.dev, &irq_raised);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200169 ASSERT(irq_raised == 1);
170 irq_triggered = true;
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200171
172 // Clear interrupt
Bhavik Pateldae5be02020-06-18 15:25:15 +0200173 (void)ethosu_clear_irq_status(&ethosu_drv.dev);
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200174
175 // Verify that interrupt has been successfully cleard
Bhavik Pateldae5be02020-06-18 15:25:15 +0200176 (void)ethosu_is_irq_raised(&ethosu_drv.dev, &irq_raised);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200177 ASSERT(irq_raised == 0);
178}
179
Bhavik Pateldae5be02020-06-18 15:25:15 +0200180static inline void wait_for_irq(struct ethosu_driver *drv)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200181{
182 while (1)
183 {
184 __disable_irq();
Bhavik Pateldae5be02020-06-18 15:25:15 +0200185 if (irq_triggered || drv->abort_inference)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200186 {
187 __enable_irq();
188 break;
189 }
190
Per Åstrand25d78c02020-04-21 14:19:44 +0200191 __WFI();
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200192
193 __enable_irq();
194 }
195}
196#else
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200197// Just polling the status register
Bhavik Pateldae5be02020-06-18 15:25:15 +0200198static inline void wait_for_irq(struct ethosu_driver *drv)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200199{
200 uint8_t irq_raised = 0;
201
202 for (int i = 0; i < 5000; ++i)
203 {
Bhavik Pateldae5be02020-06-18 15:25:15 +0200204 (void)ethosu_is_irq_raised(&drv->dev, &irq_raised);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200205 if (1 == irq_raised)
206 {
207 break;
208 }
209 }
210 ASSERT(1 == irq_raised);
211
212 irq_triggered = true;
213}
214#endif
215
Bhavik Pateldae5be02020-06-18 15:25:15 +0200216static int handle_optimizer_config(struct ethosu_driver *drv, struct opt_cfg_s *opt_cfg_p);
217static int handle_command_stream(struct ethosu_driver *drv,
218 const uint8_t *cmd_stream,
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200219 const int cms_length,
220 const uint64_t *base_addr,
221 const int num_base_addr);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200222static int read_apb_reg(struct ethosu_driver *drv, uint16_t);
223static int dump_shram(struct ethosu_driver *drv);
224static void dump_npu_register(struct ethosu_driver *drv, int npu_reg, int npu_reg_end);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200225static void dump_command_stream(const uint32_t *cmd_stream, const int cms_length, int qread);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200226static void npu_axi_init(struct ethosu_driver *drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200227
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200228int ethosu_init_v2(const void *base_address, const void *fast_memory, const size_t fast_memory_size)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200229{
230 int return_code = 0;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200231
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200232 LOG_INFO("%s. base_address=%p, fast_memory=%p, fast_memory_size=%zu\n",
233 __FUNCTION__,
234 base_address,
235 fast_memory,
236 fast_memory_size);
237
238 ethosu_drv.fast_memory = (uint64_t)fast_memory;
239 ethosu_drv.fast_memory_size = fast_memory_size;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200240
Bhavik Pateldae5be02020-06-18 15:25:15 +0200241 if (ETHOSU_SUCCESS != ethosu_dev_init(&ethosu_drv.dev, base_address))
242 {
243 LOG_ERR("Failed in ethosu_dev_init");
244 return -1;
245 }
246
247 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 +0200248 {
249 LOG_ERR("Failed to disable clock-q & power-q for Ethos-U\n");
250 return -1;
251 }
252
Bhavik Pateldae5be02020-06-18 15:25:15 +0200253 ethosu_soft_reset(&ethosu_drv.dev);
Kristofer Jonssondaa0d202020-05-12 12:23:16 +0200254
Bhavik Pateldae5be02020-06-18 15:25:15 +0200255 if (ETHOSU_SUCCESS != ethosu_wait_for_reset(&ethosu_drv.dev))
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200256 {
257 LOG_ERR("Failed reset of Ethos-U\n");
258 return -1;
259 }
260
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200261 return return_code;
262}
263
264int ethosu_get_version(struct ethosu_version *version)
265{
266 int return_code = 0;
267
268 if (NULL != version)
269 {
270 struct ethosu_id id;
271 struct ethosu_config cfg;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200272 (void)ethosu_get_id(&ethosu_drv.dev, &id);
273 (void)ethosu_get_config(&ethosu_drv.dev, &cfg);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200274
275 version->id.version_status = id.version_status;
276 version->id.version_minor = id.version_minor;
277 version->id.version_major = id.version_major;
278 version->id.product_major = id.product_major;
279 version->id.arch_patch_rev = id.arch_patch_rev;
280 version->id.arch_minor_rev = id.arch_minor_rev;
281 version->id.arch_major_rev = id.arch_major_rev;
282 version->id.driver_patch_rev = ETHOSU_DRIVER_VERSION_PATCH;
283 version->id.driver_minor_rev = ETHOSU_DRIVER_VERSION_MINOR;
284 version->id.driver_major_rev = ETHOSU_DRIVER_VERSION_MAJOR;
285 version->cfg.macs_per_cc = cfg.macs_per_cc;
286 version->cfg.cmd_stream_version = cfg.cmd_stream_version;
287 version->cfg.shram_size = cfg.shram_size;
288 }
289 else
290 {
291 return_code = -1;
292 }
293
294 return return_code;
295}
296
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200297int ethosu_invoke_v2(const void *custom_data_ptr,
298 const int custom_data_size,
299 const uint64_t *base_addr,
300 const size_t *base_addr_size,
301 const int num_base_addr)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200302{
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200303 const struct custom_data_s *data_ptr = custom_data_ptr;
304 const struct custom_data_s *data_end = custom_data_ptr + custom_data_size;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200305 int return_code = 0;
306
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200307 LOG_INFO("%s\n", __FUNCTION__);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200308
309 // First word in custom_data_ptr should contain "Custom Operator Payload 1"
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200310 if (data_ptr->word != ETHOSU_FOURCC)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200311 {
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200312 LOG_ERR("Custom Operator Payload: %x is not correct, expected %x\n", data_ptr->word, ETHOSU_FOURCC);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200313 return -1;
314 }
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200315
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200316 // Custom data length must be a multiple of 32 bits
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200317 if ((custom_data_size % BYTES_IN_32_BITS) != 0)
318 {
319 LOG_ERR("ethosu_invoke ERROR custom_data_size=0x%x not a multiple of 4\n", custom_data_size);
320 return -1;
321 }
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200322
323 ++data_ptr;
324
325 // Adjust base address to fast memory area
326 if (ethosu_drv.fast_memory != NULL && num_base_addr >= FAST_MEMORY_BASE_ADDR_INDEX)
327 {
328 uint64_t *fast_memory = (uint64_t *)&base_addr[FAST_MEMORY_BASE_ADDR_INDEX];
329
330 if (base_addr_size != NULL && base_addr_size[FAST_MEMORY_BASE_ADDR_INDEX] > ethosu_drv.fast_memory_size)
331 {
332 LOG_WARN("Fast memory area too small. fast_memory_size=%u, base_addr_size=%u\n",
333 ethosu_drv.fast_memory_size,
334 base_addr_size[FAST_MEMORY_BASE_ADDR_INDEX]);
335 }
336 else
337 {
338 *fast_memory = ethosu_drv.fast_memory;
339 }
340 }
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200341
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200342 ethosu_soft_reset(&ethosu_drv.dev);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200343 ethosu_set_clock_and_power(&ethosu_drv.dev, ETHOSU_CLOCK_Q_ENABLE, ETHOSU_POWER_Q_DISABLE);
Bhavik Patel5da40922020-07-15 10:06:43 +0200344 ethosu_restore_pmu_config(&ethosu_drv.dev);
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200345
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200346 while (data_ptr < data_end)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200347 {
Bhavik Patele645fed2020-06-12 14:46:47 +0200348 int ret = 0;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200349 switch (data_ptr->driver_action_command)
350 {
351 case OPTIMIZER_CONFIG:
352 LOG_INFO("ethosu_invoke OPTIMIZER_CONFIG\n");
353 struct opt_cfg_s *opt_cfg_p = (struct opt_cfg_s *)data_ptr;
354
Bhavik Pateldae5be02020-06-18 15:25:15 +0200355 ret = handle_optimizer_config(&ethosu_drv, opt_cfg_p);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200356 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD + OPTIMIZER_CONFIG_LENGTH_32_BIT_WORD;
357 break;
358 case COMMAND_STREAM:
359 LOG_INFO("ethosu_invoke COMMAND_STREAM\n");
360 void *command_stream = (uint8_t *)(data_ptr) + sizeof(struct custom_data_s);
361 int cms_length = (data_ptr->reserved << 16) | data_ptr->length;
362
Bhavik Pateldae5be02020-06-18 15:25:15 +0200363 ethosu_drv.abort_inference = false;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200364 // It is safe to clear this flag without atomic, because npu is not running.
365 irq_triggered = false;
366
Bhavik Pateldae5be02020-06-18 15:25:15 +0200367 ret = handle_command_stream(&ethosu_drv, command_stream, cms_length, base_addr, num_base_addr);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200368
Bhavik Pateldae5be02020-06-18 15:25:15 +0200369 if (return_code == -1 && ethosu_drv.abort_inference)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200370 {
371 uint32_t qread = 0;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200372 ethosu_get_qread(&ethosu_drv.dev, &qread);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200373 LOG_ERR("NPU timeout\n");
374 dump_command_stream(command_stream, cms_length, qread);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200375 dump_npu_register(&ethosu_drv, 0x200, 0x2BF);
376 dump_npu_register(&ethosu_drv, 0x800, 0xB3F);
377 dump_shram(&ethosu_drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200378 }
379
380 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD + cms_length;
381 break;
382 case READ_APB_REG:
383 LOG_INFO("ethosu_invoke READ_APB_REG\n");
Bhavik Pateldae5be02020-06-18 15:25:15 +0200384 ret = read_apb_reg(&ethosu_drv, data_ptr->driver_action_data);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200385 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
386 break;
387 case DUMP_SHRAM:
388 LOG_INFO("ethosu_invoke DUMP_SHRAM\n");
Bhavik Pateldae5be02020-06-18 15:25:15 +0200389 ret = dump_shram(&ethosu_drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200390 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
391 break;
392 case NOP:
393 LOG_INFO("ethosu_invoke NOP\n");
394 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
395 break;
396 default:
397 LOG_ERR("ethosu_invoke UNSUPPORTED driver_action_command %d \n", data_ptr->driver_action_command);
Bhavik Patele645fed2020-06-12 14:46:47 +0200398 ret = -1;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200399 break;
400 }
Bhavik Patele645fed2020-06-12 14:46:47 +0200401 if (ret != 0)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200402 {
Bhavik Patele645fed2020-06-12 14:46:47 +0200403 return_code = -1;
404 break;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200405 }
406 }
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200407
Bhavik Patel5da40922020-07-15 10:06:43 +0200408 ethosu_save_pmu_config(&ethosu_drv.dev);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200409 ethosu_set_clock_and_power(&ethosu_drv.dev, ETHOSU_CLOCK_Q_ENABLE, ETHOSU_POWER_Q_ENABLE);
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200410
Bhavik Patele645fed2020-06-12 14:46:47 +0200411 return return_code;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200412}
413
414void ethosu_abort(void)
415{
Bhavik Pateldae5be02020-06-18 15:25:15 +0200416 ethosu_drv.abort_inference = true;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200417}
418
Bhavik Pateldae5be02020-06-18 15:25:15 +0200419static int handle_optimizer_config(struct ethosu_driver *drv, struct opt_cfg_s *opt_cfg_p)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200420{
421 struct ethosu_config cfg;
422 struct ethosu_id id;
423 int return_code = 0;
424
425 LOG_INFO("handle_optimizer_config:\n");
426 LOG_INFO("Optimizer release nbr: %d patch: %d\n", opt_cfg_p->da_data.rel_nbr, opt_cfg_p->da_data.patch_nbr);
427 LOG_INFO("Optimizer config cmd_stream_version: %d macs_per_cc: %d shram_size: %d\n",
428 opt_cfg_p->cmd_stream_version,
429 opt_cfg_p->macs_per_cc,
430 opt_cfg_p->shram_size);
431 LOG_INFO("Optimizer config Ethos-U version: %d.%d.%d\n",
432 opt_cfg_p->arch_major_rev,
433 opt_cfg_p->arch_minor_rev,
434 opt_cfg_p->arch_patch_rev);
435
Bhavik Pateldae5be02020-06-18 15:25:15 +0200436 (void)ethosu_get_config(&drv->dev, &cfg);
437 (void)ethosu_get_id(&drv->dev, &id);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200438 LOG_INFO("Ethos-U config cmd_stream_version: %d macs_per_cc: %d shram_size: %d\n",
439 cfg.cmd_stream_version,
440 cfg.macs_per_cc,
441 cfg.shram_size);
442 LOG_INFO("Ethos-U version: %d.%d.%d\n", id.arch_major_rev, id.arch_minor_rev, id.arch_patch_rev);
443
444 if ((cfg.macs_per_cc != opt_cfg_p->macs_per_cc) || (cfg.shram_size != opt_cfg_p->shram_size) ||
445 (cfg.cmd_stream_version != opt_cfg_p->cmd_stream_version))
446 {
447 if (cfg.macs_per_cc != opt_cfg_p->macs_per_cc)
448 {
449 LOG_ERR("NPU config mismatch: npu.macs_per_cc=%d optimizer.macs_per_cc=%d\n",
450 cfg.macs_per_cc,
451 opt_cfg_p->macs_per_cc);
452 }
453 if (cfg.shram_size != opt_cfg_p->shram_size)
454 {
455 LOG_ERR("NPU config mismatch: npu.shram_size=%d optimizer.shram_size=%d\n",
456 cfg.shram_size,
457 opt_cfg_p->shram_size);
458 }
459 if (cfg.cmd_stream_version != opt_cfg_p->cmd_stream_version)
460 {
461 LOG_ERR("NPU config mismatch: npu.cmd_stream_version=%d optimizer.cmd_stream_version=%d\n",
462 cfg.cmd_stream_version,
463 opt_cfg_p->cmd_stream_version);
464 }
465 return_code = -1;
466 }
467
Bhavik Patel790ef362020-06-03 10:05:28 +0200468 if ((id.product_major == PRODUCT_MAJOR_ETHOSU55) &&
Douglas Troha60d50ae2020-06-15 12:48:10 +0200469 ((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 +0200470 {
Bhavik Patel790ef362020-06-03 10:05:28 +0200471 LOG_ERR("NPU arch mismatch: npu.arch=%d.%d.%d optimizer.arch=%d.%d.%d\n",
472 id.arch_major_rev,
473 id.arch_minor_rev,
474 id.arch_patch_rev,
475 opt_cfg_p->arch_major_rev,
476 opt_cfg_p->arch_minor_rev,
477 opt_cfg_p->arch_patch_rev);
478 return_code = -1;
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200479 }
480
481#if !defined(LOG_ENABLED)
482 UNUSED(opt_cfg_p);
483#endif
484 return return_code;
485}
486
Bhavik Pateldae5be02020-06-18 15:25:15 +0200487static void npu_axi_init(struct ethosu_driver *drv)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200488{
Bhavik Pateldae5be02020-06-18 15:25:15 +0200489 ethosu_set_qconfig(&drv->dev, NPU_QCONFIG);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200490
Bhavik Pateldae5be02020-06-18 15:25:15 +0200491 ethosu_set_regioncfg(&drv->dev, 0, NPU_REGIONCFG_0);
492 ethosu_set_regioncfg(&drv->dev, 1, NPU_REGIONCFG_1);
493 ethosu_set_regioncfg(&drv->dev, 2, NPU_REGIONCFG_2);
494 ethosu_set_regioncfg(&drv->dev, 3, NPU_REGIONCFG_3);
495 ethosu_set_regioncfg(&drv->dev, 4, NPU_REGIONCFG_4);
496 ethosu_set_regioncfg(&drv->dev, 5, NPU_REGIONCFG_5);
497 ethosu_set_regioncfg(&drv->dev, 6, NPU_REGIONCFG_6);
498 ethosu_set_regioncfg(&drv->dev, 7, NPU_REGIONCFG_7);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200499
Bhavik Pateldae5be02020-06-18 15:25:15 +0200500 (void)ethosu_set_axi_limit0(&drv->dev,
501 AXI_LIMIT0_MAX_BEATS_BYTES,
Bhavik Patel790ef362020-06-03 10:05:28 +0200502 AXI_LIMIT0_MEM_TYPE,
503 AXI_LIMIT0_MAX_OUTSTANDING_READS,
504 AXI_LIMIT0_MAX_OUTSTANDING_WRITES);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200505 (void)ethosu_set_axi_limit1(&drv->dev,
506 AXI_LIMIT1_MAX_BEATS_BYTES,
Bhavik Patel790ef362020-06-03 10:05:28 +0200507 AXI_LIMIT1_MEM_TYPE,
508 AXI_LIMIT1_MAX_OUTSTANDING_READS,
509 AXI_LIMIT1_MAX_OUTSTANDING_WRITES);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200510 (void)ethosu_set_axi_limit2(&drv->dev,
511 AXI_LIMIT2_MAX_BEATS_BYTES,
Bhavik Patel790ef362020-06-03 10:05:28 +0200512 AXI_LIMIT2_MEM_TYPE,
513 AXI_LIMIT2_MAX_OUTSTANDING_READS,
514 AXI_LIMIT2_MAX_OUTSTANDING_WRITES);
Bhavik Pateldae5be02020-06-18 15:25:15 +0200515 (void)ethosu_set_axi_limit3(&drv->dev,
516 AXI_LIMIT3_MAX_BEATS_BYTES,
Bhavik Patel790ef362020-06-03 10:05:28 +0200517 AXI_LIMIT3_MEM_TYPE,
518 AXI_LIMIT3_MAX_OUTSTANDING_READS,
519 AXI_LIMIT3_MAX_OUTSTANDING_WRITES);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200520}
521
Bhavik Pateldae5be02020-06-18 15:25:15 +0200522static int handle_command_stream(struct ethosu_driver *drv,
523 const uint8_t *cmd_stream,
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200524 const int cms_length,
525 const uint64_t *base_addr,
526 const int num_base_addr)
527{
528 uint32_t qread = 0;
529 uint32_t cms_bytes = cms_length * BYTES_IN_32_BITS;
Kristofer Jonsson125429a2020-08-20 16:52:23 +0200530 LOG_INFO("handle_command_stream: cmd_stream=%p, cms_length %d\n", cmd_stream, cms_length);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200531
Bhavik Patelbf7ae632020-06-11 21:00:16 +0200532 if (0 != ((ptrdiff_t)cmd_stream & MASK_16_BYTE_ALIGN))
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200533 {
Bhavik Patelbf7ae632020-06-11 21:00:16 +0200534 LOG_ERR("Error: Command stream addr %p not aligned to 16 bytes\n", cmd_stream);
535 return -1;
536 }
537
538 bool base_addr_invalid = false;
539 for (int i = 0; i < num_base_addr; i++)
540 {
541 if (0 != (base_addr[i] & MASK_16_BYTE_ALIGN))
542 {
543 LOG_ERR("Error: Base addr %d: %p not aligned to 16 bytes\n", i, (void *)(base_addr[i]));
544 base_addr_invalid = true;
545 }
546 }
547 if (base_addr_invalid)
548 {
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200549 return -1;
550 }
Bhavik Pateldae5be02020-06-18 15:25:15 +0200551 npu_axi_init(drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200552
Bhavik Pateldae5be02020-06-18 15:25:15 +0200553 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 +0200554 {
555 return -1;
556 }
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200557
Bhavik Pateldae5be02020-06-18 15:25:15 +0200558 wait_for_irq(drv);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200559
Bhavik Pateldae5be02020-06-18 15:25:15 +0200560 (void)ethosu_get_qread(&drv->dev, &qread);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200561 if (qread != cms_bytes)
562 {
563 LOG_ERR("Failure: IRQ received but qread (%d) not at end of stream (%d).\n", qread, cms_bytes);
564 return -1;
565 }
566
567 // TODO Power off
568 return 0;
569}
570
Bhavik Pateldae5be02020-06-18 15:25:15 +0200571static int read_apb_reg(struct ethosu_driver *drv, uint16_t da_data)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200572{
573 uint32_t *reg_p;
574 uint32_t start_address = (uint32_t)(da_data & APB_START_ADDR_MASK);
575 uint16_t num_reg = (da_data >> APB_NUM_REG_BIT_SHIFT) + 1;
576
577 reg_p = (uint32_t *)malloc(num_reg * sizeof(uint32_t));
578 if (reg_p == NULL)
579 {
580 LOG_INFO("read_apb_reg, Error! memory not allocated.");
581 return -1;
582 }
583
Bhavik Pateldae5be02020-06-18 15:25:15 +0200584 if (ETHOSU_SUCCESS == ethosu_read_apb_reg(&drv->dev, start_address, num_reg, reg_p))
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200585 {
586 for (int i = 0; i < num_reg; i++)
587 {
588 LOG_INFO("NPU_REG ADDR 0x%04x = 0x%08x\n", (start_address + (i * BYTES_IN_32_BITS)), reg_p[i]);
589 }
590 }
591 else
592 {
593 free(reg_p);
594 return -1;
595 }
596
597 free(reg_p);
598 return 0;
599}
600
Bhavik Pateldae5be02020-06-18 15:25:15 +0200601static int dump_shram(struct ethosu_driver *drv)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200602{
603 struct ethosu_config cfg;
604 uint32_t *shram_p;
Bhavik Pateldae5be02020-06-18 15:25:15 +0200605 (void)ethosu_get_config(&drv->dev, &cfg);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200606
607 LOG_INFO("dump_shram size = %d KB\n", cfg.shram_size);
608
609 shram_p = (uint32_t *)malloc(BYTES_1KB);
610 if (shram_p == NULL)
611 {
612 LOG_ERR("read_shram, Error! memory not allocated.");
613 return -1;
614 }
615
616 for (uint32_t i = 0; i < cfg.shram_size; i++)
617 {
Bhavik Pateldae5be02020-06-18 15:25:15 +0200618 ethosu_get_shram_data(&drv->dev, i, (uint32_t *)shram_p);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200619 // Output 1KB of SHRAM
620 LOG_INFO("***SHRAM SECTION %d***\n", i);
621 for (int j = 0; j < (BYTES_1KB / BYTES_IN_32_BITS); j++)
622 {
623 LOG_INFO("[0x%04x] %x\n", (i * 1024 + j * 4), shram_p[j]);
624 }
625 }
626 free(shram_p);
627
628 return 0;
629}
630
631typedef struct
632{
633 int number;
634 const char *name;
635} name_lookup_t;
636
637static const name_lookup_t npu_reg_name_tbl[] = {
638 {0x200, "KERNEL_X"},
639 {0x204, "KERNEL_Y"},
640 {0x208, "KERNEL_W_M1"},
641 {0x20C, "KERNEL_H_M1"},
642 {0x210, "OFM_CBLK_WIDTH_M1"},
643 {0x214, "OFM_CBLK_HEIGHT_M1"},
644 {0x218, "OFM_CBLK_DEPTH_M1"},
645 {0x21c, "IFM_CBLK_DEPTH_M1"},
646 {0x220, "OFM_X"},
647 {0x224, "OFM_Y"},
648 {0x228, "OFM_Z"},
649 {0x22C, "IFM_Z"},
650 {0x230, "PAD_TOP"},
651 {0x234, "PAD_LEFT"},
652 {0x238, "IFM_CBLK_WIDTH"},
653 {0x23C, "IFM_CBLK_HEIGHT"},
654 {0x240, "DMA_IFM_SRC"},
655 {0x244, "DMA_IFM_SRC_HI"},
656 {0x248, "DMA_IFM_DST"},
657 {0x24c, "DMA_OFM_SRC"},
658 {0x250, "DMA_OFM_DST"},
659 {0x254, "DMA_OFM_DST_HI"},
660 {0x258, "DMA_WEIGHT_SRC"},
661 {0x25c, "DMA_WEIGHT_SRC_HI"},
662 {0x260, "DMA_CMD_SRC"},
663 {0x264, "DMA_CMD_SRC_HI"},
664 {0x268, "DMA_CMD_SIZE"},
665 {0x26c, "DMA_M2M_SRC"},
666 {0x270, "DMA_M2M_SRC_HI"},
667 {0x274, "DMA_M2M_DST"},
668 {0x278, "DMA_M2M_DST_HI"},
669 {0x27c, "CURRENT_QREAD"},
670 {0x280, "DMA_SCALE_SRC"},
671 {0x284, "DMA_SCALE_SRC_HI"},
672 {0x2BC, "CURRENT_CMD"},
673 {0x800, "IFM_PAD_TOP"},
674 {0x804, "IFM_PAD_LEFT"},
675 {0x808, "IFM_PAD_RIGHT"},
676 {0x80C, "IFM_PAD_BOTTOM"},
677 {0x810, "IFM_DEPTH_M1"},
678 {0x814, "IFM_PRECISION"},
679 {0x81C, "IFM_UPSCALE"},
680 {0x824, "IFM_ZERO_POINT"},
681 {0x828, "IFM_WIDTH0_M1"},
682 {0x82C, "IFM_HEIGHT0_M1"},
683 {0x830, "IFM_HEIGHT1_M1"},
684 {0x834, "IFM_IB_END"},
685 {0x83C, "IFM_REGION"},
686 {0x844, "OFM_WIDTH_M1"},
687 {0x848, "OFM_HEIGHT_M1"},
688 {0x84C, "OFM_DEPTH_M1"},
689 {0x850, "OFM_PRECISION"},
690 {0x854, "OFM_BLK_WIDTH_M1"},
691 {0x858, "OFM_BLK_HEIGHT_M1"},
692 {0x85C, "OFM_BLK_DEPTH_M1"},
693 {0x860, "OFM_ZERO_POINT"},
694 {0x868, "OFM_WIDTH0_M1"},
695 {0x86C, "OFM_HEIGHT0_M1"},
696 {0x870, "OFM_HEIGHT1_M1"},
697 {0x87C, "OFM_REGION"},
698 {0x880, "KERNEL_WIDTH_M1"},
699 {0x884, "KERNEL_HEIGHT_M1"},
700 {0x888, "KERNEL_STRIDE"},
701 {0x88C, "PARALLEL_MODE"},
702 {0x890, "ACC_FORMAT"},
703 {0x894, "ACTIVATION"},
704 {0x898, "ACTIVATION_MIN"},
705 {0x89C, "ACTIVATION_MAX"},
706 {0x8A0, "WEIGHT_REGION"},
707 {0x8A4, "SCALE_REGION"},
708 {0x8B4, "AB_START"},
709 {0x8BC, "BLOCKDEP"},
710 {0x8C0, "DMA0_SRC_REGION"},
711 {0x8C4, "DMA0_DST_REGION"},
712 {0x8C8, "DMA0_SIZE0"},
713 {0x8CC, "DMA0_SIZE1"},
714 {0x900, "IFM2_BROADCAST"},
715 {0x904, "IFM2_SCALAR"},
716 {0x924, "IFM2_ZERO_POINT"},
717 {0x928, "IFM2_WIDTH0_M1"},
718 {0x92C, "IFM2_HEIGHT0_M1"},
719 {0x930, "IFM2_HEIGHT1_M1"},
720 {0x934, "IFM2_IB_START"},
721 {0x93C, "IFM2_REGION"},
722 {0xA00, "IFM_BASE0"},
723 {0xA04, "IFM_BASE0_HI"},
724 {0xA08, "IFM_BASE1"},
725 {0xA0C, "IFM_BASE1_HI"},
726 {0xA10, "IFM_BASE2"},
727 {0xA14, "IFM_BASE2_HI"},
728 {0xA18, "IFM_BASE3"},
729 {0xA1C, "IFM_BASE3_HI"},
730 {0xA20, "IFM_STRIDE_X"},
731 {0xA24, "IFM_STRIDE_X_HI"},
732 {0xA28, "IFM_STRIDE_Y"},
733 {0xA2C, "IFM_STRIDE_Y_HI"},
734 {0xA30, "IFM_STRIDE_C"},
735 {0xA34, "IFM_STRIDE_C_HI"},
736 {0xA40, "OFM_BASE0"},
737 {0xA44, "OFM_BASE0_HI"},
738 {0xA48, "OFM_BASE1"},
739 {0xA4C, "OFM_BASE1_HI"},
740 {0xA50, "OFM_BASE2"},
741 {0xA54, "OFM_BASE2_HI"},
742 {0xA58, "OFM_BASE3"},
743 {0xA5C, "OFM_BASE3_HI"},
744 {0xA60, "OFM_STRIDE_X"},
745 {0xA64, "OFM_STRIDE_X_HI"},
746 {0xA68, "OFM_STRIDE_Y"},
747 {0xA6C, "OFM_STRIDE_Y_HI"},
748 {0xA70, "OFM_STRIDE_C"},
749 {0xA74, "OFM_STRIDE_C_HI"},
750 {0xA80, "WEIGHT_BASE"},
751 {0xA84, "WEIGHT_BASE_HI"},
752 {0xA88, "WEIGHT_LENGTH"},
753 {0xA8C, "WEIGHT_LENGTH_HI"},
754 {0xA90, "SCALE_BASE"},
755 {0xA94, "SCALE_BASE_HI"},
756 {0xA98, "SCALE_LENGTH"},
757 {0xAA0, "OFM_SCALE"},
758 {0xAA4, "OFM_SCALE_SHIFT"},
759 {0xAA8, "OPA_SCALE "},
760 {0xAB0, "OPB_SCALE"},
761 {0xAC0, "DMA0_SRC"},
762 {0xAC4, "DMA0_SRC_HI"},
763 {0xAC8, "DMA0_DST"},
764 {0xACC, "DMA0_DST_HI"},
765 {0xAD0, "DMA0_LEN"},
766 {0xAD4, "DMA0_LEN_HI"},
767 {0xAD8, "DMA0_SKIP0"},
768 {0xADC, "DMA0_SKIP0_HI"},
769 {0xAE0, "DMA0_SKIP1"},
770 {0xAE4, "DMA0_SKIP1_HI"},
771 {0xB00, "IFM2_BASE0"},
772 {0xB04, "IFM2_BASE0_HI"},
773 {0xB08, "IFM2_BASE1"},
774 {0xB0C, "IFM2_BASE1_HI"},
775 {0xB10, "IFM2_BASE2"},
776 {0xB14, "IFM2_BASE2_HI"},
777 {0xB18, "IFM2_BASE3"},
778 {0xB1C, "IFM2_BASE3_HI"},
779 {0xB20, "IFM2_STRIDE_X"},
780 {0xB24, "IFM2_STRIDE_X_HI"},
781 {0xB28, "IFM2_STRIDE_Y"},
782 {0xB2C, "IFM2_STRIDE_Y_HI"},
783 {0xB30, "IFM2_STRIDE_C"},
784 {0xB34, "IFM2_STRIDE_C_HI"},
785 {0xB40, "WEIGHT1_BASE"},
786 {0xB44, "WEIGHT1_BASE_HI"},
787 {0xB48, "WEIGHT1_LENGTH"},
788 {0xB4C, "WEIGHT1_LENGTH_HI"},
789 {0xB50, "SCALE1_BASE"},
790 {0xB54, "SCALE1_BASE_HI"},
791 {0xB58, "SCALE1_LENGTH"},
792};
793
794static const char *lookup_name(const name_lookup_t *lookup_table, int lookup_table_count, int find)
795{
796 int n;
797 for (n = 0; n < lookup_table_count; n++)
798 {
799 if (lookup_table[n].number == find)
800 {
801 return lookup_table[n].name;
802 }
803 }
804 // Not found
805 return 0;
806}
807
Bhavik Pateldae5be02020-06-18 15:25:15 +0200808static void dump_npu_register(struct ethosu_driver *drv, int npu_reg, int npu_reg_end)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200809{
810 unsigned int reg_val;
811 const char *reg_name;
812 int npu_reg_name_tbl_count = sizeof(npu_reg_name_tbl) / sizeof(npu_reg_name_tbl[0]);
813
814 LOG_INFO("dump_register %X - %X\n", npu_reg, npu_reg_end);
815 for (; npu_reg <= npu_reg_end; npu_reg += sizeof(int))
816 {
Bhavik Pateldae5be02020-06-18 15:25:15 +0200817 reg_val = ethosu_read_reg(&drv->dev, npu_reg);
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200818 reg_name = lookup_name(npu_reg_name_tbl, npu_reg_name_tbl_count, npu_reg);
819 LOG_INFO("[0x%.4X] 0x%.8X\t%s\n", npu_reg, reg_val, (reg_name) ? reg_name : "");
820 }
821}
822
823static const name_lookup_t cmd0_name_tbl[] = {
824 {0x000, "NPU_OP_STOP"},
825 {0x001, "NPU_OP_IRQ"},
826 {0x002, "NPU_OP_CONV"},
827 {0x003, "NPU_OP_DEPTHWISE"},
828 {0x004, "NPU_OP_VECTOR_PROD"},
829 {0x005, "NPU_OP_POOL"},
830 {0x006, "NPU_OP_ELEMENTWISE"},
831 {0x010, "NPU_OP_DMA_START"},
832 {0x011, "NPU_OP_DMA_WAIT"},
833 {0x012, "NPU_OP_KERNEL_WAIT"},
834 {0x100, "NPU_SET_IFM_PAD_TOP"},
835 {0x101, "NPU_SET_IFM_PAD_LEFT"},
836 {0x102, "NPU_SET_IFM_PAD_RIGHT"},
837 {0x103, "NPU_SET_IFM_PAD_BOTTOM"},
838 {0x104, "NPU_SET_IFM_DEPTH_M1"},
839 {0x105, "NPU_SET_IFM_PRECISION"},
840 {0x107, "NPU_SET_IFM_UPSCALE"},
841 {0x109, "NPU_SET_IFM_ZERO_POINT"},
842 {0x10A, "NPU_SET_IFM_WIDTH0_M1"},
843 {0x10B, "NPU_SET_IFM_HEIGHT0_M1"},
844 {0x10C, "NPU_SET_IFM_HEIGHT1_M1"},
845 {0x10D, "NPU_SET_IFM_IB_END"},
846 {0x10F, "NPU_SET_IFM_REGION"},
847 {0x110, "NPU_SET_OFM_BATCH_SIZE_M1"},
848 {0x111, "NPU_SET_OFM_WIDTH_M1"},
849 {0x112, "NPU_SET_OFM_HEIGHT_M1"},
850 {0x113, "NPU_SET_OFM_DEPTH_M1"},
851 {0x114, "NPU_SET_OFM_PRECISION"},
852 {0x115, "NPU_SET_OFM_BLK_WIDTH_M1"},
853 {0x116, "NPU_SET_OFM_BLK_HEIGHT_M1"},
854 {0x117, "NPU_SET_OFM_BLK_DEPTH_M1"},
855 {0x118, "NPU_SET_OFM_ZERO_POINT"},
856 {0x11A, "NPU_SET_OFM_WIDTH0_M1"},
857 {0x11B, "NPU_SET_OFM_HEIGHT0_M1"},
858 {0x11C, "NPU_SET_OFM_HEIGHT1_M1"},
859 {0x11F, "NPU_SET_OFM_REGION"},
860 {0x120, "NPU_SET_KERNEL_WIDTH_M1"},
861 {0x121, "NPU_SET_KERNEL_HEIGHT_M1"},
862 {0x122, "NPU_SET_KERNEL_STRIDE"},
863 {0x124, "NPU_SET_ACC_FORMAT"},
864 {0x125, "NPU_SET_ACTIVATION"},
865 {0x126, "NPU_SET_ACTIVATION_MIN"},
866 {0x127, "NPU_SET_ACTIVATION_MAX"},
867 {0x128, "NPU_SET_WEIGHT_REGION"},
868 {0x129, "NPU_SET_SCALE_REGION"},
869 {0x12D, "NPU_SET_AB_START"},
870 {0x12F, "NPU_SET_BLOCKDEP"},
871 {0x130, "NPU_SET_DMA0_SRC_REGION"},
872 {0x131, "NPU_SET_DMA0_DST_REGION"},
873 {0x180, "NPU_SET_IFM2_BROADCAST"},
874 {0x181, "NPU_SET_IFM2_SCALAR"},
875 {0x185, "NPU_SET_IFM2_PRECISION"},
876 {0x189, "NPU_SET_IFM2_ZERO_POINT"},
877 {0x18A, "NPU_SET_IFM2_WIDTH0_M1"},
878 {0x18B, "NPU_SET_IFM2_HEIGHT0_M1"},
879 {0x18C, "NPU_SET_IFM2_HEIGHT1_M1"},
880 {0x18D, "NPU_SET_IFM2_IB_START"},
881 {0x18F, "NPU_SET_IFM2_REGION"},
882};
883
884static const name_lookup_t cmd1_name_tbl[] = {
885 {0x000, "NPU_SET_IFM_BASE0"}, {0x001, "NPU_SET_IFM_BASE1"}, {0x002, "NPU_SET_IFM_BASE2"},
886 {0x003, "NPU_SET_IFM_BASE3"}, {0x004, "NPU_SET_IFM_STRIDE_X"}, {0x005, "NPU_SET_IFM_STRIDE_Y"},
887 {0x006, "NPU_SET_IFM_STRIDE_C"}, {0x007, "NPU_SET_IFM_STRIDE_N"}, {0x010, "NPU_SET_OFM_BASE0"},
888 {0x011, "NPU_SET_OFM_BASE1"}, {0x012, "NPU_SET_OFM_BASE2"}, {0x013, "NPU_SET_OFM_BASE3"},
889 {0x014, "NPU_SET_OFM_STRIDE_X"}, {0x015, "NPU_SET_OFM_STRIDE_Y"}, {0x016, "NPU_SET_OFM_STRIDE_C"},
890 {0x017, "NPU_SET_OFM_STRIDE_N"}, {0x020, "NPU_SET_WEIGHT_BASE"}, {0x021, "NPU_SET_WEIGHT_LENGTH"},
891 {0x022, "NPU_SET_SCALE_BASE"}, {0x023, "NPU_SET_SCALE_LENGTH"}, {0x024, "NPU_SET_OFM_SCALE"},
892 {0x025, "NPU_SET_OPA_SCALE"}, {0x026, "NPU_SET_OPB_SCALE"}, {0x030, "NPU_SET_DMA0_SRC"},
893 {0x031, "NPU_SET_DMA0_DST"}, {0x032, "NPU_SET_DMA0_LEN"}, {0x080, "NPU_SET_IFM2_BASE0"},
894 {0x081, "NPU_SET_IFM2_BASE1"}, {0x082, "NPU_SET_IFM2_BASE2"}, {0x083, "NPU_SET_IFM2_BASE3"},
895 {0x084, "NPU_SET_IFM2_STRIDE_X"}, {0x085, "NPU_SET_IFM2_STRIDE_Y"}, {0x086, "NPU_SET_IFM2_STRIDE_C"},
896};
897
898static void dump_command_stream(const uint32_t *cmd_stream, const int cms_length, int qread)
899{
900 int n;
901 int offset;
902 uint32_t cmd_val;
903 const uint8_t *cmd_ptr;
904 const char *cmd_name;
905 int cmd0_name_tbl_count = sizeof(cmd0_name_tbl) / sizeof(cmd0_name_tbl[0]);
906 int cmd1_name_tbl_count = sizeof(cmd1_name_tbl) / sizeof(cmd1_name_tbl[0]);
907
908 LOG_INFO("dump_command_stream cmd_stream = 0x%8p cms_length = %d\n", cmd_stream, cms_length);
909 for (n = 0; n < cms_length; n++)
910 {
911 // Offset
912 offset = n * sizeof(int);
913 LOG_INFO("[%.4d] ", offset);
914 // Command
915 cmd_ptr = (const uint8_t *)&cmd_stream[n];
916 LOG_INFO("0x%.2X 0x%.2X 0x%.2X 0x%.2X ", cmd_ptr[0], cmd_ptr[1], cmd_ptr[2], cmd_ptr[3]);
917 // Command name and payload
918 if (cmd_stream[n] & 0x4000)
919 {
920 cmd_name = lookup_name(cmd1_name_tbl, cmd1_name_tbl_count, cmd_stream[n] & 0x3FF);
921 n++;
922 cmd_val = cmd_stream[n];
923 cmd_ptr = (const uint8_t *)&cmd_stream[n];
924 LOG_INFO("0x%.2X 0x%.2X 0x%.2X 0x%.2X ", cmd_ptr[0], cmd_ptr[1], cmd_ptr[2], cmd_ptr[3]);
925 }
926 else
927 {
928 cmd_val = cmd_stream[n] >> 16;
929 cmd_name = lookup_name(cmd0_name_tbl, cmd0_name_tbl_count, cmd_stream[n] & 0x3FF);
930 }
931 if (cmd_name)
932 {
933 LOG_INFO("\t%s 0x%.8X", cmd_name, cmd_val);
934 }
935 if (offset == qread)
936 {
937 LOG_INFO(" <<== QREAD\n");
938 }
939 else
940 {
941 LOG_INFO("\n");
942 }
943 }
944}