aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <kwojtus@protonmail.com>2020-01-15 02:10:05 +0100
committerWojtek Kosior <kwojtus@protonmail.com>2020-01-15 02:10:05 +0100
commitf5c270d1b5177a9c0c006356ed2b8b32301d7491 (patch)
tree6d4c247ec1001fbdd26e0aef7f76e0cb2532d782
parentc5532c2b0fcca6ddfb838f050231fabbf92cdcaa (diff)
downloadrpi-MMU-example-f5c270d1b5177a9c0c006356ed2b8b32301d7491.tar.gz
rpi-MMU-example-f5c270d1b5177a9c0c006356ed2b8b32301d7491.zip
add more explaination about how MMU works
-rw-r--r--MMU-explained.txt43
1 files changed, 42 insertions, 1 deletions
diff --git a/MMU-explained.txt b/MMU-explained.txt
index af350ff..61fbd9c 100644
--- a/MMU-explained.txt
+++ b/MMU-explained.txt
@@ -14,5 +14,46 @@ This aids operating system's memory management in several ways
A given mapping can be made valid for only one execution mode (i.e. region only accessible from privileged mode) or only certain types of accesses (i.e. a memory region can be made non-executable, which guards against accidental jumping there by program code (important for countering buffer-overflow exploits)). An unallowed access triggers a processor exception, which passes control to an appropriate interrupt service routine.
-General configuration of the MMU in ARM processors it is present on is done through registers of the appropriate coprocessor (cp15). Translations are managed through translation table. It is an array of 32-bit or 64-bit entries describing how their corresponding memory regions should be mapped. A number of leftmost bits of a virtual address constitutes an index into the translation table to be used for translating it. This way no virtual addresses need to be stored in the table and MMU can perform translations in O(1) time.
+General configuration of the MMU in ARM processors it is present on is done through registers of the appropriate coprocessor (cp15). Translations are managed through translation table. It is an array of 32-bit or 64-bit entries (also called descriptors) describing how their corresponding memory regions should be mapped. A number of leftmost bits of a virtual address constitutes an index into the translation table to be used for translating it. This way no virtual addresses need to be stored in the table and MMU can perform translations in O(1) time.
+
+
+
+Coprocessor 15 contains several registers, that control the behaviour of the MMU. They are all accessed through mcr and mrc arm instructions.
+1. SCTLR, System Control Register - "provides the top level control of the system, including its memory system"
+ Bits of this register control, among other things:
+ · whether the MMU is enabled
+ · whether data cache is enabled
+ · whether instruction cache is enabled
+ · whether TEX remap is enabled
+ TEX remap is a feacher, that changes how some translation table entry bit fields (called C, B and TEX) are used. We're not using TEX remap in our project.
+ · whether access flags are enabled
+ Enabling access flag causes one translation table descriptor bit normally used to specify access permissions of a region to be used as access flag. We don't use this feature either
+2. DACR, Domain Access Control Register - "defines the access permission for each of the sixteen memory domains"
+ Entries in translation table define which of available 16 memory domains a memory region belongs to. Bits of DACR specify what permissions apply to each of the domains. Possible setting are to allow accesses to regions based on settings in translation table descriptor or to allow/disallow all accesses regardless of access permission bits in translation table.
+3. TTBR0, Translation Table Base Register 0 - "holds the base address of translation table 0, and information about the memory it occupies"
+ System mode programmer can choose (with respect to some alignment requirements) where in the physical memory to put the translation table. Chosen address (actually, only a number of it's leftmost bits) has to be put in TTBR for the MMU to know where the table lies. Other bits of this register control some memory attributes relevant for accesses to table entries by the MMU
+3. TTBR1, Translation Table Base Register 1 - simillar function to TTBR0 (see below for explaination of dual TTBR)
+4. TTBCR, Translation Table Base Control Register
+ Bits of this register control
+ · How TLBs (Translation Lookaside Buffers) are used. TLBs are a mechanism of caching translation table entries.
+ · Whether to use some extension feature, that changes traslation table entries and TTBR* lengths to 64-bit (we're not using this, so we won't go into details)
+ · How a translation table is selected. There can be 2 translation tables and there are 2 cp15 registers (TTBR0 and TTBR1) to hold their base addresses. When 2 tables are in use, then on each memory access some leftmost bits of virtual address determine which one should be used. If the bits are all 0s - TTBR0-pointed table is used. Otherwise - TTBR1 is used. This allows OS developer to use separate translation tables for kernelspace and userspace (i.e. by having the kernelspace code run from virtual addresses starting with 1 and userspace code run from virtual addresses starting with 0). A field of TTBCR determines how many leftmost bits of virtual address are used for that (and also affects TTBR0 format). In the simplest setup (as in our project) this number is 0, so only the table specified in TTBR0 is used.
+
+Translation table consists of 4096 entries, each describing a 1MB memory region. An entry can be of several types:
+1. Invalid entry - the corresponding virtual addresses can not be used
+2. Section - description of a mapping of 1MB memory region
+3. Supersection - description of a mapping of 16MB memory region, that has to be repeated 16 times in consecutive memory sections (can be used to map to physical addresses higher than 2^32)
+4. Page table - no mapping is given yet, but a page table is pointed. See below.
+Besides, translation table descriptor also specifies:
+1. Access permissions.
+2. Other memory attributes (cacheability, shareability).
+3. which domain the memory belongs to.
+
+Page table is something simillar to translation table, but it's entries define smaller regions (called, well - pages). When a translation table descriptor describing a page table gets used for translation, then entry in that page table (with some middle bits of the virtual address used as index into it) is fetched and used. This allows for better granularity of mappings while not requiring the page tables to occupy space if small pages are not needed. We can say, that 2-level translations are performed. On some versions of ARM translations can have more levels than here.
+
+As of 15.01.2020 page tables and small pages are not used in the project (although programming them is on the TODO list).
+
+Our project uses C bitfield structs for operating on coprocessor registers' contents and translation table descriptors. This is an elegant and readable approach, yet little-portable across compilers. Current struct definitions are sure to work properly with GCC.
+
+Despite the overhelming amount of configuration options available, most can be left with deafults and this is how it's done in this project. Those default settings usually make the MMU behave as in older ARM versions, when some options were not yet available (and hence, the entire system was simpler).