RISC-V/Paging: Difference between revisions
(Describe PPNs and VPNs) |
No edit summary |
||
Line 37: | Line 37: | ||
=== Sv39 === | === Sv39 === | ||
TODO | Sv39 is the simplest paging mode for 64-bit systems (though larger modes are not too much more difficult to implement). It supports the standard 4KiB pages, as well as 2MiB megapages and 1GiB gigapages. | ||
TODO: actually describe what a page table looks like, and also PTE's RWX encoding | |||
==== Address and PTE Layouts ==== | |||
{| class="wikitable mw-collapsible" | |||
|+ Sv39 virtual address | |||
|- | |||
! Bit Range (inclusive) !! Length (bits) !! Description | |||
|- | |||
| 0-11 || 12 || Page offset | |||
|- | |||
| 12-20 || 9 || Page VPN (<nowiki>VPN[0]</nowiki>) | |||
|- | |||
| 21-29 || 9 || Megapage VPN (<nowiki>VPN[1]</nowiki>) | |||
|- | |||
| 30-38 || 9 || Gigapage VPN (<nowiki>VPN[2]</nowiki>) | |||
|} | |||
{| class="wikitable mw-collapsible" | |||
|+ Sv39 physical address | |||
|- | |||
! Bit Range (inclusive) !! Length (bits) !! Description | |||
|- | |||
| 0-11 || 12 || Page offset | |||
|- | |||
| 12-20 || 9 || <nowiki>PPN[0]</nowiki> | |||
|- | |||
| 21-29 || 9 || <nowiki>PPN[1]</nowiki> | |||
|- | |||
| 30-55 || 26 || <nowiki>PPN[2]</nowiki> | |||
|} | |||
{| class="wikitable mw-collapsible" | |||
|+ Sv39 page table entry layout | |||
|- | |||
! Bit Range (inclusive) !! Length (bits) !! Description | |||
|- | |||
| 0 || 1 || Valid flag (V) | |||
|- | |||
| 1 || 1 || Readable flag (R) | |||
|- | |||
| 2 || 1 || Writable flag (W) | |||
|- | |||
| 3 || 1 || Executable flag (X) | |||
|- | |||
| 4 || 1 || U-mode accessible flag (U) | |||
|- | |||
| 5 || 1 || Global flag (G) | |||
|- | |||
| 6 || 1 || Accessed flag (A) | |||
|- | |||
| 7 || 1 || Dirty flag (D) | |||
|- | |||
| 8-9 || 2 || RSW (TODO) | |||
|- | |||
| 10-18 || 9 || <nowiki>PPN[0]</nowiki> | |||
|- | |||
| 19-27 || 9 || <nowiki>PPN[1]</nowiki> | |||
|- | |||
| 28-53 || 26 || <nowiki>PPN[2]</nowiki> | |||
|- | |||
| 54-60 || 7 || Reserved | |||
|- | |||
| 61-62 || 2 || PBMT (TODO) | |||
|- | |||
| 63 || 1 || N bit (TODO) | |||
|} | |||
=== Sv48 === | === Sv48 === |
Revision as of 03:11, 24 November 2022
Paging in RISC-V can be enabled by first setting up a page table, then pointing the CPU to that page table via the satp
CSR. This article will describe these steps.
Terminology
There are many acronyms and other terms that are used in the RISC-V specification which, for the purpose of brevity and consistency, will be used in this article as well. I will assume a baseline knowledge of the purpose and basics of paging and virtual addressing.
PPNs and VPNs
A physical page number (or PPN) is a unique, page-aligned identifier for a page in physical memory. The number of PPN segments for an address will depend on the paging mode.
To construct a PPN from a physical address, you can simply (logically, not arithmetically) shift the value right by 12 bits (as 2**12 = 4096). Note that this operation will truncate the offset into the page, if the address was not page-aligned.
A virtual page number (or VPN) is very similar to a PPN, but in the virtual address space. Again, the number of VPN segments for a virtual address will depend on the paging mode.
RISC-V Page Table Layout
There are various paging modes available in the RISC-V ISA, differing by the number of virtual address bits:
Name | Memory Size | SXLEN |
---|---|---|
Sv32 | 4GiB | 32-bit only |
Sv39 | 512GiB | 64-bit only |
Sv48 | 256TiB | 64-bit only |
Sv57 | 128PiB | 64-bit only |
Feel free to choose between these modes as you see fit; this page will describe all of them. Note that in 64-bit systems, Sv39 is more than enough for most hobby operating systems (though it is not much more difficult to go further).
Sv32
TODO
Sv39
Sv39 is the simplest paging mode for 64-bit systems (though larger modes are not too much more difficult to implement). It supports the standard 4KiB pages, as well as 2MiB megapages and 1GiB gigapages.
TODO: actually describe what a page table looks like, and also PTE's RWX encoding
Address and PTE Layouts
Bit Range (inclusive) | Length (bits) | Description |
---|---|---|
0-11 | 12 | Page offset |
12-20 | 9 | Page VPN (VPN[0]) |
21-29 | 9 | Megapage VPN (VPN[1]) |
30-38 | 9 | Gigapage VPN (VPN[2]) |
Bit Range (inclusive) | Length (bits) | Description |
---|---|---|
0-11 | 12 | Page offset |
12-20 | 9 | PPN[0] |
21-29 | 9 | PPN[1] |
30-55 | 26 | PPN[2] |
Bit Range (inclusive) | Length (bits) | Description |
---|---|---|
0 | 1 | Valid flag (V) |
1 | 1 | Readable flag (R) |
2 | 1 | Writable flag (W) |
3 | 1 | Executable flag (X) |
4 | 1 | U-mode accessible flag (U) |
5 | 1 | Global flag (G) |
6 | 1 | Accessed flag (A) |
7 | 1 | Dirty flag (D) |
8-9 | 2 | RSW (TODO) |
10-18 | 9 | PPN[0] |
19-27 | 9 | PPN[1] |
28-53 | 26 | PPN[2] |
54-60 | 7 | Reserved |
61-62 | 2 | PBMT (TODO) |
63 | 1 | N bit (TODO) |
Sv48
TODO
Sv57
TODO
Enabling Paging
TODO