aboutsummaryrefslogtreecommitdiff
path: root/src/ethosu_driver.c
diff options
context:
space:
mode:
authorJonny Svärd <jonny.svaerd@arm.com>2024-04-25 21:23:31 +0200
committerJonny Svärd <jonny.svaerd@arm.com>2024-05-07 10:20:03 +0000
commit9622608a5cc318c0933bcce720b59737d03bfb6f (patch)
tree4c08612af613cc52fd929736df3012329df0f252 /src/ethosu_driver.c
parent826638e203ededd31825dbf767130e3a17d4218c (diff)
downloadethos-u-core-driver-main.tar.gz
Add initial support for Ethos-U85HEAD24.05-rc1main
Change-Id: I28d7cb72c149a636a4f1d8ca6931316486b1829a Signed-off-by: Jonny Svärd <jonny.svaerd@arm.com>
Diffstat (limited to 'src/ethosu_driver.c')
-rw-r--r--src/ethosu_driver.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ethosu_driver.c b/src/ethosu_driver.c
index 5128455..919fc11 100644
--- a/src/ethosu_driver.c
+++ b/src/ethosu_driver.c
@@ -23,10 +23,14 @@
#include "ethosu_device.h"
#include "ethosu_log.h"
-#ifdef ETHOSU55
+#if defined(ETHOSU55)
#include "ethosu_config_u55.h"
-#else
+#elif defined(ETHOSU65)
#include "ethosu_config_u65.h"
+#elif defined(ETHOSU85)
+#include "ethosu_config_u85.h"
+#else
+#error Missing device type macro
#endif
#include <assert.h>