summaryrefslogtreecommitdiffstats
path: root/bsps/bfin/shared (follow)
Commit message (Collapse)AuthorAgeFilesLines
* doxygen: Add Doxygen files to a groupSebastian Huber2023-02-161-0/+8
| | | | Update #3707.
* build: Remove old build systemSebastian Huber2021-09-211-8/+0
| | | | | Close #3250. Close #4081.
* score: Change TOD_LATEST_YEAR to 2099Sebastian Huber2021-09-061-7/+2
| | | | | | | | This simplifies the implementation a bit. Declare _TOD_Days_to_date[] in <rtems/score/todimpl.h>. Make _TOD_Days_per_month[] and _TOD_Days_since_last_leap_year[] static. Update #4338.
* rtems: Add <rtems/rtems/clockimpl.h>Sebastian Huber2020-12-021-0/+1
|
* clock: Simplify driver initializationSebastian Huber2019-12-111-12/+1
| | | | | | Use a system initialization handler instead of a legacy IO driver. Update #3834.
* clock: Remove Clock_exit() from APISebastian Huber2019-12-111-3/+1
| | | | | | | This function is no longer supported by the standard clock driver implementation (clockimpl.h). Update #3436.
* bsps: Adjust architecture Doxygen groupsSebastian Huber2019-03-041-11/+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.
* bfin/shared/dev/clock.c: Include rtems/score/thread.hJoel Sherrill2018-11-291-0/+1
|
* bsps/bfin: Use interrupt stack for init stackSebastian Huber2018-11-191-2/+2
| | | | Update #3459.
* bsps: Move start files to bspsSebastian Huber2018-04-201-0/+95
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move doxygen.h files to bspsSebastian Huber2018-04-201-0/+11
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Remove librtemsbsp.a wrapupSebastian Huber2018-04-091-8/+8
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/bfin: Rename shared.am to shared-sources.amSebastian Huber2018-04-051-0/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/bfin: Move libcpu content to bspsSebastian Huber2018-03-2610-0/+1706
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Rework cache manager implementationSebastian Huber2018-01-311-0/+134
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.