Permalink
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up| /* | |
| * Copyright (c) 2018 naehrwert, Reisyukaku | |
| * | |
| * This program is free software; you can redistribute it and/or modify it | |
| * under the terms and conditions of the GNU General Public License, | |
| * version 2, as published by the Free Software Foundation. | |
| * | |
| * This program is distributed in the hope it will be useful, but WITHOUT | |
| * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
| * more details. | |
| * | |
| * You should have received a copy of the GNU General Public License | |
| * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| */ | |
| .section .text.start | |
| .arm | |
| .extern memset | |
| .type memset, %function | |
| .extern heap_init | |
| .type heap_init, %function | |
| .extern bootrom | |
| .type bootrom, %function | |
| .extern bootloader | |
| .type bootloader, %function | |
| .extern firmware | |
| .type firmware, %function | |
| .globl _start | |
| .type _start, %function | |
| _start: | |
| ADR R0, _start | |
| LDR R1, =payload_start | |
| CMP R0, R1 | |
| BEQ _real_start | |
| /* If we are not in the right location already, copy a relocator to upper IRAM. */ | |
| ADR R2, reloc_payload | |
| LDR R3, =0x4003FF00 | |
| MOV R4, #(_real_start - reloc_payload) | |
| _copy_loop: | |
| LDMIA R2!, {R5} | |
| STMIA R3!, {R5} | |
| SUBS R4, #4 | |
| BNE _copy_loop | |
| /* Use the relocator to copy ourselves into the right place. */ | |
| LDR R2, =payload_end | |
| SUB R2, R2, R1 | |
| LDR R3, =_real_start | |
| LDR R4, =0x4003FF00 | |
| BX R4 | |
| reloc_payload: | |
| LDMIA R0!, {R4-R7} | |
| STMIA R1!, {R4-R7} | |
| SUBS R2, #0x10 | |
| BNE reloc_payload | |
| /* Jump to the relocated entry. */ | |
| BX R3 | |
| _real_start: | |
| /* Initially, we place our stack in IRAM but will move it to SDRAM later. */ | |
| LDR SP, =0x4003FF00 | |
| LDR R0, =__bss_start | |
| EOR R1, R1, R1 | |
| LDR R2, =__bss_end | |
| SUB R2, R2, R0 | |
| BL memset | |
| LDR R0, =0x90020000 | |
| BL heap_init | |
| BL bootrom | |
| BL bootloader | |
| BL firmware | |
| B . |