summaryrefslogtreecommitdiffstats
path: root/bsps/arm/tms570 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tms570ls3137_hdk_with_loader-testsuite.tcfg: Update to account for static ↵Joel Sherrill2019-03-121-0/+2
| | | | allocation and BSP small memory
* tms570ls3137_hdk_intram-testsuite.tcfg: Update to account for static ↵Joel Sherrill2019-03-121-0/+2
| | | | allocation and BSP small memory
* tms570ls3137_hdk-testsuite.tcfg: Update to account for static allocation and ↵Joel Sherrill2019-03-121-0/+2
| | | | BSP small memory
* bsps: Adjust bsp.h Doxygen groupsSebastian Huber2019-03-0833-34/+46
| | | | Update #3706.
* Remove explicit file names from @fileSebastian Huber2019-02-2833-33/+33
| | | | | | This makes the @file documentation independent of the actual file name. Update #3707.
* bsp/tms570: correct baudrate calculation.Pavel Pisa2018-11-141-1/+1
|
* bsp/tms570: correct inclusion of header files for build with HW init.Pavel Pisa2018-11-1412-21/+21
| | | | The build fails when TMS570_USE_HWINIT_STARTUP=1 option is set.
* bsp/tms570: Simple fix to resolve macro redefinitions.Pavel Pisa2018-10-151-34/+46
| | | | closes #3347
* Remove Clock_driver_support_shutdown_hardware()Sebastian Huber2018-06-271-16/+0
| | | | | | | | | | | | | | | | | The aim of this clock driver hook was to stop clock tick interrupts at some late point in the exit() procedure. The use of atexit() pulls in malloc() which pulls in errno. It is incompatible with the intention of the CONFIGURE_DISABLE_NEWLIB_REENTRANCY configuration option. The exit() function must be called from thread context, so accompanied clock tick interrupts should cause no harm. On the contrary, someone may assume a normal operating system operation, e.g. working timeouts. Remove the Clock_driver_support_shutdown_hardware() clock driver hook. Close #3436.
* Add _CPU_Counter_frequency()Sebastian Huber2018-06-151-2/+5
| | | | | | | | | | 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.
* bsps: Move documentation, etc. files to bspsSebastian Huber2018-04-261-0/+148
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/tms570: Move cpucounterread.c to bspsSebastian Huber2018-04-251-0/+62
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move interrupt controller support to bspsSebastian Huber2018-04-231-0/+202
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/tms570: Move more start to bspsSebastian Huber2018-04-2315-0/+3495
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move make/custom/* files to bspsSebastian Huber2018-04-238-0/+85
| | | | | | | | | 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.
* bsps: Move startup files to bspsSebastian Huber2018-04-208-0/+301
| | | | | | | | Adjust build support files to new directory layout. This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move console drivers to bspsSebastian Huber2018-04-202-0/+768
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move clock drivers to bspsSebastian Huber2018-04-201-0/+190
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* Remove make preinstallChris Johns2018-01-2554-0/+16756
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.