summaryrefslogtreecommitdiffstats
path: root/bsps/arm/raspberrypi/include/bsp/raspberrypi.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-01-07bsp/raspberrypi: Updated the console API.G S Niteesh1-39/+15
Replaces the legacy termios API with new termios API (#3034) Replaces the custom PL011 serial driver with RTEMS arm-pl011. Update #3034
2019-03-08bsps: Adjust bsp.h Doxygen groupsSebastian Huber1-1/+1
Update #3706.
2019-02-28Remove explicit file names from @fileSebastian Huber1-1/+1
This makes the @file documentation independent of the actual file name. Update #3707.
2018-01-25Remove make preinstallChris Johns1-0/+0
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.
2016-09-08arm/raspberrypi: define bsp_reset to restart board by watchdog.Pavel Pisa1-0/+53
Whether the board is restarted after application finish/exit is controlled by BSP_RESET_BOARD_AT_EXIT configure option.
2016-09-07arm/raspberrypi: correct and extend definitions for GPU timer.Pavel Pisa1-7/+11
2016-09-07arm/raspberrypi: more definitions of BCM2836 core local peripherals.Pavel Pisa1-2/+140
2016-09-07arm/raspberrypi: include definitions of BCM2836 SMP mailboxes.Rohini Kulkarni1-0/+26
2016-07-23Added USB interrupt handler. And defined some macros regarding USB.Deval Shah1-0/+9
2016-05-31arm/raspberrypi: ensure that correct RPI_PERIPHERAL_BASE is provided by ↵Pavel Pisa1-0/+1
raspberrypi.h If the raspberrypi.h has been included without preceding inclussion of bsp.h then BSP_IS_RPI2 has not been set for Raspberry Pi 2 BSP variant and bad things happen later. The patch includes bspopts.h by raspberrypi.h and even includes bsp.h in critical peripherals support.
2016-05-19arm/raspberrypi: add VideoCore mailbox support read and writeYANG Qiao1-0/+49
2015-09-25RaspberryPi: Added I2C and SPI bus support.Andre Marques1-92/+107
Further documentation can be found in https://devel.rtems.org/wiki/GSoC/2015/RaspberryPi_peripherals_and_SD_card and test data (including sample user applications, device drivers and wiring schemes) can be found in https://github.com/asuol/RTEMS_rpi_testing
2015-08-06Raspberry Pi implementation for the RTEMS GPIO API.Andre Marques1-8/+71
Added support for the new RTEMS GPIO API functions. Test cases can be found in https://github.com/asuol/RTEMS_rpi_testing/tree/master/GPIO
2015-03-16preliminary Raspberry Pi Model 2 supportAlan Cudmore1-6/+20
This patch adds a BSP variant for the Raspberry Pi 2. You can build both variants by configuring with the option --enable-rtemsbsp="raspberrypi2 raspberrypi" For the current BSP, the only change was the peripheral register base address and the compiler options. The raspberrypi/make/custom rules were re-factored: raspberrypi.inc -- Common rules raspberrypi.cfg -- Raspberry Pi 1 specific rule/optons raspberrypi2.cfg -- Raspberry Pi 2 specific rule/options I tested hello, ticker, unlimited, and paranoia on both the Pi (Model A+) and Pi 2.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-11-27raspberrypi doxygen refactoringDaniel Ramirez1-4/+10
2013-03-24bsp/raspberrypi: New BSPAlan Cudmore1-0/+194