Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aarch64/layout: Increase aarch64 system memory layout to 2TB. #355

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/arch/aarch64/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ extern "Rust" {
}

pub mod map {
// Create page table for 128G is enough
pub const END: usize = 0x20_0000_0000;
// Create page table for 2T
pub const END: usize = 0x20_000_000_000;

// Firmware region won't be used by this firmware, so merge it into mmio region
// is harmless and better for management.
Expand Down