summaryrefslogtreecommitdiffstats
path: root/spec/build/bsps/arm (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-07-20Fixes for TMS570 BSPRobin Mueller1-1/+1
When compiling the lwIP port for the TMS570, there were issues with the BSP. Headers are expected in a folder named ti_herc which did not exist. This fixes the issue. Furthermore, there were multiple warnings about define redefinitions. This was fixed as well.
2021-07-20STM32H7 ethernet pin correctionsRobin Mueller3-0/+44
These patches were submitted a few months ago, but it was found out that the default-by-family: [] were missing in the GPIO .yml lines. This was fixed in this patch. This patch accounts for different pins for the ETH peripheral on STM32H7 devices. For example, the Nucleo H743ZI has slightly different pins than other STM32H7 boards.
2021-07-15build: Add missing default-by-familySebastian Huber2-0/+2
Update #4468.
2021-07-15build: Use BSP family for optionsChris Johns319-0/+319
- Optionally add support for 'default-by-family' to allow option to be set by a family and so all related BSPs Close #4468
2021-07-02bsps/imxrt: Simplify linkcmds and make it flexibleChristian Mauderer12-67/+96
Calling the memory FLASH and EXTRAM instead of FLEXSPI and SDRAM makes it simpler to support other types of external RAM. This patch also removes some of the calculations and improves names and documentation to avoid pitfalls. It removes a unnecessary memory definition. Update #4180
2021-07-02bsps/imxrt: Allow different ARM PLL settingChristian Mauderer1-0/+1
Update #4180
2021-06-07arm/fvp: Remove unused GICv2 BSP optionSebastian Huber2-6/+1
Update #4202.
2021-05-17bsps/imxrt: Fix OCRAM, ITCM and DTCM sizesChristian Mauderer7-4/+86
The sizes are configurable via fuses or per software via some registers. At the moment the registers are not changed. Changing the registers destroys data stored in the RAM areas (like application code or data). So either the fuses or some bootloader should be used to set them before the application starts. This also adds an OCRAM only linker command file. Update #4180
2021-04-23Nucleo UART3 (console) pins correctionRobin Mueller2-8/+2
Now using default pins
2021-04-22build: Remove duplicated attributesSebastian Huber2-2/+0
2021-04-20bsp/stm32h7: Remove duplicated build definitionsSebastian Huber1-89/+1
The links are already in spec/build/bsps/arm/stm32h7/grp.yml.
2021-04-07spec: Remove RTEMS_NETWORKING optionsVijay Kumar Banerjee16-151/+0
Update #3850
2021-04-06arm/stm32h7: Add STM32H7_USART3_GPIO_*Sebastian Huber3-0/+44
2021-04-06arm/stm32h7: Add STM32H7_HSE_FREQUENCYSebastian Huber2-0/+22
2021-04-06arm/nucleo-h743zi: New BSP variantSebastian Huber1-0/+17
2021-04-06build: Add group for arm/stm32h7Sebastian Huber3-419/+538
2021-04-01stm32h7: Add init for sdmmc pinsChristian Mauderer1-0/+1
Update #4372
2021-03-30bsps/shared: Add Xilinx-AXI SPI driver to wafJan Sommer2-0/+4
Updates #4321
2021-03-21bsps/beagle: Added SOC detection using FDTG S Niteesh Babu1-0/+1
Detects the SOC type using FDT and also replaces the ti_cpuid.h header in FreeBSD with custom one.
2021-03-19build: Add test exclude for arm/lpc2362Sebastian Huber1-0/+1
2021-03-10bsps/xilinx_zynq: Add SPI driver to wafJan Sommer2-0/+4
Updates #4320
2021-03-09build: Fix broken linkSebastian Huber1-1/+1
2021-03-05spec: Move hypervisor start for use by AArch64Kinsey Moore2-17/+1
AArch64 on hardware is often started at EL2 instead of EL1 from either u-boot or a first stage bootloader. This allows RTEMS to drop from EL2 execution to EL1 to operate as normal.
2021-03-02bsps/beagle: Adding QEP driver support to BeagleBoneBlack BSPJames Fitzsimons1-1/+4
2021-02-26bsps: Add default rtems_get_target_hash()Sebastian Huber24-0/+24
Update #4267.
2021-02-24build: Sort source listsSebastian Huber9-33/+33
Use the Python sorted() function to sort the "source" lists.
2021-01-26build: Add test excludesSebastian Huber4-0/+6
2021-01-22bsps/shared: Build fsl-edma only for certain BSPChristian Mauderer1-0/+2
Move the Freescale EDMA driver to it's own object and build it only for the BSP that is currently using it.
2021-01-21bsps/imxrt: Add ioctl to LPSPI to get registersChristian Mauderer1-0/+1
This allows an application to get the registers of the LPSPI. That is usefull for applications that want to use DMA for a very specialized and highly optimized communication. Update #4180
2021-01-21bsps/shared: Adapt fsl-edma driver for imxrtChristian Mauderer2-0/+18
Note: The changes have been done with portability in mind. The driver should (in theory) be able to replace the original one in the MPC BSPs too. For full compatibility an adaption layer and especially a test would be necessary. Because both are missing, don't integrate it into the MPC BSP now. Update #4180
2021-01-04bsp/stm32h7: Split console configurationSebastian Huber1-0/+10
This allows applications to individually provide configuration structures. Update #4209.
2021-01-04bsp/stm32h7: Split start configurationSebastian Huber1-1/+5
This allows applications to individually provide configuration structures. Update #4209.
2020-12-23arm/fvp: New BSPSebastian Huber16-1/+394
This BSP supports the Arm Fixed Virtual Platform. Only the Cortex-R52 processor configuration is supported by the BSP. It should be easy to add support for other variants if needed. Update #4202.
2020-12-23bsps: Use header file for GIC architecture supportSebastian Huber7-6/+1
This avoids a function call overhead in the interrupt dispatching. Update #4202.
2020-12-23bsps/arm: Set VBAR in start.SSebastian Huber1-1/+0
Set the VBAR to the vector table in the start section before bsp_start_hook_0() is called to earlier handle exceptions in RTEMS. Set the VBAR to the normal vector table in start.S for the main processor. Secondary processors set it in bsp_start_hook_0(). Update #4202.
2020-12-14bsps/arm/imx*: Fix location of shared headersChristian Mauderer2-12/+10
When moving the headers from the imx BSP to the shared area, the wrong directory has been selected. This patch fixes that problem. Update #4180
2020-12-14bsps/imxrt: Split up dts.Christian Mauderer1-0/+1
This allows simpler creation of own dts files for custom boards. Update #4180
2020-12-11build: Clarify ARM_MMU_USE_SMALL_PAGES descriptionSebastian Huber1-1/+2
2020-12-11bsp/xilinx_zynq: Enable support for 4kiB MMU pagesJan Sommer2-3/+15
- Disabled by default - Enable using ARM_MMU_USE_SMALL_PAGES option Close 4192.
2020-12-10bsps/arm: Move BSP_START_IN_HYP_SUPPORT optionSebastian Huber2-2/+3
Clarify documentation. Update #4202.
2020-12-10bsps/arm: Support system level ARM Generic TimerSebastian Huber2-0/+39
Update #4202.
2020-12-10bsps/arm: Unify ARM Generic Timer optionsSebastian Huber5-25/+12
Update #4202.
2020-12-04spec: Move zynq-uart into its own objectKinsey Moore2-0/+4
Currently, zynq-uart code is always built and has some requirements for BSPs that use it. Instead of making all BSPs satisfy that requirement or working around it by setting defaults, this moves the zynq-uart code into its own spec build object so it can be included if needed.
2020-12-04Add AArch64 ZynpMP BSPKinsey Moore4-32/+2
This adds a BSP family that runs on the Xilinx Ultrascale+ MPSOC (ZynqMP) family of chips. It is configured to be usable on the Qemu ZCU102 machine definition and should be almost trivially portable to ZynqMP development boards and custom hardware. It is also configured to be usable with libbsd.
2020-12-02bsps: Move ARM GICv2 driver to bsps/sharedKinsey Moore6-6/+12
This moves the ARM GICv2 driver to bsps/shared to be usable by AArch64 code.
2020-12-02bsps: Move zynq-uart to bsps/sharedKinsey Moore3-6/+0
This moves the zynq-uart driver from bsps/arm/shared to bsps/shared to accomodate use by AArch64 BSPs.
2020-11-20bsp/imxrt: Add new BSPChristian Mauderer12-0/+483
Update #4180
2020-11-20cpu/armv7m: Add table based init for ARMV7M_MPUChristian Mauderer1-0/+2
Modify the MPU functions of the stm32h7 BSP to be table based and available for all ARMV7M BSPs. Update #4180
2020-11-20bsps/imx: Move imx-gpio to arm/sharedChristian Mauderer1-2/+2
Update #4180
2020-11-20imx: Move imx_iomux to arm/sharedChristian Mauderer1-4/+6
Update #4180