summaryrefslogtreecommitdiffstats
path: root/spec/build/bsps/sparc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/leon3: Install header filesSebastian Huber2023-11-031-0/+4
|
* bsps/leon3: Use DSU time tag for GR712RCSebastian Huber2023-10-202-0/+26
| | | | Close #4954.
* bsps/leon3: Use custom CPU counter implementationSebastian Huber2023-10-201-2/+0
| | | | | | | | Merge the timecounter and CPU counter support for the leon3 BSP family. Remove now unused functions from the CPU counter support of the erc32 and leon3 BSPs. Update #4954.
* sparc: Move CPU counter implementationSebastian Huber2023-10-203-0/+6
| | | | | | Enable a BSP-specific CPU counter implementation. Update #4954.
* bsp/leon3: Add specialized target hashSebastian Huber2023-07-141-1/+1
|
* bsps/sparc: Remove BSP_POWER_DOWN_AT_FATAL_HALTSebastian Huber2023-07-148-57/+0
| | | | | | Remove the BSP_POWER_DOWN_AT_FATAL_HALT BSP option. Applications should do the customization of the system termination with an initial fatal extension.
* bsp/leon3: Add LEON3_IRQAMP_EXTENDED_INTERRUPTSebastian Huber2023-07-142-0/+21
|
* bsp/leon3: Add LEON3_PROBE_ASR_22_23_UP_COUNTERSebastian Huber2023-07-142-0/+23
|
* bsp/leon3: Add LEON3_L2CACHE_BASESebastian Huber2023-07-142-0/+21
|
* bsp/leon3: Add LEON3_HAS_ASR_22_23_UP_COUNTERSebastian Huber2023-07-142-0/+21
|
* bsp/leon3: Add LEON3_IRQAMP_PROBE_TIMESTAMPSebastian Huber2023-07-142-0/+26
|
* bsp/leon3: Add LEON3_IRQAMP_BASESebastian Huber2023-07-142-0/+21
|
* bsp/leon3: Add LEON3_GPTIMER_BASESebastian Huber2023-07-142-0/+22
|
* bsp/leon3: LEON3_PLB_FREQUENCY_DEFINED_BY_GPTIMERSebastian Huber2023-07-142-0/+25
|
* bsp/leon3: Add LEON3_APBUART_BASESebastian Huber2023-07-142-0/+22
|
* bsp/leon3: Move and simplify bsp_irq_fixup()Sebastian Huber2023-07-142-0/+2
|
* bsp/leon3: Untangle interrupt controller supportSebastian Huber2023-07-141-0/+1
| | | | | Separate the probing of the interrupt controller from the initialization.
* bsps: Remove uses of BSP-specific interrupt APISebastian Huber2023-06-161-1/+0
| | | | Update #3269.
* Update company nameSebastian Huber2023-05-2029-29/+29
| | | | | The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
* build: Use enabled by for defaultsSebastian Huber2023-01-1711-46/+49
| | | | | | | | | | | | | | Merge the "default" and "default-by-variant" attributes. Use an "enabled-by" expression to select the default value based on the enabled set. This makes it possible to select default values depending on other options. For example you could choose memory settings based on whether RTEMS_SMP is enabled or disabled. The change was tested by comparing the output of ./waf bspdefaults before and after the change.
* spec/bsps: Do not install tm27.hChris Johns2022-08-223-3/+0
| | | | Updates #4705
* build: Add cppflags, cflags, cxxflags to groupsSebastian Huber2022-07-043-0/+9
| | | | | | | Propagate the group defined cppflags, cflags, and cxxflags from parent groups to child items through the build item context. Update #4670.
* sparc: Mark dl06 as expected failSebastian Huber2022-01-281-1/+3
|
* libc: Optimize malloc() initializationSebastian Huber2021-11-301-0/+1
| | | | | | | | | | | | | | | | The BSPs provide memory for the separate C Program Heap initialization via _Memory_Get(). Most BSPs provide exactly one memory area. Only two BSPs provide more than one memory area (arm/altera-cyclone-v and bsps/powerpc/mpc55xxevb). Only if more than one memory area is provided, there is a need to use _Heap_Extend(). Provide two implementations to initialize the separate C Program Heap and let the BSP select one of the implementations based on the number of provided memory areas. This gets rid of a dependency on _Heap_Extend(). It also avoids dead code sections for most BSPs. Change licence to BSD-2-Clause according to file history. Update #3053.
* score: Optimize Workspace Handler initializationSebastian Huber2021-11-301-0/+1
| | | | | | | | | | | | The BSPs provide memory for the workspace initialization via _Memory_Get(). Most BSPs provide exactly one memory area. Only two BSPs provide more than one memory area (arm/altera-cyclone-v and bsps/powerpc/mpc55xxevb). Only if more than one memory area is provided, there is a need to use _Heap_Extend(). Provide two implementations to initialize the workspace handler and let the BSP select one of the implementations based on the number of provided memory areas. This gets rid of a dependency on _Heap_Extend(). It also avoids dead code sections for most BSPs.
* build: Use common objects item for get memorySebastian Huber2021-11-306-3/+20
|
* build: Merge default-by-family into by-variantSebastian Huber2021-08-1811-11/+0
| | | | | | | Prefix the BSP family name with "bsps/" to make it distinct to the BSP variant names. Update #4468.
* build: Use BSP family for optionsChris Johns2021-07-1511-0/+11
| | | | | | | - Optionally add support for 'default-by-family' to allow option to be set by a family and so all related BSPs Close #4468
* sparc: More reliable bad trap handlingSebastian Huber2021-06-243-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.
* bsps: Remove networking driversVijay Kumar Banerjee2021-04-071-18/+0
| | | | Update #3850
* spec: Remove RTEMS_NETWORKING optionsVijay Kumar Banerjee2021-04-076-58/+0
| | | | Update #3850
* leon3: avoid dependency on apbuart/timer driverDaniel Hellstrom2021-03-111-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.
* bsps: Add default rtems_get_target_hash()Sebastian Huber2021-02-263-0/+3
| | | | Update #4267.
* build: Alternative build system based on wafSebastian Huber2020-09-1433-0/+788
Update #3818.