refactor: 📦 Replace cortex-a with aarch64-cpu

This commit is contained in:
Berkus Decker 2022-11-13 00:10:25 +02:00 committed by Berkus Decker
parent b1bf9dc09d
commit 1bcbe3271a
12 changed files with 24 additions and 24 deletions

24
Cargo.lock generated
View File

@ -23,6 +23,15 @@ dependencies = [
"mach 0.1.2", "mach 0.1.2",
] ]
[[package]]
name = "aarch64-cpu"
version = "9.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3aceb88e55ba626a5479279268d009a92d9d00eacce0de1b8c236c7ad31b7225"
dependencies = [
"tock-registers",
]
[[package]] [[package]]
name = "aho-corasick" name = "aho-corasick"
version = "0.7.19" version = "0.7.19"
@ -94,10 +103,10 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
name = "chainboot" name = "chainboot"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"aarch64-cpu",
"bit_field", "bit_field",
"bitflags", "bitflags",
"cfg-if", "cfg-if",
"cortex-a",
"machine", "machine",
"seahash", "seahash",
"snafu", "snafu",
@ -145,15 +154,6 @@ dependencies = [
"os_str_bytes", "os_str_bytes",
] ]
[[package]]
name = "cortex-a"
version = "8.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cd4524931a4e0ec50ae91f0d55f571f31ffe11dd9ce2f9905b8343c018c25bb"
dependencies = [
"tock-registers",
]
[[package]] [[package]]
name = "crossterm" name = "crossterm"
version = "0.25.0" version = "0.25.0"
@ -363,11 +363,11 @@ dependencies = [
name = "machine" name = "machine"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"aarch64-cpu",
"bit_field", "bit_field",
"bitflags", "bitflags",
"buddy-alloc", "buddy-alloc",
"cfg-if", "cfg-if",
"cortex-a",
"once_cell", "once_cell",
"qemu-exit", "qemu-exit",
"snafu", "snafu",
@ -433,10 +433,10 @@ dependencies = [
name = "nucleus" name = "nucleus"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"aarch64-cpu",
"bit_field", "bit_field",
"bitflags", "bitflags",
"cfg-if", "cfg-if",
"cortex-a",
"machine", "machine",
"snafu", "snafu",
"tock-registers", "tock-registers",

View File

@ -25,7 +25,7 @@ rpi4 = ["machine/rpi4"]
[dependencies] [dependencies]
machine = { path = "../../machine" } machine = { path = "../../machine" }
cortex-a = "8.0" aarch64-cpu = "9.0"
tock-registers = "0.8.1" tock-registers = "0.8.1"
ux = { version = "0.1", default-features = false } ux = { version = "0.1", default-features = false }
usize_conversions = "0.2" usize_conversions = "0.2"

View File

@ -4,8 +4,8 @@
#[link_section = ".text.chainboot.entry"] #[link_section = ".text.chainboot.entry"]
pub unsafe extern "C" fn _start() -> ! { pub unsafe extern "C" fn _start() -> ! {
use { use {
aarch64_cpu::registers::{MPIDR_EL1, SP},
core::cell::UnsafeCell, core::cell::UnsafeCell,
cortex_a::registers::{MPIDR_EL1, SP},
machine::endless_sleep, machine::endless_sleep,
tock_registers::interfaces::{Readable, Writeable}, tock_registers::interfaces::{Readable, Writeable},
}; };

View File

@ -8,8 +8,8 @@
#![no_builtins] #![no_builtins]
use { use {
aarch64_cpu::asm::barrier,
core::hash::Hasher, core::hash::Hasher,
cortex_a::asm::barrier,
machine::{ machine::{
devices::SerialOps, devices::SerialOps,
platform::rpi3::{gpio::GPIO, pl011_uart::PL011Uart, BcmHost}, platform::rpi3::{gpio::GPIO, pl011_uart::PL011Uart, BcmHost},

View File

@ -29,7 +29,7 @@ rpi4 = []
[dependencies] [dependencies]
qemu-exit = "3.0" qemu-exit = "3.0"
cortex-a = "8.0" aarch64-cpu = "9.0"
tock-registers = "0.8.1" tock-registers = "0.8.1"
ux = { version = "0.1", default-features = false } ux = { version = "0.1", default-features = false }
usize_conversions = "0.2" usize_conversions = "0.2"

View File

@ -10,12 +10,12 @@
use { use {
crate::endless_sleep, crate::endless_sleep,
aarch64_cpu::{asm, registers::*},
core::{ core::{
cell::UnsafeCell, cell::UnsafeCell,
slice, slice,
sync::atomic::{self, Ordering}, sync::atomic::{self, Ordering},
}, },
cortex_a::{asm, registers::*},
tock_registers::interfaces::{Readable, Writeable}, tock_registers::interfaces::{Readable, Writeable},
}; };

View File

@ -1,8 +1,8 @@
//! JTAG helper functions. //! JTAG helper functions.
use { use {
aarch64_cpu::asm,
core::ptr::{read_volatile, write_volatile}, core::ptr::{read_volatile, write_volatile},
cortex_a::asm,
}; };
#[no_mangle] #[no_mangle]

View File

@ -20,7 +20,7 @@ use {
platform, println, platform, println,
}, },
core::intrinsics::unlikely, core::intrinsics::unlikely,
cortex_a::{ aarch64_cpu::{
asm::barrier, asm::barrier,
registers::{ID_AA64MMFR0_EL1, SCTLR_EL1, TCR_EL1, TTBR0_EL1}, registers::{ID_AA64MMFR0_EL1, SCTLR_EL1, TCR_EL1, TTBR0_EL1},
}, },
@ -84,7 +84,7 @@ impl<const AS_SIZE: usize> AddressSpace<AS_SIZE> {
impl MemoryManagementUnit { impl MemoryManagementUnit {
/// Setup function for the MAIR_EL1 register. /// Setup function for the MAIR_EL1 register.
fn set_up_mair(&self) { fn set_up_mair(&self) {
use cortex_a::registers::MAIR_EL1; use aarch64_cpu::registers::MAIR_EL1;
// Define the three memory types that we will map: Normal DRAM, Uncached and device. // Define the three memory types that we will map: Normal DRAM, Uncached and device.
MAIR_EL1.write( MAIR_EL1.write(
// Attribute 2 -- Device Memory // Attribute 2 -- Device Memory

View File

@ -5,7 +5,7 @@
//! Implementation of aarch64 kernel functions. //! Implementation of aarch64 kernel functions.
use cortex_a::asm; use aarch64_cpu::asm;
mod boot; mod boot;
#[cfg(feature = "jtag")] #[cfg(feature = "jtag")]

View File

@ -51,7 +51,7 @@
use { use {
crate::{arch::endless_sleep, println}, crate::{arch::endless_sleep, println},
cortex_a::{ aarch64_cpu::{
asm::barrier, asm::barrier,
registers::{ESR_EL1, FAR_EL1, SPSR_EL1, VBAR_EL1}, registers::{ESR_EL1, FAR_EL1, SPSR_EL1, VBAR_EL1},
}, },

View File

@ -14,6 +14,7 @@
use { use {
super::BcmHost, super::BcmHost,
crate::{platform::MMIODerefWrapper, println, DMA_ALLOCATOR}, crate::{platform::MMIODerefWrapper, println, DMA_ALLOCATOR},
aarch64_cpu::asm::barrier,
core::{ core::{
alloc::{AllocError, Allocator, Layout}, alloc::{AllocError, Allocator, Layout},
mem, mem,
@ -21,7 +22,6 @@ use {
result::Result as CoreResult, result::Result as CoreResult,
sync::atomic::{compiler_fence, Ordering}, sync::atomic::{compiler_fence, Ordering},
}, },
cortex_a::asm::barrier,
snafu::Snafu, snafu::Snafu,
tock_registers::{ tock_registers::{
interfaces::{Readable, Writeable}, interfaces::{Readable, Writeable},

View File

@ -28,7 +28,7 @@ rpi4 = ["machine/rpi4"]
[dependencies] [dependencies]
machine = { path = "../machine" } machine = { path = "../machine" }
cortex-a = "8.0" aarch64-cpu = "9.0"
tock-registers = "0.8.1" tock-registers = "0.8.1"
ux = { version = "0.1", default-features = false } ux = { version = "0.1", default-features = false }
usize_conversions = "0.2" usize_conversions = "0.2"