mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
f66b41c027
exo2: Implement uncompressor stub and boot code up to Main(). exo2: implement some more init (uart/gic) exo2: implement more of init exo2: improve reg api, add keyslot flag setters exo2: implement se aes decryption/enc exo2: fix bugs in loader stub/mmu mappings exo2: start skeletoning bootconfig/global context types arch: fix makefile flags exo2: implement through master key derivation exo2: implement device master keygen exo2: more init through start of SetupSocSecurity exo2: implement pmc secure scratch management se: implement sticky bit validation libexosphere: fix building for arm32 libexo: fix makefile flags libexo: support building for arm64/arm sc7fw: skeleton binary sc7fw: skeleton a little more sc7fw: implement all non-dram functionality exo2: fix DivideUp error sc7fw: implement more dram code, fix reg library errors sc7fw: complete sc7fw impl. exo2: skeleton the rest of SetupSocSecurity exo2: implement fiq interrupt handler exo2: implement all exception handlers exo2: skeleton the entire smc api, implement the svc invoker exo2: implement rest of SetupSocSecurity exo2: correct slave security errors exo2: fix register definition exo2: minor fixes
183 lines
No EOL
4 KiB
Text
183 lines
No EOL
4 KiB
Text
OUTPUT_ARCH(arm)
|
|
ENTRY(_start)
|
|
|
|
MEMORY
|
|
{
|
|
NULL : ORIGIN = 0, LENGTH = 4K
|
|
sc7fw : ORIGIN = 0x40003000, LENGTH = 4K
|
|
}
|
|
|
|
|
|
SECTIONS
|
|
{
|
|
/* =========== CODE section =========== */
|
|
PROVIDE(__start__ = ORIGIN(sc7fw));
|
|
. = __start__;
|
|
__code_start = . ;
|
|
|
|
.vectors :
|
|
{
|
|
KEEP (*(.vectors .vectors.*))
|
|
. = ALIGN(8);
|
|
} >sc7fw
|
|
|
|
.text :
|
|
{
|
|
*(.text.unlikely .text.*_unlikely .text.unlikely.*)
|
|
*(.text.exit .text.exit.*)
|
|
*(.text.startup .text.startup.*)
|
|
*(.text.hot .text.hot.*)
|
|
*(.text .stub .text.* .gnu.linkonce.t.*)
|
|
. = ALIGN(8);
|
|
} >sc7fw
|
|
|
|
.init :
|
|
{
|
|
KEEP( *(.init) )
|
|
. = ALIGN(8);
|
|
} >sc7fw
|
|
|
|
.plt :
|
|
{
|
|
*(.plt)
|
|
*(.iplt)
|
|
. = ALIGN(8);
|
|
} >sc7fw
|
|
|
|
.fini :
|
|
{
|
|
KEEP( *(.fini) )
|
|
. = ALIGN(8);
|
|
} >sc7fw
|
|
|
|
|
|
/* =========== RODATA section =========== */
|
|
. = ALIGN(8);
|
|
__rodata_start = . ;
|
|
|
|
.rodata :
|
|
{
|
|
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
|
. = ALIGN(8);
|
|
} >sc7fw
|
|
|
|
.eh_frame_hdr : { __eh_frame_hdr_start = .; *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) __eh_frame_hdr_end = .; } >sc7fw
|
|
.eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) } >sc7fw
|
|
.gcc_except_table : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) } >sc7fw
|
|
.gnu_extab : ONLY_IF_RO { *(.gnu_extab*) } >sc7fw
|
|
|
|
.hash : { *(.hash) } >sc7fw
|
|
|
|
/* =========== DATA section =========== */
|
|
. = ALIGN(8);
|
|
__data_start = . ;
|
|
|
|
.eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) } >sc7fw
|
|
.gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) } >sc7fw
|
|
.gnu_extab : ONLY_IF_RW { *(.gnu_extab*) } >sc7fw
|
|
.exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) } >sc7fw
|
|
|
|
.preinit_array ALIGN(8) :
|
|
{
|
|
PROVIDE (__preinit_array_start = .);
|
|
KEEP (*(.preinit_array))
|
|
PROVIDE (__preinit_array_end = .);
|
|
} >sc7fw
|
|
|
|
.init_array ALIGN(8) :
|
|
{
|
|
PROVIDE (__init_array_start = .);
|
|
KEEP (*(SORT(.init_array.*)))
|
|
KEEP (*(.init_array))
|
|
PROVIDE (__init_array_end = .);
|
|
} >sc7fw
|
|
|
|
.fini_array ALIGN(8) :
|
|
{
|
|
PROVIDE (__fini_array_start = .);
|
|
KEEP (*(.fini_array))
|
|
KEEP (*(SORT(.fini_array.*)))
|
|
PROVIDE (__fini_array_end = .);
|
|
} >sc7fw
|
|
|
|
.ctors ALIGN(8) :
|
|
{
|
|
KEEP (*crtbegin.o(.ctors)) /* MUST be first -- GCC requires it */
|
|
KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors))
|
|
KEEP (*(SORT(.ctors.*)))
|
|
KEEP (*(.ctors))
|
|
} >sc7fw
|
|
|
|
.dtors ALIGN(8) :
|
|
{
|
|
KEEP (*crtbegin.o(.dtors))
|
|
KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors))
|
|
KEEP (*(SORT(.dtors.*)))
|
|
KEEP (*(.dtors))
|
|
} >sc7fw
|
|
|
|
__got_start__ = .;
|
|
|
|
.got : { *(.got) *(.igot) } >sc7fw
|
|
.got.plt : { *(.got.plt) *(.igot.plt) } >sc7fw
|
|
|
|
__got_end__ = .;
|
|
|
|
.data ALIGN(8) :
|
|
{
|
|
*(.data .data.* .gnu.linkonce.d.*)
|
|
SORT(CONSTRUCTORS)
|
|
} >sc7fw
|
|
|
|
__bss_start__ = .;
|
|
.bss ALIGN(8) :
|
|
{
|
|
*(.dynbss)
|
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
|
*(COMMON)
|
|
. = ALIGN(16);
|
|
} >sc7fw
|
|
__bss_end__ = .;
|
|
|
|
__end__ = ABSOLUTE(.) ;
|
|
|
|
/* ==================
|
|
==== Metadata ====
|
|
================== */
|
|
|
|
/* Discard sections that difficult post-processing */
|
|
/DISCARD/ : { *(.group .comment .note .interp) }
|
|
|
|
/* Stabs debugging sections. */
|
|
.stab 0 : { *(.stab) }
|
|
.stabstr 0 : { *(.stabstr) }
|
|
.stab.excl 0 : { *(.stab.excl) }
|
|
.stab.exclstr 0 : { *(.stab.exclstr) }
|
|
.stab.index 0 : { *(.stab.index) }
|
|
.stab.indexstr 0 : { *(.stab.indexstr) }
|
|
|
|
/* DWARF debug sections.
|
|
Symbols in the DWARF debugging sections are relative to the beginning
|
|
of the section so we begin them at 0. */
|
|
|
|
/* DWARF 1 */
|
|
.debug 0 : { *(.debug) }
|
|
.line 0 : { *(.line) }
|
|
|
|
/* GNU DWARF 1 extensions */
|
|
.debug_srcinfo 0 : { *(.debug_srcinfo) }
|
|
.debug_sfnames 0 : { *(.debug_sfnames) }
|
|
|
|
/* DWARF 1.1 and DWARF 2 */
|
|
.debug_aranges 0 : { *(.debug_aranges) }
|
|
.debug_pubnames 0 : { *(.debug_pubnames) }
|
|
|
|
/* DWARF 2 */
|
|
.debug_info 0 : { *(.debug_info) }
|
|
.debug_abbrev 0 : { *(.debug_abbrev) }
|
|
.debug_line 0 : { *(.debug_line) }
|
|
.debug_frame 0 : { *(.debug_frame) }
|
|
.debug_str 0 : { *(.debug_str) }
|
|
.debug_loc 0 : { *(.debug_loc) }
|
|
.debug_macinfo 0 : { *(.debug_macinfo) }
|
|
} |