vf6xx: initial add of Vybrid VF6xx support

Freescale Vybrid is a familiy of ARM SoC, wheras the VF6xx models
have two cores in one SoC, a Cortex-A5 and a Cortex-M4. This adds
initial support for the Cortex-M4 in the libopencm3 library.

By using two different ram areas (pc_ram and ps_ram) the user can
put the code in a RAM area bounded to the code bus. The data can
be stored in the data area. However, currently the initial values
of for the variables in the data section are stored in the code
section and copied to the ram section by the initialization code
(like it's copied from ROM to RAM on microcontrollers).
This commit is contained in:
Stefan Agner
2014-06-30 17:49:53 +02:00
committed by Frantisek Burian
parent cd6b997a67
commit 07b7d3e805
8 changed files with 309 additions and 1 deletions

View File

@@ -4,6 +4,8 @@
# include "../stm32/f4/vector_chipset.c"
#elif defined(LPC43XX_M4)
# include "../lpc43xx/m4/vector_chipset.c"
#elif defined(VF6XX)
# include "../vf6xx/vector_chipset.c"
#else