summaryrefslogtreecommitdiffstats
path: root/bsps/arm/shared/clock/clock-a9mpcore.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Add _SMP_Othercast_action()Sebastian Huber2019-05-201-7/+5
|
* score: Add _SMP_Broadcast_action()Sebastian Huber2019-05-201-1/+1
|
* score: Remove _SMP_Before_multitasking_action()Sebastian Huber2019-04-121-8/+7
| | | | Use _SMP_Multicast_action() instead.
* Remove Clock_driver_support_shutdown_hardware()Sebastian Huber2018-06-271-35/+0
| | | | | | | | | | | | | | | | | The aim of this clock driver hook was to stop clock tick interrupts at some late point in the exit() procedure. The use of atexit() pulls in malloc() which pulls in errno. It is incompatible with the intention of the CONFIGURE_DISABLE_NEWLIB_REENTRANCY configuration option. The exit() function must be called from thread context, so accompanied clock tick interrupts should cause no harm. On the contrary, someone may assume a normal operating system operation, e.g. working timeouts. Remove the Clock_driver_support_shutdown_hardware() clock driver hook. Close #3436.
* Add _CPU_Counter_frequency()Sebastian Huber2018-06-151-0/+5
| | | | | | | | | | Add rtems_counter_frequency() API function. Use it to initialize the counter value converter via the new system initialization step (RTEMS_SYSINIT_CPU_COUNTER). This decouples the counter implementation and the counter converter. It avoids an unnecessary pull in of the 64-bit integer division from libgcc. Update #3456.
* bsps: Move arm-a9mpcore-clock-config.c to bspsSebastian Huber2018-04-241-0/+212
This patch is a part of the BSP source reorganization. Update #3285.