summaryrefslogtreecommitdiff
path: root/rtl/core/core_cp15_tlb_lockdown.sv
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/core/core_cp15_tlb_lockdown.sv')
-rw-r--r--rtl/core/core_cp15_tlb_lockdown.sv18
1 files changed, 18 insertions, 0 deletions
diff --git a/rtl/core/core_cp15_tlb_lockdown.sv b/rtl/core/core_cp15_tlb_lockdown.sv
new file mode 100644
index 0000000..1972c33
--- /dev/null
+++ b/rtl/core/core_cp15_tlb_lockdown.sv
@@ -0,0 +1,18 @@
+`include "core/uarch.sv"
+
+module core_cp15_tlb_lockdown
+(
+ input logic clk,
+ rst_n,
+
+ input logic load,
+ transfer,
+ input word write,
+
+ output word read
+);
+
+ //TODO, aunque al parecer Linux no usa esto
+ assign read = 0;
+
+endmodule