1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright 2022-2023, 2025 NXP 4 */ 5 #ifndef __IMX93_H__ 6 #define __IMX93_H__ 7 8 #define GICD_BASE 0x48000000 9 #define GICR_BASE 0x48040000 10 11 #define UART1_BASE 0x44380000 12 /* 13 * For Normal MU - Use MU_BASE as 0x47520000 14 * For Trust MU - Use MU_BASE as 0x47530000 15 */ 16 #define MU_BASE 0x47530000 17 #define MU_SIZE 0x10000 18 19 #define MU_TRUST_BASE 0x47530000 20 21 #endif /* __IMX93_H__ */ 22