Espruino/scripts/build_linker.py
Gordon Williams (u36) a68ceb58b7 Revert "now link for 0x00000000 rather than 0x08000000. Supposedly (F401 ref, 7.2.1) this means the instruction cachge gets used when it may not have been before"
Reverted because ST Nucleo bootloader rejects binaries with 0-based addresses in vector table

This reverts commit dba2eb8fbbfee9c907e72115a4b741d30a3f8d9d.
2016-06-08 16:13:30 +01:00

190 lines
5.6 KiB
Python

#!/usr/bin/python
# This file is part of Espruino, a JavaScript interpreter for Microcontrollers
#
# Copyright (C) 2013 Gordon Williams <gw@pur3.co.uk>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# ----------------------------------------------------------------------------------------
# Reads board information from boards/BOARDNAME.py and uses it to generate
# a linker file
# ----------------------------------------------------------------------------------------
import subprocess;
import re;
import json;
import sys;
import os;
import importlib;
import common;
scriptdir = os.path.dirname(os.path.realpath(__file__))
basedir = scriptdir+"/../"
sys.path.append(basedir+"scripts");
sys.path.append(basedir+"boards");
import pinutils;
# -----------------------------------------------------------------------------------------
def die(err):
sys.stderr.write("ERROR: "+err+"\n")
sys.exit(1)
# -----------------------------------------------------------------------------------------
# Now scan AF file
print("Script location "+scriptdir)
if len(sys.argv)<3:
print("ERROR, USAGE: build_linker.py BOARD_NAME LINKER_FILE [--bootloader_leave_space] [--bootloader]")
print(" --using_bootloader -> step forwards in flash to leave room for bootloader")
print(" --bootloader -> is a bootloader - place it in the correct position")
exit(1)
boardname = sys.argv[1]
linkerFilename = sys.argv[2]
IS_BOOTLOADER = False
IS_USING_BOOTLOADER = False
for i in range(3,len(sys.argv)):
arg = sys.argv[i];
if arg=="--using_bootloader": IS_USING_BOOTLOADER=True
elif arg=="--bootloader": IS_BOOTLOADER=True
else: die("Unknown option '"+arg+"'");
print("LINKER_FILENAME "+linkerFilename)
print("BOARD "+boardname)
print("IS_BOOTLOADER "+str(IS_BOOTLOADER))
print("IS_USING_BOOTLOADER "+str(IS_USING_BOOTLOADER))
# import the board def
board = importlib.import_module(boardname)
# Check what board py says
BOARD_BOOTLOADER = "bootloader" in board.info and board.info["bootloader"]!=0
if BOARD_BOOTLOADER != (IS_BOOTLOADER or IS_USING_BOOTLOADER):
die("Makefile ("+str(IS_BOOTLOADER or IS_USING_BOOTLOADER)+") and BOARD.py ("+str(BOARD_BOOTLOADER)+") do not agree over bootloaderiness")
# -----------------------------------------------------------------------------------------
linkerFile = open(linkerFilename, 'w')
def codeOut(s): linkerFile.write(s+"\n");
# -----------------------------------------------------------------------------------------
BOOTLOADER_SIZE = common.get_bootloader_size(board);
RAM_BASE = 0x20000000;
FLASH_BASE = 0x08000000;
RAM_SIZE = board.chip["ram"]*1024;
FLASH_SIZE = board.chip["flash"]*1024;
# Beware - on some devices (the STM32F4) the memory is divided into two non-continuous blocks
if board.chip["family"]=="STM32F4" and RAM_SIZE > 128*1204:
RAM_SIZE = 128*1024
if IS_BOOTLOADER:
FLASH_SIZE = BOOTLOADER_SIZE
elif IS_USING_BOOTLOADER:
FLASH_BASE = common.get_espruino_binary_address(board)
FLASH_SIZE -= BOOTLOADER_SIZE
STACK_START = RAM_BASE + RAM_SIZE
codeOut("""
/* Automatically generated linker file for """+boardname+"""
Generated by scripts/build_linker.py
ENTRY(Reset_Handler)
/* Highest stack address */
_estack = """+hex(STACK_START)+""";
MEMORY
{
FLASH (rx) : ORIGIN = """+hex(FLASH_BASE)+""", LENGTH = """+str(int(FLASH_SIZE/1024))+"""K
RAM (xrw) : ORIGIN = """+hex(RAM_BASE)+""", LENGTH = """+str(int(RAM_SIZE/1024))+"""K
}
SECTIONS
{
/* FLASH --------------------------------------------- */
/* Interrupt Vector table goes first */
.isr_vector :
{
. = ALIGN(0x200); /* STM32 requires this alignment */
_VECTOR_TABLE = .; /* We'll need this for relocating our table */
KEEP(*(.isr_vector))
. = ALIGN(4);
} >FLASH
.ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
.ARM : {
__exidx_start = .;
*(.ARM.exidx*)
__exidx_end = .;
} >FLASH
/* Then code, then constants */
.text :
{
""")
if not IS_USING_BOOTLOADER and not IS_BOOTLOADER and "place_text_section" in board.chip:
codeOut(""" /* In the .py file we were told to place text here (to skip out what was before) */
. = ALIGN("""+hex(board.chip["place_text_section"] & 0x00FFFFFF)+"""); /* hacky! really want it absolute */
""");
codeOut("""
. = ALIGN(4);
*(.text)
*(.text*)
*(.rodata)
*(.rodata*)
. = ALIGN(4);
_etext = .;
} >FLASH
/* used by the startup to initialize data */
_sidata = .;
/* Initialized data sections goes into RAM, load LMA copy after code */
.data : AT ( _sidata )
{
. = ALIGN(4);
_sdata = .; /* create a global symbol at data start */
*(.data) /* .data sections */
*(.data*) /* .data* sections */
. = ALIGN(4);
_edata = .; /* define a global symbol at data end */
} >RAM
/* Uninitialized data section */
. = ALIGN(4);
.bss :
{
/* This is used by the startup in order to initialize the .bss secion */
_sbss = .; /* define a global symbol at bss start */
__bss_start__ = _sbss;
*(.bss)
*(.bss*)
*(COMMON)
. = ALIGN(4);
_ebss = .; /* define a global symbol at bss end */
} >RAM
PROVIDE ( _end = _ebss );
/* Remove stuff we don't want */
/DISCARD/ :
{
*(.init) /* we don't call init and fini anyway. GCC 5.x starting added them but then optimising them out */
*(.fini)
libc.a ( * )
libm.a ( * )
libgcc.a ( * )
}
}
""");