blob: 567c878ba48176a18d0e7991bf65d96043d7e646 [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
19#include "ethosu_driver.h"
20
21#include "ethosu_common.h"
22#include "ethosu_device.h"
23#include "irq_driver.h"
24#include <assert.h>
25#include <stdbool.h>
26#include <stdint.h>
27#include <stdio.h>
28#include <stdlib.h>
29
30// Abort flag
31static int abort_inference = false;
32
33// IRQ
34static volatile bool irq_triggered = false;
35#if defined(CPU_CORTEX_M3) || defined(CPU_CORTEX_M4) || defined(CPU_CORTEX_M7) || defined(CPU_CORTEX_M33) || \
36 defined(CPU_CORTEX_M55)
37void irq_handler()
38{
39 uint8_t irq_raised = 0;
40 (void)ethosu_is_irq_raised(&irq_raised);
41 ASSERT(irq_raised == 1);
42 irq_triggered = true;
43 (void)ethosu_clear_irq_status();
44 (void)ethosu_is_irq_raised(&irq_raised);
45 ASSERT(irq_raised == 0);
46}
47
48static inline void wait_for_irq(void)
49{
50 while (1)
51 {
52 __disable_irq();
53 if (irq_triggered || abort_inference)
54 {
55 __enable_irq();
56 break;
57 }
58
59 sleep();
60
61 __enable_irq();
62 }
63}
64#else
65#define setup_irq(...)
66// Just polling the status register
67static inline void wait_for_irq(void)
68{
69 uint8_t irq_raised = 0;
70
71 for (int i = 0; i < 5000; ++i)
72 {
73 (void)ethosu_is_irq_raised(&irq_raised);
74 if (1 == irq_raised)
75 {
76 break;
77 }
78 }
79 ASSERT(1 == irq_raised);
80
81 irq_triggered = true;
82}
83#endif
84
85#define MACS_PER_CYCLE_LOG2_MASK 0x000F
86#define SHRAM_SIZE_MASK 0xFF00
87#define SHRAM_SIZE_RIGHT_SHIFT 8
88#define BYTES_IN_32_BITS 4
89#define CUSTOM_OPTION_LENGTH_32_BIT_WORD 1
90#define DRIVER_ACTION_LENGTH_32_BIT_WORD 1
91#define OPTIMIZER_CONFIG_LENGTH_32_BIT_WORD 2
92#define ETHOSU_FOURCC ('1' << 24 | 'P' << 16 | 'O' << 8 | 'C') // "Custom Operator Payload 1"
93#define APB_START_ADDR_MASK 0x0FFF
94#define APB_NUM_REG_BIT_SHIFT 12
95#define CMS_ALIGNMENT 16
96#define BYTES_1KB 1024
97
98// Driver actions
99enum DRIVER_ACTION_e
100{
101 RESERVED = 0,
102 OPTIMIZER_CONFIG = 1,
103 COMMAND_STREAM = 2,
104 READ_APB_REG = 3,
105 DUMP_SHRAM = 4,
106 NOP = 5,
107};
108
109// Custom data struct
110struct custom_data_s
111{
112 union
113 {
114 // Driver action data
115 struct
116 {
117 // Driver action command (valid values in DRIVER_ACTION_e)
118 uint8_t driver_action_command;
119 // reserved
120 uint8_t reserved;
121 // Driver action data
122 union
123 {
124 struct
125 { // DA_CMD_OPT_CFG
126 uint16_t rel_nbr : 4;
127 uint16_t patch_nbr : 4;
128 uint16_t opt_cfg_reserved : 8;
129 };
130 struct
131 { // DA_CMD_CMSTRM
132 uint16_t length;
133 };
134 struct
135 { // DA_CMD_READAPB
136 uint16_t start_address : 12;
137 uint16_t nbr_reg_minus1 : 4;
138 };
139 uint16_t driver_action_data;
140 };
141 };
142 uint32_t word;
143 };
144};
145
146// optimizer config struct
147struct opt_cfg_s
148{
149 struct custom_data_s da_data;
150 union
151 {
152 struct
153 {
154 uint32_t macs_per_cc : 4;
155 uint32_t cmd_stream_version : 4;
156 uint32_t shram_size : 8;
157 uint32_t reserved1 : 16;
158 };
159 uint32_t npu_cfg;
160 };
161 union
162 {
163 struct
164 {
165 uint32_t version_status : 4;
166 uint32_t version_minor : 4;
167 uint32_t version_major : 4;
168 uint32_t product_major : 4;
169 uint32_t arch_patch_rev : 4;
170 uint32_t arch_minor_rev : 8;
171 uint32_t arch_major_rev : 4;
172 };
173 uint32_t ethosu_id;
174 };
175};
176
177static int handle_optimizer_config(struct opt_cfg_s *opt_cfg_p);
178static int handle_command_stream(const uint8_t *cmd_stream,
179 const int cms_length,
180 const uint64_t *base_addr,
181 const int num_base_addr);
182static int read_apb_reg(uint16_t);
183static int dump_shram();
184static void dump_npu_register(int npu_reg, int npu_reg_end);
185static void dump_command_stream(const uint32_t *cmd_stream, const int cms_length, int qread);
186
187int ethosu_init(void)
188{
189 int return_code = 0;
190 LOG_INFO("ethosu_init calling NPU embed driver ethosu_dev_init\n");
191
192#ifdef FPGA
193 ethosu_soft_reset();
194#endif
195 if (ETHOSU_SUCCESS != ethosu_wait_for_reset())
196 {
197 LOG_ERR("Failed reset of Ethos-U\n");
198 return -1;
199 }
200
201 setup_irq(&irq_handler, EthosuIrq);
202
203 return_code = ethosu_dev_init();
204
205 return return_code;
206}
207
208int ethosu_get_version(struct ethosu_version *version)
209{
210 int return_code = 0;
211
212 if (NULL != version)
213 {
214 struct ethosu_id id;
215 struct ethosu_config cfg;
216 (void)ethosu_get_id(&id);
217 (void)ethosu_get_config(&cfg);
218
219 version->id.version_status = id.version_status;
220 version->id.version_minor = id.version_minor;
221 version->id.version_major = id.version_major;
222 version->id.product_major = id.product_major;
223 version->id.arch_patch_rev = id.arch_patch_rev;
224 version->id.arch_minor_rev = id.arch_minor_rev;
225 version->id.arch_major_rev = id.arch_major_rev;
226 version->id.driver_patch_rev = ETHOSU_DRIVER_VERSION_PATCH;
227 version->id.driver_minor_rev = ETHOSU_DRIVER_VERSION_MINOR;
228 version->id.driver_major_rev = ETHOSU_DRIVER_VERSION_MAJOR;
229 version->cfg.macs_per_cc = cfg.macs_per_cc;
230 version->cfg.cmd_stream_version = cfg.cmd_stream_version;
231 version->cfg.shram_size = cfg.shram_size;
232 }
233 else
234 {
235 return_code = -1;
236 }
237
238 return return_code;
239}
240
241int ethosu_invoke(const void *custom_data_ptr,
242 const int custom_data_size,
243 const uint64_t *base_addr,
244 const int num_base_addr)
245{
246 struct custom_data_s *data_start_ptr = (struct custom_data_s *)custom_data_ptr;
247 int return_code = 0;
248
249 LOG_INFO("ethosu_invoke\n");
250
251 // First word in custom_data_ptr should contain "Custom Operator Payload 1"
252 if (data_start_ptr->word != ETHOSU_FOURCC)
253 {
254 LOG_ERR("Custom Operator Payload: %x is not correct, expected %x\n", data_start_ptr->word, ETHOSU_FOURCC);
255 return -1;
256 }
257 data_start_ptr += CUSTOM_OPTION_LENGTH_32_BIT_WORD;
258 struct custom_data_s *data_ptr = data_start_ptr;
259
260 if ((custom_data_size % BYTES_IN_32_BITS) != 0)
261 {
262 LOG_ERR("ethosu_invoke ERROR custom_data_size=0x%x not a multiple of 4\n", custom_data_size);
263 return -1;
264 }
265 int custom_data_32bit_size = (custom_data_size / BYTES_IN_32_BITS - CUSTOM_OPTION_LENGTH_32_BIT_WORD);
266
267 while (data_ptr < (data_start_ptr + custom_data_32bit_size))
268 {
269 switch (data_ptr->driver_action_command)
270 {
271 case OPTIMIZER_CONFIG:
272 LOG_INFO("ethosu_invoke OPTIMIZER_CONFIG\n");
273 struct opt_cfg_s *opt_cfg_p = (struct opt_cfg_s *)data_ptr;
274
275 return_code = handle_optimizer_config(opt_cfg_p);
276 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD + OPTIMIZER_CONFIG_LENGTH_32_BIT_WORD;
277 break;
278 case COMMAND_STREAM:
279 LOG_INFO("ethosu_invoke COMMAND_STREAM\n");
280 void *command_stream = (uint8_t *)(data_ptr) + sizeof(struct custom_data_s);
281 int cms_length = (data_ptr->reserved << 16) | data_ptr->length;
282
283 abort_inference = false;
284 // It is safe to clear this flag without atomic, because npu is not running.
285 irq_triggered = false;
286
287 return_code = handle_command_stream(command_stream, cms_length, base_addr, num_base_addr);
288
289 if (return_code == -1 && abort_inference)
290 {
291 uint32_t qread = 0;
292 ethosu_get_qread(&qread);
293 LOG_ERR("NPU timeout\n");
294 dump_command_stream(command_stream, cms_length, qread);
295 dump_npu_register(0x200, 0x2BF);
296 dump_npu_register(0x800, 0xB3F);
297 dump_shram();
298 }
299
300 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD + cms_length;
301 break;
302 case READ_APB_REG:
303 LOG_INFO("ethosu_invoke READ_APB_REG\n");
304 return_code = read_apb_reg(data_ptr->driver_action_data);
305 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
306 break;
307 case DUMP_SHRAM:
308 LOG_INFO("ethosu_invoke DUMP_SHRAM\n");
309 return_code = dump_shram();
310 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
311 break;
312 case NOP:
313 LOG_INFO("ethosu_invoke NOP\n");
314 data_ptr += DRIVER_ACTION_LENGTH_32_BIT_WORD;
315 break;
316 default:
317 LOG_ERR("ethosu_invoke UNSUPPORTED driver_action_command %d \n", data_ptr->driver_action_command);
318 return -1;
319 break;
320 }
321 if (return_code != 0)
322 {
323 return -1;
324 }
325 }
326 return 0;
327}
328
329void ethosu_abort(void)
330{
331 abort_inference = true;
332}
333
334static int handle_optimizer_config(struct opt_cfg_s *opt_cfg_p)
335{
336 struct ethosu_config cfg;
337 struct ethosu_id id;
338 int return_code = 0;
339
340 LOG_INFO("handle_optimizer_config:\n");
341 LOG_INFO("Optimizer release nbr: %d patch: %d\n", opt_cfg_p->da_data.rel_nbr, opt_cfg_p->da_data.patch_nbr);
342 LOG_INFO("Optimizer config cmd_stream_version: %d macs_per_cc: %d shram_size: %d\n",
343 opt_cfg_p->cmd_stream_version,
344 opt_cfg_p->macs_per_cc,
345 opt_cfg_p->shram_size);
346 LOG_INFO("Optimizer config Ethos-U version: %d.%d.%d\n",
347 opt_cfg_p->arch_major_rev,
348 opt_cfg_p->arch_minor_rev,
349 opt_cfg_p->arch_patch_rev);
350
351 (void)ethosu_get_config(&cfg);
352 (void)ethosu_get_id(&id);
353 LOG_INFO("Ethos-U config cmd_stream_version: %d macs_per_cc: %d shram_size: %d\n",
354 cfg.cmd_stream_version,
355 cfg.macs_per_cc,
356 cfg.shram_size);
357 LOG_INFO("Ethos-U version: %d.%d.%d\n", id.arch_major_rev, id.arch_minor_rev, id.arch_patch_rev);
358
359 if ((cfg.macs_per_cc != opt_cfg_p->macs_per_cc) || (cfg.shram_size != opt_cfg_p->shram_size) ||
360 (cfg.cmd_stream_version != opt_cfg_p->cmd_stream_version))
361 {
362 if (cfg.macs_per_cc != opt_cfg_p->macs_per_cc)
363 {
364 LOG_ERR("NPU config mismatch: npu.macs_per_cc=%d optimizer.macs_per_cc=%d\n",
365 cfg.macs_per_cc,
366 opt_cfg_p->macs_per_cc);
367 }
368 if (cfg.shram_size != opt_cfg_p->shram_size)
369 {
370 LOG_ERR("NPU config mismatch: npu.shram_size=%d optimizer.shram_size=%d\n",
371 cfg.shram_size,
372 opt_cfg_p->shram_size);
373 }
374 if (cfg.cmd_stream_version != opt_cfg_p->cmd_stream_version)
375 {
376 LOG_ERR("NPU config mismatch: npu.cmd_stream_version=%d optimizer.cmd_stream_version=%d\n",
377 cfg.cmd_stream_version,
378 opt_cfg_p->cmd_stream_version);
379 }
380 return_code = -1;
381 }
382
383 if ((id.arch_major_rev != opt_cfg_p->arch_major_rev) || (id.arch_minor_rev != opt_cfg_p->arch_minor_rev) ||
384 (id.arch_patch_rev != opt_cfg_p->arch_patch_rev))
385 {
386 // fLOG_INFO(stderr,
387 // "NPU arch mismatch: npu.arch=%d.%d.%d optimizer.arch=%d.%d.%d\n",
388 // id.arch_major_rev,
389 // id.arch_minor_rev,
390 // id.arch_patch_rev,
391 // opt_cfg_p->arch_major_rev,
392 // opt_cfg_p->arch_minor_rev,
393 // opt_cfg_p->arch_patch_rev);
394 // return_code = -1;
395 }
396
397#if !defined(LOG_ENABLED)
398 UNUSED(opt_cfg_p);
399#endif
400 return return_code;
401}
402
403void __attribute__((weak)) npu_axi_init()
404{
405 // TODO Power on
406
407 // TODO Set qconfig
408 ethosu_set_qconfig(0);
409
410 // TODO Set region config
411 ethosu_set_regioncfg(0, 0);
412 ethosu_set_regioncfg(1, 0);
413 ethosu_set_regioncfg(2, 0);
414 ethosu_set_regioncfg(3, 0);
415 ethosu_set_regioncfg(4, 0);
416 ethosu_set_regioncfg(5, 0);
417 ethosu_set_regioncfg(6, 0);
418 ethosu_set_regioncfg(7, 0);
419}
420
421static int handle_command_stream(const uint8_t *cmd_stream,
422 const int cms_length,
423 const uint64_t *base_addr,
424 const int num_base_addr)
425{
426 uint32_t qread = 0;
427 uint32_t cms_bytes = cms_length * BYTES_IN_32_BITS;
428 LOG_INFO("handle_command_stream cms_length %d\n", cms_length);
429
430 if (((uint32_t)cmd_stream % CMS_ALIGNMENT) != 0)
431 {
432 LOG_ERR("Failure: Command stream addr %p not aligned to 16 bytes\n", cmd_stream);
433 return -1;
434 }
435 npu_axi_init();
436
437 ethosu_run_command_stream(cmd_stream, cms_bytes, base_addr, num_base_addr);
438
439 wait_for_irq();
440
441 (void)ethosu_get_qread(&qread);
442 if (qread != cms_bytes)
443 {
444 LOG_ERR("Failure: IRQ received but qread (%d) not at end of stream (%d).\n", qread, cms_bytes);
445 return -1;
446 }
447
448 // TODO Power off
449 return 0;
450}
451
452static int read_apb_reg(uint16_t da_data)
453{
454 uint32_t *reg_p;
455 uint32_t start_address = (uint32_t)(da_data & APB_START_ADDR_MASK);
456 uint16_t num_reg = (da_data >> APB_NUM_REG_BIT_SHIFT) + 1;
457
458 reg_p = (uint32_t *)malloc(num_reg * sizeof(uint32_t));
459 if (reg_p == NULL)
460 {
461 LOG_INFO("read_apb_reg, Error! memory not allocated.");
462 return -1;
463 }
464
465 if (ETHOSU_SUCCESS == ethosu_read_apb_reg(start_address, num_reg, reg_p))
466 {
467 for (int i = 0; i < num_reg; i++)
468 {
469 LOG_INFO("NPU_REG ADDR 0x%04x = 0x%08x\n", (start_address + (i * BYTES_IN_32_BITS)), reg_p[i]);
470 }
471 }
472 else
473 {
474 free(reg_p);
475 return -1;
476 }
477
478 free(reg_p);
479 return 0;
480}
481
482static int dump_shram()
483{
484 struct ethosu_config cfg;
485 uint32_t *shram_p;
486 (void)ethosu_get_config(&cfg);
487
488 LOG_INFO("dump_shram size = %d KB\n", cfg.shram_size);
489
490 shram_p = (uint32_t *)malloc(BYTES_1KB);
491 if (shram_p == NULL)
492 {
493 LOG_ERR("read_shram, Error! memory not allocated.");
494 return -1;
495 }
496
497 for (uint32_t i = 0; i < cfg.shram_size; i++)
498 {
499 ethosu_get_shram_data(i, (uint32_t *)shram_p);
500 // Output 1KB of SHRAM
501 LOG_INFO("***SHRAM SECTION %d***\n", i);
502 for (int j = 0; j < (BYTES_1KB / BYTES_IN_32_BITS); j++)
503 {
504 LOG_INFO("[0x%04x] %x\n", (i * 1024 + j * 4), shram_p[j]);
505 }
506 }
507 free(shram_p);
508
509 return 0;
510}
511
512typedef struct
513{
514 int number;
515 const char *name;
516} name_lookup_t;
517
518static const name_lookup_t npu_reg_name_tbl[] = {
519 {0x200, "KERNEL_X"},
520 {0x204, "KERNEL_Y"},
521 {0x208, "KERNEL_W_M1"},
522 {0x20C, "KERNEL_H_M1"},
523 {0x210, "OFM_CBLK_WIDTH_M1"},
524 {0x214, "OFM_CBLK_HEIGHT_M1"},
525 {0x218, "OFM_CBLK_DEPTH_M1"},
526 {0x21c, "IFM_CBLK_DEPTH_M1"},
527 {0x220, "OFM_X"},
528 {0x224, "OFM_Y"},
529 {0x228, "OFM_Z"},
530 {0x22C, "IFM_Z"},
531 {0x230, "PAD_TOP"},
532 {0x234, "PAD_LEFT"},
533 {0x238, "IFM_CBLK_WIDTH"},
534 {0x23C, "IFM_CBLK_HEIGHT"},
535 {0x240, "DMA_IFM_SRC"},
536 {0x244, "DMA_IFM_SRC_HI"},
537 {0x248, "DMA_IFM_DST"},
538 {0x24c, "DMA_OFM_SRC"},
539 {0x250, "DMA_OFM_DST"},
540 {0x254, "DMA_OFM_DST_HI"},
541 {0x258, "DMA_WEIGHT_SRC"},
542 {0x25c, "DMA_WEIGHT_SRC_HI"},
543 {0x260, "DMA_CMD_SRC"},
544 {0x264, "DMA_CMD_SRC_HI"},
545 {0x268, "DMA_CMD_SIZE"},
546 {0x26c, "DMA_M2M_SRC"},
547 {0x270, "DMA_M2M_SRC_HI"},
548 {0x274, "DMA_M2M_DST"},
549 {0x278, "DMA_M2M_DST_HI"},
550 {0x27c, "CURRENT_QREAD"},
551 {0x280, "DMA_SCALE_SRC"},
552 {0x284, "DMA_SCALE_SRC_HI"},
553 {0x2BC, "CURRENT_CMD"},
554 {0x800, "IFM_PAD_TOP"},
555 {0x804, "IFM_PAD_LEFT"},
556 {0x808, "IFM_PAD_RIGHT"},
557 {0x80C, "IFM_PAD_BOTTOM"},
558 {0x810, "IFM_DEPTH_M1"},
559 {0x814, "IFM_PRECISION"},
560 {0x81C, "IFM_UPSCALE"},
561 {0x824, "IFM_ZERO_POINT"},
562 {0x828, "IFM_WIDTH0_M1"},
563 {0x82C, "IFM_HEIGHT0_M1"},
564 {0x830, "IFM_HEIGHT1_M1"},
565 {0x834, "IFM_IB_END"},
566 {0x83C, "IFM_REGION"},
567 {0x844, "OFM_WIDTH_M1"},
568 {0x848, "OFM_HEIGHT_M1"},
569 {0x84C, "OFM_DEPTH_M1"},
570 {0x850, "OFM_PRECISION"},
571 {0x854, "OFM_BLK_WIDTH_M1"},
572 {0x858, "OFM_BLK_HEIGHT_M1"},
573 {0x85C, "OFM_BLK_DEPTH_M1"},
574 {0x860, "OFM_ZERO_POINT"},
575 {0x868, "OFM_WIDTH0_M1"},
576 {0x86C, "OFM_HEIGHT0_M1"},
577 {0x870, "OFM_HEIGHT1_M1"},
578 {0x87C, "OFM_REGION"},
579 {0x880, "KERNEL_WIDTH_M1"},
580 {0x884, "KERNEL_HEIGHT_M1"},
581 {0x888, "KERNEL_STRIDE"},
582 {0x88C, "PARALLEL_MODE"},
583 {0x890, "ACC_FORMAT"},
584 {0x894, "ACTIVATION"},
585 {0x898, "ACTIVATION_MIN"},
586 {0x89C, "ACTIVATION_MAX"},
587 {0x8A0, "WEIGHT_REGION"},
588 {0x8A4, "SCALE_REGION"},
589 {0x8B4, "AB_START"},
590 {0x8BC, "BLOCKDEP"},
591 {0x8C0, "DMA0_SRC_REGION"},
592 {0x8C4, "DMA0_DST_REGION"},
593 {0x8C8, "DMA0_SIZE0"},
594 {0x8CC, "DMA0_SIZE1"},
595 {0x900, "IFM2_BROADCAST"},
596 {0x904, "IFM2_SCALAR"},
597 {0x924, "IFM2_ZERO_POINT"},
598 {0x928, "IFM2_WIDTH0_M1"},
599 {0x92C, "IFM2_HEIGHT0_M1"},
600 {0x930, "IFM2_HEIGHT1_M1"},
601 {0x934, "IFM2_IB_START"},
602 {0x93C, "IFM2_REGION"},
603 {0xA00, "IFM_BASE0"},
604 {0xA04, "IFM_BASE0_HI"},
605 {0xA08, "IFM_BASE1"},
606 {0xA0C, "IFM_BASE1_HI"},
607 {0xA10, "IFM_BASE2"},
608 {0xA14, "IFM_BASE2_HI"},
609 {0xA18, "IFM_BASE3"},
610 {0xA1C, "IFM_BASE3_HI"},
611 {0xA20, "IFM_STRIDE_X"},
612 {0xA24, "IFM_STRIDE_X_HI"},
613 {0xA28, "IFM_STRIDE_Y"},
614 {0xA2C, "IFM_STRIDE_Y_HI"},
615 {0xA30, "IFM_STRIDE_C"},
616 {0xA34, "IFM_STRIDE_C_HI"},
617 {0xA40, "OFM_BASE0"},
618 {0xA44, "OFM_BASE0_HI"},
619 {0xA48, "OFM_BASE1"},
620 {0xA4C, "OFM_BASE1_HI"},
621 {0xA50, "OFM_BASE2"},
622 {0xA54, "OFM_BASE2_HI"},
623 {0xA58, "OFM_BASE3"},
624 {0xA5C, "OFM_BASE3_HI"},
625 {0xA60, "OFM_STRIDE_X"},
626 {0xA64, "OFM_STRIDE_X_HI"},
627 {0xA68, "OFM_STRIDE_Y"},
628 {0xA6C, "OFM_STRIDE_Y_HI"},
629 {0xA70, "OFM_STRIDE_C"},
630 {0xA74, "OFM_STRIDE_C_HI"},
631 {0xA80, "WEIGHT_BASE"},
632 {0xA84, "WEIGHT_BASE_HI"},
633 {0xA88, "WEIGHT_LENGTH"},
634 {0xA8C, "WEIGHT_LENGTH_HI"},
635 {0xA90, "SCALE_BASE"},
636 {0xA94, "SCALE_BASE_HI"},
637 {0xA98, "SCALE_LENGTH"},
638 {0xAA0, "OFM_SCALE"},
639 {0xAA4, "OFM_SCALE_SHIFT"},
640 {0xAA8, "OPA_SCALE "},
641 {0xAB0, "OPB_SCALE"},
642 {0xAC0, "DMA0_SRC"},
643 {0xAC4, "DMA0_SRC_HI"},
644 {0xAC8, "DMA0_DST"},
645 {0xACC, "DMA0_DST_HI"},
646 {0xAD0, "DMA0_LEN"},
647 {0xAD4, "DMA0_LEN_HI"},
648 {0xAD8, "DMA0_SKIP0"},
649 {0xADC, "DMA0_SKIP0_HI"},
650 {0xAE0, "DMA0_SKIP1"},
651 {0xAE4, "DMA0_SKIP1_HI"},
652 {0xB00, "IFM2_BASE0"},
653 {0xB04, "IFM2_BASE0_HI"},
654 {0xB08, "IFM2_BASE1"},
655 {0xB0C, "IFM2_BASE1_HI"},
656 {0xB10, "IFM2_BASE2"},
657 {0xB14, "IFM2_BASE2_HI"},
658 {0xB18, "IFM2_BASE3"},
659 {0xB1C, "IFM2_BASE3_HI"},
660 {0xB20, "IFM2_STRIDE_X"},
661 {0xB24, "IFM2_STRIDE_X_HI"},
662 {0xB28, "IFM2_STRIDE_Y"},
663 {0xB2C, "IFM2_STRIDE_Y_HI"},
664 {0xB30, "IFM2_STRIDE_C"},
665 {0xB34, "IFM2_STRIDE_C_HI"},
666 {0xB40, "WEIGHT1_BASE"},
667 {0xB44, "WEIGHT1_BASE_HI"},
668 {0xB48, "WEIGHT1_LENGTH"},
669 {0xB4C, "WEIGHT1_LENGTH_HI"},
670 {0xB50, "SCALE1_BASE"},
671 {0xB54, "SCALE1_BASE_HI"},
672 {0xB58, "SCALE1_LENGTH"},
673};
674
675static const char *lookup_name(const name_lookup_t *lookup_table, int lookup_table_count, int find)
676{
677 int n;
678 for (n = 0; n < lookup_table_count; n++)
679 {
680 if (lookup_table[n].number == find)
681 {
682 return lookup_table[n].name;
683 }
684 }
685 // Not found
686 return 0;
687}
688
689static void dump_npu_register(int npu_reg, int npu_reg_end)
690{
691 unsigned int reg_val;
692 const char *reg_name;
693 int npu_reg_name_tbl_count = sizeof(npu_reg_name_tbl) / sizeof(npu_reg_name_tbl[0]);
694
695 LOG_INFO("dump_register %X - %X\n", npu_reg, npu_reg_end);
696 for (; npu_reg <= npu_reg_end; npu_reg += sizeof(int))
697 {
698 reg_val = read_reg(npu_reg);
699 reg_name = lookup_name(npu_reg_name_tbl, npu_reg_name_tbl_count, npu_reg);
700 LOG_INFO("[0x%.4X] 0x%.8X\t%s\n", npu_reg, reg_val, (reg_name) ? reg_name : "");
701 }
702}
703
704static const name_lookup_t cmd0_name_tbl[] = {
705 {0x000, "NPU_OP_STOP"},
706 {0x001, "NPU_OP_IRQ"},
707 {0x002, "NPU_OP_CONV"},
708 {0x003, "NPU_OP_DEPTHWISE"},
709 {0x004, "NPU_OP_VECTOR_PROD"},
710 {0x005, "NPU_OP_POOL"},
711 {0x006, "NPU_OP_ELEMENTWISE"},
712 {0x010, "NPU_OP_DMA_START"},
713 {0x011, "NPU_OP_DMA_WAIT"},
714 {0x012, "NPU_OP_KERNEL_WAIT"},
715 {0x100, "NPU_SET_IFM_PAD_TOP"},
716 {0x101, "NPU_SET_IFM_PAD_LEFT"},
717 {0x102, "NPU_SET_IFM_PAD_RIGHT"},
718 {0x103, "NPU_SET_IFM_PAD_BOTTOM"},
719 {0x104, "NPU_SET_IFM_DEPTH_M1"},
720 {0x105, "NPU_SET_IFM_PRECISION"},
721 {0x107, "NPU_SET_IFM_UPSCALE"},
722 {0x109, "NPU_SET_IFM_ZERO_POINT"},
723 {0x10A, "NPU_SET_IFM_WIDTH0_M1"},
724 {0x10B, "NPU_SET_IFM_HEIGHT0_M1"},
725 {0x10C, "NPU_SET_IFM_HEIGHT1_M1"},
726 {0x10D, "NPU_SET_IFM_IB_END"},
727 {0x10F, "NPU_SET_IFM_REGION"},
728 {0x110, "NPU_SET_OFM_BATCH_SIZE_M1"},
729 {0x111, "NPU_SET_OFM_WIDTH_M1"},
730 {0x112, "NPU_SET_OFM_HEIGHT_M1"},
731 {0x113, "NPU_SET_OFM_DEPTH_M1"},
732 {0x114, "NPU_SET_OFM_PRECISION"},
733 {0x115, "NPU_SET_OFM_BLK_WIDTH_M1"},
734 {0x116, "NPU_SET_OFM_BLK_HEIGHT_M1"},
735 {0x117, "NPU_SET_OFM_BLK_DEPTH_M1"},
736 {0x118, "NPU_SET_OFM_ZERO_POINT"},
737 {0x11A, "NPU_SET_OFM_WIDTH0_M1"},
738 {0x11B, "NPU_SET_OFM_HEIGHT0_M1"},
739 {0x11C, "NPU_SET_OFM_HEIGHT1_M1"},
740 {0x11F, "NPU_SET_OFM_REGION"},
741 {0x120, "NPU_SET_KERNEL_WIDTH_M1"},
742 {0x121, "NPU_SET_KERNEL_HEIGHT_M1"},
743 {0x122, "NPU_SET_KERNEL_STRIDE"},
744 {0x124, "NPU_SET_ACC_FORMAT"},
745 {0x125, "NPU_SET_ACTIVATION"},
746 {0x126, "NPU_SET_ACTIVATION_MIN"},
747 {0x127, "NPU_SET_ACTIVATION_MAX"},
748 {0x128, "NPU_SET_WEIGHT_REGION"},
749 {0x129, "NPU_SET_SCALE_REGION"},
750 {0x12D, "NPU_SET_AB_START"},
751 {0x12F, "NPU_SET_BLOCKDEP"},
752 {0x130, "NPU_SET_DMA0_SRC_REGION"},
753 {0x131, "NPU_SET_DMA0_DST_REGION"},
754 {0x180, "NPU_SET_IFM2_BROADCAST"},
755 {0x181, "NPU_SET_IFM2_SCALAR"},
756 {0x185, "NPU_SET_IFM2_PRECISION"},
757 {0x189, "NPU_SET_IFM2_ZERO_POINT"},
758 {0x18A, "NPU_SET_IFM2_WIDTH0_M1"},
759 {0x18B, "NPU_SET_IFM2_HEIGHT0_M1"},
760 {0x18C, "NPU_SET_IFM2_HEIGHT1_M1"},
761 {0x18D, "NPU_SET_IFM2_IB_START"},
762 {0x18F, "NPU_SET_IFM2_REGION"},
763};
764
765static const name_lookup_t cmd1_name_tbl[] = {
766 {0x000, "NPU_SET_IFM_BASE0"}, {0x001, "NPU_SET_IFM_BASE1"}, {0x002, "NPU_SET_IFM_BASE2"},
767 {0x003, "NPU_SET_IFM_BASE3"}, {0x004, "NPU_SET_IFM_STRIDE_X"}, {0x005, "NPU_SET_IFM_STRIDE_Y"},
768 {0x006, "NPU_SET_IFM_STRIDE_C"}, {0x007, "NPU_SET_IFM_STRIDE_N"}, {0x010, "NPU_SET_OFM_BASE0"},
769 {0x011, "NPU_SET_OFM_BASE1"}, {0x012, "NPU_SET_OFM_BASE2"}, {0x013, "NPU_SET_OFM_BASE3"},
770 {0x014, "NPU_SET_OFM_STRIDE_X"}, {0x015, "NPU_SET_OFM_STRIDE_Y"}, {0x016, "NPU_SET_OFM_STRIDE_C"},
771 {0x017, "NPU_SET_OFM_STRIDE_N"}, {0x020, "NPU_SET_WEIGHT_BASE"}, {0x021, "NPU_SET_WEIGHT_LENGTH"},
772 {0x022, "NPU_SET_SCALE_BASE"}, {0x023, "NPU_SET_SCALE_LENGTH"}, {0x024, "NPU_SET_OFM_SCALE"},
773 {0x025, "NPU_SET_OPA_SCALE"}, {0x026, "NPU_SET_OPB_SCALE"}, {0x030, "NPU_SET_DMA0_SRC"},
774 {0x031, "NPU_SET_DMA0_DST"}, {0x032, "NPU_SET_DMA0_LEN"}, {0x080, "NPU_SET_IFM2_BASE0"},
775 {0x081, "NPU_SET_IFM2_BASE1"}, {0x082, "NPU_SET_IFM2_BASE2"}, {0x083, "NPU_SET_IFM2_BASE3"},
776 {0x084, "NPU_SET_IFM2_STRIDE_X"}, {0x085, "NPU_SET_IFM2_STRIDE_Y"}, {0x086, "NPU_SET_IFM2_STRIDE_C"},
777};
778
779static void dump_command_stream(const uint32_t *cmd_stream, const int cms_length, int qread)
780{
781 int n;
782 int offset;
783 uint32_t cmd_val;
784 const uint8_t *cmd_ptr;
785 const char *cmd_name;
786 int cmd0_name_tbl_count = sizeof(cmd0_name_tbl) / sizeof(cmd0_name_tbl[0]);
787 int cmd1_name_tbl_count = sizeof(cmd1_name_tbl) / sizeof(cmd1_name_tbl[0]);
788
789 LOG_INFO("dump_command_stream cmd_stream = 0x%8p cms_length = %d\n", cmd_stream, cms_length);
790 for (n = 0; n < cms_length; n++)
791 {
792 // Offset
793 offset = n * sizeof(int);
794 LOG_INFO("[%.4d] ", offset);
795 // Command
796 cmd_ptr = (const uint8_t *)&cmd_stream[n];
797 LOG_INFO("0x%.2X 0x%.2X 0x%.2X 0x%.2X ", cmd_ptr[0], cmd_ptr[1], cmd_ptr[2], cmd_ptr[3]);
798 // Command name and payload
799 if (cmd_stream[n] & 0x4000)
800 {
801 cmd_name = lookup_name(cmd1_name_tbl, cmd1_name_tbl_count, cmd_stream[n] & 0x3FF);
802 n++;
803 cmd_val = cmd_stream[n];
804 cmd_ptr = (const uint8_t *)&cmd_stream[n];
805 LOG_INFO("0x%.2X 0x%.2X 0x%.2X 0x%.2X ", cmd_ptr[0], cmd_ptr[1], cmd_ptr[2], cmd_ptr[3]);
806 }
807 else
808 {
809 cmd_val = cmd_stream[n] >> 16;
810 cmd_name = lookup_name(cmd0_name_tbl, cmd0_name_tbl_count, cmd_stream[n] & 0x3FF);
811 }
812 if (cmd_name)
813 {
814 LOG_INFO("\t%s 0x%.8X", cmd_name, cmd_val);
815 }
816 if (offset == qread)
817 {
818 LOG_INFO(" <<== QREAD\n");
819 }
820 else
821 {
822 LOG_INFO("\n");
823 }
824 }
825}