aarch64-paging
aarch64-paging
ํฌ๋ ์ดํธ๋ฅผ ์ฌ์ฉํ๋ฉด AArch64 ๊ฐ์ ๋ฉ๋ชจ๋ฆฌ ์์คํ
์ํคํ
์ฒ์ ๋ฐ๋ผ ํ์ด์ง ํ
์ด๋ธ์ ๋ง๋ค ์ ์์ต๋๋ค.
use aarch64_paging::{ idmap::IdMap, paging::{Attributes, MemoryRegion}, }; const ASID: usize = 1; const ROOT_LEVEL: usize = 1; // Create a new page table with identity mapping. let mut idmap = IdMap::new(ASID, ROOT_LEVEL); // Map a 2 MiB region of memory as read-only. idmap.map_range( &MemoryRegion::new(0x80200000, 0x80400000), Attributes::NORMAL | Attributes::NON_GLOBAL | Attributes::READ_ONLY, ).unwrap(); // Set `TTBR0_EL1` to activate the page table. idmap.activate();
- ํ์ฌ๋ EL1๋ง ์ง์ํ์ง๋ง ๋ค๋ฅธ ์ต์ ์ ๋ ๋ฒจ(Exception Level: EL)๋ ์ด๋ ต์ง ์๊ฒ ์ถ๊ฐํ ์ ์์ต๋๋ค.
- Android์์ ๋ณดํธ๋ VM ํ์จ์ด์ ์ฌ์ฉ๋ฉ๋๋ค.
- ์ด ์์๋ฅผ ๊ฐ๋จํ๊ฒ ์คํํ๋ ๋ฐฉ๋ฒ์ ์์ต๋๋ค. ์ค์ ํ๋์จ์ด ๋๋ QEMU์์ ์คํํด์ผ ํ๊ธฐ ๋๋ฌธ์ ๋๋ค.