summaryrefslogtreecommitdiff
path: root/bsps (follow)
AgeCommit message (Collapse)Author
2020-10-10disp_hcms29xx: Fix string truncation warningFrank Kühndel
The strlcpy() function ensures there is always a NUL character at the end of the string. Hence it is safer as strncpy() and it avoids the compiler warning
2020-10-10rtems: Improve RTEMS_NO_RETURN attributeSebastian Huber
Provide RTEMS_NO_RETURN also in case RTEMS_DEBUG is defined to prevent errors like this: error: no return statement in function returning non-void [-Werror=return-type] Use C11 and C++11 standard means to declare a no-return function. Close #4122.
2020-10-10grlib: Add and use irqmp_has_timestamp()Sebastian Huber
Replace leon3_irqmp_has_timestamp() with irqmp_has_timestamp() and move it to grlib.h. Close #4128.
2020-10-08bsps/include/bsp/fatal.h: Add GRLIB specific fatal errorJoel Sherrill
updates #4028.
2020-10-07Misc: Correct spelling of occurredJoel Sherrill
2020-10-05bsps: Add Cortex-A53 ILP32 BSP variantKinsey Moore
This adds an AArch64 ILP32 BSP variant based on Qemu's Cortex-A53 emulation with interrupt support using GICv3 and clock support using the ARM GPT.
2020-10-05bsps: Add Cortex-A53 LP64 basic BSPKinsey Moore
This adds an AArch64 basic BSP based on Qemu's Cortex-A53 emulation with interrupt support using GICv3 and clock support using the ARM GPT.
2020-10-05bsps/shared: Add PSCI-based bspreset implementationKinsey Moore
This adds a bsp_reset implementation based on the ARM PSCI specification often present in ARMv8 systems.
2020-10-05bsps: Break out AArch32 GICv3 supportKinsey Moore
This breaks out AArch32-specific code so that the shared GICv3 code can be reused by other architectures.
2020-10-05bsps: Break out AArch32 portions of GPT driverKinsey Moore
This breaks AArch32-specific portions of the ARM GPT driver into their own file so that the generic code can be moved for reuse by other architectures.
2020-10-05Move ARM PL011 UART driverKinsey Moore
This UART driver is now needed for BSPs other than ARM.
2020-10-05bsp/lpc176x: Fix memory mapSebastian Huber
Due to the static allocation of operating system resources the .bss section needs more space than the .work section. Close #4117.
2020-09-23bsps/pc386: Add missing license headerJan Sommer
Closes #4093.
2020-09-23bsps/riscv: Add bsp_fdt_map_intr()Sebastian Huber
This function is required by libbsd.
2020-09-20bsps/powerpc: Remove __ppc_generic defineSebastian Huber
Do not force BSPs to define __ppc_generic. This was probably the last command line define in the BSPs.
2020-09-17riscv: Make sifive_test finisher 4 bytesHesham Almatary
QEMU is now stricter with MMIO sizes and accesses. uintptr_t on RV64 is 8 bytes and generates an sd instruction that Store/AMO faults because sifive_test MMIO expects 4 bytes accesses.
2020-09-17bsps/arm: Use RTEMS_SECTION()Sebastian Huber
2020-09-17arm: Fix arm_cp15_set_translation_table_entries()Sebastian Huber
In a multi-processor system we must broadcast the TLB maintenance operation to the Inner Shareable domain to ensure that the other processors update their TLB caches accordingly. Close #4068.
2020-09-15bsp/pc386: Remove support for obsolete BinutilsSebastian Huber
Update #3818.
2020-09-15bsps/riscv: Use far jump to boot_card()Sebastian Huber
Use a far jump to avoid errors like this: relocation truncated to fit: R_RISCV_JAL against symbol `boot_card'
2020-09-14build: Alternative build system based on wafSebastian Huber
Update #3818.
2020-09-11Remove tmoverhd which existed to produce the obsolete coverhd.hJoel Sherrill
Closes #4040.
2020-09-10Remove remaining references to coverhd.hJoel Sherrill
Closes #4040.
2020-09-06htif_console_handler is defined in htif.cHesham Almatary
closes #4069.
2020-08-31bsps: Always install IPI in SMP configsSebastian Huber
The inter-processor interrupt (IPI) may be used to process per-CPU jobs. See for example the blocked handler in T_interrupt_test(). Update #3199.
2020-08-22bsp/xilinx-zynq: Flush TX-Buffer before initializing uartJan Sommer
Closes #4055 Closes #4056
2020-08-20bsps/leon3: Remove superfluous includesSebastian Huber
2020-08-20bsps/arm: Use _Assert()Sebastian Huber
2020-08-12powerpc/io: The eieio() function clashes with FreeBSD. Change.Chris Johns
2020-08-05arm/atsam: Make interrupt server configurableSebastian Huber
The external UART over SPI device SC16IS752 uses the interrupt server for interrupt processing. The interrupt server is also heavily used by libbsd. The interrupt processing for the SC16IS752 is time critical and doesn't work if network traffic is processed at the same priority. With #4033 custom interrupt servers are available. Change atsam_sc16is752_spi_create() to support user-defined interrupt servers. Introduced atsam_sc16is752_spi_config to cut down the argument count of this function. Close #4039.
2020-08-03bsps/beagle: Remove some debug output from I2C.Christian Mauderer
2020-08-03dev/spi-memdrv: Fix use of uninit mem_param_ptrSebastian Huber
2020-08-03rtems: Add rtems_interrupt_server_create()Sebastian Huber
Add rtems_interrupt_server_destroy(). Before this patch, the only way to create interrupt servers was rtems_interrupt_server_initialize(). This function creates the default interrupt server and in SMP configurations additional interrupt servers for the additional processors. The interrupt server is heavily used by libbsd. This includes the epoch based reclamation which performs time consuming resource and memory deallocation work. This does not work well with time critical services, for example an UART over SPI or I2C. One approach to address this problem is to allow the application to create custom interrupt servers with the right priority and task properties. The interrupt server API accounted for this, however, it was not implemented before this patch. Close #4034.
2020-07-31bsps/fdt: Make sure data is cache alignedChristian Mauderer
The cache of the fdt blob is flushed after copy. Therefore it should be aligned.
2020-07-31bsp/imx: Use GPIOs for SPI CSChristian Mauderer
The chip select lines of the iMX SPI module doesn't work well for a generic API like the one RTEMS uses. The existing solution only worked in some special cases and had odd bugs when trying transfers of different sizes (like deselecting between each byte for lengths that are not dividable by 4). With this patch the same approach like on FreeBSD or Linux is used: Treat the CS lines as GPIOs. Update 3869
2020-07-31bsp/imx: Add a GPIO driverChristian Mauderer
Update 3869
2020-07-31bsps/lm32: Use shared <bsp/irq.h>Sebastian Huber
Having a duplicate header with the shared includes is a build system inconsistency. You may use one header file to build the libraries and another one is installed (overwriting the other). Update #3269.
2020-07-23bsps/clock: Fix fast idle clock tick supportSebastian Huber
If we interrupt a thread dispatch critical section (thread dispatch disable level != ISR nest level), then we should not do the fast idle mode since this may delay an ongoing system call forever.
2020-07-16bsps/pc386: Fix IPI for non-consecutive APICIDsJan Sommer
- properly use the cpu <-> apic maps for IPIs Closes #4029.
2020-07-14rtems: Remove _Copyright_Notice from API headerSebastian Huber
Close #3981.
2020-07-13Fix for Beaglebone BSP PWM bugJames Fitzsimons
2020-07-05epiphany: Remove support for this targetSebastian Huber
Due to an unmaintained toolchain (internal errors in GCC, no FSF GDB integration) the Epiphany architecture was obsoleted in RTEMS 5.1. Update #3941.
2020-07-05bsps/powerpc: Remove obsolete BSPsSebastian Huber
Update #3951.
2020-07-05bsps/powerpc: Remove SPE enabled variantsSebastian Huber
The PowerPC SPE support was removed from GCC. Update #3951.
2020-07-05bsps/powerpc: Remove __atexit form start.oSebastian Huber
Remove superflous __atexit stuff in start.o. It is no longer required by GCC and may cause linker problems. See GCC commit: commit 362c63a5e8b5aacfff3e5af0911e42ba7c775042 Author: Geoff Keating <geoffk@cygnus.com> Date: Fri Apr 14 23:16:25 2000 +0000
2020-07-05bsps/powerpc: Fix tlbie instruction usageSebastian Huber
GCC 10 no longer passes -many to the assembler. This enables more checks in the assembler. The 0 in the tlbie instruction is the L operand which selects a 4KiB page size.
2020-07-05bsps/powerpc: Fix inline assemblySebastian Huber
GCC 10 no longer passes -many to the assembler. This enables more checks in the assembler.
2020-07-05bsp/qoriq: Fix tlbwe sequenceSebastian Huber
2020-07-05bsps/mips: Fix issues with -fno-commonSebastian Huber
2020-06-18i386/pc: Initialise the printk serial port on first useChris Johns