git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4649 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
1c75f310cc
commit
037baacda7
|
@ -23,10 +23,14 @@ ifeq ($(USE_LINK_GC),)
|
||||||
USE_LINK_GC = no
|
USE_LINK_GC = no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Enable register caching optimization (read documentation).
|
# If enabled, this option allows to compile the application in VLE mode.
|
||||||
# Option not tested on MSP430, DO NOT USE.
|
ifeq ($(USE_VLE),)
|
||||||
ifeq ($(USE_CURRP_CACHING),)
|
USE_VLE = yes
|
||||||
USE_CURRP_CACHING = no
|
endif
|
||||||
|
|
||||||
|
# Enable this if you want to see the full log while compiling.
|
||||||
|
ifeq ($(USE_VERBOSE_COMPILE),)
|
||||||
|
USE_VERBOSE_COMPILE = no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -40,18 +44,18 @@ endif
|
||||||
# Define project name here
|
# Define project name here
|
||||||
PROJECT = ch
|
PROJECT = ch
|
||||||
|
|
||||||
# Define linker script file here
|
|
||||||
LDSCRIPT = ./ch.ld
|
|
||||||
|
|
||||||
# Imported source files
|
# Imported source files
|
||||||
CHIBIOS = ../..
|
CHIBIOS = ../..
|
||||||
include $(CHIBIOS)/boards/GENERIC_SPC563/board.mk
|
include $(CHIBIOS)/boards/GENERIC_SPC563/board.mk
|
||||||
include $(CHIBIOS)/os/hal/platforms/SPC56x/platform.mk
|
include $(CHIBIOS)/os/hal/platforms/SPC56x/platform.mk
|
||||||
include $(CHIBIOS)/os/hal/hal.mk
|
include $(CHIBIOS)/os/hal/hal.mk
|
||||||
include $(CHIBIOS)/os/ports/GCC/PPC/port.mk
|
include $(CHIBIOS)/os/ports/GCC/PPC/SPC563Mxx/port.mk
|
||||||
include $(CHIBIOS)/os/kernel/kernel.mk
|
include $(CHIBIOS)/os/kernel/kernel.mk
|
||||||
include $(CHIBIOS)/test/test.mk
|
include $(CHIBIOS)/test/test.mk
|
||||||
|
|
||||||
|
# Define linker script file here
|
||||||
|
LDSCRIPT= $(PORTLD)/SPC563M64.ld
|
||||||
|
|
||||||
# C sources here.
|
# C sources here.
|
||||||
CSRC = $(PORTSRC) \
|
CSRC = $(PORTSRC) \
|
||||||
$(KERNSRC) \
|
$(KERNSRC) \
|
||||||
|
@ -68,9 +72,7 @@ CSRC = $(PORTSRC) \
|
||||||
CPPSRC =
|
CPPSRC =
|
||||||
|
|
||||||
# List ASM source files here
|
# List ASM source files here
|
||||||
ASMSRC = $(PORTASM) \
|
ASMSRC = $(PORTASM)
|
||||||
$(CHIBIOS)/os/ports/GCC/PPC/SPC56x/ivor.s \
|
|
||||||
$(CHIBIOS)/os/ports/GCC/PPC/SPC56x/vectors.s
|
|
||||||
|
|
||||||
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
|
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
|
||||||
$(HALINC) $(PLATFORMINC) $(BOARDINC) \
|
$(HALINC) $(PLATFORMINC) $(BOARDINC) \
|
||||||
|
@ -84,9 +86,10 @@ INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
|
||||||
# Compiler settings
|
# Compiler settings
|
||||||
#
|
#
|
||||||
|
|
||||||
MCU = e500mc -meabi -msdata=none -mnew-mnemonics -mregnames
|
MCU = e200zx -meabi -msdata=none -mnew-mnemonics -mregnames
|
||||||
|
|
||||||
TRGT = powerpc-eabi-
|
#TRGT = powerpc-eabi-
|
||||||
|
TRGT = ppc-vle-
|
||||||
CC = $(TRGT)gcc
|
CC = $(TRGT)gcc
|
||||||
CPPC = $(TRGT)g++
|
CPPC = $(TRGT)g++
|
||||||
# Enable loading with g++ only if you need C++ runtime support.
|
# Enable loading with g++ only if you need C++ runtime support.
|
||||||
|
@ -115,7 +118,7 @@ CPPWARN = -Wall -Wextra
|
||||||
#
|
#
|
||||||
|
|
||||||
# List all default C defines here, like -D_DEBUG=1
|
# List all default C defines here, like -D_DEBUG=1
|
||||||
DDEFS = -DPPC_VARIANT=PPC_VARIANT_e200z3
|
DDEFS =
|
||||||
|
|
||||||
# List all default ASM defines here, like -D_DEBUG=1
|
# List all default ASM defines here, like -D_DEBUG=1
|
||||||
DADEFS =
|
DADEFS =
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file SPC56x/ivor.s
|
* @file SPC563Mxx/ivor.s
|
||||||
* @brief PowerPC IVORx handlers.
|
* @brief PowerPC IVORx handlers.
|
||||||
*
|
*
|
||||||
* @addtogroup PPC_CORE
|
* @addtogroup PPC_CORE
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
.equ INTC_IACKR, 0xfff48010
|
.equ INTC_IACKR, 0xfff48010
|
||||||
.equ INTC_EOIR, 0xfff48018
|
.equ INTC_EOIR, 0xfff48018
|
||||||
|
|
||||||
.section .handlers
|
.section .handlers, "ax"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* IVOR10 handler (Book-E decrementer).
|
* IVOR10 handler (Book-E decrementer).
|
|
@ -45,34 +45,77 @@ __ram_end__ = ORIGIN(ram) + LENGTH(ram);
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
. = ORIGIN(flash);
|
. = ORIGIN(flash);
|
||||||
|
.boot : ALIGN(16) SUBALIGN(16)
|
||||||
.text : ALIGN(16) SUBALIGN(16)
|
|
||||||
{
|
{
|
||||||
__ivpr_base__ = .;
|
__ivpr_base__ = .;
|
||||||
KEEP(*(.bam))
|
KEEP(*(.bam))
|
||||||
|
KEEP(*(.crt0))
|
||||||
KEEP(*(.handlers))
|
KEEP(*(.handlers))
|
||||||
. = ALIGN(0x800);
|
. = ALIGN(0x800);
|
||||||
KEEP(*(.vectors))
|
KEEP(*(.vectors))
|
||||||
*(.text .stub .text.* .gnu.linkonce.t.*)
|
} > flash
|
||||||
*(.glue_7t);
|
|
||||||
*(.glue_7);
|
constructors : ALIGN(4) SUBALIGN(4)
|
||||||
*(.ctors);
|
{
|
||||||
*(.dtors);
|
PROVIDE(__init_array_start = .);
|
||||||
|
KEEP(*(SORT(.init_array.*)))
|
||||||
|
KEEP(*(.init_array))
|
||||||
|
PROVIDE(__init_array_end = .);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
destructors : ALIGN(4) SUBALIGN(4) FLAGS(ax)
|
||||||
|
{
|
||||||
|
PROVIDE(__fini_array_start = .);
|
||||||
|
KEEP(*(.fini_array))
|
||||||
|
KEEP(*(SORT(.fini_array.*)))
|
||||||
|
PROVIDE(__fini_array_end = .);
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.text_vle : ALIGN(16) SUBALIGN(16) FLAGS(axv)
|
||||||
|
{
|
||||||
|
*(.text_vle)
|
||||||
|
*(.text_vle.*)
|
||||||
|
*(.gnu.linkonce.t_vle.*)
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.text : ALIGN(16) SUBALIGN(16) FLAGS(ax)
|
||||||
|
{
|
||||||
|
*(.text)
|
||||||
|
*(.text.*)
|
||||||
|
*(.gnu.linkonce.t.*)
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.rodata : ALIGN(16) SUBALIGN(16)
|
.rodata : ALIGN(16) SUBALIGN(16)
|
||||||
{
|
{
|
||||||
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
*(.glue_7t)
|
||||||
|
*(.glue_7)
|
||||||
|
*(.gcc*)
|
||||||
|
*(.rodata)
|
||||||
|
*(.rodata.*)
|
||||||
*(.rodata1)
|
*(.rodata1)
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.sdata2 : ALIGN(16) SUBALIGN(16)
|
.sdata2 : ALIGN(16) SUBALIGN(16)
|
||||||
{
|
{
|
||||||
__sdata2_start__ = . + 0x8000;
|
__sdata2_start__ = . + 0x8000;
|
||||||
*(.sdata2 .sdata2.* .gnu.linkonce.s2.*)
|
*(.sdata2)
|
||||||
*(.sbss2 .sbss2.* .gnu.linkonce.sb2.*)
|
*(.sdata2.*)
|
||||||
|
*(.gnu.linkonce.s2.*)
|
||||||
|
*(.sbss2)
|
||||||
|
*(.sbss2.*)
|
||||||
|
*(.gnu.linkonce.sb2.*)
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
|
.eh_frame_hdr :
|
||||||
|
{
|
||||||
|
*(.eh_frame_hdr)
|
||||||
|
} > flash
|
||||||
|
|
||||||
|
.eh_frame : ONLY_IF_RO
|
||||||
|
{
|
||||||
|
*(.eh_frame)
|
||||||
|
} > flash
|
||||||
|
|
||||||
.romdata : ALIGN(16) SUBALIGN(16)
|
.romdata : ALIGN(16) SUBALIGN(16)
|
||||||
{
|
{
|
||||||
__romdata_start__ = .;
|
__romdata_start__ = .;
|
||||||
|
@ -82,30 +125,33 @@ SECTIONS
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__data_start__ = .;
|
__data_start__ = .;
|
||||||
*(.data .data.* .gnu.linkonce.d.*)
|
*(.data)
|
||||||
|
*(.data.*)
|
||||||
|
*(.gnu.linkonce.d.*)
|
||||||
__sdata_start__ = . + 0x8000;
|
__sdata_start__ = . + 0x8000;
|
||||||
*(.sdata .sdata.* .gnu.linkonce.s.*)
|
*(.sdata)
|
||||||
|
*(.sdata.*)
|
||||||
|
*(.gnu.linkonce.s.*)
|
||||||
__data_end__ = .;
|
__data_end__ = .;
|
||||||
} > ram
|
} > ram
|
||||||
|
|
||||||
.sbss :
|
.sbss :
|
||||||
{
|
{
|
||||||
__bss_start__ = .;
|
__bss_start__ = .;
|
||||||
*(.sbss .sbss.* .gnu.linkonce.sb.*)
|
*(.sbss)
|
||||||
|
*(.sbss.*)
|
||||||
|
*(.gnu.linkonce.sb.*)
|
||||||
*(.scommon)
|
*(.scommon)
|
||||||
} > ram
|
} > ram
|
||||||
|
|
||||||
.bss :
|
.bss :
|
||||||
{
|
{
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss)
|
||||||
|
*(.bss.*)
|
||||||
|
*(.gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
__bss_end__ = .;
|
__bss_end__ = .;
|
||||||
} > ram
|
} > ram
|
||||||
|
|
||||||
/DISCARD/ :
|
|
||||||
{
|
|
||||||
*(.eh_*)
|
|
||||||
}
|
|
||||||
|
|
||||||
__heap_base__ = __bss_end__;
|
__heap_base__ = __bss_end__;
|
||||||
__heap_end__ = __ram_end__ - __stacks_total_size__;
|
__heap_end__ = __ram_end__ - __stacks_total_size__;
|
|
@ -0,0 +1,11 @@
|
||||||
|
# List of the ChibiOS/RT SPC563Mxx port files.
|
||||||
|
PORTSRC = ${CHIBIOS}/os/ports/GCC/PPC/chcore.c
|
||||||
|
|
||||||
|
PORTASM = ${CHIBIOS}/os/ports/GCC/PPC/SPC563Mxx/vectors.s \
|
||||||
|
${CHIBIOS}/os/ports/GCC/PPC/SPC563Mxx/ivor.s \
|
||||||
|
${CHIBIOS}/os/ports/GCC/PPC/crt0.s
|
||||||
|
|
||||||
|
PORTINC = ${CHIBIOS}/os/ports/GCC/PPC \
|
||||||
|
${CHIBIOS}/os/ports/GCC/PPC/SPC563Mxx
|
||||||
|
|
||||||
|
PORTLD = ${CHIBIOS}/os/ports/GCC/PPC/SPC563Mxx/ld
|
|
@ -0,0 +1,52 @@
|
||||||
|
/*
|
||||||
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||||
|
2011,2012 Giovanni Di Sirio.
|
||||||
|
|
||||||
|
This file is part of ChibiOS/RT.
|
||||||
|
|
||||||
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
ChibiOS/RT is distributed in the hope that 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file SPC563Mxx/ppcparams.h
|
||||||
|
* @brief PowerPC parameters for the SPC563Mxx.
|
||||||
|
*
|
||||||
|
* @defgroup PPC_SPC563Mxx SPC563Mxx/MPC563x Specific Parameters
|
||||||
|
* @ingroup PPC_SPECIFIC
|
||||||
|
* @details This file contains the PowerPC specific parameters for the
|
||||||
|
* SPC563Mxx/MPC563x platform.
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _PPCPARAMS_H_
|
||||||
|
#define _PPCPARAMS_H_
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief PPC core model.
|
||||||
|
*/
|
||||||
|
#define PPC_VARIANT PPC_VARIANT_e200z3
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Book E instruction set support.
|
||||||
|
*/
|
||||||
|
#define PPC_SUPPORTS_BOOKE TRUE
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief VLE instruction set support.
|
||||||
|
*/
|
||||||
|
#define PPC_SUPPORTS_VLE TRUE
|
||||||
|
|
||||||
|
#endif /* _PPCPARAMS_H_ */
|
||||||
|
|
||||||
|
/** @} */
|
|
@ -19,28 +19,29 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file SPC56x/vectors.s
|
* @file SPC563Mxx/vectors.s
|
||||||
* @brief SPC56x vectors table.
|
* @brief SPC563Mxx vectors table.
|
||||||
*
|
*
|
||||||
* @addtogroup PPC_CORE
|
* @addtogroup PPC_CORE
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
/** @cond never */
|
|
||||||
|
|
||||||
/*
|
#if !defined(__DOXYGEN__)
|
||||||
* BAM info, SWT off, WTE off, VLE off.
|
|
||||||
*/
|
/* BAM info, SWT off, WTE off, VLE from settings.*/
|
||||||
.section .bam
|
.section .bam, "ax"
|
||||||
|
#if PPC_USE_VLE
|
||||||
|
.long 0x015A0000
|
||||||
|
#else
|
||||||
.long 0x005A0000
|
.long 0x005A0000
|
||||||
|
#endif
|
||||||
.long _boot_address
|
.long _boot_address
|
||||||
|
|
||||||
/*
|
/* Software vectors table. The vectors are accessed from the IVOR4
|
||||||
* Software vectors table. The vectors are accessed from the IVOR4
|
handler only. In order to declare an interrupt handler just create
|
||||||
* handler only. In order to declare an interrupt handler just create
|
a function withe the same name of a vector, the symbol will
|
||||||
* a function withe the same name of a vector, the symbol will
|
override the weak symbol declared here.*/
|
||||||
* override the weak symbol declared here.
|
.section .vectors, "ax"
|
||||||
*/
|
|
||||||
.section .vectors
|
|
||||||
.align 4
|
.align 4
|
||||||
.globl _vectors
|
.globl _vectors
|
||||||
_vectors:
|
_vectors:
|
||||||
|
@ -1488,8 +1489,10 @@ vector358:
|
||||||
vector359:
|
vector359:
|
||||||
|
|
||||||
.globl _unhandled_irq
|
.globl _unhandled_irq
|
||||||
|
.type _unhandled_irq, @function
|
||||||
_unhandled_irq:
|
_unhandled_irq:
|
||||||
b _unhandled_irq
|
b _unhandled_irq
|
||||||
|
|
||||||
/** @endcond */
|
#endif /* !defined(__DOXYGEN__) */
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
|
@ -33,30 +33,68 @@
|
||||||
#error "option CH_DBG_ENABLE_STACK_CHECK not supported by this port"
|
#error "option CH_DBG_ENABLE_STACK_CHECK not supported by this port"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*===========================================================================*/
|
||||||
* Port-related configuration parameters.
|
/* Port constants (common). */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/* Added to make the header stand-alone when included from asm.*/
|
||||||
|
#ifndef FALSE
|
||||||
|
#define FALSE 0
|
||||||
|
#endif
|
||||||
|
#ifndef TRUE
|
||||||
|
#define TRUE (!FALSE)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @name Supported core variants
|
||||||
|
* @{
|
||||||
*/
|
*/
|
||||||
|
#define PPC_VARIANT_e200z0 200
|
||||||
|
#define PPC_VARIANT_e200z3 203
|
||||||
|
#define PPC_VARIANT_e200z4 204
|
||||||
|
/** @} */
|
||||||
|
|
||||||
|
#include "ppcparams.h"
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* Port macros (common). */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* Port configurable parameters (common). */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Use VLE instruction set.
|
||||||
|
* @note This parameter is usually set in the Makefile.
|
||||||
|
*/
|
||||||
|
#if !defined(PPC_USE_VLE)
|
||||||
|
#define PPC_USE_VLE TRUE
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Enables the use of the @p WFI instruction.
|
* @brief Enables the use of the @p WFI instruction.
|
||||||
*/
|
*/
|
||||||
#ifndef ENABLE_WFI_IDLE
|
#if !defined(PPC_ENABLE_WFI_IDLE)
|
||||||
#define ENABLE_WFI_IDLE 0
|
#define PPC_ENABLE_WFI_IDLE FALSE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Core variants identifiers.*/
|
/*===========================================================================*/
|
||||||
#define PPC_VARIANT_e200z3 3 /**< e200z3 core identifier. */
|
/* Port derived parameters (common). */
|
||||||
#define PPC_VARIANT_e200z4 4 /**< e200z4 core identifier. */
|
/*===========================================================================*/
|
||||||
|
|
||||||
/**
|
#if PPC_USE_VLE && !PPC_SUPPORTS_VLE
|
||||||
* @brief Core variant selector.
|
#error "the selected MCU does not support VLE instructions set"
|
||||||
* @details This setting affects the predefined architecture strings and
|
|
||||||
* possibly code paths and structures into the port layer.
|
|
||||||
*/
|
|
||||||
#if !defined(PPC_VARIANT) || defined(__DOXYGEN__)
|
|
||||||
#define PPC_VARIANT PPC_VARIANT_e200z3
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !PPC_USE_VLE && !PPC_SUPPORTS_BOOKE
|
||||||
|
#error "the selected MCU does not support BookE instructions set"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* Port exported info (common). */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Unique macro for the implemented architecture.
|
* @brief Unique macro for the implemented architecture.
|
||||||
*/
|
*/
|
||||||
|
@ -70,7 +108,9 @@
|
||||||
/**
|
/**
|
||||||
* @brief Name of the architecture variant.
|
* @brief Name of the architecture variant.
|
||||||
*/
|
*/
|
||||||
#if (PPC_VARIANT == PPC_VARIANT_e200z3) || defined(__DOXYGEN__)
|
#if (PPC_VARIANT == PPC_VARIANT_e200z0) || defined(__DOXYGEN__)
|
||||||
|
#define CH_CORE_VARIANT_NAME "e200z0"
|
||||||
|
#elif PPC_VARIANT == PPC_VARIANT_e200z3
|
||||||
#define CH_CORE_VARIANT_NAME "e200z3"
|
#define CH_CORE_VARIANT_NAME "e200z3"
|
||||||
#elif PPC_VARIANT == PPC_VARIANT_e200z4
|
#elif PPC_VARIANT == PPC_VARIANT_e200z4
|
||||||
#define CH_CORE_VARIANT_NAME "e200z4"
|
#define CH_CORE_VARIANT_NAME "e200z4"
|
||||||
|
@ -86,7 +126,17 @@
|
||||||
/**
|
/**
|
||||||
* @brief Port-specific information string.
|
* @brief Port-specific information string.
|
||||||
*/
|
*/
|
||||||
#define CH_PORT_INFO "None"
|
#if PPC_USE_VLE
|
||||||
|
#define CH_PORT_INFO "VLE mode"
|
||||||
|
#else
|
||||||
|
#define CH_PORT_INFO "Book-E mode"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*===========================================================================*/
|
||||||
|
/* Port implementation part (common). */
|
||||||
|
/*===========================================================================*/
|
||||||
|
|
||||||
|
#if !defined(_FROM_ASM_)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Base type for stack and memory alignment.
|
* @brief Base type for stack and memory alignment.
|
||||||
|
@ -202,7 +252,7 @@ struct context {
|
||||||
* by @p PORT_INT_REQUIRED_STACK.
|
* by @p PORT_INT_REQUIRED_STACK.
|
||||||
*/
|
*/
|
||||||
#ifndef PORT_IDLE_THREAD_STACK_SIZE
|
#ifndef PORT_IDLE_THREAD_STACK_SIZE
|
||||||
#define PORT_IDLE_THREAD_STACK_SIZE 0
|
#define PORT_IDLE_THREAD_STACK_SIZE 32
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -214,7 +264,7 @@ struct context {
|
||||||
* @p extctx is known to be zero.
|
* @p extctx is known to be zero.
|
||||||
*/
|
*/
|
||||||
#ifndef PORT_INT_REQUIRED_STACK
|
#ifndef PORT_INT_REQUIRED_STACK
|
||||||
#define PORT_INT_REQUIRED_STACK 128
|
#define PORT_INT_REQUIRED_STACK 256
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -329,6 +379,8 @@ extern "C" {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif /* _FROM_ASM_ */
|
||||||
|
|
||||||
#endif /* _CHCORE_H_ */
|
#endif /* _CHCORE_H_ */
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
|
@ -25,11 +25,13 @@
|
||||||
* @addtogroup PPC_CORE
|
* @addtogroup PPC_CORE
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
/** @cond never */
|
|
||||||
|
|
||||||
.section .text
|
#if !defined(__DOXYGEN__)
|
||||||
|
|
||||||
|
.section .crt0, "ax"
|
||||||
.align 2
|
.align 2
|
||||||
.globl _boot_address
|
.globl _boot_address
|
||||||
|
.type _boot_address, @function
|
||||||
_boot_address:
|
_boot_address:
|
||||||
/*
|
/*
|
||||||
* Stack setup.
|
* Stack setup.
|
||||||
|
@ -98,17 +100,19 @@ _boot_address:
|
||||||
*/
|
*/
|
||||||
.weak _main_exit_handler
|
.weak _main_exit_handler
|
||||||
.globl _main_exit_handler
|
.globl _main_exit_handler
|
||||||
|
.type _main_exit_handler, @function
|
||||||
_main_exit_handler:
|
_main_exit_handler:
|
||||||
forever:
|
b _main_exit_handler
|
||||||
b forever
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default initialization code, none.
|
* Default initialization code, none.
|
||||||
*/
|
*/
|
||||||
.weak __early_init
|
.weak __early_init
|
||||||
.globl __early_init
|
.globl __early_init
|
||||||
|
.type __early_init, @function
|
||||||
__early_init:
|
__early_init:
|
||||||
blr
|
blr
|
||||||
|
|
||||||
/** @endcond */
|
#endif /* !defined(__DOXYGEN__) */
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
|
@ -4,13 +4,17 @@
|
||||||
OPT = $(USE_OPT)
|
OPT = $(USE_OPT)
|
||||||
COPT = $(USE_COPT)
|
COPT = $(USE_COPT)
|
||||||
CPPOPT = $(USE_CPPOPT)
|
CPPOPT = $(USE_CPPOPT)
|
||||||
ifeq ($(USE_CURRP_CACHING),yes)
|
|
||||||
OPT += -ffixed-r7 -DCH_CURRP_REGISTER_CACHE='"r7"'
|
|
||||||
endif
|
|
||||||
ifeq ($(USE_LINK_GC),yes)
|
ifeq ($(USE_LINK_GC),yes)
|
||||||
OPT += -ffunction-sections -fdata-sections
|
OPT += -ffunction-sections -fdata-sections
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# VLE option handling.
|
||||||
|
ifeq ($(USE_VLE),yes)
|
||||||
|
DDEFS += -DPPC_USE_VLE=1
|
||||||
|
DADEFS += -DPPC_USE_VLE=1
|
||||||
|
MCU += -mvle
|
||||||
|
endif
|
||||||
|
|
||||||
# Source files groups
|
# Source files groups
|
||||||
SRC = $(CSRC)$(CPPSRC)
|
SRC = $(CSRC)$(CPPSRC)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue