diff options
| author | Jackson Donaldson <jackson88044@gmail.com> | 2025-07-04 18:32:37 -0400 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2025-07-08 17:31:38 +0100 |
| commit | 5adeb160322ff827f3e81f38e9481fb4896670e8 (patch) | |
| tree | a1c63d881c208a1865cb8a7cd5a169e799fe5b32 /include/hw | |
| parent | 069852d159a18219eb19281b146d612849a84e03 (diff) | |
| download | focaccia-qemu-5adeb160322ff827f3e81f38e9481fb4896670e8.tar.gz focaccia-qemu-5adeb160322ff827f3e81f38e9481fb4896670e8.zip | |
MAX78000: Add TRNG to SOC
This commit adds TRNG to max78000_soc Signed-off-by: Jackson Donaldson Message-id: 20250704223239.248781-10-jcksn@duck.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw')
| -rw-r--r-- | include/hw/arm/max78000_soc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/arm/max78000_soc.h b/include/hw/arm/max78000_soc.h index 919aca0855..528598cfcb 100644 --- a/include/hw/arm/max78000_soc.h +++ b/include/hw/arm/max78000_soc.h @@ -14,6 +14,7 @@ #include "hw/misc/max78000_gcr.h" #include "hw/misc/max78000_icc.h" #include "hw/char/max78000_uart.h" +#include "hw/misc/max78000_trng.h" #include "qom/object.h" #define TYPE_MAX78000_SOC "max78000-soc" @@ -39,6 +40,7 @@ struct MAX78000State { Max78000GcrState gcr; Max78000IccState icc[MAX78000_NUM_ICC]; Max78000UartState uart[MAX78000_NUM_UART]; + Max78000TrngState trng; Clock *sysclk; }; |