summaryrefslogtreecommitdiff
path: root/bsps/arm/atsam (follow)
AgeCommit message (Collapse)Author
2020-04-06tests: Exclude record02 for some BSPsSebastian Huber
Update #3938.
2020-02-04Use RTEMS_SYSINIT_ORDER_LAST_BUT_5Sebastian Huber
Use RTEMS_SYSINIT_ORDER_LAST_BUT_5 instead of RTEMS_SYSINIT_ORDER_LAST to allow applications and support functions to place system initialization handlers behind the standard handlers. Update #3838.
2019-11-18bsp/atsamv: Fix warningSebastian Huber
2019-10-23bsp/atsam: Use PIO for SC16IS752.Christian Mauderer
This allows to mix SC16IS752 chips with other interrupts.
2019-10-23bsp/atsam: Add additional PIO helper.Christian Mauderer
2019-10-23bsps/atsam: Improve case for level triggered IRQs.Christian Mauderer
For level triggered interrupts currently the handler would have been called two times (assuming no one cleared the mask in a handler which would have been bad because the handler couldn't process all other that got cleared by accident). This patch allows the handler only to return if nothing is left to do.
2019-06-21bsp/atsam: Enable configuration of SDRAMC_LPRSebastian Huber
2019-06-18atsam: Add ATSAM_POWER_WAIT_MODESebastian Huber
2019-06-18atsam: Enable fast startup via RTC alarmSebastian Huber
2019-06-18bsp/atsam: Use proper APISebastian Huber
2019-06-13bsp/atsam: Do not disable the WDTSebastian Huber
The watchdog timer (WDT) can be configure only once. Do not touch it in the BSP since the application may want to use it.
2019-06-13bsp/atsam: Improve RTC power driverSebastian Huber
Accept a time interval up to 24h.
2019-06-12bsp/atsam: Fix RTC_SetTimeAlarm()Sebastian Huber
Set the alarm time according to the note in the datasheet.
2019-05-13Removed entry from Related PagesAndreas Dachsberger
SAM V71 Xplained Ultra - Board explanation now in Modules->BSPs->ARM Update #3706.
2019-03-19bsp/atsam: Fix SPI driver DMA supportSebastian Huber
2019-03-19bsp/atsam: Simplify XDMAD_Handler()Sebastian Huber
Remove the channel status evaluation from XDMAD_Handler() and simply hand over the status to the callbacks.
2019-03-11bsp/atsam: Fix use after freeSebastian Huber
2019-03-08bsp/atsam: Add Doxygen groupsSebastian Huber
Add Doxygen groups for contributed code which would otherwise end up at the top level (about 178 groups). Update #3706.
2019-03-08bsps: Adjust bsp.h Doxygen groupsSebastian Huber
Update #3706.
2019-03-06bsp/atsam: Accept only 8/16 bits per wordSebastian Huber
For proper 16 bits per word support we need probably some DMA adjustments. For 9 to 15 bits per word we need support for the variable peripheral select, see SR_MR[PS] register bit.
2019-03-06bsp/atsam: Optimize XDMAD_Handler()Sebastian Huber
Load the channel interrupt mask only once.
2019-03-06bsp/atsam: Fix SPI CS change supportSebastian Huber
The previous approach contained a severe bug which disabled the SPI module in some cases leading to a blocked SPI bus.
2019-03-06bsp/atsam: Change CS delay after transferSebastian Huber
2019-03-06bsp/atsam: Make SPI CS delays configurableSebastian Huber
2019-03-06bsp/atsam: Simplify SPI configurationSebastian Huber
Do not use SPID_Configure() since this will enable the peripheral each time and performs a software reset.
2018-10-18bsp/atsam: Add const qualifier to AES_SetInput()Sebastian Huber
2018-10-04bsp/atsam: Use internal SRAM for stack areaSebastian Huber
2018-10-01bsp/atsam: Use binary semaphore for I2CSebastian Huber
Remove superfluous sleep before each I2C transfer. Reset I2C module after transfer timeouts. Update #3534.
2018-10-01bsp/atsam: Use binary semaphore for SPISebastian Huber
Update #3534.
2018-09-10network: Use kernel/user space header filesSebastian Huber
Add and use <machine/rtems-bsd-kernel-space.h> and <machine/rtems-bsd-user-space.h> similar to the libbsd to avoid command line defines and defines scattered throught the code base. Simplify cpukit/libnetworking/Makefile.am. Update #3375.
2018-08-09bsp/atsam: Fix handling of slow SPI speeds.Christian Mauderer
This patch fixes an overflow in the frequency calculation of the SPI driver for slow SPI speeds.
2018-05-30bsp/atsam: Remove side effect from gmac functions.Christian Mauderer
Quite a number of GMAC_... functions had a side effect of enabling the transmit and receive. During the initialization of the ethernet driver, that lead to the situation that the receive has been already enabled while the DMA isn't set up correctly. Therefore the DMA interpreted the values at address 0 as an DMA descriptor. When a packet is received during that time, the behaviour is quite undefined.
2018-05-25bsp/atsam: Reserve one region for applications.Christian Mauderer
This allows a user to overwrite some MPU settings. That can for example be usefull for devices with special requirements that are connected to the external bus interface.
2018-04-26bsps: Move documentation, etc. files to bspsSebastian Huber
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-23bsps: Move RTC drivers to bspsSebastian Huber
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-23bsps: Move legacy network drivers to bspsSebastian Huber
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-23bsps: Move SPI drivers to bspsSebastian Huber
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-23bsps: Move I2C drivers to bspsSebastian Huber
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-23bsp/atsam: Move libraries to bspsSebastian Huber
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-23bsps: Move make/custom/* files to bspsSebastian Huber
Adjust various build files. Remove automatic generation of the c/src/lib/libbsp/*/acinclude.m4 files from bootstrap script. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move startup files to bspsSebastian Huber
Adjust build support files to new directory layout. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move console drivers to bspsSebastian Huber
This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20bsps: Move clock drivers to bspsSebastian Huber
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-21bsp/atsam: Fix GMAC Rx Descriptor fields.Christian Mauderer
2018-03-13bsp/atsam: Allow setting the drive strength.Christian Mauderer
This adds a simple function for setting the PIO drive strength.
2018-02-12bsp/atsam: Fix cache / DMA handling in SPI.Christian Mauderer
This patch fixes the cache handling for the atsam SPI driver. Note that this solution might doesn't have the best performance for small packets.
2018-02-12bsp/atsam: Allow to use a decoder for SPI CS.Christian Mauderer
The SPI controller supports a decoder connected to the chip select lines. This patch allows to use this mode.
2018-01-25Remove make preinstallChris Johns
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.