summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-07-16sh/shared/startup/bspstart.c: Add include of percpu.hJoel Sherrill1-2/+3
2015-07-16Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill4-8/+8
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
2015-05-21simsh2e-testsuite.tcfg: Add fileioJoel Sherrill1-0/+1
2015-05-21simsh1-testsuite.tcfg: Add fileioJoel Sherrill1-0/+1
2015-04-23simsh*.tcfg: Add iostreamJoel Sherrill4-0/+4
2015-04-23gensh2-testsuite.tcfg: Add iostreamJoel Sherrill1-0/+1
2015-04-23gensh1-testsuite.tcfg: Add iostreamJoel Sherrill1-0/+1
2015-04-01simsh*: Disable interrupt critical section testsJoel Sherrill4-0/+4
These do not run reliably on this simulator.
2015-03-09gensh1/include/bsp.h: Add needed prototypeJoel Sherrill1-0/+7
2015-03-09gensh4/include/bsp.h: Remove unused prototype and includeJoel Sherrill1-6/+0
2014-12-05Update bug report URLSebastian Huber5-5/+5
2014-10-23bsps: Move extern "C" to not cover includesSebastian Huber4-16/+16
Some includes may use C++ and this conflicts if surrounded extern "C".
2014-10-20libbsp/sh/shared/console.c: Eliminate use of obsolete methodJoel Sherrill1-46/+21
2014-10-19sh/shsim: Further clean up and fixes to previous commitJoel Sherrill4-2/+5
2014-10-16SH libcpu and libbsp: Fix warningsJoel Sherrill10-271/+299
2014-10-10Add console-polled.h and update all BSPs that should use it.Joel Sherrill3-3/+9
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.
2014-10-09sh/shared/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix warning ↵Joel Sherrill1-5/+5
and clean up
2014-08-29Regenerate all preinstall.am files.Chris Johns2-9/+9
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 Sherrill4-19/+19
Apparently, at some point automake output changed and these were not updated.
2014-08-25gensh4: Improve ROM vs RAM startup configurationJoel Sherrill2-9/+16
2014-08-25gensh4/bsp_specs: Account for big/little endianJoel Sherrill1-1/+1
2014-08-25simsh4-testsuite.tcfg: new fileJoel Sherrill1-1/+5
2014-08-25simsh2e-testsuite.tcfg: new fileJoel Sherrill1-1/+5
2014-08-25shsim/bsp_specs: Account for big/little endianJoel Sherrill1-1/+1
2014-05-28bsps: Do not build tests that require a tick interrupt.Chris Johns4-0/+14
The following BSPs do not have tick support so the tests fail: arm1136jfs arm1136js arm7tdmi arm920 armcortexa9 (does not run any more) avrtest h8sim h8sxsim m32csim m32rsim moxiesim simsh1 simsh2 simsh4 v850e1sim v850e2sim v850e2v3sim v850esim v850essim v850sim This list was provided by Joel in the following post: http://www.rtems.org/pipermail/rtems-devel/2014-April/006526.html
2014-05-06multiple BSPs: Remove BSP_SMALL_MEMORYJoel Sherrill3-6/+0
2014-05-05testsuite: Add a per BSP test check for tests not to build.Chris Johns4-0/+32
Provide a file per BSP to list tests that do not build for a BSP. This change removes the BSP_SMALL_MEMORY hack from the code. That hack was a mistake. Provide configuration files for each BSP with tests that cannot build.
2014-04-22shsim: Correct linking for C++Joel Sherrill2-16/+13
2014-04-22gensh4: Correct linking for C++Joel Sherrill2-42/+8
2014-04-22gensh2: Correct linking for C++Joel Sherrill2-16/+8
2014-04-22gensh1: Correct linking for C++Joel Sherrill2-16/+8
2014-04-22libcpu/sh: Build cache stubs so apps usign cache API linkJoel Sherrill3-3/+6
2014-04-22shsim: Add printk() support and move all code to console subdirectoryJoel Sherrill4-10/+55
2014-04-22bsps: Fix TLS support in linker command filesSebastian Huber9-9/+27
The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
2014-03-21gensh1/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill1-10/+2
2014-03-21gensh2/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill1-10/+2
2014-03-21gensh4/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill1-10/+2
2014-03-21shsim/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill1-12/+2
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns30-30/+30
2014-02-04bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber9-16/+142
2014-01-14libbsp sh: Add Doxygen file header to coverhd.hCynthia Rempel2-2/+14
2014-01-09libbsp tm27.h: Add Doxygen file header to all tm27.hCynthia Rempel1-2/+6
2013-12-16bsps: Simplify FreeBSD linker setsSebastian Huber1-15/+5
2013-12-14bsp: Move bspstart.c to sh/shared/startup/Szkocsovszki Zsolt5-4/+4
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 Bloom5-2744/+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-11libchip/serial: Add const qualifierSebastian Huber1-2/+2
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber4-0/+4
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 Bloom4-157/+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-19Require automake-1.12.2.Ralf Corsépius5-5/+5