summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/virtex/include (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill2015-07-161-2/+2
| | | | | | | | | | | | | | | | | This was done by the following script run from libbsp: find * -name bsp.h | xargs -e grep -l "#ifndef.*_BSP_H" | while read b do echo $b cpu=`echo $b | cut -d'/' -f1 | tr '[:lower:]' '[:upper:]' ` bsp=`echo $b | cut -d'/' -f2 | tr '[:lower:]' '[:upper:]' ` g="LIBBSP_${cpu}_${bsp}_BSP_H" # echo $g sed -e "s/ifndef _BSP_H/ifndef ${g}/" \ -e "s/define _BSP_H/define ${g}/" \ -i $b done
* bsps: Move extern "C" to not cover includesSebastian Huber2014-10-231-6/+6
| | | | Some includes may use C++ and this conflicts if surrounded extern "C".
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-213-3/+3
|
* libbsp powerpc: Add Doxygen file header to coverhd.hCynthia Rempel2014-01-141-1/+7
|
* bsp/virtex: Use shared clock driverSebastian Huber2013-06-241-2/+0
|
* bsp/virtex: Use XPAR_INTC_SINGLE_BASEADDRSebastian Huber2013-06-241-1/+1
| | | | This define is also present in newer "xparameters.h".
* bsp/virtex: Use generic interrupt supportSebastian Huber2013-06-242-15/+2
|
* bsp/virtex: Replace low-level BSP start codeSebastian Huber2013-06-241-0/+2
| | | | Use linkcmds.base. Use EABI with small-data area.
* score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber2012-11-151-0/+1
| | | | | | | Include <bsp/default-initial-extension.h> in all BSPs. Call rtems_fatal() with RTEMS_FATAL_SOURCE_EXIT as source and the exit() status code as fatal code in every bsp_cleanup(). Move previous bsp_cleanup() code into bsp_fatal_extension().
* Revert "Add bspopts.h.in."Gedare Bloom2012-08-061-48/+0
| | | | | | | | | | | | This reverts commit daffa606cc4a45d93c1f0f4fe365fde0fda6acbb. Conflicts: c/src/lib/libbsp/arm/lpc24xx/include/bspopts.h.in c/src/lib/libbsp/powerpc/mpc55xxevb/include/bspopts.h.in c/src/lib/libbsp/powerpc/qoriq/include/bspopts.h.in Manually deleted conflicting files.
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+48
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-113-5/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* virtex - Eliminate any set_vector() remnantsJoel Sherrill2012-05-091-7/+0
|
* Remove all .cvsignore files.Joel Sherrill2012-02-011-4/+0
|
* code changes to remove warningsThomas Doerfler2010-03-271-0/+1
|
* Whitespace removal.Ralf Corsepius2009-11-302-3/+3
|
* 2008-10-02 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-10-021-32/+0
| | | | | * Makefile.am, preinstall.am: Use shared tm27.h stub. * include/tm27.h: Removed.
* 2008-09-30 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-301-1/+1
| | | | * include/tm27.h: Do not use set_vector.
* New.Ralf Corsepius2008-09-241-0/+4
|
* 2008-09-24 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-09-241-43/+0
| | | | | PR 1322/bsps * include/bspopts.h.in: Remove.
* 2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-231-6/+1
| | | | | | * configure.ac, include/bspopts.h.in: Make letting boot_card() handle work area allocation mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
* 2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-221-0/+7
| | | | | | | | | * Makefile.am, configure.ac, include/bspopts.h.in: Use standardized bsp_cleanup() which can optionally print a message, poll for user to press key, and call bsp_reset(). Using this eliminates the various bsp_cleanup() implementations which had their own implementation and variety of string constants. * startup/bspclean.c: Removed.
* 2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-181-12/+0
| | | | * include/bsp.h: Remove unnecessary boilerplate comments.
* 2008-09-15 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-152-7/+8
| | | | | | | | * Makefile.am, configure.ac, include/bsp.h, include/bspopts.h.in, startup/bspstart.c, startup/linkcmds: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. * startup/bspgetworkarea.c: New file.
* 2008-07-22 Till Straumann <strauman@slac.stanford.edu>Till Straumann2008-07-231-1/+2
| | | | | | | * irq/irq_init.c, include/bsp.h: define BSP_PPC403_CLOCK_HOOK_EXCEPTION so that we hook the timer exception rather than going through the interrupt dispatcher.
* 2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-111-3/+0
| | | | | | * README, include/bsp.h, startup/bspstart.c: Eliminate copies of the Configuration Table. Use the RTEMS provided accessor macros to obtain configuration fields.
* 2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-12-041-10/+0
| | | | | | * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
* 2007-09-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-09-111-1/+0
| | | | | * Makefile.am, include/bsp.h: Do not include networking drivers if networking is disabled.
* fixed some problems with shared PPC exception handling codeThomas Doerfler2007-07-051-1/+2
|
* added virtex BSP support and some missing files for common PPCThomas Doerfler2007-07-046-0/+604
exception handling