aboutsummaryrefslogtreecommitdiff
path: root/src/ethosu55_interface.h
diff options
context:
space:
mode:
authorAnton Moberg <anton.moberg@arm.com>2021-03-29 10:02:25 +0200
committerAnton Moberg <anton.moberg@arm.com>2021-04-13 09:22:28 +0200
commitb8bcf1351d6d1260595f515ead22bc2abe4e08c8 (patch)
tree8d5d6befa7039c67f4b9d32b041bc9208c4241f6 /src/ethosu55_interface.h
parent0a6142904a712a1f1c9ce16bb364c3e9d2434dd2 (diff)
downloadethos-u-core-driver-b8bcf1351d6d1260595f515ead22bc2abe4e08c8.tar.gz
MLBEDSW-4301 - Verification check custom_dma
Added: custom_dma bit to config structs Added: hardware verification check for custom_dma Change-Id: I31dca56063b3ca773d02f0adf30d21facfd0b80d
Diffstat (limited to 'src/ethosu55_interface.h')
-rw-r--r--src/ethosu55_interface.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ethosu55_interface.h b/src/ethosu55_interface.h
index b6834a8..0d1ee6c 100644
--- a/src/ethosu55_interface.h
+++ b/src/ethosu55_interface.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020 Arm Limited. All rights reserved.
+ * Copyright (c) 2019-2021 Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
@@ -2254,8 +2254,9 @@ struct config_r
// MACs/clock cycle.
uint32_t cmd_stream_version : 4; // command stream version accepted by this NPU.
uint32_t shram_size : 8; // Size in KB of SHRAM in the range 8 to 48.
- uint32_t reserved0 : 12;
- uint32_t product : 4; // Product configuration
+ uint32_t reserved0 : 11;
+ uint32_t custom_dma : 1; // Custom DMA enable bit.
+ uint32_t product : 4; // Product configuration
};
uint32_t word;
};