summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/smpimpl.h (unfollow)
Commit message (Collapse)AuthorFilesLines
11 daysscore: Improve C/C++ standard compatibilitySebastian Huber1-1/+1
The processor mask implementation uses flsl() from <strings.h> which is only BSD visible. Move the implementation to a separate header file to hide it from the API level. This fixes build errors with GCC 14.
2023-01-24score: Remove unused return valueSebastian Huber1-11/+4
Several SMP message processing functions returned a value. This value was always unused. Close #4822.
2022-09-19Do not use RTEMS_INLINE_ROUTINESebastian Huber1-2/+2
Directly use "static inline" which is available in C99 and later. This brings the RTEMS implementation closer to standard C. Close #3935.
2022-03-24smp: Add fatal errorSebastian Huber1-1/+2
Add SMP-specifc SMP_FATAL_MULTITASKING_START_ON_NOT_ONLINE_PROCESSOR fatal error. This fatal error helps to diagnose a broken SMP startup sequence. Without this error a context switch using the NULL pointer for the thread control block happens which may be difficult to debug.
2022-02-28cpukit/include/rtems/score/[s-z]*.h: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2021-09-21score: Ensure only one CPU if requiredSebastian Huber1-1/+2
Issue the new fatal SMP error SMP_FATAL_SCHEDULER_REQUIRES_EXACTLY_ONE_PROCESSOR if the system starts with not exactly one processor and an uniprocessor scheduler is configured.
2021-07-29score: Change _SMP_Send_message() parameter typeSebastian Huber1-4/+5
Use the processor control to specify the target processor since this is what the callers have available.
2021-07-28score: Remove SMP message multicast/broadcastSebastian Huber1-22/+0
Remove the unused _SMP_Send_message_multicast() and _SMP_Send_message_broadcast().
2021-07-28score: Simplify SMP processor state handlingSebastian Huber1-11/+50
The per-CPU states which control the SMP system initialization were added quite early during the SMP support development. Replace this initial implementation with a simplified one. There is no longer a global SMP lock required which serialized the state changes of all processors. The new implementation better integrates with the per-CPU jobs.
2021-02-01score: Remove superfluous type qualifierSebastian Huber1-1/+1
This fix relates to a Coverity issue (PW.USELESS_TYPE_QUALIFIER_ON_RETURN_TYPE).
2020-12-02score: Canonicalize Doxygen @file commentsSebastian Huber1-1/+2
Use common phrases for the file brief descriptions. Update #3706.
2020-12-02score: Canonicalize Doxygen groupsSebastian Huber1-1/+1
Adjust group identifier and names to be in line with a common pattern. Use common phrases for the group brief descriptions. Update #3706.
2020-10-10rtems: Improve RTEMS_NO_RETURN attributeSebastian Huber1-2/+2
Provide RTEMS_NO_RETURN also in case RTEMS_DEBUG is defined to prevent errors like this: error: no return statement in function returning non-void [-Werror=return-type] Use C11 and C++11 standard means to declare a no-return function. Close #4122.
2020-02-25score: Add _SMP_Need_inter_processor_interrupts()Sebastian Huber1-0/+15
Test for the proper system condition instead of using the rtems_configuration_is_smp_enabled() workaround. Update #3876.
2019-05-20score: Add _SMP_Unicast_action()Sebastian Huber1-0/+15
2019-05-20score: Remove superfluous includeSebastian Huber1-1/+0
2019-05-20score: Add _SMP_Synchronize()Sebastian Huber1-0/+8
2019-05-20score: Remove unused SMP_MESSAGE_TESTSebastian Huber1-31/+1
All uses were replaced by per-processor jobs.
2019-05-20score: Remove SMP_MESSAGE_CLOCK_TICKSebastian Huber1-10/+0
Use _SMP_Multicast_action() instead.
2019-05-20score: Simplify _SMP_Multicast_action()Sebastian Huber1-3/+5
Move resposibility to disable thread dispatching to the caller of _SMP_Multicast_action(). Using an interrupt disable for this purpose is questionable.
2019-05-20score: Add _SMP_Othercast_action()Sebastian Huber1-0/+15
2019-05-20score: Add _SMP_Broadcast_action()Sebastian Huber1-4/+20
2019-05-13doxygen: score: adjust doc in smpimpl.h to doxygen guidelinesAndreas Dachsberger1-19/+32
Update #3706.
2019-04-12score: Remove _SMP_Before_multitasking_action()Sebastian Huber1-44/+0
Use _SMP_Multicast_action() instead.
2019-04-12score: Improve _SMP_Multicast_action()Sebastian Huber1-1/+2
Let it work during system initialization.
2019-04-12score: Rework SMP multicast actionSebastian Huber1-9/+4
Use a FIFO list of jobs per processor to carry out the SMP multicast action. Use a done indicator per job to reduce the bus traffic a bit.
2019-04-12score: Use processor mask in _SMP_Multicast_actionSebastian Huber1-10/+9
Processor_mask is the internal data type to deal with processor sets.
2019-04-04doxygen: Rename Score* groups in RTEMSScore*Sebastian Huber1-2/+2
Update #3706
2019-04-02doxygen: Reviewed cpukit/include/rtems/scoreAndreas Dachsberger1-3/+1
Update #3706.
2018-09-10score: Add thread pin/unpin supportSebastian Huber1-1/+2
Add support to temporarily pin a thread to its current processor. This may be used to access per-processor data structures in critical sections with enabled thread dispatching, e.g. a pinned thread is allowed to block. Update #3508.
2018-07-25score: _SMP_Inter_processor_interrupt_handler()Sebastian Huber1-1/+1
Optimize _SMP_Inter_processor_interrupt_handler() for the common case in which the inter-processor interrupt is only used to trigger a thread dispatch.
2018-07-25_SMP_Start_multitasking_on_secondary_processor()Sebastian Huber1-2/+5
Pass current processor control as first parameter to make dependency more explicit.
2018-07-25score: _SMP_Inter_processor_interrupt_handler()Sebastian Huber1-5/+4
Pass current processor control via parameter since it may be already available at the caller side.
2018-01-25Remove make preinstallChris Johns1-0/+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-07-12score: Fix typoSebastian Huber1-1/+1
Update #3059.
2017-07-07score: Introduce _SMP_Get_online_processors()Sebastian Huber1-0/+9
Update #3059.
2017-07-06score: Use <sys/bitset.h> for Processor_maskSebastian Huber1-2/+2
Implement the Processor_mask via <sys/bitset.h>. Provide _Processor_mask_To_uint32_t() to enable its use in device specific routines, e.g. interrupt affinity register in an interrupt controller. Update #3059.
2017-04-05SMP: Simplify SMP multicast actionsSebastian Huber1-5/+3
2016-12-09score: Remove fatal is internal indicatorSebastian Huber1-1/+1
The fatal is internal indicator is redundant since the fatal source and error code uniquely identify a fatal error. Keep the fatal user extension is internal parameter for backward compatibility and set it to false always. Update #2825.
2016-06-29score: Fix SMP message handlingSebastian Huber1-8/+10
According to the C11 standard only atomic read-modify-write operations guarantee that the last value written in modification order is read, see "7.17.3 Order and consistency". Thus we must use a read-modify-write in _SMP_Inter_processor_interrupt_handler() to make sure we read an up-to-date message.
2016-03-04score: Distribute clock tick to all online CPUsSebastian Huber1-12/+22
Update #2554.
2016-03-04score: Add _SMP_Before_multitasking_action()Sebastian Huber1-2/+46
The use case for this is the Cortex-A9 MPCore which has per-processor registers (only accessible by a particular processor) for the global timer used by the clock driver. This might be useful for other drivers as well. Update #2554.
2016-03-04score: Add _SMP_Online_processorsSebastian Huber1-0/+11
2015-10-26basedefs.h: Add and use RTEMS_NO_RETURNSebastian Huber1-1/+1
2015-09-28SMP: Fix and optimize thread dispatchingSebastian Huber1-0/+6
According to the C11 and C++11 memory models only a read-modify-write operation guarantees that we read the last value written in modification order. Avoid the sequential consistent thread fence and instead use the inter-processor interrupt to set the thread dispatch necessary indicator.
2015-04-20score: Refactor SMP cache manager supportSebastian Huber1-8/+25
2015-01-09smp: Add and use _SMP_Should_start_processor()Sebastian Huber1-0/+11
2014-08-22score: Add SMP support to the cache managerDaniel Cederman1-0/+19
Adds functions that allows the user to specify which cores that should perform the cache operation. SMP messages are sent to all the specified cores and the caller waits until all cores have acknowledged that they have flushed their cache. If CPU_CACHE_NO_INSTRUCTION_CACHE_SNOOPING is defined the instruction cache invalidation function will perform the operation on all cores using the previous method.
2014-08-22score: Rename SMP broadcast message functionDaniel Cederman1-2/+2
Change message type to unsigned long to match other SMP message functions.
2014-08-22score: Add function to send a SMP message to a set of CPUsDaniel Cederman1-0/+15