summaryrefslogtreecommitdiffstats
path: root/spec/build/bsps/obj.yml (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-08-01bsps/shared: Add MCP7940M RTC driverChristian Mauderer1-0/+2
The MCP7940M is a I2C RTC chip. The new driver uses the dev/i2c API to support the RTC. It is written with the intention, that the driver can be adapted to other RTCs with a similar register layout by just replacing the initialization function.
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2021-04-07spec: Remove RTEMS_NETWORKING optionsVijay Kumar Banerjee1-4/+0
Update #3850
2021-03-21bsp/beagle: Ported Beagle pinmux driver to RTEMSG S Niteesh Babu1-0/+6
The following files have been ported 1) ti_pinmux.c 2) ti_pinmux.h 3) am335x_scm_padconf.c 4) am335x_scm_padconf.h Update #3784
2021-02-24build: Sort source listsSebastian Huber1-5/+5
Use the Python sorted() function to sort the "source" lists.
2021-01-22bsps/shared: Build fsl-edma only for certain BSPChristian Mauderer1-5/+0
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/shared: Adapt fsl-edma driver for imxrtChristian Mauderer1-0/+5
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
2020-12-27bsps/shared/ofw: Implement RTEMS OFW interfaceG S Niteesh Babu1-0/+5
RTEMS OFW is a FDT only implementation of the OpenFirmWare interface. This API is created to be compatible with FreeBSD OpenFirmWare interface. The main intention is to make porting of FreeBSD drivers to RTEMS easier. Most functions implemented have an direct one-one mapping with the original OFW API and some extra auxiliary functions were implemented to make working with device trees easier in RTEMS. Update #3784
2020-12-04spec: Move zynq-uart into its own objectKinsey Moore1-4/+0
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-02bsps: Move zynq-uart to bsps/sharedKinsey Moore1-0/+4
This moves the zynq-uart driver from bsps/arm/shared to bsps/shared to accomodate use by AArch64 BSPs.
2020-10-12build: Move drivers without SMP supportSebastian Huber1-15/+2
This fixes warnings like this: warning: implicit declaration of function 'rtems_interrupt_disable' warning: implicit declaration of function 'rtems_interrupt_enable' warning: implicit declaration of function 'rtems_interrupt_flash'
2020-10-05Move ARM PL011 UART driverKinsey Moore1-0/+5
This UART driver is now needed for BSPs other than ARM.
2020-09-14build: Alternative build system based on wafSebastian Huber1-0/+107
Update #3818.