1 #+TITLE: RaspberryPi MMU example
5 1. Native GCC (+ binutils)
6 2. ARM cross-compiler GCC (+ binutils) (arm-none-eabi works - others
9 4. rpi-open-firmware (for running on the Pi)
10 5. GNU screen (for communicating with the kernel when running on the Pi)
11 6. socat (for communicating with the bootloader when running on the Pi)
12 7. Qemu ARM (for emulating the Pi).
14 For building rpi-open-firmware one will need more tools (not listed
17 The project has been tested only in Qemu emulating Pi 2 and on real Pi 3 model B.
19 Running on Pis other than Pi 2 and Pi 3 is sure to require changing the definition in global.h (because peripheral base addresses differ between Pi versions) and might also require other modifications, not known at this time.
21 Assuming make, gcc, arm-none-eabi-gcc and its binutils are in the PATH, the kernel can be built with:
33 The bootloader can be built with:
39 Both loader and kernel can then be found in build/
43 To run the kernel (passed as elf file) in qemu:
49 If You want to pass a binary image to qemu:
55 To pass loader image to qemu and pipe kernel to it through emulated uart:
61 With qemu-loader the kernel will run, but will be unable to receive any keyboard input.
63 The timer used by this project is the ARM timer ("based on an ARM
64 AP804", with registers mapped at 0x7E00B000 in the GPU address space).
65 It's absent in emulated environment, so no timer interrupts can be
68 ** Running on real hardware.
70 First, the rpi-open-firmware has to be built. Then, kernel.img (or
71 loader.img) should be copied to the SD card (next to bootcode.bin) and renamed to
72 zImage. Also, the .dtb file corresponding to the Pi model (actually, any .dtb
73 would do, it is not used right now) from stock firmware files has to be put to the SD
74 card and renamed as rpi.dtb. Finally, a cmdline.txt has to be present on the SD card
75 (content doesn't matter).
77 Now, RaspberryPi can be connected via UART to the development machine. GPIO on the Pi works
78 with 3.3V, so one should make sure, that UART device on the other end is
79 also working wih 3.3V. This is the pinout of the RaspberyPi 3 model B
80 that has been used for testing so far:
83 Top left of the board is here
86 +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
87 | 2| 4| 6| 8|10|12|14|16|18|20|22|24|26|28|30|32|34|36|38|40|
88 +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
89 | 1| 3| 5| 7| 9|11|13|15|17|19|21|23|25|27|29|31|33|35|37|39|
90 +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
93 Under rpi-open-firmware (stock firmware might map UARTs differently):
99 Once UART is connected, the board can be powered on.
101 It is assumed, that USB to UART adapter is used and it is seen by the system as /dev/ttyUSB0.
103 If one copied the kernel to the SD card, they can start communicating
104 with the board by running:
107 $ screen /dev/ttyUSB0 115200,cs8,-parenb,-cstopb,-hupcl
110 If one copied the loader, they can send it the kernel image and start
111 communicating with the system by running:
117 To run again, one can replug USB to UART adapter and Pi's power supply (order
118 matters!) and re-enter the command.
120 Running under stock firmware has not been performed. In particular, the
121 default configuration on RaspberryPi 3 seems to map other UART than used
122 by the kernel (so-called miniUART) to pins 6, 8 and 10. This is supposed
123 to be configurable through the use of overlays.
126 To maintain order, all files created with the use of make, that is binaries, object
127 files, natively executed helper programs, etc. get placed in build/.
129 Our project contains 2 Makefiles: one in it's root directory and one in
130 build/. The reason is that it is easier to use Makefile to simply,
131 elegantly and efficiently produce files in the same directory where it
132 is. To produce files in directory other than Makefile's own, it requires
133 this directory to be specified in many rules across the Makefile and in
134 general it complicates things. Also, a problem arises when trying to
135 link objects not from within the current directory. If an object is
136 referenced by name in linker script (which is a frequent practice in our
137 scripts) and is passed to gcc with a path, then it'd need to also appear
138 with that path in the linker script. Because of that a Makefile in
139 build/ is present, that produces files into it's own directory and the
140 Makefile in project's root is used as a proxy to that first one - it
141 calls make recursively in build/ with the same target it was called
142 with. These changes makes it easier to read.
144 From now on only Makefile in build/ will be discussed.
146 In the Makefile, variables with the names of certain tools and their
147 command line flags are defined (using =? assignment, which allows one to
148 specify their own value of that variable on the command line). In case a
149 cross-compiler with a different triple should be used, ARM\_BASE,
150 normally set to arm-none-eabi, can be set to something like
151 arm-linux-gnueabi or even /usr/local/bin/arm-none-eabi.
153 All variables discussed below are defined using := assignment, which
154 causes them to only be evaluated once instead of on every reference to
157 Objects that should be linked together to create each of the .elf files
158 are listed in their respective variables. I.e. objects to be used for
159 creating kernel\_stage2.elf are all listed in KERNEL\_STAGE2\_OBJECTS.
160 When adding a new source file to the kernel, it is enough to add it's
161 respective .o file to that list to make it compile and link properly. No
162 other Makefile modifications are needed. In a similar fashion,
163 RAMFS\_FILES variable specifies files, that should be put in the ramfs
164 image, that will be embedded in the kernel. Adding another file only
165 requires listing it there. However, if the file is to be found somewhere
166 else that build/, it might be useful to use the vpath directive to tell
167 make where to look for it.
169 Variables dirs and dirs\_colon are defined to store list of all
170 directories within src/, separated with spaces and colons, respectively.
171 dirs\_colons are used for vpath directive. 'dirs' variable is used in
172 ARM\_FLAGS to pass all the directories as include search paths to gcc.
173 empty and space are helper variables - defining dirs\_colon could be
174 achieved without them (but it's clearer this way).
176 The vpath directive tells make to look for assembler sources, C sources
177 and linker scripts in all direct and indirect subdirectories of src/
178 (including itself). All other files shall be found/created in build/.
182 The default target is the binary image of the kernel.
184 The generic rule for compiling C sources uses cross-compiler or native
185 compiler with appropriate flags depending on whether the source file is
186 located somewhere under arm/ directory (which lies in src/) or enywhere
189 The generic rules for making a stripped binary image out of elf file,
190 for assembling an assembly file, for making an arbitrary file a linkable
191 object and for linking objects are ARM-only.
193 In C world it is possible to embed a file in an executable by using
194 objcopy to create an object file from it and then linking that object
195 file into the executable. In this project, at the current time, this is
196 used only for embedding ramfs in the kernel (incbin is used for
197 embedding kernel and loader second stages in their first stages).
198 Generic rule for making a binary image into object file is present, in
199 case it is needed somewhere else again.
201 To link elf files, the generic rule is combined with a rule that
202 specifies the elf's objects. Objects are listed in variables whenever
203 more than one of them is needed.
205 At this point in the Makefile, the dependence of objects created from
206 assembly on files referenced in the assembly source via incbin is
209 Simple ram filesystem is created from files it should contain with the
210 use of our own simple tool - makefs.
212 Another 2 rules specify how native programs (for the machine we're
213 working on) are to be linked.
217 Rule qemu-elf runs the kernel in qemu emulating RaspberryPi 2 with
218 256MiB of memory by passing the elf file of the kernel to the emulator.
220 Rule qemu-bin does the same, but passes the binary image of the kernel
223 Rule qemu-loader does the same, but first passes the binary image of the
224 bootloader to qemu and the actual kernel is piped to qemu's standard
225 input, received by bootloader as uart data and run. This method
226 currently makes it impossible to pass any keyboard input to kernel once
229 Rule run-on-rpi pipes the kernel through uart, assuming it is available
230 under /dev/ttyUSB0, and then opens a screen session on that interface.
231 This allows for executing the kernel on the Pi connected through UART,
232 provided that our bootloader is running on the board.
234 Rule clean removes all the files generated in build/.
236 Rules that don't generate files are marked as PHONY.
239 Directory structure of the project:
282 translation_table_descriptors.h
303 ** Most significant directories and files
305 doc/ Contains documentation of the project.
307 build/ Contains main Makefile of the project. All objects created during
308 the build process are placed there.
310 Makefile Proxies all calls to Makefile in build/.
312 src/ Contains all sources of the project.
314 src/host/ Contains sources of helper programs to be compiled using
315 native GCC and run on the machine where development takes place.
317 src/arm/ Contains sources to be compiled using ARM cross-compiler GCC
318 and run on the RaspberryPi.
320 src/arm/common Contains sources used in both: privileged mode and
323 src/arm/PL0 Contains sources used exclusively in unprivileged, user-mode
324 (PL0) program, as well as the program's linker script.
326 src/arm/PL1 Contains sources used exclusively in privileged (PL1) mode.
328 src/arm/PL1/loader Contains sources used exclusively in the bootloader,
329 as well as linker scripts for stages 1 and 2 of this bootloader.
331 src/arm/PL1/kernel Contains sources used exclusively in the kernel, as
332 well as linker scripts for stages 1 and 2 of this kernel.
334 src/arm/PL1/PL1\_common Contains sources used in both: kernel and
337 TODOs Contains what the name suggests, in plain text. It lists things
338 that still can be implemented or improved, as well as tasks, that were
339 once listed and have since been completed (in which case they're marked
343 When RaspberryPi boots, it searches the first
344 partition on SD card (which should be formatted FAT) for its firmware
345 and configuration files, loads them and executes them. The firmware then
346 searches for the kernel image file. The name of the looked for file can
347 be kernel.img, kernel7.img, kernel8.img (for 64-bit mode) or something
348 else, depending on configuration and firmware used (rpi-open-firmware
351 The image is then copied to some address and jumped to on all cores.
352 Address should be 0x8000 for 32-bit kernel, but in reality is 0x2000000
353 in rpi-open-firmware and 0x10000 in qemu (version 2.9.1). 3 arguments
354 are passed to the kernel: first (passed in r0) is 0; second (passed in
355 r1) is machine type; third (passed in r2) is the address of FDT or ATAGS
356 structure describing the system or 0 as default.
358 PIs that support aarch64 can also boot directly into 64-bit mode. Then,
359 the image gets loaded at 0x80000. We're not using 64-bit mode in this
362 Qemu can be used to emulate RaspberryPi, in which case kernel image and
363 memory size are provided to the emulator on the command line. Qemu can
364 also load kernel in the form of an elf file, in which case its load
365 address is determined based on information in the elf.
367 Our kernel has been executed on qemu emulating RaspberryPi 2 as well as
368 on real RaspberryPi 3 running rpi-open firmware (although not every
369 functionality works everywhere).
372 To quicken running new images of the
373 kernel on the board, a simple bootloader has been written by us, which
374 can be run from the SD card instead of the actual kernel. It reads the
375 kernel image from uart, and executes it. The bootloader can also be used
376 within qemu, but there are several problems with passing keyboard input
377 to the kernel once it's running.
379 It is worth noting, that a project named raspbootin (https://github.com/mrvn/raspbootin) exists, which does a very simillar thing.
380 We did, however, choose to write our own bootloader, which we did.
382 Bootloader is split into 2 stages.
384 This is due to the fact, that the the actual kernel
385 read by it from UART is supposed to be written at 0x8000. If the loader
386 also ran from 0x8000 or a close address, it could possibly overwrite
387 it's own code while writing kernel to memory. To avoid this, the first
388 stage of the loader first copies its second stage embedded in it to
389 address 0x4000. Then, it jumps to that second stage, which reads kernel
390 image from uart, writes it at 0x8000 and jumps to it. Arguments (r0, r1,
391 r2) are preserved and passed to the kernel. Second stage of the
392 bootloader is intended to be kept small enough to fit between 0x4000 and
393 0x8000. Atags structure, if present, is guaranteed to end below 0x4000,
394 so it should not get overwritten by loader's stage2.
396 The loader protocol is simple: first, size of the kernel is sent through
397 UART (4 bytes, little endian). Then, the actual kernel image. Our
398 program pipe\_image is used to prepend kernel image with its size.
401 The kernel is, just like bootloader, split into 2 stages.
402 It is desired to have image run from 0x0, because that's where the exception vector table is under default
403 settings. This was the main reason for splitting kernel into 2 parts.
405 Stage 1 is loaded at some higher address. It has second stage
406 image embedded in it. It copies it to 0x0 and jumps to it. What gets
407 more complicated compared to loader, is the handling of ATAGS structure.
408 Before copying stage 2 to 0x0, stage 1 first checks if atags is present
409 and if so, it is copied to some location high enough, that it won't be
410 overwritten by stage 2 image. Whenever the memory layout is modified, it
411 should be checked, if there is a danger of ATAGS being overwritten by
412 some kernel operations before it is used. In current setup, new location
413 chosen for ATAGS is always below the memory later used as the stack and
414 it might overlap memory later used for translation table, which is not a
415 problem, since kernel only uses ATAGS before filling that table.
417 When stage 1 of the kernel jumps to second stage, it passes modified
418 arguments: first argument (r0) remains 0 if ATAGS was found and is set
419 to 3 to indicate, that ATAGS was not found. Second argument (r2) remains
420 unchanged. Third argument (r2) is the current address of ATAGS (or
421 remains unchanged if no ATAGS was found). If support for FDT is added in
422 the future, it must also be done carefully, so that FDT doesn't get
425 At the start of the stage 2 of the kernel,
426 there is the interrupt vector table. It's first entry is the reset
427 vector, which is not normally unused. In our case, when stage 1 jumps to
428 0x0, first instruction of stage 2, it jumps to that vector, which then
429 calls the setup routine.
434 In both loader and the kernel, at the beginning of stage1 it is ensured,
435 that only one ARM core is executing.
437 It's worth noting, that in first stages the loop that copies the
438 embedded second stage is intentionally situated after the blob in the
439 image. This way, this loop will not overwrite itself with the data it is
440 copying, since the stage 2 is always copied to some lower address. It
441 copies to 0x0 in case of kernel and to 0x4000 in case of loader - we
442 assume stage 1 won't be loaded below 0x4000.
444 Qemu, stock RaspberryPi firmware and rpi-open-firmware all load image at
445 different addresses. Although stock firmware is not used in this
446 project, our loader loads kernel at 0x8000, where the stock firmware
447 would. Because of that, it is desired, that image is able to run,
448 regardless of where it was loaded at. This was realized by writing first
449 stages of loader and kernel in careful, position-independent assembly.
450 The starting address in corresponding linker scripts is irrelevant. The
451 stage 2 blobs are embedded using .incbin assembly directive. Second
452 stages are written normally in C and compiled as position-dependent for
453 their respective addresses.
457 Here's an explanation of steps we did to enable the MMU and how the MMU
460 MMU stands for Memory Management Unit. It does 2 important things:
462 1. It allows programs to use virtual memory addressing. Virtual
463 addresses are translated by the MMU to physical addresses with the
464 help of translation table.
465 2. It guards against unallowed memory access. Element that only
466 implements this functionality is called MPU (Memory Protection Unit)
467 and is also found in some ARM cores.
469 Without MMU code executing on a processor sees the memory as it really
472 When it tries to load data from address 0x00AA0F3C it indeed loads data
473 from 0x00AA0F3C. This doesn't mean address 0x00AA0F3C is in RAM: RAM can
474 be mapped into the address space in an arbitrary way.
476 MMU can be configured to "redirect" some range of addresses to some
477 other range. Let's assume we configured the MMU to translate address
478 range 0x00A00000 - 0x00B00000 to range 0x00200000 - 0x00300000. Now,
479 code trying to perform operation on address 0x00AA0F3C would have the
480 address transparently translated to 0x002A0F3C, on which the operation
481 would actually take place.
483 The translation affects all (stack and non-stack) data accesses as well
484 as instruction fetches, hence an entire program can be made to work as
485 if it was running from some memory address, while in fact it runs from a
488 The addresses used by program code are referred to as virtual addresses,
489 while addresses actually used by the processor - as physical addresses.
491 This aids operating system's memory management in several ways
493 1. A program may by compiled to run from some fixed address and the OS
494 is still free to choose any physical location to store that program's
495 code - only a translation of program's required address to that
496 location's address has to be configured. A problem of simultaneous
497 execution of multiple programs compiled for the same address is also
499 2. A consecutive memory region might be required by some program. For
500 example: due to earlier allocations and deallocactions there isn't a
501 big enough (no pun intended) free consecutive region of physical
502 memory. Smaller regions can be mapped to become accessible as a
503 single region in virtual address space, thus avoiding the need for
506 A given mapping can be made valid for only one execution mode (i.e.
507 region only accessible from privileged mode) or only certain types of
508 accesses . A memory region can be made non-executable, which guards
509 against accidental jumping there by program code. That is important for
510 countering buffer-overflow exploits. An unallowed access triggers a
511 processor exception, which passes control to an appropriate interrupt
514 In RaspberryPi environments used by us, there are ARMv7-A compatible
515 processors, which we currently use only in 32-bit mode. Information here
516 is relevant to those systems (there are Pi boards with both older and
517 newer processors, with more or less functionality and features
520 If MMU is present, general configuration of it is done through registers
521 of the appropriate coprocessor (cp15). Translations are managed through
522 translation table. It is an array of 32-bit or 64-bit entries (also
523 called descriptors) describing how their corresponding memory regions
524 should be mapped. A number of leftmost bits of a virtual address
525 constitutes an index into the translation table to be used for
526 translating it. This way no virtual addresses need to be stored in the
527 table and MMU can perform translations in O(1) time.
531 Coprocessor 15 contains several registers, that control the behaviour of
532 the MMU. They are all accessed through mcr and mrc arm instructions.
534 1. SCTLR, System Control Register - "provides the top level control of
535 the system, including its memory system". Bits of this register
536 control, among other things, whether the following are enabled:
539 2. data cache4. TEX remap
541 4. TEX remap (changes how some translation table entry bit fields
542 (called C, B and TEX) are used - not in the project)
543 5. access flags (enabling causes one translation table descriptor bit
544 normally used to specify access permissions of a region to be used
545 as access flag - not used either)
547 2. DACR, Domain Access Control Register - "defines the access permission
548 for each of the sixteen memory domains". Entries in translation table
549 define which of available 16 memory domains a memory region belongs
550 to. Bits of DACR specify what permissions apply to each of the
551 domains. Possible settings are to allow accesses to regions based on
552 settings in translation table descriptor or to allow/disallow all
553 accesses regardless of access permission bits in translation table.
555 3. TTBR0, Translation Table Base Register 0 - "holds the base address of
556 translation table 0, and information about the memory it occupies".
557 System mode programmer can choose (with respect to some alignment
558 requirements) where in the physical memory to put the translation
559 table. Chosen address (actually, only a number of it's leftmost bits)
560 has to be put in TTBR for the MMU to know where the table lies. Other
561 bits of this register control some memory attributes relevant for
562 accesses to table entries by the MMU
564 4. TTBR1, Translation Table Base Register 1 - simillar function to TTBR0
565 (see below for explaination of dual TTBR)
566 5. TTBCR, Translation Table Base Control Register, which controls:
568 1. How TLBs (Translation Lookaside Buffers) are used. TLBs are a
569 mechanism of caching translation table entries.
570 2. Whether to use some extension feature, that changes traslation
571 table entries and TTBR* lengths to 64-bit (we're not using this,
572 so we won't go into details)
573 3. How a translation table is selected.
575 There can be 2 translation tables and there are 2 cp15 registers (TTBR0
576 and TTBR1) to hold their base addresses. When 2 tables are in use, then
577 on each memory access some leftmost bits of virtual address determine
578 which one should be used. If the bits are all 0s - TTBR0-pointed table
579 is used. Otherwise - TTBR1 is used. This allows OS developer to use
580 separate translation tables for kernelspace and userspace (i.e. by
581 having the kernelspace code run from virtual addresses starting with 1
582 and userspace code run from virtual addresses starting with 0). A field
583 of TTBCR determines how many leftmost bits of virtual address are used
584 for that (and also affects TTBR0 format). In the simplest setup (as in
585 our project) this number is 0, so only the table specified in TTBR0 is
590 Translation table consists of 4096 entries, each describing a 1MB memory
591 region. An entry can be of several types:
593 1. Invalid entry - the corresponding virtual addresses can not be used
594 2. Section - description of a mapping of 1MB memory region
595 3. Supersection - description of a mapping of 16MB memory region, that
596 has to be repeated 16 times in consecutive memory sections . This can
597 be used to map to physical addresses higher than 2\^32.
598 4. Page table - no mapping is given yet, but a page table is pointed.
601 Besides, translation table descriptor also specifies:
603 1. Access permissions.
604 2. Other memory attributes (cacheability, shareability).
605 3. Which domain the memory belongs to.
609 Page table is something simillar to translation table, but it's entries
610 define smaller regions (called, well - pages). When a translation table
611 descriptor describing a page table gets used for translation, then entry
612 in that page table is fetched and used along with some middle bits of
613 the virtual address used as index. This allows for better granularity of
614 mappings, as it doesn't require the page tables to occupy space if small
615 pages are not needed. We could say, that 2-level translations are
616 performed. On some versions of ARM translations can have more levels
617 than that. This means the MMU might sometimes need to fetch several
618 entries from different level tables to compute the physical address.
619 This is called a translation table walk.
621 As of 15.01.2020 page tables and small pages are not used in the project
622 (although programming them is on the TODO list).
624 ** Project specific information
626 Despite the overwhelming amount of configuration options available, most
627 can be left deafult and this is how it's done in this project. Those
628 default settings usually make the MMU behave like it did in older ARM
629 versions, when some options were not yet available and hence, the entire
632 Our project uses C bitfield structs for operating on SCTLR and TTBCR
633 contents and translation table descriptors. With DACR - bit shifts are
634 more appropriate and with TTBCR - our default configuration means we're
635 writing '0' to that register. This is an elegant and readable approach,
636 yet little-portable across compilers. Current struct definitions work
639 Structs describing SCTLR, DACR and TTBCR are defined in
640 src/arm/PL1/kernel/cp\_regs.h. Structs describing translation table
641 descriptors are defined in
642 src/arm/PL1/kernel/translation\_table\_descriptors.h.
644 Before the MMU is enabled, all memory is seen as it really is.
645 Therefore, the only feasible way of enabling it is by initially setting
646 the descriptors in translation table to map all addresses (mapping just
647 addresses used by the kernel would be enough) to themselves. It is
650 ** Setting up MMU and FlatMap
652 How setting up a flat map and turning on the MMU and management of
653 memory sections is done in our project:
655 1. Translation table is defined in the linker script
656 src/arm/PL1/kernel/kernel\_stage2.ld as a NOLOAD section. C code gets
657 the table's start and end addresses from symbols defined in that
658 linker script (see arm/PL1/kernel/memory.h).
659 2. Function setup\_flat\_map() defined in arm/PL1/kernel/paging.c
660 enables MMU with a flat map. It prints relevant information to uart
661 while performing the following procedure:
663 1. In a loop write all descriptors to the translation table, set them
664 as sections, accessible from PL1 only, belonging to domain 0.
665 2. Set DACR to allow domain 0 memory accesses, based on translation
666 table descriptor permissions and block accesses to other domains,
667 as only domain 0 is used in this project.
668 3. Make sure TEX remap, access flag, caches and the MMU are disabled
669 in SCTLR. Disabling some of them might be unnecessary, because MMU
670 is assumed to be disabled from the start and enabled caches might
671 cause no problems as long as only flat map is used. Still, the way
672 it is done right now is known to work well and optimizations are
674 4. Clear all caches and TLBs (again, it is suspected that some of
675 this is unnecessary).
676 5. Write TTBCR setting such that only 32-bit translation table is
678 6. Make TTBR0 point to the start of translation table. Rest of
679 attributes in TTBR0 (concerning how table entries are being
680 accessed) are left as 0s (defaults).
681 7. Enable the MMU and caches by setting the appropriate bits in
684 After some cp15 register writes, the isb assembly instruction is used,
685 which causes ARM core to wait until changes take effect. This is done to
686 prevent some later instructions from being executed before the changes
689 In arm/PL1/kernel/paging.c the function claim\_and\_map\_section() can
690 be used to modify an entry in translation table to create a new mapping.
691 Memory allocation also done in that source file uses some lists to
692 describe free and taken sections, but has nothing to do with with the
695 * Program Status Register
696 CPSR (Current Program Status Register) is a register, bits of which contain and/or determine various aspects of
697 execution, i.e. condition flags, execution state (arm, thumb or
698 jazelle), endianness state, execution mode and interrupt mask. This register is readable and writeable with
699 the use of mrs and msr instructions from any PL1 mode, thus it is
700 possible to change things like mode or interrupt mask by writing to this
703 Additionally, there are other registers with the same or simillar bit
704 fields as CPSR. Those PSRs (Program Status Registers) are:
706 1. APSR (Application Program Status Register)
707 2. SPSRs (Saved Program Status Registers)
709 APSR is can be considered the same as CPSR or a view of CPSR, with some
710 limitations - some bit fields from CPSR are missing (reserved) in APSR.
711 APSR can be accessed from PL0, while CPSR should only be accessed from
712 PL1. This was an application program executing in user mode can learn
713 some of the settings in CPSR without accessing CPSR directly.
715 SPSR is used for exception handling. Each exception-taking mode has it's
716 own SPSR (they can be called SPSR\_sup, SPSR\_irq, etc.). On exception
717 entry, old contents of CPSR are backed up in entered mode's SPSR.
718 Instructions used for exception return (subs and ldm \^), when writing
719 to the pc, have the important additional effect of copying the SPSR to
720 CPSR. This way, on return from an exception, processor returns to the
721 state from before the exception. That includes endianess settings,
722 execution state, etc.
724 In our project, the structure of PSRs is defined in terms of C bitfield
725 structs in src/arm/PL1/kernel/psr.h.
729 A simple ram file system has been introduced to avoid having to embed
730 too many files in the kernel in the future.
732 The ram filesystem is created on the development machine and then
733 embedded into the kernel. Kernel can then parse the ramfs and access
736 Ramfs contains a mapping from file's name to it's size and contents.
737 Directories, file permissions, etc. as well as writing to filesystem are
740 Currently this is used to access the code of PL0 test program by the
741 kernel, which it then copies to the appropriate memory location. In case
742 more user mode programs are later written, they can all be added to
743 ramfs to enable the kernel to access them easily.
747 When ramfs is accessed in memory, it MUST be aligned to a multiple of 4.
749 The filesystem itself consists of blocks of data, each containing one
750 file. Blocks of data in the ramfs come one after another, with the
751 requirement, that each block starts at a 4-aligned offset/address. If a
752 block doesn't end at a 4-aligned address, there shall be up to 3
753 null-bytes of padding after it, so that the next block is properly
756 Each block start with a C (null-terminated) string with the name of the
757 file it contains. At the first 4-aligned offset after the string, file
758 size is stored on 4 bytes in little endian. Null-bytes are used for
759 padding between file name and file size if necessary. Immediately after
760 the file size reside file contents, that take exactly the amount of
761 bytes specified in file size.
763 As obvious from the specification, files bigger than 4GB are not
764 supported, which is not a problem in the case of this project.
768 Creation of ramfs is done by the makefs program (src/host/makefs.c). The
769 program accepts file names as command line arguments, creates a ramfs
770 containing all those files and writes it to stdout. As makefs is a very
771 simple tool (just as our ramfs is a simple format), it puts files in
772 ramfs under the names it got on the command line. No stripping or
773 normalizing of path is performed. In case of errors (i.e. io errors)
774 makefs prints information to stderr and exits.
776 Parsing/reading of ramfs is done by a kernel driver
777 (src/arm/PL1/kernel/ramfs.c). The driver allows for finding a file in
778 ramfs by name. File size and pointers to file name string and file
779 contents are returned through a structure from function find\_file.
781 As ramfs is embedded in kernel image, it is easily accessible to kernel
782 code. The alignment of ramfs to a multiple of 4 is assured in kernel's
783 linker script (src/arm/PL1/kernel/kernel\_stage2.ld). ## Exceptions
784 Whenever some illegal operation (attempt to execute undefined
785 instruction, attempt to access memory with insufficient permission,
786 etc.) happens or some peripheral device "messages" the ARM core, that
787 something important happened, an exception occurs. Exception is
788 something, that pauses normal execution and passes control to the
789 (specific part of) operating system. Upon an exception, several things
792 1. Change of proocessor mode.
793 2. CPSR gets saved into new mode's [[./PSRs-explained.txt][SPSR]].
794 3. pc (incremented by some value) is saved into new mode's lr.
795 4. Execution jumps to an entry in the exception vectors table specific
798 Each exception type is taken to it's specific mode. Types and their
801 1. Reset and supervisor mode.
802 2. Undefined instruction and undefined mode.
803 3. Supervisor call and supervisor mode.
804 4. Prefetch abort and abort mode.
805 5. Data abort and abort mode.
806 6. Hypervisor trap and hypervisor mode (not used normally, only with
811 The new value of the pc (the address, to which the exception "jumps") is
812 the address of nth instruction from exceptiom base address, which, under
813 simplest settings, is 0x0 (bottom of virtual address space). N depends on the exception type. It is:
816 2. undefined instruction
820 6. hypervisor trap (not used here)
824 Those 8 instructions constitute the exception vectors table. As the
825 instruction follow one another, each of them should be a branch to some
826 exception-handling routine. In fact, on other architectures often the
827 exception vector table holds raw addresses of where to jump instead of
828 actual instructions, as here.
830 Bottom of virtual address space can be changed to some other value by
831 manipulating the contents of SCTLR and VBAR coprocessor registers.
833 On exception entry, the registers r0-r12 contain values used by the code
834 that was executing before. In order for the exception handler to perform
835 some action and return to that code, those registered can be preserved
836 in memory. Some compilers can automatically generate appropriate
837 prologue and epilogue for handler-functions, that will preserve the
838 right registers (we're not using this feature in our project).
840 Having old CPSR in SPSR and old pc in lr is helpful, when after handling
841 the exception, the handler needs to return to the code that was
842 executing before. There are 2 special instructions, subs and ldm \^
843 (load multiple with a dash \^), that, when used to change the pc (and
844 therefore perform a jump) cause the SPSR to be copied into CPSR. As bits
845 of CPSR determine the current execution mode, this causes the mode to be
846 change to that from before the exception. In short, subs and ldm \^ are
847 the instructions to use to return from exceptions.
849 As noted eariler, upon exception entry an incremented value of pc is
850 stored in lr. By how much it is incremented, depends on exception type
851 and execution state. For example, entering undefined instruction
852 exception for thumb state places in undef's lr the problematic
853 instruction's address + 2, while taking this exception from ARM state
854 places in undef's lr that instruction's address + 4 (see full table in
855 paragraph B1.8.3 of [[https://static.docs.arm.com/ddi0406/c/DDI0406C_C_arm_architecture_reference_manual.pdf][ARMv7-ar\_arm]]).
857 It's worth noting, that while our
858 [[ile:../src/arm/PL1/kernel/interrupt_vector.S][implementation of exception handlers]] also sets the stack pointer (sp) upon each
859 exception entry, a kernel could be written, where this wouldn't be done,
860 as each mode enterable by exception has it's own sp.
863 2 of out of all possible exceptions in ARM are IRQ (Interrupt Request) and FIQ (Fast
864 Interrupt Request). The can be caused by external source, such as
865 peripheral devices and they can be used to inform the kernel about some
866 action, that happened.
868 Interrupts offer an economic way of interacting with peripheral devices.
869 For example, code can probe UART memory-mapped registers in a loop to
870 see whether transmitting/receiving of a character finished. However,
871 this causes the processor needlessly execute the loop and makes it
872 impossible or difficult to perform another tasks at the same time.
873 Interrupt can be used instead of probing to "notify" the kernel, that
874 something it was waiting for just happened. While waiting for interrupt,
875 the system can be put to halt (i.e. wfi instruction), which helps save
876 power, or it can perform other actions without wasting processor cycles
879 An interrupt, that is normally IRQ, can be made into FIQ by ARM system
880 dependent means. FIQ is meant to be able to be handled faster, by not
881 having to back up registers r8-r12, that FIQ mode has it's own copies
882 of. This project only uses IRQ.
884 Some peripheral devices can be configured (through their memory-mapped
885 registers) to generate an interrupt under certain conditions (i.e. UART
886 can generate interrupt when received characters queue fills). The
887 interrupt can then be either masked or unmasked (sometimes in more than
888 one peripheral register). If interrupts are enabled in CPSR and a
889 peripheral device tries to generate one, that is not masked, IRQ (or
890 FIQ) exception occurs (which causes interrupts to be temporarily masked
891 in CPSR). The code can usually check, whether an interrupt of given kind
892 from given device is *pending*, by looking at the appropriate bit of the
893 appropriate peripheral register (mmio). As long as an interrupt is
894 pending, re-enabling interrupts (for example via return from IRQ
895 handler) shall cause the exception to occur again. Removing the source
896 of the interrupt (i.e. removing characters from UART fifo, that filled)
897 doesn't usually cause the interrupt to stop pending, in which case a
898 pending-bit has to be cleared, usually by writing to the appropriate
899 peripheral register (mmio).
901 IRQs and FIQs can be configured as vectored - the processor then, upon
902 interrupt, jumps to different location depending on which interrupt
903 occured, instead of jumping to the standard IRQ/FIQ vector. This can be used
904 to speed up interrupt handling. Our simple project does not, however,
907 Currently, IRQs from 2 sources are used:
908 [[https://www.raspberrypi.org/app/uploads/2012/02/BCM2835-ARM-Peripherals.pdf][ARM timer IRQ]] and UART IRQs. The kernel makes sure, that timer IRQ only
909 occurs when processor is in user mode. IRQ handler does not return in
910 this case - it calls scheduler. The kernel makes sure, that UART IRQ
911 only occurs, when a process is blocked and is waiting for UART IO
912 operation. The interrupt handler, when called, checks what type of UART
913 action happened and tries (through calling of appropriate function from
914 scheduler.c) to handle that action and, possibly, to unblock the waiting
915 process. UART IRQ might occur when another process is executing (not
916 possible now, with only one process, but shall be possible when more
917 processes are added to the project), in which case it the handler
918 returns, or when kernel is explicitly waiting for interrupts (because
919 all processes are blocked), in which case it calls schedule() instead of
924 ARMv7-A core can be executing in one of several modes (not to be
925 confused with instruction set states or endianness execution state).
936 In fact, there are more if the processor implements some extensions, but
937 this is irrelevant here.
939 Current processor mode is encoded in the lowest five bits of the CPSR register.
941 Processor can operate in one of 2 privilege levels (although, again,
942 extensions exist, that add more levels):
944 1. PL0 - privilege level 0
945 2. PL1 - privilege level 1
947 Processor modes have their assigned privilege levels. User mode has
948 privilege level 0 and all other modes have privilege level 1. Code
949 executing in one of privileged modes is allowed to do more things, than
950 user mode code, i.e. writing and reading some of the coprocessor
951 registers, executing some privileged instructions (i.e. mrs and msr,
952 when used to reference CPSR, as well as other modes' registers),
953 accessing privileged memory and changing the mode (without causing an
954 interrupt). Attempts to perform those actions in user mode result either
955 in undefined (within some limits) behaviour or an exception (depending
956 on what action is considered).
958 User mode is the one, in which application programs usually run. Other
959 modes are usually used by the operating system's kernel. Lack of
960 privileges in user mode allows PL1 code to control execution of PL0
963 While code executing in PL1 can freely (except switching from system to
964 user mode, which produces undefined behaviour) change mode by either
965 writing the CPRS or executing cps instruction, user mode can only be
966 exitted by means of an interrupt.
968 Some ARM core registers (i.e. r0 - r7) are shared between modes, while
969 some are not. In this case, separate modes have their private copies of
970 those registers. For example, lr and sp in supervisor mode are different
971 from lr and sp in user mode. For full information about shared and not
972 shared (banked) registers, see paragraph B9.2.1 in
973 [[https://static.docs.arm.com/ddi0406/c/DDI0406C_C_arm_architecture_reference_manual.pdf][armv7-a
974 manual]]. The most important things are that user mode and system mode
975 share all registers with each other and they don't have their own SPSR
976 (which is used for returning from exceptions and exceptions are
977 never taken to those 2 modes) and that all other modes have their own
980 The reason for having multiple copies of the same register in different
981 modes is that it simplifies writing interrupt handlers. I.e. supervisor
982 mode code can safely use sp and lr without destroying the contents of
983 user mode's sp and lr.
985 The big number of PL1 modes is supposed to aid in handling of
986 interrupts. Each kind of interrupt is taken to it's specific mode.
988 Supervisor mode, in addition to being the mode supervisor calls are
989 taken to, is the mode the processor is in when the kernel boots.
991 System mode, which uses the same registers as user mode, is said to have
992 been added to ARM architecture to ease accessing the unprivileged
993 registers. For example, setting user mode's sp from supervisor mode can
994 be done by switching to system mode, setting the sp and switching back
995 to supervisor mode. Other modes' registers can alternatively be accessed
996 with the use of mrs and msr assembly instructions (but not from user
999 Despite the name, system mode doesn't have to be the mode used most
1000 often by operating system's kernel. In fact, prohibition of direct
1001 switching from system mode to user mode would make extensive use of
1002 system mode impractical. This project, for example, uses supervisor mode
1003 for most of the privileged tasks.
1005 * Process management
1006 An operating system has
1007 to manage user processes. Our system only has one process right now, but
1008 usual actions, such as context saving or context restoring, are
1009 implemented anyways. The following few paragraphs contain information on
1010 how process management looks like in operating systems in general.
1012 Process might return control to the system by executing the svc (eariler
1013 called swi) instruction. System would then perform some action on behalf
1014 of the process and either return from the supervisor call exception or
1015 attempt to schedule another process to run, in which case context of the
1016 old process would need to be saved for later and context of the new
1017 process would need to be restored.
1019 Process has data in memory (such as it's stack, code) as well as data in
1020 registers (r0-r15, CPSR). Together they constitute process' context.
1021 From process' perspective, context should not unexpectedly change, so
1022 when control is taken away from user mode code (via an exception) and
1023 later (possibly after execution of some other processes) given back, it
1024 should be transparent to the process (except when kernel does something
1025 for the process in terms of supervisor call). In particular, the
1026 contents of core registers should be the same as before. For this to be
1027 achievable, the operating system has to back up process' registers
1028 somewhere in memory and later restore them from that memory.
1030 Operating system kernel maitains a queue of processes waiting for
1031 execution. When a process blocks (for example by waiting for IO), it is
1032 removed from the queue. If a process unblocks (for example because IO
1033 completed) it is added back to the queue. In general, some systems might
1034 complicate it, for example by having more queues, but discussing those
1035 variations is out of scope of this documentation. When processor is
1036 free, one of the processes from the queue (determined by some scheduling
1037 algorithm implemented in the kernel) gets
1038 chosen and run on the processor.
1040 As one process could never use a supervisor call, it could occupy the
1041 processor forever. To remedy this, timer interrupts can be used by the
1042 kernel to interrupt the execution of a process after some time. The
1043 process would then have it's context saved and go to the end of the
1044 queue. Another process would be scheduled to run.
1046 Other exceptions might occur when process is running. Depending on
1047 kernel design, handler of an exception (such as IRQ) might return to the
1048 process or cause another one to be scheduled.
1050 If at some time all processes are blocked waiting, the kernel can wait
1051 for some interrupt to happen, which could possibly unblock some process
1052 (i.e. because IO completed).
1054 While not mentioned earlier, switching between processes' contexts
1055 involves not only saving and restoring of registers, but also changing
1056 the translation table entries to properly map memory regions used by
1059 In our project, process management is implemented in
1060 src/arm/PL1/kernel/scheduler.c.
1062 A "queue" contains data of the only process (variables PL0\_regs[],
1063 PL0\_sp, PL0\_lr and PL0\_PSR).
1065 ** Scheduler functions
1067 Function setup\_scheduler\_structures is supposed to be called before
1068 scheduler is used in any way.
1070 Function schedule\_new() creates and runs a new process.
1072 Function schedule\_wait\_for\_output() causes the current process to
1073 have it's context saved and get blocked waiting for UART to send data.
1074 It is called from supervisor call handler. Function
1075 schedule\_wait\_for\_input() is similar, but process waits for UART to
1078 Function schedule() attempts to select a process (currently the only
1079 one) and run it. If process cannot be run, schedule() waits for
1080 interrupt, that could unblock the process. The interrupt handler would
1081 not return in this case, but rather call schedule() again.
1083 Function scheduler\_try\_output() is supposed to be called by IRQ
1084 handler when UART is ready to transmit more data. It can cause a process
1085 to get unblocked. scheduler\_try\_input() is simillar, but relates to
1088 The following are assured in our design:
1090 1. When processor is in user mode, interrupts are enabled.
1091 2. When processor is in system mode, interrupts are disabled, except
1092 when explicitly waiting for the interrupt when process is blocked.
1093 3. When a process is waiting for input/output, the corresponding IRQ is
1094 unmasked. Otherwise, that IRQ is masked.
1095 4. If an interrupt from UART occurs during execution of user mode code
1096 (not possible here, as we only have one process, but shall become
1097 possible when proper processes are implemented), the handler shall
1098 return. If that interrupt occurs during execution of PL1 code, it
1099 means it occured in scheduler, that was implicitly waiting for it and
1100 the handler calls scheduler() again instead of returning.
1101 5. Interrupt from timer is unmasked and set to come whenever a process
1102 gets scheduled to run. Timer interrupt is disabled when in PL1 (when
1103 scheduler is waiting for interrupt, only UART one can come).
1104 6. A supervisor call requesting an UART operation, that can not be
1105 completed immediately, causes the process to block.
1109 [[https://en.wikipedia.org/wiki/Linker_%28computing%29][Linking]] is a process of creating an executable, library or another
1110 object file out of object files.
1111 During linking, values previously unknown to the compiler (i.e. what
1112 will be the addresses of external functions/variables, from what address
1113 will the code be executing) might be injected into the code.
1115 Linker script is, among others, used to tell the linker, where in memory
1116 the specific parts of the executable should lie.
1118 In a hosted environment (when building a program to run under an
1119 full-featured operting system, like GNU/Linux), a linker script is
1120 usually provided by the toolchain and used if no other script is
1121 provided. In a bare-metal project, the developer usually has to write
1122 their own linker script, in which they specify the binary image's *load
1123 address* and section layout.
1125 Contents of an object code file or executable (our .o or .elf) are
1126 grouped into sections. Sections have names. Common named are .text
1127 (usually contains code), .data (usually contains statically-allocated
1128 variables initialized to non-zero values), .bss (usually used to reserve
1129 memory for statically allocated variables initialized to zero), .rodata
1130 (usually contains statically-allocated variables, that are not going to
1133 In a hosted environment, when an executable (say, of elf format) is
1134 executed, contents of it's sections are usually placed in different
1135 memory segments with different access privileges, so that, for example,
1136 code is not writable and variable contents are not executable. This
1137 helps reduce the risk of buffer overflow exploits.
1139 In a bare-environment like ours, we don't execute an elf file directly
1140 (except in qemu, which is the unpreferred approach anyway), but rather a
1141 raw binary image created from an elf file. Still, the notion of section
1142 is used along the way.
1144 During link, one or more object code files are combined into one file
1145 (in our case an executable). Section contents of input files land in
1146 some sections of the output file, in a way defined in the linker script.
1147 In a hosted environment, a linker script would likely put contents of
1148 input .text sections in a .text section, contents of input .data
1149 sections in a .data section, etc. The developer can, however, use
1150 sections with different names (although weird behaviour of some linkers
1151 might occur) and assign their contents in their preferred way using a
1154 In linker script it is possible to specify a section as NOLOAD (usually
1155 used for .bss), which, in our case, causes that section not to be
1156 included in the binary image later created with objcopy.
1158 It is also possible to treat same-named input sections differently
1159 depending on what file they came from and even use wildcards when
1160 specifying file names.
1162 Variables can be created, as well as new symbols, which can then be
1163 references from C code.
1165 Defining alignment of specific parts of future image is also easily
1168 We made use of all those possibilities in our scripts.
1170 In src/arm/PL1/kernel/kernel\_stage2.ld the physical memory layout of
1171 thkernel is defined. Symbols defined there, such as \_stack\_end, are
1172 referenced in C header src/arm/PL1/kernel/memory.h.
1174 While src/arm/PL1/kernel/kernel.ld and src/arm/PL1/loader/loader.ld
1175 define the starting address, it is irrelevant, as the assembly-written
1176 position-independent code for first stages of loader and kernel does not depend on that address.
1178 At the beginning of this project, we had very little understanding of
1179 linker scripts' syntax.
1180 [[https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/4/html/Using_ld_the_GNU_Linker/sections.html#OUTPUT-SECTION-DESCRIPTION][This article]] proved useful and allowed us to learn the required parts in a
1181 short time. As discussing the entire syntax of linker scripts is beyond
1182 the scope of this documentation, we refer the reader to that resource.
1184 * Miscellaneous topics
1188 Supervisor call happens, when the svc (previously called swi)
1189 instruction get executed. Exception is then entered. Supervisor call is
1190 the standard way for user process to ask the kernel for something. As
1191 user code might request many different things, the kernel must somehow
1192 know which one was requested. The svc instruction takes one immediate
1193 operand. The supervisor call exception handler can check at what address
1194 the execution was, read svc instruction from there and inspect it's
1195 bytes. This way, by executing svc with different immediate values, the
1196 used mode code can request different things from the kernel - the value
1197 in svc shall encode the request's type.
1199 To save time and for the sake of simplicity, we don't make use of
1200 immediades in svc and instead we encode call's type in r0. In our
1201 implementation we decided, that supervisor call will preserve and
1202 clobber the same registers as function call and it will return values
1203 through r0, just as function call. This enables us to use actually
1204 perform the supervisor call as call to function defined in
1205 src/arm/PL0/svc.S. Calls from C are performed in
1206 src/arm/PL0/PL0\_utils.c and request type encodings are defined in
1207 src/arm/common/svc\_interface.h (they must be known to both user mode
1208 code and handler code).
1212 We've compiled useful utilities (i.e. memcpy(), strlen(), etc.) in
1213 src/arm/common/strings.c. Those Do not depend on the environment and can
1214 be used by both user mode code, kernel code, even bootloader code.
1215 Functions used for io (like puts()) are also defined in common way for
1216 privileged and unprivileged code. They do, however, rely on the
1217 existence of putchar() and getchar(). In PL0 code
1218 (src/arm/PL0/PL0\_utils.c), putchar() and getchar() are defined to
1219 perform a supervisor call, that does that operation. In the PL1 code,
1220 they are defined as operations on UART.
1224 Several timers are available on the RaspberryPi:
1226 1. System Timer (with 4 interrupt lines, regarded as the most reliable,
1227 as it is not derived from the system clock and hence is not affecter
1228 by processor power mode changes),
1229 [[https://cs140e.sergio.bz/docs/BCM2837-ARM-Peripherals.pdf][BCM2837 ARM Peripherals, Chapter 12]]
1230 2. ARM side Timer (based on a ARM AP804)
1231 [[https://cs140e.sergio.bz/docs/BCM2837-ARM-Peripherals.pdf][BCM2837 ARM Peripherals, Chapter 14]]
1232 3. ARM Generic Timer (optional extension to ARMv7-A and ARMv7-R,
1233 configured through coprocessor registers)
1235 At first, we attempted to use the System Timer, some code for which is
1236 still present in src/arm/PL1/kernel/bcmclock.h. The interrupts from that
1237 timer are not, however, routed to any ARM core under rpi-open-firmware,
1238 but rather to the GPU. Because of that, we ended using the ARM side
1239 Timer (programmed in src/arm/PL1/kernel/armclock.h). The ARM side Timer
1240 based on ARM AP804 is currently only available on real hardware and not
1241 in qemu. Programming the ARM Generic Timer (listed in TODOs) could
1242 enable the use of timer interrupts in qemu.
1246 src/arm/PL1/PL1\_common/uart.c implements putchar() and getchar() in
1247 terms of UART. Those implementations are blocking - they poll UART
1248 peripheral registers in a loop, checking, if the device is ready to
1249 perform the operation. They are, however, accompanied by functions
1250 getchar\_non\_blocking() and putchar\_non\_blocking(), that check *once*
1251 if the device is ready and only perform the operation if it is.
1252 Otherwise, they return an error value, Their purpose is to use them with
1253 interrupts. In interrupt-driven UART we avoid waiting in a loop -
1254 instead, an IRQ comes when desired UART's operation completes. The code
1255 that wants to write/read from UART, does, however, need to tie it's
1256 operation with IRQ handler and scheduler. Blocking versions should not
1257 be used once UART interrupts are enabled or in exception handlers, that
1258 should always run quickly. However, doing this does not break UART and
1259 might be justified for debugging purposes (like error() function defined
1260 in src/arm/common/io.c and used throughout the kernel code).
1262 There are 2 UARTs in RapsberryPi. One mini UART (also called UART 1) and
1263 one PL011 UART (also called UART 0). The PL011 UART is used exclusively
1264 in this project. The hardware allows some degree of configuration of
1265 which pins which UART is routed to (via so-called alternative
1266 functions). In our project it is assumed, that UART 0's TX and RX are
1267 routed to GPIO pins 14 & 15 by the firmware, which is true for
1268 rpi-open-firmware. With stock Broadcom firmware, either changing the
1269 default configuration (config.txt) or selection of alternative fuctions
1270 as part of uart initialization (present in TODOs list) might be
1273 Before UART can be used, GPIO pins 14 and 15 should have pull up/down
1274 disabled. This is done as part of UART initialization in uart\_init() in
1275 src/arm/PL1/PL1\_common/uart.c. There is a requirement that UART is
1276 disabled when being configured, which is also fulfilled by uart\_init().
1277 The PL011 is toroughly described in
1278 [[https://cs140e.sergio.bz/docs/BCM2837-ARM-Peripherals.pdf][BCM2837 ARM Peripherals]] as well as [[http://infocenter.arm.com/help/topic/com.arm.doc.ddi0183f/DDI0183.pdf][PrimeCell UART (PL011) Technical Reference Manual]].
1283 Our ramfs needs to be 4-aligned in memory, but when objcopy creates the embeddable file, it doesn't (at least by default) mark it's data section as requiring 2**2 alignment. There has to be .=ALIGN(4) line in linker script before ramfs_embeddable.o. At some point we forgot about it, which caused the ramfs to misbehave.
1284 Bugs located in linker script, like this one, are often non-obvoius. This makes them hard to trace.
1287 Many sources mention /COMMON/ as the section in object files resulting from compilation, that contains some specific kind of uninitialized (0-initialized) data (simillar to .bss). Obviously, it has to be included in the linker script.
1288 Unfortunately, gcc names this section differently, mainly - /COM/. This caused our linker script to not include it in the actual image. Instead, it was placed somewhere after the last section defined in the linker script. This happened to be after our NOLOAD stack section, where first free MMU section is. Due to how our memory management algorithm works, this part of physical memory always gets allocated to the first process, which gets it's code copied there.
1289 This bug caused incredibly weird behaviour. The user space code would fail with either abort or undefined instruction, always on the second PL0 instruction. That was because some statically allocated scheduler variable in /COM/ was getting mapped at that address. It took probably a few hours of analysing generated assembly in radare2 and modyfying [scheduler.c](../src/arm/PL1/kernel/scheduler.c) and [PL0_test.c](../src/arm/PL0/PL0_test.c) to find, that the problem lies in the linker script.
1291 ** Bare-metal position indeppendent code
1292 We wanted to make bootloader and kernel able to run regardless of what address they are loaded at (also see comment in [kernel's stage1 linker script](../src/arm/PL1/kernel/kernel.ld)).
1293 To achieve the goal, we added -fPIC to compilation options of all arm code. With this, we decided we can, instead of embedding code in other code using objcopy, put relevant pieces of code in separate linker script sections, link them together and then copy entire sections to some other addresss in runtime. I.e. the exception vector would be linked with the actual kernel (loaded at 0x8000), but the copied along with exception handling routines to 0x0. It did work in 2 cases (of exception vector and libkernel), but once most of the project was modified to use this method of code embedding, it turned out to be faulty and work had to be done to move back to the use of objcopy.
1294 The problem is, -fPIC (as well af -fPIE) requires code to be loaded by some operating system or bootloader, that can fill it's got (global offset table). This is not being done in environment like ours.
1295 It is possible to generate ARM bare-metal position-independent code, that would work without got, but support for this is not implemented in gcc and is not a common feature in general.
1296 The solution was to write stage1 of both bootloader and the kernel in careful, position-independent assembly This required more effort, but was ultimately successful.
1298 ** Linker section naming
1299 Weird behaviour occurs, when trying to link object code files with nonstandard section names using GNU linker. Output sections defined in the linker script didn't cause problems in our case. Problems occured when input sections were nonstandard (such as sections generated by using __attribute__((section("name"))) in GCC-compiled C code), as they would not be included or would be included in wrong place, despite being explicitly listed for inclusion in the linker script's SECTION command.
1300 At some point, renaming a section from .boot to .text.boot would make the code work properly.
1303 This is a description of a mistake made by us during work on the project.
1304 At first, we didn't know about special features of SUBS pc, lr and ldm rn {pc} ^ instructions. Our code would switch to user mode by branching to code in PL0-accessible memory section and having it execute cps instruction. This worked, but was not good, because code executed by the kernel was in memory section writable by userspace code.
1305 First improvement was separating that code into "libkernel". Libkernel would be in a PL0-executable but non-writable section and would perform the switch.
1306 It did work, however, it was not the right way.
1307 We later learned how to achieve the same with subs/ldm and removed, making the project a bit simpler.
1309 ** Different modes' sp register
1310 System mode has separate stack pointer from supervisor mode, so when upon switch from supervisor to system mode it has to be set to point to the actual stack.
1311 At first we didn't know about that and we had undefined behaviour occur. At some points during the development, changing a line of code in one place would make a bug occur or not occur in some other, unrelated place in the kernel.
1313 ** Swithing between system mode and user mode
1314 It is also not allowed (undefined behaviour) to switch from system mode directly to user mode, which we were not aware of and which also caused some problem/bugs.
1316 ** UART interrupt masking
1317 Both BCM2835 ARM Peripherals manual and the manual to PL011 UART itself say, that writing 0s to PL011_UART_IMSC unmasks specific interrupts. Practical experiments showed, that it's the opposite: writing 1s enables specific interrupts and writing 0s disables them.
1318 UART code on wiki.osdev was also written to disable interrupts in the way described in the manuals. The interrrupts were then unmasked instead of masked. This didn't cause problems in practice, as UART interrupts have to also be unmasked elsewhere (register defined ARM_ENABLE_IRQS_2 in [interrupts.h](../src/arm/PL1/kernel/interrupts.h)) to actually occur.
1320 ** Terminal stdin breaking
1321 The very simple pipe_image program breaks stdin when run.
1322 Even other programs run in that same (bash) shell after pipe_image cannot read from stdin.
1323 In zsh other commands run interactively after pipe_image do work, but commands executed after pipe_image inside a shell function still have the problem occur.
1327 This project has been done as part of the Embedded Systems course on
1328 [[https://www.agh.edu.pl/en/][AGH University of Science and Technology]]. The goal of the project was to investigate and program the
1329 MMU (Memory Management Unit) of the RaspberryPi, but ended up to form a
1330 basis of a small operating system.
1331 [[https://www.raspberrypi.org/products/raspberry-pi-3-model-b/][RaspberyPi 3 model B]] was the hardware platform used, with stock firmware replaced
1333 [[https://github.com/christinaa/rpi-open-firmware][rpi-open-firmware]].
1334 An emulator, [[https://www.qemu.org/download/][qemu]] (version 2.9.1)
1335 capable of emulating an older RaspberryPi 2 was also used extensively.
1337 The project was written in C programming language and ARM assembly.
1338 Knowlegde of C is required to understand the code. Knowledge of ARM
1339 assembly is useful, but it should be considered a thing, that can be
1340 learned *while* working with it. Still, the reader should at least have
1341 an idea of what assembly language is and how it is used.
1343 This documentation is intended to provide information on bare-metal
1344 programming on the RapsberryPi and ARM in general, as well as
1345 description of our solutions and implementations. There is a lot of
1346 information available on the topic in online sources, yet it is not always in an
1347 easy-to-understand form and the amount of different options described in
1348 manuals might me overwhelming for people new to the topic. That's why we
1349 attempted to describe our work in a way the audience of bare-metal
1350 programming newcomers will find useful. External resources we used are listed at the end of the documentation.
1352 It is planned, for future years students of the Embedded Systems course,
1353 to have an option to continue or reuse previous projects, such as this
1354 one. We hope this documentation will prove useful to our younger
1355 colleagues who happen to be work with the codebase.
1357 In case on any bugs or questions, the authors can be contacted at kwojtus@protonmail.com.
1359 * Sources of Information
1361 * ARM GCC Inline Assembler Cookbook - [[http://www.ethernut.de/en/documents/arm-inline-asm.html]]
1362 * ARM Architecture Reference ManualĀ® ARMv7-A and ARMv7-R edition - [[https://static.docs.arm.com/ddi0406/c/DDI0406C_C_arm_architecture_reference_manual.pdf]] (probably the most useful document of all)
1363 * dwelch67 repository - [[https://github.com/dwelch67/raspberrypi]]
1364 * Booting ARM Linux - [[http://www.simtec.co.uk/products/SWLINUX/files/booting_article.html]] - very good description of atags
1365 * BCM2835 ARM Peripherals - [[https://github.com/raspberrypi/documentation/blob/master/hardware/raspberrypi/bcm2835/BCM2835-ARM-Peripherals.pdf]]
1366 * BCM2835 datasheet errata - [[https://elinux.org/BCM2835_datasheet_errata]]
1367 * Device Tree Specification - [[https://buildmedia.readthedocs.org/media/pdf/devicetree-specification/latest/devicetree-specification.pdf]]
1368 * online ARM Compiler toolchain Assembler Reference - [[http://infocenter.arm.com/help/topic/com.arm.doc.dui0489c/index.html]] - useful for it's descriptions of arm instructions, often shows high in search results
1369 * Christina Brook's rpi-open-firmware - [[https://github.com/christinaa/rpi-open-firmware]]
1370 * PrimeCell UART (PL011) Technical Reference Manual - [[http://infocenter.arm.com/help/topic/com.arm.doc.ddi0183g/DDI0183G_uart_pl011_r1p5_trm.pdf]]
1371 * GNU Make Manual - [[https://www.gnu.org/software/make/manual/]]
1372 * Red Hat Enterprise Linux 4: Using ld, the Gnu Linker - [[https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/4/html/Using_ld_the_GNU_Linker/sections.html]]