summaryrefslogtreecommitdiffstats
path: root/bsps/arm/include/bsp/arm-pl011.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-10-05Move ARM PL011 UART driverKinsey Moore1-51/+0
This UART driver is now needed for BSPs other than ARM.
2019-03-08bsps: Adjust shared Doxygen groupsSebastian Huber1-1/+1
Update #3706.
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.
2014-10-14bsps/arm: Convert PL011 and PL050 console driversSebastian Huber1-3/+16
Use Termios device API.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-12-30libbsp misc: Fix comment formattingJoel Sherrill1-6/+6
2013-12-22libbsp/arm: add doxygen to arm shared headersSzkocsovszki Zsolt1-0/+8
2013-05-03bsp/realview-pbx-a9: New BSPSebastian Huber1-7/+7
2013-02-11libchip/serial: Add const qualifierSebastian Huber1-1/+1
2012-04-07bsp/stm32f4: New BSPSebastian Huber1-5/+7
2012-03-24bsps: Shared ARMv7-M interrupt supportSebastian Huber1-8/+6
2011-01-242011-01-24 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+2
* configure.ac, console/console-config.c, i2c/i2c_init.c, include/bsp.h, include/hwreg_vals.h, include/irq.h, include/tm27.h, include/tsec-config.h, irq/irq.c, network/network.c, spi/spi_init.c, startup/bspstart.c: Address some of the issues spotted by the check_bsp script.
2010-12-302010-12-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-14/+4
* include/u-boot.h: Removed file. * include/u-boot-config.h, include/tsec-config.h: New files. * include/bsp.h, start/start.S, startup/bspstart.c: Use new U-Boot support. * network/network.c: Update for API changes. * Makefile.am, preinstall.am: Reflect changes above.
2010-12-302010-12-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+38
* shared/bspgetworkarea.c: Include <bsp/u-boot.h> if necessary. * shared/include/u-boot.h, shared/src/bsp-uboot-board-info.c: New files.