summaryrefslogtreecommitdiffstats
path: root/bsps/sparc/shared/irq (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps: Include <rtems/score/processormaskimpl.h>Sebastian Huber2024-04-091-0/+1
| | | | | This fixes commit b678a199e499b6c3f0b453393434aefaee180423 for SMP configurations.
* bsps: Move declarations to <bsp/irq-generic.h>Sebastian Huber2024-03-271-0/+22
| | | | | | | | | | | Move declarations of bsp_interrupt_get_affinity() and bsp_interrupt_set_affinity() to <bsp/irq-generic.h>. Canonicalize the <bsp/irq.h> includes. Implement bsp_interrupt_get_affinity() and bsp_interrupt_set_affinity() only if needed (usually RTEMS_SMP). Provide stub implementations for i386 to fix build errors.
* bsps/sparc: Add files to Doxygen groupsFrank Kühndel2023-07-261-0/+9
| | | | Update #3707.
* bsp/leon3: Move and simplify bsp_irq_fixup()Sebastian Huber2023-07-141-0/+1
|
* bsps: Remove uses of BSP-specific interrupt APISebastian Huber2023-06-161-29/+0
| | | | Update #3269.
* bsps/sparc: Change license to BSD-2 for files with Gaisler copyrightDaniel Cederman2022-11-142-16/+54
| | | | | | | | | This patch changes the license to BSD-2 for all source files where the copyright is held by Aeroflex Gaisler, Cobham Gaisler, or Gaisler Research. Some files also includes copyright right statements from OAR and/or embedded Brains in addition to Gaisler. Updates #3053.
* bsps/irq: bsp_interrupt_facility_initialize()Sebastian Huber2021-07-271-2/+1
| | | | | | Do not return a status code in bsp_interrupt_facility_initialize() since this leads to unreachable code in bsp_interrupt_initialize(). Use RTEMS_DEBUG assertions in bsp_interrupt_facility_initialize() if necessary.
* sparc/irq: Implement new interrupt directivesSebastian Huber2021-07-261-7/+41
| | | | Update #3269.
* bsps/irq: bsp_interrupt_get_affinity()Sebastian Huber2021-07-261-1/+1
| | | | | | Return a status code for bsp_interrupt_get_affinity(). Update #3269.
* bsps/irq: bsp_interrupt_vector_disable()Sebastian Huber2021-07-261-1/+2
| | | | | | Return a status code for bsp_interrupt_vector_disable(). Update #3269.
* bsps/irq: bsp_interrupt_vector_enable()Sebastian Huber2021-07-261-1/+2
| | | | | | Return a status code for bsp_interrupt_vector_enable(). Update #3269.
* bsps/irq: Add rtems_interrupt_is_pending()Sebastian Huber2021-07-261-0/+11
| | | | | | Add a default implementation which just returns RTEMS_UNSATISFIED. Update #3269.
* bsps/irq: Add rtems_interrupt_get_attributes()Sebastian Huber2021-07-261-0/+8
| | | | | | | Add a default implementation which clears the attributes to zero and just returns RTEMS_SUCCESSFUL for valid parameters. Update #3269.
* bsps/irq: Add rtems_interrupt_raise()Sebastian Huber2021-07-261-0/+23
| | | | | | | | | Add rtems_interrupt_raise_on() and rtems_interrupt_clear(). Add a default implementation which just returns RTEMS_UNSATISFIED for valid parameters. Update #3269.
* bsps/irq: Add rtems_interrupt_vector_is_enabled()Sebastian Huber2021-07-261-0/+11
| | | | | | | Add a default implementation which just returns RTEMS_UNSATISFIED for valid parameters. Update #3269.
* bsps/sparc: Improve interrupt affinity supportSebastian Huber2021-07-091-23/+11
| | | | | | | | Fully support the interrupt extension API to set/get the interrupt affinity. Remove LEON3_irq_to_cpu which defined the interrupt to processor mapping in a BSP-specific way. Update #3269.
* sparc: Simplify trap table initializationSebastian Huber2021-06-242-39/+9
| | | | | | | | | | | | | | | Move _ISR_Handler() to a separate file since it is now only used if a handler is installed by _CPU_ISR_install_raw_handler(). Statically initialize the traps for external interrupts to use the new _SPARC_Interrupt_trap() which directly dispatches the interrupt handlers installed by rtems_interrupt_handler_install() via the BSP-provided _SPARC_Interrupt_dispatch(). Since the trap table is now fully statically initialized, there is no longer a dependency on the Cache Manager in the default configuration. Update #4458.
* bsps: Always install IPI in SMP configsSebastian Huber2020-08-311-10/+4
| | | | | | | The inter-processor interrupt (IPI) may be used to process per-CPU jobs. See for example the blocked handler in T_interrupt_test(). Update #3199.
* grlib: Move source filesSebastian Huber2019-01-221-244/+0
| | | | Update #3678.
* grlib: Move header filesSebastian Huber2019-01-221-2/+2
| | | | Update #3678.
* bsps/sparc: Add grlib_malloc(), grlib_calloc()Sebastian Huber2018-12-211-7/+8
| | | | This avoids a dependency to errno in device driver code.
* bsps/sparc: Move shared files to bspsSebastian Huber2018-04-203-0/+381
This patch is a part of the BSP source reorganization. Update #3285.