strawberryhacker / operating-system-cortex-m7

Operating system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Summary

Vanilla is a single-core operating system for the ARMv7 architecture. It will work on all Cortex-M7 processors from Microchip. The SAME70 Xplained board might be the best choice for testing as it doesn't require any port. I will make a custom board soon and explain the porting process - it's easy!

Building

To compile this project make and arm-none-eabi is needed. In Ubuntu they are installed by:

> sudo apt-get update -y
> sudo apt-get install build-essential
> sudo apt-get install -y gcc-arm-none-eabi

Go in the bootloader directory and type make

Flash the bootloader binary (in the build directory) at address 0x00400000. This can be done with Atmel Studio or OpenOCD

Line number 92 in the Makefile specifies which COM port the programming script will use to connect to the board. In Ubuntu it is /dev/ttySx and in Windows COMx. Change this according to which COM port you use.

Go to the kernel directory and type make. This will automatically flash the chip.

Upcoming features

  • Safe bootloader w/hash check ✓
  • Python kernel programmer ✓
  • Basic driver support ✓
  • SD card support ✓
  • General purpose DMA core itegrated with the scheduler
  • Multiclass scheduler w/FPU support and lazy stacking ✓
  • Runtime statistics ✓
  • Memory statistics
  • System calls ✓
  • Locks ✓
  • Runtime program execution (.bin) ✓
  • Runtime program execution (.elf)
  • LCD support with video playback (raw format)
  • FAT32 stack ✓
  • TCP/IP stack
  • Server support
  • Audio interface
  • USB 2.0 high-speed host interface
  • USB MSC with FAT32 support
  • USB HID with support for mouse and keyboard
  • USB Audio class
  • GPU interface
  • ARMv7 assembler with floating point extension
  • GUI, terminals, LCD etc.
  • Add thread safety
  • Support memory fault cleanup from program testing
  • Dynamic MPU regions in case of thread failure

This will not be implemented... I went to the A-series after limitations on the USB host. These features will hopefully be present in the next OS. And I will maybe make a port with the Cortex-M7.

Everything will be completely bare metal - no libraries - literally

Bootloader

The software embeds a flash bootloader residing inside flash at address 0x00400000. It can open a serial connection with a host computer in order to download the new kernel. The bootloader will load the kernel to address 0x00404000. The first page of the image (512-bytes) must consist of the kernel header. Therefore the actual application and vector table starts at address 0x00404200. The bootloader is accessed in the following ways:

  • kernel info struct not matching the bootloader info struct
  • kernel image not valid (SHA256 mismatch)
  • boot signature at address 0x20400000 says "StayInBootloader"
  • trigger the boot-pin during reset (pull GPIOA 11 low)

In order to program the chip on-the-fly the kernel should provide the same serial interface as the bootloader. If the character \0 is received it should write the boot signature and reset itself. However, when a software failure occurs, the kernel might not be able to process the serial interrupts. Therefore two mechanisms have been added to ensure the bootloader will be usable.

  • Panic is safe to use. It will print the debug info and return straight to the bootloader
  • If the programming interface is not responding, the CPU has stopped somewhere. To bypass the image loading stage in the bootloader; hold in SW0 while resetting the board. This will start up the bootloader.

About

Operating system

License:MIT License


Languages

Language:C 91.7%Language:Assembly 3.2%Language:Makefile 3.2%Language:Python 1.9%