summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/haleakala (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-07-16Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill1-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
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-11-21powerpc/haleakala: Fix warningsJoel Sherrill2-1110/+1119
2014-11-21powerpc/haleakala: Add network driverNigel Spon7-2/+1702
close 1405
2014-10-23bsps: Move extern "C" to not cover includesSebastian Huber1-8/+7
Some includes may use C++ and this conflicts if surrounded extern "C".
2014-10-13powerpc/haleakala: Fix warningsJoel Sherrill2-11/+16
2014-10-09powerpc/haleakala/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix ↵Joel Sherrill1-17/+6
warning and clean up
2014-08-29Regenerate all preinstall.am files.Chris Johns1-3/+3
With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
2014-08-28Regenerate all preinstall.am files.Joel Sherrill1-7/+7
Apparently, at some point automake output changed and these were not updated.
2014-04-22bsps: Fix TLS support in linker command filesSebastian Huber1-1/+3
The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns5-5/+5
2014-02-19powerpc: Change interrupt disable implemetationSebastian Huber1-1/+0
Instead of SPRG0 (= special purpose register 272) use the new global symbol _PPC_INTERRUPT_DISABLE_MASK to store the interrupt disable mask. The benefit is that it is now possible to disable interrupts without further run-time initialization in boot_card(). At least on Freescale e500 cores this leads also to a faster execution since the mfmsr and mfspr instruction require four cycles to complete. The instructions to load the mask value can execute while the mfmsr is in progress.
2014-02-14score: Add CPU counter supportSebastian Huber1-0/+3
Add a CPU counter interface to allow access to a free-running counter. It is useful to measure short time intervals. This can be used for example to enable profiling of critical low-level functions. Add two busy wait functions rtems_counter_delay_ticks() and rtems_counter_delay_nanoseconds() implemented via the CPU counter.
2014-02-04bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber1-0/+17
2014-01-14libbsp powerpc: Add Doxygen file header to coverhd.hCynthia Rempel1-1/+7
2013-08-09Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers1-1/+1
2013-06-24bsps: Delete bspreset_fatal.cSebastian Huber1-1/+1
Use bspreset_loop.c instead. This avoids infinite recursion.
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom1-179/+0
This commit deletes all RTEMS ChangeLog files. These files have been abandoned since converting to git version control. The historical data may be recovered by checking out any commit before this one. Most of the contents of these ChangeLog files can also be found in the git log. Two external ChangeLog files, ChangeLog.slac and ChangeLog.zlib, remain.
2013-02-13bsps/powerpc: Remove unused filesSebastian Huber1-23/+0
2012-11-15bsps/powerpc: Exception initialization error is fatalSebastian Huber1-5/+1
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber1-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().
2012-08-06Revert "Add bspopts.h.in."Gedare Bloom1-40/+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.
2012-07-19Use http://www.rtems.org/bugzilla as bug-URL.Ralf Corsépius1-1/+1
2012-07-19Remove CVS-Ids.Ralf Corsépius1-3/+0
2012-07-19Require automake-1.12.2.Ralf Corsépius1-1/+1
2012-07-19Require autoconf-2.69.Ralf Corsépius1-1/+1
2012-05-24Add bspopts.h.in.Ralf Corsépius1-0/+40
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill9-22/+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.
2012-05-09haleakala - Eliminate commented out codeJoel Sherrill1-8/+0
2012-05-07Revert: Remove CVS IdsJoel Sherrill2-0/+6
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius2-6/+0
2012-02-01Remove all .cvsignore files.Joel Sherrill2-12/+0
2011-06-182011-06-18 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+4
* Makefile.am: Remove references to non-existing files.
2011-02-022011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+6
* configure.ac: Require autoconf-2.68, automake-1.11.1.
2011-01-282011-01-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-1/+1
* beatnik/include/bsp.h, beatnik/irq/irq.h, beatnik/pci/gt_pci_init.c, ep1a/console/polled_io.c, ep1a/irq/openpic_xxx_irq.c, gen5200/include/irq.h, gen5200/irq/irq.c, gen5200/startup/bspstart.c, haleakala/irq/irq.c, mbx8xx/irq/irq.c, mbx8xx/irq/irq.h, motorola_powerpc/include/bsp.h, mpc8260ads/irq/irq.c, mpc8260ads/irq/irq.h, mvme3100/include/bsp.h, mvme3100/irq/irq.h, mvme3100/start/start.S, mvme5500/include/bsp.h, mvme5500/irq/irq.h, psim/include/bsp.h, psim/include/coverhd.h, psim/irq/irq.h, psim/shmsupp/addrconv.c, psim/shmsupp/getcfg.c, psim/startup/linkcmds, psim/tools/psim-gdb-top.in, psim/tools/psim-top.in, psim/tools/runtest-top.in, qemuppc/irq/irq.h, score603e/irq/irq.c, shared/bootloader/bootldr.h, shared/bootloader/em86.c, shared/bootloader/em86real.S, shared/bootloader/exception.S, shared/bootloader/head.S, shared/bootloader/lib.c, shared/bootloader/misc.c, shared/bootloader/mm.c, shared/bootloader/pci.c, shared/console/console.c, shared/console/consoleIo.h, shared/console/inch.c, shared/console/keyboard.h, shared/console/polled_io.c, shared/irq/i8259.c, shared/irq/irq.h, shared/irq/openpic_i8259_irq.c, shared/motorola/motorola.c, shared/motorola/motorola.h, shared/openpic/openpic.c, shared/openpic/openpic.h, shared/pci/pci.c, shared/residual/residual.c, shared/start/start.S, ss555/irq/irq.h: Fix typo where license said found in found in.
2010-08-032010-08-03 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2-1/+6
* startup/bspstart.c: Add BSP_poll_char.
2010-06-292010-06-29 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-4/+4
* configure.ac: Remove AC_CHECK_SIZEOF([void *]).
2010-06-292010-06-29 Joel Sherrill <Joel.Sherrill@OARcorp.com>Jennifer Averett2-0/+8
* configure.ac: Added AC_CHECK_SIZEOF macro.
2010-03-27removed "bootbard calling" warningThomas Doerfler2-5/+4
2009-12-17 adapted to new prototype for *_write functionThomas Doerfler2-2/+6
2009-11-30Whitespace removal.Ralf Corsepius6-50/+50
2009-11-28Whitespace removal.Ralf Corsepius1-2/+2
2009-11-122009-11-12 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+4
* INSTALL: Remove.
2009-10-23Update for exception support changes.Thomas Doerfler7-23/+23
2009-10-212009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-3/+4
* make/custom/haleakala.cfg: Remove RTEMS_BSP_FAMILY.
2009-10-202009-10-20 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+5
* configure.ac: Don't add -ansi -fasm to CFLAGS.
2009-10-162009-10-16 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+5
* startup/linkcmds: Fix up .sbss .sbss.* section handling.
2009-10-152009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-0/+31
* make/custom/haleakala.cfg: New (relocated from /make/custom).
2009-09-152009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+5
* configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
2009-08-212009-08-21 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2-38/+41
* include/bsp.h: Eliminate BSPs defining NUMBER_OF_TERMIOS_PORTS. Should be automatically handled by confdefs.h or the application.