summaryrefslogtreecommitdiffstats
path: root/bsps (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-06-04bsp/lpc24xx: Fix LPC24XX_IO_PORT_COUNTSebastian Huber1-1/+5
2019-05-27bsps/powerpc: Adjust ppcboot.ldsSebastian Huber1-10/+14
The GNU ld had a couple of changes which resulted in a broken bootloader image generation. Recent linker versions tie assignments to their nearest output section statement. Place all absolute symbols which are used with @sectoff relocations into a special section. See also: "Binutils 2.28 on PowerPC: dangerous relocation: generic linker can't handle R_PPC_SECTOFF_HA" https://www.sourceware.org/ml/binutils/2019-05/msg00183.html Update #3727
2019-05-27bsps: Fix warnings in grethSebastian Huber2-7/+7
2019-05-20score: Remove SMP_MESSAGE_CLOCK_TICKSebastian Huber2-11/+10
Use _SMP_Multicast_action() instead.
2019-05-20score: Simplify _SMP_Multicast_action()Sebastian Huber1-2/+23
Move resposibility to disable thread dispatching to the caller of _SMP_Multicast_action(). Using an interrupt disable for this purpose is questionable.
2019-05-20score: Add _SMP_Othercast_action()Sebastian Huber2-13/+9
2019-05-20score: Add _SMP_Broadcast_action()Sebastian Huber3-4/+4
2019-05-16bsps: Always build generic interrupt supportSebastian Huber41-0/+164
This makes it possible to write tests for the generic interrupt controller support. Update #3269.
2019-05-14bsps/arm: Adjust machine flags for ARMv7-MSebastian Huber6-6/+15
Update machine flags for Cortex-M3 and Cortex-M4 based BSPs to account for Cortex-M3 Errata 602117 which required GCC multilib changes. Update #3747.
2019-05-13Removed entry from Related PagesAndreas Dachsberger1-0/+2
SAM V71 Xplained Ultra - Board explanation now in Modules->BSPs->ARM Update #3706.
2019-05-09bsp/lpc24xx: Fix dynamic EMC configurationsSebastian Huber1-2/+5
2019-05-09bsp/lpc24xx: Use fast slew rate for EMC pinsSebastian Huber1-84/+63
2019-05-09bsp/lpc24xx: Add LPC17XX_PIN_TYPE_FAST_SLEW_RATESebastian Huber2-1/+5
2019-05-09bsp/lpc24xx: Add SDRAM mode settings commentSebastian Huber1-1/+10
2019-05-08bsp/lpc24xx: Fix LPC24XX_EMC_MT48LC4M16A2 MPU cfgSebastian Huber1-7/+8
2019-05-08bsp/lpc24xx: Flexible LPC24XX_EMC_MT48LC4M16A2 cfgSebastian Huber1-17/+24
2019-05-08bsp/lpc24xx: LPC24XX_EMC_MT48LC4M16A2 MPU supportSebastian Huber1-2/+6
2019-05-08bsp/lpc24xx: Support LPC24XX_EMC_SST39VF3201 pinsSebastian Huber1-3/+7
2019-05-07bsps/powerpc: Fix constructors with prioritySebastian Huber1-19/+8
Update #3339.
2019-05-07bsps/powerpc: Fix C++ exception handlingSebastian Huber1-2/+3
Close #3736.
2019-05-07bsp/motorola_powerpc: Fix bootloader outputSebastian Huber1-0/+4
2019-05-06bsps: Remove bogus config declarationSebastian Huber3-3/+3
Replace it with a proper struct rtems_bsdnet_ifconfig forward declaration. Close #3742.
2019-04-12bsp/motorola_powerpc: Fix debug outputSebastian Huber2-4/+4
Update #3122.
2019-04-12score: Remove _SMP_Before_multitasking_action()Sebastian Huber2-16/+14
Use _SMP_Multicast_action() instead.
2019-04-12score: Use processor mask in _SMP_Multicast_actionSebastian Huber1-2/+2
Processor_mask is the internal data type to deal with processor sets.
2019-04-11score: Rename _SMP_Get_processor_count()Sebastian Huber3-12/+14
Rename _SMP_Get_processor_count() in _SMP_Get_processor_maximum() to be in line with the API level rtems_scheduler_get_processor_maximum(). Update #3732.
2019-04-11score: Rename _SMP_Processor_countSebastian Huber1-1/+1
Rename _SMP_Processor_count in _SMP_Processor_maximum to be in line with the API level rtems_scheduler_get_processor_maximum(). Update #3732.
2019-04-11bsp/xilinx-zynqmp: Implement Ultra96 targetJeff Kubascik14-162/+208
Modifications to get xilinx-zynqmp BSP working on an Ultra96 board. Update #3682.
2019-04-11bsp/xilinx-zynqmp: Stub out Xilinx MPSoC BSPJeff Kubascik14-0/+738
Source files were copied from xilinx-zynq. Update #3682.
2019-04-11bsp/zynq-uart: Move Zynq UART driver to shared directoryJeff Kubascik5-2/+2
This driver will be shared with the xilinx-zynqmp BSP. Update #3682.
2019-04-11bsp/zynq-uart: Remove zynq_uart_instances from headerJeff Kubascik3-3/+5
This variable is BSP specific and should be removed from the driver header file. Update #3682.
2019-04-10bsp/xilinx-zynq: Relicense to BSD-2-ClauseSebastian Huber17-153/+374
Relicense contributions from Chris Johns, Christian Mauderer, embedded brains GmbH, Joel Sherrill, OAR, Pavel Pisa, Ralf Kirchner, and Sebastian Huber. Update #3053.
2019-04-09rtems: Add rtems_scheduler_get_processor_maximum()Sebastian Huber6-9/+9
Add rtems_scheduler_get_processor_maximum() as a replacement for rtems_get_processor_count(). The rtems_get_processor_count() is a bit orphaned. Adopt it by the Scheduler Manager. The count is also misleading, since the processor set may have gaps and the actual count of online processors may be less than the value returned by rtems_get_processor_count(). Update #3732.
2019-04-09rtems: Add rtems_scheduler_get_processor()Sebastian Huber2-2/+2
Add rtems_scheduler_get_processor() as a replacement for rtems_get_current_processor(). The rtems_get_current_processor() is a bit orphaned. Adopt it by the Scheduler Manager. This is in line with the glibc sched_getcpu() function. Deprecate rtems_get_current_processor(). Update #3731.
2019-04-09bsps/arm: Optimize ARMv7-M CPU counterSebastian Huber1-4/+5
Update #3456.
2019-04-09bsps/arm: Fix ARMv7-M CPU counterSebastian Huber1-0/+1
Read the current counter value again after we know that we had an underflow. Update #3456.
2019-04-04doxygen: Added subgroup Generic to BSP->SPARC64Andreas Dachsberger4-3/+11
Update #3706.
2019-04-04Set the small data section size to max. for beatnik BSPs.Goetz Pfeiffer1-0/+2
This applies changes similar to patch 294c6f46a6 to the beatnik BSP. This is a board support for the mvme5500 and mvme6100 CPU.
2019-04-02doxygen: bsps: Added remaining Sparc64 groupsAndreas Dachsberger17-16/+23
2019-03-30Set the small data section size to max. for mvme5500 and mvme2100 BSPsChris Johns2-0/+4
Closes #3728
2019-03-25erc32/start/setvec.c: Fix warningJoel Sherrill1-3/+8
2019-03-19bsp/atsam: Fix SPI driver DMA supportSebastian Huber1-144/+154
2019-03-19bsp/atsam: Simplify XDMAD_Handler()Sebastian Huber2-56/+7
Remove the channel status evaluation from XDMAD_Handler() and simply hand over the status to the callbacks.
2019-03-15bsp/lpc24xx: Convert I2C driver to Linux APISebastian Huber3-364/+435
Change license to BSD-2-Clause. Close #3725.
2019-03-15bsps/powerpc: Initialize stack earlierSebastian Huber1-9/+9
The __eabi() call may use the stack. Update #3459.
2019-03-14z85c30.c: Do not process 0 baud and return an error (CID 1399713)Joel Sherrill1-0/+9
2019-03-14Remove superfluous <rtems/system.h> includesSebastian Huber21-24/+1
2019-03-14Add rtems_board_support_package()Sebastian Huber1-0/+6
2019-03-13bsp/lm3s69xx: Fix typo in test configurationSebastian Huber2-2/+1
2019-03-12mpc5643l_evb-testsuite.tcfg: : Update to account for static allocation and ↵Joel Sherrill1-0/+4
BSP small memory