summaryrefslogtreecommitdiffstats
path: root/bsps/or1k/shared (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps: Support RTEMS_NOINIT in linkcmdsSebastian Huber2021-05-021-0/+7
| | | | Update #3866.
* bsps: Remove unused bsp_stack_main_sizeSebastian Huber2020-12-031-3/+0
|
* bsps: Add RamEnd to linker command filesSebastian Huber2020-02-041-0/+1
| | | | Update #3838.
* bsps: Adjust bsp.h Doxygen groupsSebastian Huber2019-03-081-1/+1
| | | | Update #3706.
* bsps: Adjust architecture Doxygen groupsSebastian Huber2019-03-041-0/+7
| | | | | | | | | | - Use CamelCase as it is not used in our C code. Enables simple search and replace. - Prefix with "RTEMS" to aid deployment and integration. It aids searching and sorting. Update #3706.
* or1k/shared/cache/cache.c: Remove unused methodsJoel Sherrill2018-10-181-35/+0
|
* bsps: Support .rtemsstack.* linker input sectionsSebastian Huber2018-06-271-1/+5
| | | | | | Use a dedicated memory region or place it between the BSS and workspace. Update #3459.
* bsps: Remove superfluous bsp_processor_countSebastian Huber2018-06-191-2/+0
| | | | | | This is unused copy and paste stuff. Update #3459.
* bsps: Move startup files to bspsSebastian Huber2018-04-201-0/+313
| | | | | | | | Adjust build support files to new directory layout. This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Rework cache manager implementationSebastian Huber2018-01-311-0/+388
The previous cache manager support used a single souce file (cache_manager.c) which included an implementation header (cache_.h). This required the use of specialized include paths to find the right header file. Change this to include a generic implementation header (cacheimpl.h) in specialized source files. Use the following directories and files: * bsps/shared/cache * bsps/@RTEMS_CPU@/shared/cache * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILY/start/cache.c Update #3285.