summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/sparc/sparc-isr-handler.S (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sparc: Fix move of CPU counter implementationSebastian Huber2023-10-201-4/+2
| | | | | | This fixes a build error with RTEMS_PROFILING enabled. Update #4954.
* Update company nameSebastian Huber2023-05-201-1/+1
| | | | | The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
* score/cpu/sparc: Change license to BSD-2Joel Sherrill2022-02-281-3/+22
| | | | Updates #3053.
* sparc: Simplify trap table initializationSebastian Huber2021-06-241-0/+620
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.