only compile arch specific code for cortex-a #17
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,7 +1,7 @@
|
||||
target
|
||||
xsct-output.log
|
||||
app.map
|
||||
|
||||
/app.map
|
||||
/xsct-output.log
|
||||
/.vscode
|
||||
/Cargo.lock
|
||||
/.cargo/config.toml
|
||||
|
||||
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
# [unreleased]
|
||||
|
||||
# [v0.1.1] 2025-10-10
|
||||
|
||||
Documentation fixes.
|
||||
|
||||
# [v0.1.0] 2025-10-09
|
||||
|
||||
Initial release
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "zynq7000-hal"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
||||
edition = "2024"
|
||||
description = "Hardware Abstraction Layer (HAL) for the Zynq7000 family of SoCs"
|
||||
@@ -52,4 +52,6 @@ approx = "0.5"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
features = ["alloc"]
|
||||
targets = ["armv7a-none-eabihf"]
|
||||
cargo-args = ["-Z", "build-std=core"]
|
||||
rustdoc-args = ["--generate-link-to-definition"]
|
||||
|
||||
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
# [unreleased]
|
||||
|
||||
# [v0.1.1] 2025-10-10
|
||||
|
||||
Documentation fixes.
|
||||
|
||||
# [v0.1.0] 2025-10-09
|
||||
|
||||
Initial release
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "zynq7000-mmu"
|
||||
description = "Zynq7000 MMU structures"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
edition = "2024"
|
||||
license = "MIT OR Apache-2.0"
|
||||
homepage = "https://egit.irs.uni-stuttgart.de/rust/zynq7000-rs"
|
||||
@@ -13,5 +13,13 @@ categories = ["embedded", "no-std", "hardware-support"]
|
||||
thiserror = { version = "2", default-features = false }
|
||||
cortex-ar = { version = "0.3" }
|
||||
|
||||
[build-dependencies]
|
||||
arm-targets = { version = "0.3" }
|
||||
|
||||
[features]
|
||||
tools = []
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["armv7a-none-eabihf"]
|
||||
cargo-args = ["-Z", "build-std=core"]
|
||||
rustdoc-args = ["--generate-link-to-definition"]
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
[](https://crates.io/crates/zynq7000-mmu)
|
||||
[](https://docs.rs/zynq7000-mmu)
|
||||
[](https://github.com/us-irs/zynq7000-rs/actions/workflows/ci.yml)
|
||||
|
||||
Zynq7000 Memory Management Unit (MMU) library
|
||||
=========
|
||||
|
||||
|
||||
3
zynq/zynq7000-mmu/build.rs
Normal file
3
zynq/zynq7000-mmu/build.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
arm_targets::process();
|
||||
}
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
use core::cell::UnsafeCell;
|
||||
use cortex_ar::mmu::L1Section;
|
||||
#[cfg(not(feature = "tools"))]
|
||||
#[cfg(all(not(feature = "tools"), arm_profile = "a"))]
|
||||
use cortex_ar::{
|
||||
asm::{dsb, isb},
|
||||
cache::clean_and_invalidate_l1_data_cache,
|
||||
@@ -39,7 +39,7 @@ impl L1TableRaw {
|
||||
self.0.as_mut_ptr() as *mut _
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "tools"))]
|
||||
#[cfg(all(not(feature = "tools"), arm_profile = "a"))]
|
||||
pub fn update(
|
||||
&mut self,
|
||||
addr: u32,
|
||||
@@ -92,7 +92,7 @@ impl<'a> L1TableWrapper<'a> {
|
||||
}
|
||||
|
||||
impl L1TableWrapper<'_> {
|
||||
#[cfg(not(feature = "tools"))]
|
||||
#[cfg(all(not(feature = "tools"), arm_profile = "a"))]
|
||||
pub fn update(
|
||||
&mut self,
|
||||
addr: u32,
|
||||
|
||||
@@ -16,9 +16,14 @@ cortex-ar = { version = "0.3" }
|
||||
arbitrary-int = "2"
|
||||
zynq7000-mmu = { path = "../zynq7000-mmu", version = "0.1" }
|
||||
|
||||
[build-dependencies]
|
||||
arm-targets = { version = "0.3" }
|
||||
|
||||
[features]
|
||||
default = ["rt"]
|
||||
rt = ["dep:cortex-a-rt"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["armv7a-none-eabihf"]
|
||||
cargo-args = ["-Z", "build-std=core"]
|
||||
rustdoc-args = ["--generate-link-to-definition"]
|
||||
|
||||
3
zynq/zynq7000-rt/build.rs
Normal file
3
zynq/zynq7000-rt/build.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
arm_targets::process();
|
||||
}
|
||||
@@ -9,20 +9,20 @@
|
||||
//! - Modification to the stack setup code, because a different linker script is used.
|
||||
#![no_std]
|
||||
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||
#[cfg(feature = "rt")]
|
||||
#[cfg(all(feature = "rt", arm_profile = "a"))]
|
||||
pub use cortex_a_rt::*;
|
||||
|
||||
#[cfg(feature = "rt")]
|
||||
use zynq7000_mmu::L1TableWrapper;
|
||||
|
||||
pub mod mmu;
|
||||
#[cfg(feature = "rt")]
|
||||
#[cfg(all(feature = "rt", arm_profile = "a"))]
|
||||
mod mmu_table;
|
||||
#[cfg(feature = "rt")]
|
||||
#[cfg(all(feature = "rt", arm_profile = "a"))]
|
||||
pub mod rt;
|
||||
|
||||
/// Retrieves a mutable reference to the MMU L1 page table.
|
||||
#[cfg(feature = "rt")]
|
||||
#[cfg(all(feature = "rt", arm_profile = "a"))]
|
||||
pub fn mmu_l1_table_mut() -> L1TableWrapper<'static> {
|
||||
let mmu_table = mmu_table::MMU_L1_PAGE_TABLE.0.get();
|
||||
// Safety: We retrieve a reference to the MMU page table singleton.
|
||||
|
||||
@@ -23,4 +23,6 @@ once_cell = { version = "1", default-features = false, features = ["critical-sec
|
||||
approx = "0.5"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["armv7a-none-eabihf"]
|
||||
cargo-args = ["-Z", "build-std=core"]
|
||||
rustdoc-args = ["--generate-link-to-definition"]
|
||||
|
||||
Reference in New Issue
Block a user