aboutsummaryrefslogtreecommitdiff
path: root/include/hw/arm
diff options
context:
space:
mode:
authorJackson Donaldson <jackson88044@gmail.com>2025-07-04 18:32:39 -0400
committerPeter Maydell <peter.maydell@linaro.org>2025-07-08 17:31:59 +0100
commit4b3a1eb0664db2df02ff4f8affe6e7bda1edaa85 (patch)
tree06948984f4669ef828e2ac09468f7783dd584d4b /include/hw/arm
parent33dfff7e3405e9c7e877556d5f7050da4af0304f (diff)
downloadqemu-4b3a1eb0664db2df02ff4f8affe6e7bda1edaa85.zip
qemu-4b3a1eb0664db2df02ff4f8affe6e7bda1edaa85.tar.gz
qemu-4b3a1eb0664db2df02ff4f8affe6e7bda1edaa85.tar.bz2
MAX78000: Add AES to SOC
This commit adds AES to max78000_soc Signed-off-by: Jackson Donaldson <jcksn@duck.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20250704223239.248781-12-jcksn@duck.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/arm')
-rw-r--r--include/hw/arm/max78000_soc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/arm/max78000_soc.h b/include/hw/arm/max78000_soc.h
index 528598c..a203079 100644
--- a/include/hw/arm/max78000_soc.h
+++ b/include/hw/arm/max78000_soc.h
@@ -11,6 +11,7 @@
#include "hw/or-irq.h"
#include "hw/arm/armv7m.h"
+#include "hw/misc/max78000_aes.h"
#include "hw/misc/max78000_gcr.h"
#include "hw/misc/max78000_icc.h"
#include "hw/char/max78000_uart.h"
@@ -41,6 +42,7 @@ struct MAX78000State {
Max78000IccState icc[MAX78000_NUM_ICC];
Max78000UartState uart[MAX78000_NUM_UART];
Max78000TrngState trng;
+ Max78000AesState aes;
Clock *sysclk;
};