/*======================================================================*/ /* Proxy kernel linker script */ /*======================================================================*/ /* This is the linker script used when building the proxy kernel. */ /*----------------------------------------------------------------------*/ /* Setup */ /*----------------------------------------------------------------------*/ /* The OUTPUT_ARCH command specifies the machine architecture where the argument is one of the names used in the BFD library. More specifically one of the entires in bfd/cpu-mips.c */ /* This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. */ OUTPUT_FORMAT("elf32-littleriscv", "elf32-littleriscv", "elf32-littleriscv") OUTPUT_ARCH(riscv) ENTRY(crtStart) MEMORY { onChipRam (W!RX)/*(RX)*/ : ORIGIN = 0x80000000, LENGTH = 4K sdram (W!RX) : ORIGIN = 0x40000000, LENGTH = 64M } _stack_size = 2k; _heap_size = 0k; SECTIONS /*TODO don't initialize useless things, restore literal loading that use 2 instruction in place of onChipRam word */ { .vector : { *crt.o(.text); } > onChipRam .memory : { *(.text); end = .; } > sdram .rodata : { *(.rdata) *(.rodata .rodata.*) *(.gnu.linkonce.r.*) } > sdram .ctors : { . = ALIGN(4); _ctors_start = .; KEEP(*(.init_array*)) KEEP (*(SORT(.ctors.*))) KEEP (*(.ctors)) . = ALIGN(4); _ctors_end = .; } > sdram .data : { *(.rdata) *(.rodata .rodata.*) *(.gnu.linkonce.r.*) *(.data .data.*) *(.gnu.linkonce.d.*) . = ALIGN(8); PROVIDE( __global_pointer$ = . + 0x800 ); *(.sdata .sdata.*) *(.gnu.linkonce.s.*) . = ALIGN(8); *(.srodata.cst16) *(.srodata.cst8) *(.srodata.cst4) *(.srodata.cst2) *(.srodata .srodata.*) } > sdram .bss (NOLOAD) : { . = ALIGN(4); /* This is used by the startup in order to initialize the .bss secion */ _bss_start = .; *(.sbss*) *(.gnu.linkonce.sb.*) *(.bss .bss.*) *(.gnu.linkonce.b.*) *(COMMON) . = ALIGN(4); _bss_end = .; } > sdram .noinit (NOLOAD) : { . = ALIGN(4); *(.noinit .noinit.*) . = ALIGN(4); } > sdram ._user_heap (NOLOAD): { . = ALIGN(8); PROVIDE ( end = . ); PROVIDE ( _end = . ); PROVIDE ( _heap_start = .); . = . + _heap_size; . = ALIGN(8); PROVIDE ( _heap_end = .); } > sdram ._stack (NOLOAD): { . = ALIGN(16); PROVIDE (_stack_end = .); . = . + _stack_size; . = ALIGN(16); PROVIDE (_stack_start = .); } > onChipRam }