From b8bcf1351d6d1260595f515ead22bc2abe4e08c8 Mon Sep 17 00:00:00 2001 From: Anton Moberg Date: Mon, 29 Mar 2021 10:02:25 +0200 Subject: MLBEDSW-4301 - Verification check custom_dma Added: custom_dma bit to config structs Added: hardware verification check for custom_dma Change-Id: I31dca56063b3ca773d02f0adf30d21facfd0b80d --- src/ethosu55_interface.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/ethosu55_interface.h') 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; }; -- cgit v1.2.1