From e04ea590193ec93c8918a4098e37898d6bdfab63 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Tue, 29 Dec 2020 01:34:17 +0200 Subject: [PATCH] [wip] Add dummy cache module Needs CLIDR_EL1 implementantion in cortex-a first --- nucleus/src/arch/aarch64/memory/cache.rs | 3 +++ nucleus/src/arch/aarch64/memory/mod.rs | 1 + 2 files changed, 4 insertions(+) create mode 100644 nucleus/src/arch/aarch64/memory/cache.rs diff --git a/nucleus/src/arch/aarch64/memory/cache.rs b/nucleus/src/arch/aarch64/memory/cache.rs new file mode 100644 index 0000000..104aeaa --- /dev/null +++ b/nucleus/src/arch/aarch64/memory/cache.rs @@ -0,0 +1,3 @@ +/* + * SPDX-License-Identifier: BlueOak-1.0.0 + */ diff --git a/nucleus/src/arch/aarch64/memory/mod.rs b/nucleus/src/arch/aarch64/memory/mod.rs index 2df8fe7..5e9dd12 100644 --- a/nucleus/src/arch/aarch64/memory/mod.rs +++ b/nucleus/src/arch/aarch64/memory/mod.rs @@ -11,6 +11,7 @@ use { }; mod addr; +mod cache; pub mod mmu; pub use addr::PhysAddr;