summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/arm/rtems/score/arm.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-25Remove make preinstallChris Johns1-94/+0
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
2017-01-24Adding ARM VFP V2 supportKevin Kirspel1-0/+6
2016-07-04score/arm: Ensure that copile time alignment is 64 bytes for Cortex-A multilib.Pavel Pisa1-0/+4
Some/many Cortex-A cores have data cache line length 64 bytes and maximum value has to be used for system structures alignment.
2016-02-04arm: Fix Cortex-M7 supportSebastian Huber1-1/+2
2016-01-15arm: Accept Cortex-M7 multilibSebastian Huber1-1/+1
2015-01-09arm: Fix compile error for ARMv6-M multilibSebastian Huber1-0/+3
ARMv6-M is not supported since we cannot directly use the ARMv7-M code due to some inline assembler statements. Close #2231.
2014-08-12arm: Add support for FPv4-SP floating point unitSebastian Huber1-4/+13
This floating point unit is available in Cortex-M4 processors and defined by ARMv7-M. This adds basic support for other VFP-D16 variants.
2014-06-02arm: Add ARM_MULTILIB_HAS_BARRIER_INSTRUCTIONSSebastian Huber1-0/+1
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2014-02-04Add thread-local storage (TLS) supportSebastian Huber1-0/+5
Tested and implemented on ARM, m68k, PowerPC and SPARC. Other architectures need more work.
2013-12-03arm: Clear reservationsSebastian Huber1-0/+1
Recent GCC versions use atomic operations based on load/store exclusive in the C++ library.
2013-05-27arm: Add CPU specific idle thread for ARMv7Sebastian Huber1-0/+6
2013-05-10arm: Support VFP-D32 and NeonSebastian Huber1-7/+4
2013-05-10arm: Simplify architecture selectionSebastian Huber1-63/+5
2013-02-25add __ARM_ARCH_6ZK__ to cpukit/score/cpu/arm/rtems/score/arm.hCudmore, Alan P. (GSFC-5820)1-0/+4
2013-01-10cpukit: Use Consistent Beginning of Doxygen Group NotationJoel Sherrill1-2/+1
This is the result of a sed script which converts all uses of @{ into a consistent form.
2013-01-08score: Doxygen Clean Up Task #15Alex Ivanov1-3/+1
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill1-2/+0
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
2012-03-27ARM: PR2042: Provide stub for ARMv6-MSebastian Huber1-1/+0
2011-11-192011-11-07 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+1
PR 1965/cpukit * rtems/score/arm.h: Select ARMv4 multilib implementation for __ARM_ARCH_7A__.
2011-11-072011-11-07 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+1
PR 1949/cpukit PR 1950/cpukit * rtems/score/arm.h: Select ARMv4 multilib implementation for __ARM_ARCH_6J__.
2011-09-242011-09-24 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-3/+15
* rtems/score/armv7m.h, armv7m-context-initialize.c, armv7m-context-restore.c, armv7m-context-switch.c, armv7m-exception-handler-get.c, armv7m-exception-handler-set.c, armv7m-exception-priority-get.c, armv7m-exception-priority-set.c, armv7m-initialize.c, armv7m-isr-dispatch.c, armv7m-isr-enter-leave.c, armv7m-isr-level-get.c, armv7m-isr-level-set.c, armv7m-isr-vector-install.c, armv7m-multitasking-start-stop.c: New files. * Makefile.am, preinstall.am: Reflect changes above. * rtems/score/arm.h: Define ARM_MULTILIB_ARCH_V4 and ARM_MULTILIB_ARCH_V7M. * rtems/score/cpu.h, cpu_asm.S, cpu.c, arm_exc_abort.S, arm_exc_handler_high.c, arm_exc_handler_low.S, arm_exc_interrupt.S: Define CPU_HAS_HARDWARE_INTERRUPT_STACK to FALSE. Use ARM_MULTILIB_ARCH_V4 and ARM_MULTILIB_ARCH_V7M.
2011-09-162011-09-16 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+9
* rtems/score/arm.h: More CPU_MODEL_NAME variants.
2010-05-102010-05-10 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-1/+1
* rtems/score/arm.h: Make it a warning not error that the FPU multilib is not supported yet.
2010-04-08add/adapt documentationThomas Doerfler1-1/+13
2009-12-15add support for ARM11, reimplement nested interruptsThomas Doerfler1-0/+3
2009-12-04Whitespace removal.Ralf Corsepius1-1/+1
2009-10-012009-10-01 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+3
* rtems/score/arm.h: Recognize ARMv7A.
2009-10-012009-10-01 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+3
* rtems/score/arm.h: Recognize ARMv6J as needed by arm1136 variants.
2005-09-152005-09-15 Jay MonkmanJay Monkman1-6/+0
PR 365/rtems * rtems/score/arm.h, rtems/score/cpu.h: Removed unused ARM_HAS_CLZ macro
2005-02-04Header guards cleanup.Ralf Corsepius1-1/+1
2005-01-28New header guard.Ralf Corsepius1-2/+2
2004-11-21Cosmetics.Ralf Corsepius1-1/+0
2004-11-022004-10-02 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius1-0/+4
* rtems/score/arm.h: Add doxygen preamble. * rtems/score/cpu.h: Add doxygen preamble. * rtems/score/cpu_asm.h: Add doxygen preamble. * rtems/score/types.h: Add doxygen preamble.
2003-09-042003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-1/+1
* asm.h, cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h, rtems/score/cpu_asm.h, rtems/score/types.h: URL for license changed.
2003-03-11Fix CVS-IdsRalf Corsepius1-1/+0
2003-03-04Merger from rtems-4-6-branch.Ralf Corsepius1-6/+0
2003-02-28Merger from rtems-4-6-branch.Ralf Corsepius1-0/+6
2002-07-302002-07-30 Jay Monkman <jtm@smoothsmoothie.com>Joel Sherrill1-15/+34
* cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h, rtems/score/cpu_asm.h, rtems/score/types.h: ARM port works well enough to run all sptests, tmtests, and ttcp. In addition to general cleanup, there has been considerable optimization to interrupt disable/enable, endian swapping, and context switching.
2002-07-172002-07-17 Jay Monkman <jtm@smoothsmoothie.com>Joel Sherrill1-13/+21
* rtems/score/cpu_asm.h: Enhanced to include register offsets. * Makefile.am: Install rtems/score/cpu_asm.h. * cpu.c: Significantly enhanced including the implementation of _CPU_ISR_Get_level. * cpu_asm.S: Improved behavior of context switch and interrupt dispatching. * rtems/score/arm.h: Improved the CPU model name determination. * rtems/score/cpu.h: Improved interrupt disable/enable functions.
2001-12-182001-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1-1/+1
* asm.h: include cpuopts.h instead of targopts.h * rtems/score/arm.h: Use __arm__.
2000-07-27Port of RTEMS to the ARM processor family by Eric ValetteJoel Sherrill1-29/+15
<valette@crf.canon.fr> and Emmanuel Raguet <raguet@crf.canon.fr> of Canon CRF - Communication Dept. This port includes a basic BSP that is sufficient to link hello world.
2000-06-12Merged from 4.5.0-beta3aJoel Sherrill1-1/+10
1999-11-17Updated copyright notice.Joel Sherrill1-1/+1
1999-02-18Part of the automake VI patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1-0/+59
> 4) rtems-rc-19990202-0.diff /reorg-score-cpu.sh > > reorg-score-cpu.sh reorganizes the cpu/<cpu>/* subdirectories in a > similar manner than previous reorg scripts did. rtems-rc-19990202-0.diff > contains the diffs after reorg-score-cpu.sh has been run on a > rtems-19981215 snapshot + my patches up to rtems-rc-19990131-2.diff. > > This patch is rather nasty and may break something. However, I've tested > it for about 10 different target/bsp pairs and believe to have shaken > out most bugs. I wonder about the following .h files that were not moved: a29k/asm.h a29k/cpu_asm.h i386/asm.h i960/asm.h m68k/asm.h m68k/m68302.h m68k/m68360.h m68k/qsm.h m68k/sim.h mips64orion/asm.h mips64orion/cpu_asm.h mips64orion/mips64orion.h no_cpu/asm.h no_cpu/cpu_asm.h powerpc/asm.h powerpc/mpc860.h sh/asm.h sparc/asm.h sparc/erc32.h