Added README.md

This commit is contained in:
imi415 2022-08-06 00:11:27 +08:00
commit e0c277c3e5
Signed by: imi415
GPG Key ID: 17F01E106F9F5E0A
1 changed files with 23 additions and 0 deletions

23
README.md Normal file
View File

@ -0,0 +1,23 @@
# Secondary Bootloader (SPL) for baremetal NextVOD box
As the EMI SPI interface only accepts 32 bit accesses,
a secondary bootloader is required for code memory (for now).
This bootloader will:
* Initialize LMI(DDR2) memory
* Configure caches
* Find the text size from a descriptor(see below)
* Load and execute the application code from LMI.
## Application descriptor
| Offset | Content |
|-|-|
| 0x00 | text length |
| 0x04 | entry point |
## Project status
TODO
## Partition scheme
> Currently 32kB Flash is planned for SPL.