1 // See LICENSE for license details. 2 3 #ifndef _SIFIVE_CLIC_H 4 #define _SIFIVE_CLIC_H 5 6 #define CLIC_CTRL_BASE 0x02000000UL 7 #define CLIC_HART0_BASE 0x02800000UL 8 9 #define CLIC_MSIP_OFFSET 0x0000 10 #define CLIC_MTIMECMP_OFFSET 0x4000 11 #define CLIC_MTIME_OFFSET 0xBFF8 12 #define CLIC_INTIP_OFFSET 0x000 13 #define CLIC_INTIE_OFFSET 0x400 14 #define CLIC_INTCFG_OFFSET 0x800 15 #define CLIC_CFG_OFFSET 0xc00 16 17 #endif /* _SIFIVE_CLIC_H */ 18