summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-09-21build: Remove old build systemSebastian Huber9-443/+0
Close #3250. Close #4081.
2021-06-24sparc: More reliable bad trap handlingSebastian Huber3-3/+0
Statically initialize the trap table in start.S to jump to _SPARC_Bad_trap() for all unexpected traps. This enables a proper RTEMS fatal error handling right from the start. Do not rely on the stack and register settings which caused an unexpected trap. Use the ISR stack of the processor to do the fatal error handling. Save the full context which caused the trap. Fatal error handler may use it for error logging. Unify the _CPU_Exception_frame_print() implementations and move it to cpukit. Update #4459.
2021-04-26Makefile.am: Remove legacy networking filesVijay Kumar Banerjee3-17/+0
2021-03-11leon3: avoid dependency on apbuart/timer driverDaniel Hellstrom1-0/+1
Moves drvmgr_drivers[] from amba.c to a separate file in order to avoid the dependecy on APBUART/GPTIMER drivers. This has an effect when user configured not to use timer or uart in their project.
2021-02-26bsps: Add default rtems_get_target_hash()Sebastian Huber3-0/+3
Update #4267.
2019-10-01bsp/erc32: Improve pseudo-SMP supportSebastian Huber1-2/+1
Add support for _SMP_Send_message() to the own processor. This is required by the smpmulticast01 test program.
2019-01-22grlib: Move source filesSebastian Huber2-203/+3
Update #3678.
2018-12-07Simplify _CPU_Counter_difference()Sebastian Huber1-1/+0
In order to simplify the use of CPU counter values it is beneficial to have monotonic increasing values within the range of the CPU counter ticks data type, e.g. 32-bit unsigned integer. This eases the use of CPU counter timestamps in external tools which do not know the details of the CPU counter hardware. The CPU counter is the fastest way to get a time on an RTEMS system. Such a CPU counter may be also used as the timecounter. Use it on SPARC for this purpose to simplify the clock drivers. Update #3456.
2018-10-10build: Remove local.amSebastian Huber4-4/+0
2018-10-09leon, spwtdp: Initial driver commitJavier Jalle2-0/+9
2018-08-10bsps/sparc: Move polled APBUART functionsSebastian Huber1-3/+2
This reduces the link-time dependencies and avoids copy-and-paste.
2018-06-15Add _CPU_Counter_frequency()Sebastian Huber1-0/+1
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.
2018-04-26bsps: Move documentation, etc. files to bspsSebastian Huber3-191/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-24bsps: Remove unmaintained times filesSebastian Huber3-564/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-23bsps: Move make/custom/* files to bspsSebastian Huber8-120/+0
Adjust various build files. Remove automatic generation of the c/src/lib/libbsp/*/acinclude.m4 files from bootstrap script. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-23bsps: Remove AC_CONFIG_SRCDIR()Sebastian Huber4-4/+0
This AC_CONFIG_SRCDIR() is just a sanity check in this insane build system. Since all content of c/src/lib/libbsp/@RTEMS_CPU@/@RTEMS_BSP_FAMILY@ is bound to be moved it makes no sense to keep it. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps/leon3: Move AMBA support to bspsSebastian Huber2-167/+1
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps/leon2: Move PCI driver to bspsSebastian Huber2-657/+1
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps/sparc: Move gnatsupp to bspsSebastian Huber6-87/+3
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move MPCI support to bspsSebastian Huber6-252/+4
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps/sparc: Move network drivers to bspsSebastian Huber9-484/+6
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps/sparc: Move shared files to bspsSebastian Huber74-50188/+131
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20sparc: Move irq_asm.SSebastian Huber4-910/+0
This file is BSP-independent. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20sparc: Move _CPU_Trap_slot_templateSebastian Huber4-39/+0
The definition of _CPU_Trap_slot_template is BSP-independent. A potential para-virtualization support may use <rtems/score/paravirt.h>. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move benchmark timer to bspsSebastian Huber10-1422/+9
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move startup files to bspsSebastian Huber40-2235/+42
Adjust build support files to new directory layout. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move start files to bspsSebastian Huber4-377/+3
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move console drivers to bspsSebastian Huber9-1230/+7
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move clock drivers to bspsSebastian Huber7-520/+5
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move bspsmpgetcurrentprocessor.c to bspsSebastian Huber2-2/+2
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move bspsmp.c to bspsSebastian Huber2-2/+2
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move sbrk.c to bspsSebastian Huber3-3/+3
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move getentropy-cpucounter.c to bspsSebastian Huber3-3/+3
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move doxygen.h files to bspsSebastian Huber1-15/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Convert all bsp_predriver_hook()Sebastian Huber8-178/+121
Use RTEMS_SYSINIT_ITEM() instead. Update #2408.
2018-04-20drvmgr: Remove bsp_driver_level_hook()Sebastian Huber2-30/+10
Use RTEMS_SYSINIT_ITEM() instead. Update #2408.
2018-04-20bsps: Move bspstart.c to bspsSebastian Huber1-1/+1
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move bspreset.c to bspsSebastian Huber3-3/+3
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move bspclean.c to bspsSebastian Huber2-2/+2
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-12build: Remove subdir-objects from BSP configure.acSebastian Huber3-3/+3
The subdir-objects do not work currently due to BSP sources in bsps and c and the existing build tree layout. Update #3387.
2018-04-12bsps: Move bootcard.c to bspsSebastian Huber3-3/+0
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-12bsps: Simplify source file path in Makefile.amSebastian Huber3-152/+152
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-12bsps: Remove headers from librtemsbsp_a_SOURCESSebastian Huber3-3/+0
This was used by the not supported "make dist". This patch is a part of the BSP source reorganization. Update #3285.
2018-04-12bsps: Avoid line continuation in Makefile.amSebastian Huber3-31/+37
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-12bsps: Move legacy console driver to bspsSebastian Huber1-3/+4
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-11configure: Add subdir-objects to all automake flags.Chris Johns4-4/+4
This option silences warning with automake-1.16.1 allowing us to upgrade to that version. This change has been tested with automake-1.12.6 and automake-1.16.1. It seems version 1.16.1 configures slower than 1.12.6 for the same source and BSP. The newer versions is 6 second slower. Close #3387.
2018-04-09build: Remove DISTCLEANFILESSebastian Huber3-3/+0
A "make distclean" is not supported. So, it makes no sense to have pure "make distclean" related stuff in the Makefile.am.
2018-04-09bsps: Move generic IRQ support to bspsSebastian Huber3-18/+6
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-09bsps: Remove librtemsbsp.a wrapupSebastian Huber3-210/+210
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-04bsps: Move config macros to RTEMS_BSP_CONFIGURESebastian Huber3-21/+0
Provide HAS_NETWORKING and HAS_SMP Automake conditionals for all BSPs. This patch is a part of the BSP source reorganization. Update #3285.