summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/mips/jmr3904 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+0
| | | | | | Use the bsp_predriver_hook() instead. Update #2408.
* 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: Convert clock drivers to use a timecounterAlexander Krutwig2015-05-201-0/+2
| | | | Update #2271.
* jmr3904-testsuite.tcfg: New fileJoel Sherrill2015-04-011-0/+9
|
* mips BSPs: Remove .global for unprovided symbolJoel Sherrill2015-03-031-1/+0
| | | | closes 2253
* Update bug report URLSebastian Huber2014-12-052-2/+2
|
* bsps: Move extern "C" to not cover includesSebastian Huber2014-10-231-4/+4
| | | | Some includes may use C++ and this conflicts if surrounded extern "C".
* Add console-polled.h and update all BSPs that should use it.Joel Sherrill2014-10-103-2/+10
| | | | | | | | | | | The file console-polled.h provides the prototypes for the three required methods when implementing a single port polled console driver. This paradigm is common on simulators and simple hardware. + Updated the BSPs Makefile.am to make console-polled.h available. + Regenerated the BSPs preinstall.sm. + Updated console support files to include <bsp/console-polled.h>. + Updated console support files to make printk() support method static.
* Use correct prototype of benchmark_timer_read()Joel Sherrill2014-09-161-1/+1
| | | | | | | | | | | | | | This change starts with removing the effectively empty file timerdrv.h. The prototypes for benchmark_timer_XXX() were in btimer.h which was not universally used. Thus every use of timerdrv.h had to be changed to btimer.h. Then the prototypes for benchmark_timer_read() had to be adjusted to return benchmark_timer_t rather than int or uint32_t. I took this opportunity to also correct the file headers to separate the copyright from the file description comments which is needed to ensure the copyright isn't propagated into Doxygen output.
* Regenerate all preinstall.am files.Chris Johns2014-08-291-6/+6
| | | | | With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
* bsps/mips: Delete unused filesSebastian Huber2014-04-291-1/+0
| | | | The MIPS port defines CPU_SIMPLE_VECTORED_INTERRUPTS to FALSE.
* bsps: Fix TLS support in linker command filesSebastian Huber2014-04-221-1/+3
| | | | | The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-219-9/+9
|
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-041-0/+18
|
* bsps: Simplify FreeBSD linker setsSebastian Huber2013-12-161-13/+6
|
* bsps: Fix clock driver definesSebastian Huber2013-08-141-1/+1
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-082-884/+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.
* bsps: Use RTEMS_BSP_CLEANUP_OPTIONSSebastian Huber2012-11-252-2/+1
|
* score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber2012-11-151-0/+2
| | | | | | | 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().
* bsp/jmr3904: Define bsp_reset()Sebastian Huber2012-11-152-1/+2
| | | | | This is declared in <bsp/bootcard.h> and is the usual function to reset a board.
* Revert "Add bspopts.h.in."Gedare Bloom2012-08-061-31/+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.
* Require automake-1.12.2.Ralf Corsépius2012-07-192-2/+2
|
* Require autoconf-2.69.Ralf Corsépius2012-07-192-2/+2
|
* mips/jmr3904: Add sections for new FreeBSD TCP/IP stackJoel Sherrill2012-07-171-10/+25
|
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+31
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1115-37/+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.
* jmr3904 - Eliminate any set_vector() remnantsJoel Sherrill2012-05-091-5/+0
|
* jmr3904 - Correct tm27.h to use PIC Interrupt ModelJoel Sherrill2012-05-071-20/+9
|
* Revert: Remove CVS IdsJoel Sherrill2012-05-074-0/+12
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-044-12/+0
|
* General - Remove extraneous blank line in license messageJoel Sherrill2012-05-031-0/+0
| | | | | | | | | | | | | Many files had an extra blank line in the license text found in the file header. This patch removes that line. * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * * http://www.rtems.com/license/LICENSE. The script that did this also turned off execute permission when it was turned on incorrectly.
* PR 1993 - Convert MIPS to PIC IRQ modelJennifer Averett2012-04-048-29/+220
|
* Remove all .cvsignore files.Joel Sherrill2012-02-013-21/+0
|
* 2011-12-14 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2011-12-142-10/+22
| | | | * Makefile.am: Change to one file per line. Clean up.
* 2011-11-04 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-11-042-1/+10
| | | | * ChangeLog, Makefile.am: Add bsp_reset() stub.
* 2011-06-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-06-192-1/+6
| | | | * Makefile.am: Fix broken path to clockdrv_shell.h.
* 2011-06-11 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-06-113-6/+5
| | | | | * Makefile.am, configure.ac: runtest for this BSP obsoleted by rtems-testing/sim-scripts support. Please use those scripts.
* 2011-02-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-252-2/+4
| | | | * configure.ac: Remove RTEMS_CANONICAL_TARGET_CPU.
* 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-112-1/+6
| | | | | * include/tm27.h: Use "__asm__" instead of "asm" for improved c99-compliance.
* 2011-02-09 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-092-1/+7
| | | | | * timer/timer.c: Include <rtems/btimer.h>. Fix benchmark_timer_read() definition.
* 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-024-4/+12
| | | | * configure.ac: Require autoconf-2.68, automake-1.11.1.
* 2011-01-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2011-01-282-2/+2
| | | | | | | | * csb350/clock/clockdrv.c, csb350/network/network.c, csb350/start/start.S, csb350/timer/timer.c, genmongoosev/clock/clockdrv.c, genmongoosev/timer/timer.c, jmr3904/timer/timer.c, jmr3904/tools/runtest.in: Fix typo where license said found in found in.
* 2010-05-13 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2010-05-135-140/+13
| | | | | | * Makefile.am, preinstall.am, start/start.S: Many files were duplicated across MIPS BSPs. Now those which were directly copied are shared. * start/regs.h: Removed.
* 2010-04-27 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2010-04-273-3/+7
| | | | | * start/start.S, startup/linkcmds: Revert previous change. Remove .reginfo from .bss section where it was present.
* 2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-04-252-1/+6
| | | | * startup/linkcmds: Add NOLOAD to .bss to eliminate warnings.
* Whitespace removal.Ralf Corsepius2009-11-282-2/+2
|
* 2009-11-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-11-232-6/+13
| | | | | * clock/clockdrv.c: Split hardware initialization code into Clock_driver_support_initialize_hardware().
* 2009-11-16 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-162-2/+6
| | | | | * startup/bspstart.c: Remove nested externs. #include <libcpu/isr_entries.h.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-3/+4
| | | | * make/custom/jmr3904.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-20 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-202-1/+5
| | | | * configure.ac: Don't add -ansi -fasm to CFLAGS.