From 4e8c4a1d151c17fd144b84faa630582b3f592670 Mon Sep 17 00:00:00 2001 From: Dongju Chae Date: Tue, 26 Jan 2021 12:09:02 +0900 Subject: [PATCH] [npubinfmt] add extra info to store number of visa insts This patch adds extra info to npubinfmt storing number of visa insts. Signed-off-by: Dongju Chae --- include/common/npubinfmt.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/common/npubinfmt.h b/include/common/npubinfmt.h index 0fcf85e..fb8d371 100644 --- a/include/common/npubinfmt.h +++ b/include/common/npubinfmt.h @@ -225,6 +225,9 @@ typedef struct { /** DSP-specific variables */ uint32_t dspm_size; /**< The size of DSP memory */ + + /** vISA instructions */ + uint32_t visa_num_plus_one; /**< Number of vISA insts + 1 (i.e., unknown if zero) */ }; /** If npubinfmt should be changed, append here as another version */ }; -- 2.7.4