summaryrefslogtreecommitdiffstats
path: root/bsps/arm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/arm: Include missing header fileSebastian Huber2018-07-051-0/+1
|
* bsps: Update headers.amSebastian Huber2018-07-051-0/+1
|
* Rework initialization and interrupt stack supportSebastian Huber2018-06-2718-471/+265
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Statically initialize the interrupt stack area (_Configuration_Interrupt_stack_area_begin, _Configuration_Interrupt_stack_area_end, and _Configuration_Interrupt_stack_size) via <rtems/confdefs.h>. Place the interrupt stack area in a special section ".rtemsstack.interrupt". Let BSPs define the optimal placement of this section in their linker command files (e.g. in a fast on-chip memory). This change makes makes the CPU_HAS_SOFTWARE_INTERRUPT_STACK and CPU_HAS_HARDWARE_INTERRUPT_STACK CPU port defines superfluous, since the low level initialization code has all information available via global symbols. This change makes the CPU_ALLOCATE_INTERRUPT_STACK CPU port define superfluous, since the interrupt stacks are allocated by confdefs.h for all architectures. There is no need for BSP-specific linker command file magic (except the section placement), see previous ARM linker command file as a bad example. Remove _CPU_Install_interrupt_stack(). Initialize the hardware interrupt stack in _CPU_Initialize() if necessary (e.g. m68k_install_interrupt_stack()). The optional _CPU_Interrupt_stack_setup() is still useful to customize the registration of the interrupt stack area in the per-CPU information. The initialization stack can reuse the interrupt stack, since * interrupts are disabled during the sequential system initialization, and * the boot_card() function does not return. This stack resuse saves memory. Changes per architecture: arm: * Mostly replace the linker symbol based configuration of stacks with the standard <rtems/confdefs.h> configuration via CONFIGURE_INTERRUPT_STACK_SIZE. The size of the FIQ, ABT and UND mode stack is still defined via linker symbols. These modes are rarely used in applications and the default values provided by the BSP should be sufficient in most cases. * Remove the bsp_processor_count linker symbol hack used for the SMP support. This is possible since the interrupt stack area is now allocated by the linker and not allocated from the heap. This makes some configure.ac stuff obsolete. Remove the now superfluous BSP variants altcycv_devkit_smp and realview_pbx_a9_qemu_smp. bfin: * Remove unused magic linker command file allocation of initialization stack. Maybe a previous linker command file copy and paste problem? In the start.S the initialization stack is set to a hard coded value. lm32, m32c, mips, nios2, riscv, sh, v850: * Remove magic linker command file allocation of initialization stack. Reuse interrupt stack for initialization stack. m68k: * Remove magic linker command file allocation of initialization stack. Reuse interrupt stack for initialization stack. powerpc: * Remove magic linker command file allocation of initialization stack. Reuse interrupt stack for initialization stack. * Used dedicated memory region (REGION_RTEMSSTACK) for the interrupt stack on BSPs using the shared linkcmds.base (replacement for REGION_RWEXTRA). sparc: * Remove the hard coded initialization stack. Use the interrupt stack for the initialization stack on the boot processor. This saves 16KiB of RAM. Update #3459.
* bsps: Support .rtemsstack.* linker input sectionsSebastian Huber2018-06-271-0/+3
| | | | | | Use a dedicated memory region or place it between the BSS and workspace. Update #3459.
* Remove Clock_driver_support_shutdown_hardware()Sebastian Huber2018-06-2712-171/+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.
* arm: Simplify CPU counter supportSebastian Huber2018-06-154-142/+133
| | | | | | | | | | Use the standard ARMv7-M systick module for the ARMv7-M CPU counter instead of DWT counter since the DWT counter is affected by power saving states. Use an inline function for _CPU_Counter_difference() for all ARM BSPs. Update #3456.
* Add _CPU_Counter_frequency()Sebastian Huber2018-06-1511-34/+43
| | | | | | | | | | 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.
* bsp/atsam: Remove side effect from gmac functions.Christian Mauderer2018-05-301-0/+38
| | | | | | | | | Quite a number of GMAC_... functions had a side effect of enabling the transmit and receive. During the initialization of the ethernet driver, that lead to the situation that the receive has been already enabled while the DMA isn't set up correctly. Therefore the DMA interpreted the values at address 0 as an DMA descriptor. When a packet is received during that time, the behaviour is quite undefined.
* gumstix: Remove CONFIGURE_INTERRUPT_STACK_MEMORYSebastian Huber2018-05-251-3/+0
| | | | | This define is not supported by confdefs.h. In addition, on ARM the interrupt stack size is defined by the linker command file.
* bsp/atsam: Reserve one region for applications.Christian Mauderer2018-05-251-0/+4
| | | | | | This allows a user to overwrite some MPU settings. That can for example be usefull for devices with special requirements that are connected to the external bus interface.
* Drop executable permissions on .[S] filesJoel Sherrill2018-05-141-0/+0
|
* smdk2410: Move define of CPU_S3C2410 to bspopts.hJoel Sherrill2018-05-093-1/+7
| | | | Updates #3425.
* rtl22xx_t.cfg: Remove comment with -D __THUMB_INTERWORK__Joel Sherrill2018-05-081-4/+0
| | | | Updates #3425.
* Drop executable permissions on .[ch] filesJoel Sherrill2018-04-3017-0/+0
|
* bsps: Move documentation, etc. files to bspsSebastian Huber2018-04-2631-0/+1485
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/beagle: Move source files to bspsSebastian Huber2018-04-254-0/+1617
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/gumstix: Move fb.c to bspsSebastian Huber2018-04-251-0/+239
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/lm3s69xx: Move ssi.c to bspsSebastian Huber2018-04-251-0/+170
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/lpc176x: Move source files to bspsSebastian Huber2018-04-2513-375/+2788
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/lpc24xx: Move source files to bspsSebastian Huber2018-04-259-0/+1954
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/lpc32xx: Move source files to bspsSebastian Huber2018-04-2511-0/+1228
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/raspberrypi: Move source files to bspsSebastian Huber2018-04-256-0/+1587
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/smdk2410: Move smc.c to bspsSebastian Huber2018-04-251-0/+410
| | | | | | 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 arm-cp15-set-ttb-entries.c to bspsSebastian Huber2018-04-241-0/+89
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move arm-cp15-set-exception-handler.c to bspsSebastian Huber2018-04-241-0/+56
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move arm-a9mpcore-smp.c to bspsSebastian Huber2018-04-241-0/+70
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move arm-pl050.c to bspsSebastian Huber2018-04-241-0/+116
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move arm-pl011.c to bspsSebastian Huber2018-04-241-0/+91
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move arm-pl111-fb.c to bspsSebastian Huber2018-04-241-0/+276
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move arm-generic-timer-clock-config.c to bspsSebastian Huber2018-04-241-0/+202
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move arm-a9mpcore-clock-config.c to bspsSebastian Huber2018-04-241-0/+212
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move armv7m-cpucounter.c to bspsSebastian Huber2018-04-241-0/+53
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move bspreset.c to bspsSebastian Huber2018-04-241-0/+38
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps/arm: Move bsp_memory_management_initialize()Sebastian Huber2018-04-241-1/+17
| | | | | | | | This function is only used by the raspberrypi BSP. This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move RTC drivers to bspsSebastian Huber2018-04-235-0/+1302
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move legacy network drivers to bspsSebastian Huber2018-04-2310-0/+6910
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move interrupt controller support to bspsSebastian Huber2018-04-2319-0/+2279
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move SPI drivers to bspsSebastian Huber2018-04-235-0/+1915
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move I2C drivers to bspsSebastian Huber2018-04-2314-0/+3569
| | | | | | 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.
* bsp/atsam: Move libraries to bspsSebastian Huber2018-04-2378-0/+21848
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsp/altera-cyclone-v: Move hwlib to bspsSebastian Huber2018-04-2311-0/+19144
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move make/custom/* files to bspsSebastian Huber2018-04-2398-0/+1101
| | | | | | | | | 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 benchmark timer to bspsSebastian Huber2018-04-208-0/+959
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move startup files to bspsSebastian Huber2018-04-20173-0/+11254
| | | | | | | | Adjust build support files to new directory layout. This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move start files to bspsSebastian Huber2018-04-207-0/+1434
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move console drivers to bspsSebastian Huber2018-04-2042-0/+13086
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move clock drivers to bspsSebastian Huber2018-04-2012-0/+1424
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Move doxygen.h files to bspsSebastian Huber2018-04-201-0/+15
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.