summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/raspberrypi/preinstall.am (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-25Remove make preinstallChris Johns1-167/+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.
2017-12-15bsps/arm: Fix move <libcpu/arm-cp15.h> to cpukitSebastian Huber1-9/+0
Update #3254.
2017-11-27bsps: Provide <tm27.h> in each BSPSebastian Huber1-1/+1
Since the <tm27.h> is highly BSP-dependent and used only by the tm27 test program we must provide this header file for each BSP. Without the preinstall build target each header file must have a unique source header file. Update #3254.
2017-11-24Remove coverhd.hSebastian Huber1-4/+0
This header file contained timing overhead values which are hard to maintain. Update #3254.
2016-07-04bsps/arm: Change code to explicit selection of cache implementation for ARM ↵Pavel Pisa1-4/+0
BSPs. The original ARM architecture wide cache_.h is changed to dummy version for targets not implementing/enablig cache at all. The ARM targets equipped by cache should include appropriate implementation. Next options are available for now c/src/lib/libbsp/arm/shared/armv467ar-basic-cache/cache_.h basic ARM cache integrated on the CPU core directly which requires only CP15 oparations c/src/lib/libbsp/arm/shared/arm-l2c-310/cache_.h support for case where ARM L2C-310 cache controller is used. It is accessible as mmaped peripheral. c/src/lib/libbsp/arm/shared/armv7m/include/cache_.h Cortex-M specific cache support
2016-05-31arm/raspberrypi: add fbcons support for rpi bspYANG Qiao1-0/+4
2016-05-31arm/raspberrypi: add VideoCore framebuffer without initializationYANG Qiao1-0/+4
2016-05-19arm/raspberrypi: add VideoCore frame buffer control supportYANG Qiao1-0/+4
2016-05-19arm/raspberrypi: add VideoCore mailbox support read and writeYANG Qiao1-0/+4
2015-09-25RaspberryPi: Added I2C and SPI bus support.Andre Marques1-0/+8
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-09-25Added GPIO API sources to rpi MakefileAndre Marques1-0/+4
2015-08-06Raspberry Pi implementation for the RTEMS GPIO API.Andre Marques1-0/+4
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
2014-09-18bsps: Fix build errorSebastian Huber1-4/+0
Fix build error introduced in f535fe5311978af53635c2da8e5cb10ef9d78802.
2014-08-28Regenerate all preinstall.am files.Joel Sherrill1-6/+6
Apparently, at some point automake output changed and these were not updated.
2014-03-13bsp/raspberrypi: Add arm-errata.h and arm-release-id.hRalf Kirchner1-0/+8
2013-10-03Shared MMU initialization for ARM BSPs and RaspberryPi MMU supportHesham AL-Matary1-0/+8
Add support for MMU initialization for RaspberryPi. Introduce new shared MMU configuration table that can be used by other BSPs that call the arm_cp15_start_setup_translation_table_and_enable_mmu_and_cache function. Demonstrate the use of the generic table with RaspberryPi.
2013-03-24bsp/raspberrypi: New BSPAlan Cudmore1-41/+17
2011-06-072011-06-07 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-4/+0
* Makefile.am, preinstall.am: Cache manager changes.
2011-05-192011-05-19 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+8
* Makefile.am, preinstall.am: Install new header files. * include/bsp.h, include/emc.h, include/lpc32xx.h, misc/emc.c: Update for API changes.
2010-12-032010-12-03 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-8/+4
* include/lpc32xx.h: Added I2S module. * Makefile.am, bsp_specs, preinstall.am, startup/bspstarthooks.c, startup/linkcmds.lpc32xx, startup/linkcmds.lpc32xx_mzx, startup/linkcmds.lpc32xx_mzx_stage_1, startup/linkcmds.lpc32xx_mzx_stage_2, startup/linkcmds.lpc32xx_phycore: Update due to linker command file changes.
2010-10-212010-10-21 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-1/+1
* include/tm27.h: New file. * Makefile.am, preinstall.am: Reflect change above. * include/bsp.h: Fixed lpc32xx_micro_seconds_delay(). * misc/timer.c: Support for timer tests.
2010-06-232010-06-23 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+20
* make/custom/lpc32xx_mzx_boot_int.cfg, startup/linkcmds.lpc32xx_mzx_boot_int: Removed files. * include/boot.h, include/emc.h, include/i2c.h, include/nand-mlc.h, make/custom/lpc32xx_mzx.cfg, make/custom/lpc32xx_mzx_stage_1.cfg, make/custom/lpc32xx_mzx_stage_2.cfg, misc/boot.c, misc/emc.c, misc/i2c.c, misc/nand-mlc.c, misc/nand-mlc-read-blocks.c, misc/nand-mlc-write-blocks.c, misc/restart.c, startup/linkcmds.lpc32xx, startup/linkcmds.lpc32xx_mzx, startup/linkcmds.lpc32xx_mzx_stage_1, startup/linkcmds.lpc32xx_mzx_stage_2: New files. * configure.ac, Makefile.am, preinstall.am: Reflect changes above. * include/bsp.h, include/lpc32xx.h, irq/irq.c, rtc/rtc-config.c, startup/bspstart.c, startup/bspstarthooks.c, startup/linkcmds.lpc32xx_phycore: Changes throughout.
2010-05-202010-05-20 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-0/+4
* make/custom/lpc32xx.inc, make/custom/lpc32xx_mzx_boot_int.cfg, startup/linkcmds.lpc32xx_mzx_boot_int: New files. * Makefile.am, configure.ac, preinstall.am, include/bsp.h, include/bspopts.h.in, include/lpc32xx.h, irq/irq.c, make/custom/lpc32xx_phycore.cfg, startup/bspstart.c, startup/bspstarthooks.c: Changes throughout.
2010-04-302010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-4/+0
* include/irq-config.h: Removed file. * Makefile.am, preinstall.am: Reflect change above. * irq/irq.c: Removed superfluous parameter checks.
2010-04-09Changes throughoutThomas Doerfler1-0/+4
2010-01-12add support for lpc32xxThomas Doerfler1-3/+24
2009-12-15add support for LPC32xxThomas Doerfler1-22/+10
2009-12-07Regenerate.Ralf Corsepius1-1/+1
2009-11-032009-11-03 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-20/+4
* configure.ac: Add RTEMS_BSP_LINKCMDS. * make/custom/lpc24xx.inc: Remove LDFLAGS. * make/custom/lpc24xx_ea.cfg: Remove LPC24XX_LINKCMDS. * make/custom/lpc24xx_ncs_ram.cfg: Remove LPC24XX_LINKCMDS. * make/custom/lpc24xx_ncs_rom_ext.cfg: Remove LPC24XX_LINKCMDS. * make/custom/lpc24xx_ncs_rom_int.cfg: Remove LPC24XX_LINKCMDS. * startup/linkcmds: Remove. * Makefile.am: Rework linkcmds handling.
2009-10-05renamed lpc24xx BSPs, reorganized linkcmdsThomas Doerfler1-9/+17
2009-08-262009-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-4/+0
* Makefile.am, preinstall.am, include/bsp.h: Rename BSP specific idle thread to bsp_idle_thread. * misc/bspidle.c: New file. * include/idle.h, misc/idle.c: Removed.
2009-07-17ARM bsp maintenanceThomas Doerfler1-4/+16
2009-02-27 * README: Added NCS.Thomas Doerfler1-7/+23
* Makefile.am, configure.ac, preinstall.am: Added BSP variants. * console/console-config.c, clock/clock-config.c, ssp/ssp.c: Fixed register settings. Cleanup. * include/bsp.h: Added network defines and functions. * include/lpc24xx.h: Added AHB and EMC defines. Fixed Ethernet status sizes. * include/system-clocks.h, misc/system-clocks.c: Added micro seconds delay function that uses Timer 1. Changed PLL setup. * network/network.c, startup/bspreset.c, startup/linkcmds.lpc2478, startup/linkcmds.lpc2478_ncs, startup/linkcmds.lpc2478_ncs_ram: New files. * startup/bspstart.c: Added EMC initialization. Changes for ROM boot.
2009-02-172009-02-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-7/+3
* Makefile.am: Fix breakage introduced in 2009-02-13 changes.
2009-02-132009-02-13 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-3/+11
* Makefile.am, preinstall.am: Use stub tm27.h.
2008-09-302008-09-30 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+4
* Makefile.am, preinstall.am: Add timer driver stub.
2008-09-30added SSP support files, fixed some typosThomas Doerfler1-0/+8
2008-09-262008-09-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-4/+8
* Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
2008-09-252008-09-25 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-5/+0
* preinstall.am: Regenerated.
2008-09-24Regenerate.Ralf Corsepius1-5/+5
2008-09-232008-09-23 Sebastian Huber <sebastian.huber@embedded-brains.de>Joel Sherrill1-0/+4
* Makefile.am, preinstall.am, include/lpc24xx.h, misc/system-clocks.c: Move utility.h
2008-09-22lpc24xx: new BSPThomas Doerfler1-37/+45
2008-07-17New.Ralf Corsepius1-51/+27
2008-07-14updated gen83xx BSPThomas Doerfler1-8/+29
updated haleakala BSP added MPC55xx BSP
2008-05-15adapted gen83xx to new boardThomas Doerfler1-0/+4
2007-08-10added BSP hsc_cm01Thomas Doerfler1-0/+4
2007-07-132007-07-13 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-0/+4
* Makefile.am, preinstall.am: Install a linkcmds all the time. * startup/bspstart.c, startup/cpuinit.c, startup/linkcmds.mpc8349eamds, startup/mpc83xx_regs.c: Add missing $Id$. * startup/linkcmds: New file.
2007-07-10compilable release of virtex/gen83xx/gen5200 powerpc adaptations. Merged ↵Thomas Doerfler1-4/+8
many different versions of new exception handling code to shared sources.
2007-01-08Regenerate.Ralf Corsepius1-3/+3
2006-01-14Regenerate.Ralf Corsepius1-1/+1