summaryrefslogtreecommitdiff
path: root/rtemsbsd (follow)
AgeCommit message (Collapse)Author
2021-03-23Import telnetd from RTEMS repositoryHEADmasterVijay Kumar Banerjee
The files have been taken from RTEMS repository with head commit at bd9e45d91f77657445400bc2c814f251c9e37cef
2021-03-21arm/ti/ti_pinmux: Remove TI pinmux driverG S Niteesh Babu
The TI driver has been moved to RTEMS so the driver can be removed from libBSD. The following files have been removed from libBSD and moved to RTEMS. 1) ti/am335x/am335x_scm_padconf.c 2) ti/am335x/am335x_scm_padconf.h 3) ti/ti_pinmux.c 4) ti/ti_pinmux.h Update #3784
2020-11-24Add CGEM definitions for ZynqMPKinsey Moore
2020-11-20imxrt: Add supportChristian Mauderer
Update #4180
2020-11-13Update arm64/aarch64 supportKinsey Moore
2020-10-27dwc_otg: Enable voltage detectorSebastian Huber
Update #3910.
2020-10-27dwc_otg: Add support for nexus busSebastian Huber
Update #3910.
2020-10-27if_stmac: Add driver for STM32H7 ethernet moduleSebastian Huber
Update #3910.
2020-10-27NVD(4): Fix logical block count calculationSebastian Huber
Close #4164.
2020-10-27NVD(4): Fix NULL pointer access in nvd_sync()Sebastian Huber
Update #4164.
2020-10-26powerpc/nexus: Add legacy PCI support to PowerPC Motorola Shared BSP familyChris Johns
2020-09-23tsc_lpc32xx.c: Update due to API changesSebastian Huber
2020-09-22linux/crc32.h: Update due to API changesSebastian Huber
2020-09-21linux/genalloc.h: Update due to API changesSebastian Huber
2020-09-16i386: Delete old machine dependent filesJan Sommer
- The files in the i386 directory have been moved to common x86 directories by FreeBSD: - freebsd/sys/i386/include/machine/bus.h - freebsd/sys/x86/include/machine/legacyvar.h - freebsd/sys/x86/include/machine/specialreg.h - Add header files in rtemsbsd directory to direct compiler to new files
2020-09-14rtems-bsd-cxx: Undefine _GNU_SOURCESebastian Huber
At least the powerpc C++ compiler defines currently _GNU_SOURCE due to a GCC configuration error. This leads to conflicting qsort_r() definitions. As a workaround undefine _GNU_SOURCE for this C++ compatibility test file. Update #4078.
2020-09-10ifmcstat: Port to RTEMSSebastian Huber
2020-08-18nfsclient: Next attempt to fix 64-bit targetsSebastian Huber
In serporidok use the same structures used to hand over to the XDR encode/decode routines. We must not mix packed and unpacked structures. Close #4025.
2020-08-06Fix linker errors with minimal build setSebastian Huber
2020-08-05Conditionally include <bsp/linker-symbols.h>Sebastian Huber
Remove superfluous <bsp.h> include.
2020-07-29imx: Don't use USB_NEED_BUSDMA_COHERENT_ALLOCChristian Mauderer
That option makes problems with some drivers because the buffers are not allways cache line aligned. Update 3869
2020-07-29busdma: Don't sync nocache memory on ARMChristian Mauderer
The busdma shouldn't try to flush or invalidate cache in a nocache area.
2020-07-29busdma: Option to round to cache lines on syncChristian Mauderer
Some targets support only flushing or invalidating complete cache lines. In this cases misaligned buffers might lead to unexpected results. This patch adds a flag that allows drivers to signal to the bus dma driver that it is OK to round a buffer to the next full cache line. That's for example necessary if a driver wants to send out 14 byte via a USB DMA. Only the driver knows whether these 14 bytes are located in an otherwise unused cache line aligned buffer.
2020-07-29imx: Use RTEMS GPIO driver instead of FreeBSD oneChristian Mauderer
Update 3869
2020-07-29gpioregulator: Remove.Christian Mauderer
There is a bug in the #ifdef regarding FDT so this file hasn't been compiled. If that bug is solved, the driver doesn't work for some other reason. With the FDT-bug the driver hasn't been used by anyone. So just remove it again.
2020-04-15ehci_imx: Add to build.Christian Mauderer
2020-04-15Add support for i.mx cache.Christian Mauderer
Update #3869.
2020-04-15regulator: Add to build.Christian Mauderer
Update #3869.
2020-04-15imx6_ccm: Add and build module.Christian Mauderer
Update #3869.
2020-04-15usb_busdma: Add USB_NEED_BUSDMA_COHERENT_ALLOCSebastian Huber
Some BSPs have a cache-coherent memory area, however, it should not be used for the USB controller.
2020-03-18nfsclient: Use a system event for RPCSebastian Huber
Aviod conflicts with application events.
2020-02-10i386: Port to RTEMSJan Sommer
- Update imported files to compile rtems-libbsd for i386 based BSPs - Currently does not support the option "dev_nic_e1000 = on"
2019-11-13NVMECONTROL(8): Port to RTEMSSebastian Huber
Update #3821.
2019-11-13NVD(4): Add RTEMS-specific NVMe disk driverSebastian Huber
Update #3821.
2019-11-13NVME(4): Port to RTEMSSebastian Huber
Update #3821.
2019-11-13Update to FreeBSD head 2019-09-24Sebastian Huber
Git mirror commit 6b0307a0a5184339393f555d5d424190d8a8277a.
2019-09-25Add support for EARLY_COUNTERSebastian Huber
2019-09-24Remove obsolete header filesSebastian Huber
2019-09-24Compatibility for next Newlib updateSebastian Huber
2019-09-24Fix pgsigio() warningsSebastian Huber
2019-09-23nexus: Avoid NULL pointer accessSebastian Huber
2019-09-23C++ compatiblity for kernel space headerSebastian Huber
2019-09-11Add wrapper for strndup()Sebastian Huber
2019-08-31rtemsbsd: remove dead code fb.cVijay Kumar Banerjee
2019-08-27atomic.h: Add atomic_load_long()Sebastian Huber
2019-08-12rtems/rtems-kernel-nexus.c: LibBSD init now uses all pass levels.Nils Hölscher
I observed all Modules loading in the last fdt pass. The reason was, nexus bus loading with BUS_PASS_DEFAULT.
2019-08-11am335x display drivers: Port to RTEMSVijay Kumar Banerjee
2019-08-11fbd: Port to RTEMSVijay Kumar Banerjee
2019-08-11TDA19988: Port to RTEMSVijay Kumar Banerjee
2019-08-11Pinmux: Port to RTEMSVijay Kumar Banerjee