summaryrefslogtreecommitdiffstats
path: root/cpukit/score (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-03-18sparc/cpu.h: Add commentsJoel Sherrill1-0/+3
2013-03-18m68k/cpu.h: Fix formatting and add comment blockJoel Sherrill1-3/+10
2013-03-11nios2: DocumentationSebastian Huber1-13/+2
2013-03-11nios2: Use NIOS2_CTLREG_INDEX_STATUSJeffrey O. Hill1-1/+2
2013-03-11nios2: Set CPU_ISR_PASSES_FRAME_POINTER to FALSEJeffrey O. Hill2-23/+3
This reflects what is currently happening. Define CPU_Interrupt_frame type to void to prevent accidental usage.
2013-03-11nios2: Add _Nios2_Count_leading_zeros()Jeffrey O. Hill3-0/+75
Add _Nios2_Count_trailing_zeros(). They are currently more efficient than the corresponding GCC builtins.
2013-03-11nios2: Rename fileJeffrey O. Hill2-1/+1
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom16-6866/+0
This commit deletes all RTEMS ChangeLog files. These files have been abandoned since converting to git version control. The historical data may be recovered by checking out any commit before this one. Most of the contents of these ChangeLog files can also be found in the git log. Two external ChangeLog files, ChangeLog.slac and ChangeLog.zlib, remain.
2013-02-28cpukit moxie: Style correctionsJoel Sherrill2-71/+7
2013-02-28Common file changes in support of Moxie portAnthony Green1-0/+1
Signed-off-by: Anthony Green <green@moxielogic.com>
2013-02-28Add Moxie CPU supportAnthony Green9-0/+1647
Signed-off-by: Anthony Green <green@moxielogic.com>
2013-02-26PR2090: Fix warning in threadqdequeuepriority.cAndreas Heinig1-0/+1
2013-02-25add __ARM_ARCH_6ZK__ to cpukit/score/cpu/arm/rtems/score/arm.hCudmore, Alan P. (GSFC-5820)1-0/+4
2013-02-14Conditionally install atomic-headers.Ralf Corsépius2-1/+4
2013-02-14Include <stdint.h>Ralf Corsépius1-0/+2
2013-02-12score: use new alignment routine in object extend information.Gedare Bloom1-12/+16
2013-02-12score: New routines to align addresses up or down.Gedare Bloom1-0/+44
2013-02-12score: Add and use rtems_assert_contextSebastian Huber1-1/+3
2013-02-11PR1560: _Objects_Extend_information improper alignmentGedare Bloom1-5/+18
_Objects_Extend_information uses a sizeof(uint32_t) offset that leads to improper alignment in case the CPU (actually, heap) alignment is 8 or higher. The problem is solved by adding enough padding to align the sub-tables.
2013-02-07score: atomic support for RTEMS. Cleanup.WeiY3-226/+218
2013-02-07score: atomic support for RTEMS. Atomic operations for PowerPC.WeiY1-0/+537
2013-02-07score: atomic support for RTEMS. Atomic operations for i386.WeiY1-0/+341
2013-02-07score: atomic support for RTEMS. Generic atomic operations API definition.WeiY3-0/+841
2013-02-07score: atomic support for RTEMS automake and autoconf changesWeiY6-1/+25
2013-01-14NIOS2: Fix register restore sequence in epilogueSebastian Huber1-3/+3
This fix is critical. The previous implementation leads to system corruption.
2013-01-10cpukit: Fix many Doxygen warningsJoel Sherrill11-35/+42
2013-01-10cpukit: Use Consistent Beginning of Doxygen Group NotationJoel Sherrill116-281/+214
This is the result of a sed script which converts all uses of @{ into a consistent form.
2013-01-10cpukit: Add EOL on files missing EOL at EOFJoel Sherrill137-137/+137
2013-01-10cpukit: Doxygen group fixes and many warnings addressedJoel Sherrill12-45/+31
The output of the modules.html is much improved. Most filesystem and POSIX API related groups are properly nested. Some formatting issues were addressed as were multiple inconsistencies.
2013-01-10score: Doxygen Clean Up Task #14Alex Ivanov20-30/+290
2013-01-10score: Doxygen Clean Up Task #12Alex Ivanov20-134/+446
http://www.google-melange.com/gci/task/view/google/gci2012/8110207
2013-01-09score: Doxygen Clean Up Task #18Alex Ivanov12-338/+422
http://www.google-melange.com/gci/task/view/google/gci2012/8137204
2013-01-09score: Doxygen Clean Up Task #17Alex Ivanov20-709/+818
2013-01-08score: Doxygen Clean Up Task #16Alex Ivanov19-1355/+1429
2013-01-08score: Doxygen Clean Up Task #4Alex Ivanov20-1185/+1256
2013-01-08score: Doxygen Clean Up Task #15Alex Ivanov20-733/+769
2013-01-07score: Doxygen Clean Up Task #11Mathew Kallada20-830/+1068
2013-01-07arm: Add AIRCR register definesSebastian Huber1-0/+15
2013-01-07arm: Implement CPU_Exception_frame_print()Sebastian Huber3-35/+40
2013-01-07arm: Add and use _ARMV7M_Exception_default()Sebastian Huber3-0/+56
2013-01-07arm: Include <rtems/score/cpu.h>Sebastian Huber16-40/+20
2013-01-07arm: Provide CPU_Exception_frame for ARMv7-MSebastian Huber1-14/+12
2013-01-07arm: Rename inline functionsSebastian Huber1-2/+2
Rename arm_status_irq_enable() to _ARMV4_Status_irq_enable() and arm_status_restore() to _ARMV4_Status_restore().
2013-01-07arm: Move inline functionsSebastian Huber2-34/+34
2013-01-07arm: Add and use default exception handlerSebastian Huber3-0/+132
Add and use _ARMV4_Exception_undef_default(), _ARMV4_Exception_swi_default(), _ARMV4_Exception_data_abort_default(), _ARMV4_Exception_pref_abort_default(), _ARMV4_Exception_reserved_default(), _ARMV4_Exception_irq_default(), and _ARMV4_Exception_fiq_default().
2013-01-07arm: Add and use _ARM_Exception_default()Sebastian Huber4-4/+31
2013-01-07arm: Change CPU_Exception_frameSebastian Huber4-33/+27
Provide proper CPU_Exception_frame definition for ARMv4 and use it. Remove arm_cpu_context.
2013-01-07arm: Rename type and functionsSebastian Huber2-13/+17
Rename arm_exc_abort_handler to ARMV4_Exception_abort_handler, arm_exc_data_abort() to _ARMV4_Exception_data_abort(), arm_exc_data_abort_set_handler() to _ARMV4_Exception_data_abort_set_handler(), arm_exc_prefetch_abort() to _ARMV4_Exception_prefetch_abort(), and arm_exc_prefetch_abort_set_handler() to _ARMV4_Exception_prefetch_abort_set_handler(),
2013-01-07arm: Move type definition and prototypesSebastian Huber2-10/+10
2013-01-07arm: Rename arm_exc_interrupt()Sebastian Huber2-3/+3
Rename arm_exc_interrupt() to _ARMV4_Exception_interrupt().