From 45efe8bf6148d9d1cd7127a5d245d5e3cd6b4647 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Tue, 1 Nov 2022 22:28:17 -0600 Subject: Add cp15 primary register map --- rtl/core/cp15/map.sv | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 rtl/core/cp15/map.sv (limited to 'rtl/core/cp15') diff --git a/rtl/core/cp15/map.sv b/rtl/core/cp15/map.sv new file mode 100644 index 0000000..0c0add5 --- /dev/null +++ b/rtl/core/cp15/map.sv @@ -0,0 +1,17 @@ +`ifndef CORE_CP15_MAP_SV +`define CORE_CP15_MAP_SV + +`define CP15_CRN_CPUID 4'd0 +`define CP15_CRN_SYSCFG 4'd1 +`define CP15_CRN_TTBR 4'd2 +`define CP15_CRN_DOMAIN 4'd3 +`define CP15_CRN_FSR 4'd5 +`define CP15_CRN_FAR 4'd6 +`define CP15_CRN_CACHE 4'd7 +`define CP15_CRN_TLB 4'd8 +`define CP15_CRN_CACHE_LCK 4'd9 +`define CP15_CRN_TLB_LCK 4'd10 +`define CP15_CRN_DMA 4'd11 +`define CP15_CRN_PID 4'd13 + +`endif -- cgit v1.2.3