summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/virtex (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-10-23bsps: Move extern "C" to not cover includesSebastian Huber1-6/+6
Some includes may use C++ and this conflicts if surrounded extern "C".
2014-10-16powerpc/virtex: Fix unused variable warningsJoel Sherrill1-1/+1
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-03-21Change all references of rtems.com to rtems.org.Chris Johns9-10/+10
2014-02-24bsps/powerpc: Use System V small-data areaSebastian Huber1-1/+1
The 32-bit ABIs for thread-local storage (TLS) and EABI read-only small-data area have a conflicting register (r2) usage. Use the System V small-data instead (here r2 is system reserved).
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/+4
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-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-07-10bsp/virtex: Use #if instead of #ifdefSebastian Huber1-9/+9
This allows VIRTEX_CONSOLE_USE_INTERRUPTS=0 on the configure command line to disable the interrupt mode.
2013-07-09bsp/virtex: Add VIRTEX_CONSOLE_USE_INTERRUPTSSebastian Huber2-37/+107
Add interrupt support for console driver.
2013-07-09bsp/virtex: Use ppc_count_leading_zeros()Sebastian Huber1-11/+10
Use ppc_count_leading_zeros() to optimize interrupt processing.
2013-07-09bsp/virtex: Fix interrupt handlingSebastian Huber1-9/+5
Some modules like the XPS UART Lite use event triggered interrupts. If we acknowledge the interrupts after the interrupt service we may loose these events.
2013-06-24bsp/virtex: Use shared clock driverSebastian Huber3-12/+5
2013-06-24bsp/virtex: Add console devices only if presentSebastian Huber1-10/+11
2013-06-24bsp/virtex: Fix warningsSebastian Huber1-11/+11
2013-06-24bsp/virtex: Use XPAR_INTC_SINGLE_BASEADDRSebastian Huber1-1/+1
This define is also present in newer "xparameters.h".
2013-06-24bsp/virtex: Remove unused configure macrosSebastian Huber1-17/+0
2013-06-24bsp/virtex: Delete BSP_ask_for_reset and BSP_panicSebastian Huber1-13/+7
2013-06-24bsp/virtex: Use generic interrupt supportSebastian Huber8-427/+135
2013-06-24bsp/virtex: Fix header includesSebastian Huber1-6/+3
2013-06-24bsp/virtex: Move timer config to new fileSebastian Huber3-9/+68
2013-06-24bsp/virtex: Do not use PPC403 TTY driverSebastian Huber2-12/+1
2013-06-24bsp/virtex: Fix warningsSebastian Huber1-2/+2
2013-06-24bsp/virtex: Delete bsp_XAssertHandler()Sebastian Huber1-12/+0
2013-06-24bsp/virtex: Delete unused variablesSebastian Huber1-4/+0
2013-06-24bsp/virtex: Replace low-level BSP start codeSebastian Huber10-472/+211
Use linkcmds.base. Use EABI with small-data area.
2013-06-24bsp/virtex: Rename file dlentry.S in start.SSebastian Huber4-11/+12
Use default bsp_specs file.
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-376/+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
2013-02-11libchip/serial: Add const qualifierSebastian Huber1-1/+1
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-11-02libnetworking: Use system eventsSebastian Huber1-3/+3
Add reserved system events RTEMS_EVENT_SYSTEM_NETWORK_SBWAIT and RTEMS_EVENT_SYSTEM_NETWORK_SOSLEEP. Add and use rtems_bsdnet_event_send().
2012-08-06Revert "Add bspopts.h.in."Gedare Bloom1-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.
2012-07-19Use http://www.rtems.org/bugzilla as bug-URL.Ralf Corsépius1-1/+1
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/+48
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill10-23/+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-09virtex - Eliminate any set_vector() remnantsJoel Sherrill1-7/+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-11-102011-11-10 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-1/+6
PR 1929/bsps * irq/irq_init.c: Fixed warning.
2011-10-182011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett3-18/+18
PR 1917/bsps * Makefile.am, console/consolelite.c: Modifications to add dynamic tables for libchip serial drivers.