summaryrefslogtreecommitdiffstats
path: root/spec/build/bsps/aarch64/xilinx-versal (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-07-10spec: Add QEMU test annotationsKinsey Moore1-1/+3
QEMU is known to fail certain tests intermittently due to clock tick delivery issues. This defines those tests as intermittent for BSPs intended to run on QEMU alone. Updates #4922 Updates #4072
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2023-01-17build: Use enabled by for defaultsSebastian Huber13-35/+39
Merge the "default" and "default-by-variant" attributes. Use an "enabled-by" expression to select the default value based on the enabled set. This makes it possible to select default values depending on other options. For example you could choose memory settings based on whether RTEMS_SMP is enabled or disabled. The change was tested by comparing the output of ./waf bspdefaults before and after the change.
2023-01-17build: Format build itemsSebastian Huber2-3/+3
Use yaml.dump(data, default_flow_style=False, allow_unicode=True) with a custom representer for integer default values to format all build items.
2023-01-17build: Add reason to test state definitionsSebastian Huber3-9/+15
2022-11-22aarch64/versal: Add UART interrupt supportChris Johns3-0/+18
2022-08-25bsps/xilinx/versal: Add Cadence I2C driver supportChris Johns6-0/+63
2022-08-23bsps/xilinx/versal: Remove IPL32 BSPs, add aiedge and change defaultsChris Johns10-110/+42
- Versal has IO mapped to the upper 64bit address space and needs full 64bit addresses. - Add xilinx_versal_aiedge for custom hardware - Make the hardware settings the defaults and qemu as variants Closes #4693
2022-08-22spec/bsps: Do not install tm27.hChris Johns1-1/+0
Updates #4705
2022-07-28aarch64/versal: Support DDRMC0 region 0 and 1Chris Johns1-5/+43
- Support DDRMC0 region 0 up to 2G in size - Support DDRMC0 region 1 with DDR memory greater than 2G up to the DDRMC0 max amount - Extend the heap with region 1's memory Closes #4684
2022-07-12irq/arm-gicv3.h: Customize CPU Interface initSebastian Huber2-1/+2
Use the existing WRITE_SR() abstraction to access the interrupt group 0 and 1 enable registers. This fixes the build for the AArch32 target. Add BSP options which define the initial values of CPU Interface registers.
2022-07-06bsps/aarch64: Use MMU pages appropriatelyKinsey Moore2-6/+6
There were two bugs with MMU page use that were partially hiding each other. The linker script page table section was 4x the size it needed to be and the page table allocation routine was allocating pages PTRSIZE times larger than it needed to. On ILP32, this resulted in incorrect but functional allocation. On LP64, this resulted in allocation failures earlier than expected.
2022-07-04build: Add cppflags, cflags, cxxflags to groupsSebastian Huber3-0/+9
Propagate the group defined cppflags, cflags, and cxxflags from parent groups to child items through the build item context. Update #4670.
2022-06-16bsps/versal: Support a 64bit RAM baseChris Johns1-1/+1
Set the constraint to be 64bits to allow the complete address range.
2022-01-12aarch64: always boot into EL1NSGedare Bloom1-2/+0
Always start the executive in Exception Level 1, Non-Secure mode. If we boot in EL3 Secure with GICv3 then we have to initialize the distributor and redistributor to set up G1NS interrupts early in the boot sequence before stepping down from EL3S to EL1NS. Now there is no need to distinguish between secure and non-secure world execution after the primary core boots, so get rid of the AARCH64_IS_NONSECURE configuration option.
2021-11-30build: Use common objects item for get memorySebastian Huber2-1/+2
2021-11-29build: Remove trailing white spaceSebastian Huber2-2/+2
2021-11-01aarch64: Break out MMU definitionsKinsey Moore1-0/+1
This moves the AArch64 MMU memory type definitions into cpukit for use by libdebugger since remapping of memory is required to insert software breakpoints.
2021-10-20spec/aarch64: Enable previously unbuildable testsKinsey Moore2-8/+0
The spconfig01 and spmisc01 tests were disabled for all AArch64 BSPs due to a toolchain issue preventing them from compiling correctly. The binutils version that contains the fix has been released and integrated into RSB such that these two tests now build and operate correctly.
2021-08-18build: Merge default-by-family into by-variantSebastian Huber9-9/+0
Prefix the BSP family name with "bsps/" to make it distinct to the BSP variant names. Update #4468.
2021-07-15build: Use BSP family for optionsChris Johns9-0/+9
- Optionally add support for 'default-by-family' to allow option to be set by a family and so all related BSPs Close #4468
2021-06-29spec/aarch64: fix abi flags for xilinx_versal_ilp32_vck190Gedare Bloom1-0/+1
2021-06-24bsps/aarch64: replace boot options with asm switch codeGedare Bloom2-4/+0
2021-06-24bsps/aarch64: add non-secure mode and versal supportGedare Bloom4-6/+26
2021-06-24aarch64/xilinx-versal: new BSPs for qemu and vck190Gedare Bloom18-0/+516