summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m32c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* m32c/m32csim: Exclude linpack from the tests.Chris Johns2017-05-251-0/+5
| | | | Closes #3025.
* build-system: Parallel build all subdirs.Chris Johns2017-05-241-1/+1
|
* testsuite: Add test states to the testsuit configuration files.Chris Johns2016-12-071-13/+13
| | | | | | | | | | | | | | | | Change the testsuite configuration files to hold state information about a test. The states are: exclude - Do not build the test expected-fail - The test is expected to fail indeterminate - The test may pass or may fail A message is printed just after the test's BEGIN message to indicate there is a special state for the test. No state message means the test is expected to pass. This support requires tests are correctly written to the use standard support to begin and end a test.
* m32c/m32cbsp/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill2016-03-301-1/+0
|
* m32c/m32cbsp: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill2016-03-291-1/+0
|
* m32c/m32cbsp/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-251-1/+0
|
* m32csim.cfg: GCC PR37665 is fixed but there is still a compiler error. Use -O0.Joel Sherrill2016-03-101-5/+2
|
* m32c/m32csim: Add per-section compilation and linking supportJoel Sherrill2016-03-101-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updates #2577. For the m32csim BSP variant without this option sample executables sizes were as follows: text data bss dec hex filename 143148 1118 4664 148930 245c2 ticker.exe 55140 584 876 56600 dd18 minimum.exe 268638 1804 6598 277040 43a30 capture.exe 161226 1184 4712 167122 28cd2 nsecs.exe 389500 1518 5176 396194 60ba2 paranoia.exe 135256 1118 4638 141012 226d4 base_sp.exe 139728 1146 6482 147356 23f9c unlimited.exe 165500 1092 4638 171230 29cde hello.exe For the m32csim BSP variant with this option sample executables sizes were as follows: text data bss dec hex filename 137586 1096 4526 143208 22f68 ticker.exe 31136 454 738 32328 7e48 minimum.exe 252540 1764 6458 260762 3fa9a capture.exe 155716 1162 4570 161448 276a8 nsecs.exe 378606 1492 5038 385136 5e070 paranoia.exe 124526 1092 4500 130118 1fc46 base_sp.exe 128746 1120 6344 136210 21412 unlimited.exe 154278 1066 4500 159844 27064 hello.exe
* Use linker set for libio initializationSebastian Huber2016-02-031-2/+2
| | | | Update #2408.
* score: Introduce Thread_Entry_informationSebastian Huber2016-01-111-1/+1
| | | | | | | This avoids potential dead code in _Thread_Handler(). It gets rid of the dangerous function pointer casts. Update #2514.
* m32c/m32cbsp/configure.ac: Correct typoJoel Sherrill2016-01-041-1/+1
|
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+1
| | | | | | Use the bsp_predriver_hook() instead. Update #2408.
* bsps: Fix some linker set descriptionsSebastian Huber2015-12-091-1/+2
| | | | | Fix broken RTEMS linker set descriptions introduced by b618d8cfc54f84d4ed03dc7b7fa510c872e6128a.
* Add RTEMS linker setsSebastian Huber2015-12-081-1/+2
| | | | 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
* m32csim-testsuite.tcfg: Add tests with data size issuesJoel Sherrill2015-03-221-0/+5
|
* m32cbsp: Disable jffs2 and mrfs testsJoel Sherrill2015-03-221-8/+2
|
* m32cbsp: Add bsp_reset() so the BSP exitsJoel Sherrill2015-03-122-1/+3
|
* Add fsscandir01 variants as needed to more BSPs testsuite configurationJoel Sherrill2015-03-061-0/+2
|
* libmd: Disable SHA modules for m32cSebastian Huber2015-03-051-0/+3
| | | | Close #2219.
* 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".
* m32c/m32csim/timer/timer.c: Fix warningsJoel Sherrill2014-10-131-1/+5
|
* Add console-polled.h and update all BSPs that should use it.Joel Sherrill2014-10-103-3/+11
| | | | | | | | | | | 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.
* Add More Testsuite Configuration Files and Update Existing OnesJoel Sherrill2014-07-161-0/+12
| | | | | | | The first pass at building these was without networking enabled. This pass addresses that plus accounts for some new BSPs which needed testsuite.tcfg files and BSPs which could not link tests which had been added since the first pass.
* bsps: Do not build tests that require a tick interrupt.Chris Johns2014-05-281-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* 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.
* m32cbsp/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill2014-03-211-17/+0
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-213-3/+3
|
* bsps: Add empty cache managerSebastian Huber2014-02-241-0/+5
| | | | | This is necessary to add tests that use the cache manager. For example to get better estimates of worst-case timings.
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-041-0/+15
|
* m32cbsp: Add doxygen headers.Szkocsovszki Zsolt2013-12-302-1/+31
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-082-607/+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.
* 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-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
|
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+31
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1112-33/+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.
* 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
|
* Remove all .cvsignore files.Joel Sherrill2012-02-013-21/+0
|
* 2011-06-20 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-06-202-2/+4
| | | | * Makefile.am: Don't reference non-existing files.
* 2011-06-11 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-06-117-289/+7
| | | | | | | * Makefile.am, configure.ac: runtest for this BSP obsoleted by rtems-testing/sim-scripts support. Please use those scripts. * tools/.cvsignore, tools/Makefile.am, tools/configure.ac, tools/runtest.in: Removed.
* 2011-02-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-252-3/+6
| | | | | * tools/configure.ac: Remove RTEMS_CANONICAL_TARGET_CPU. Fix package name.
* 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-112-1/+6
| | | | | * include/bsp.h: Use "__asm__" instead of "asm" for improved c99-compliance.
* 2011-02-09 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-092-0/+6
| | | | | * 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.