summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme162 (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename is_internal to always_set_to_falseSebastian Huber2016-12-121-1/+1
| | | | Update #2825.
* testsuite: Add test states to the testsuit configuration files.Chris Johns2016-12-072-2/+2
| | | | | | | | | | | | | | | | 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.
* bsp/mvme162: Include missing <rtems/bspIo.h>Sebastian Huber2016-06-281-0/+1
|
* m68k/mvme162/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill2016-03-301-1/+0
|
* m68k/mvme162: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill2016-03-292-2/+2
|
* m68k/mvme162/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-272-1/+1
|
* Use linker set for libio initializationSebastian Huber2016-02-031-2/+2
| | | | Update #2408.
* m68k/mvme*: switch to shared linkcmds.baseJoel Sherrill2016-01-251-191/+15
| | | | updates #2542.
* m68k/mvme162: Add per-section compilation and linking support.Ralph Holmes2016-01-222-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For the main BSP: The size of the sample executables without this option were: text data bss dec hex filename 85200 1632 11936 98768 181d0 base_sp.exe 100224 1600 11536 113360 1bad0 hello.exe 38432 1216 8016 47664 ba30 minimum.exe 536336 5552 23424 565312 8a040 fileio.exe 104192 1728 12048 117968 1ccd0 nsecs.exe 185520 2000 12528 200048 30d70 paranoia.exe 89424 1632 11968 103024 19270 ticker.exe 87984 1664 15376 105024 19a40 unlimited.exe 851456 21440 19008 891904 d9c00 cxx_iostream.exe 191872 2064 12080 206016 324c0 cdtest.exe 186288 2144 13760 202192 315d0 capture.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 77600 1616 11888 91104 163e0 base_sp.exe 91824 1568 11472 104864 199a0 hello.exe 29856 1168 7952 38976 9840 minimum.exe 520432 5520 23088 549040 860b0 fileio.exe 97616 1712 11984 111312 1b2d0 nsecs.exe 177568 1984 12480 192032 2ee20 paranoia.exe 82560 1616 11904 96080 17750 ticker.exe 79760 1632 15312 96704 179c0 unlimited.exe 168256 2064 11728 182048 2c720 cxx_iostream.exe 176112 2000 12000 190112 2e6a0 cdtest.exe 176656 2096 13712 192464 2efd0 capture.exe For the mvme162lx BSP variant: The size of the sample executables without this option were: text data bss dec hex filename 85200 1632 11936 98768 181d0 base_sp.exe 100224 1600 11536 113360 1bad0 hello.exe 38432 1216 8016 47664 ba30 minimum.exe 536336 5552 23424 565312 8a040 fileio.exe 104192 1728 12048 117968 1ccd0 nsecs.exe 185520 2000 12528 200048 30d70 paranoia.exe 89424 1632 11968 103024 19270 ticker.exe 87984 1664 15376 105024 19a40 unlimited.exe 851456 21440 19008 891904 d9c00 cxx_iostream.exe 191872 2064 12080 206016 324c0 cdtest.exe 186288 2144 13760 202192 315d0 capture.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 77600 1616 11888 91104 163e0 base_sp.exe 91824 1568 11472 104864 199a0 hello.exe 29856 1168 7952 38976 9840 minimum.exe 520432 5520 23088 549040 860b0 fileio.exe 97616 1712 11984 111312 1b2d0 nsecs.exe 177568 1984 12480 192032 2ee20 paranoia.exe 82560 1616 11904 96080 17750 ticker.exe 79760 1632 15312 96704 179c0 unlimited.exe 168256 2064 11728 182048 2c720 cxx_iostream.exe 176112 2000 12000 190112 2e6a0 cdtest.exe 176656 2096 13712 192464 2efd0 capture.exe
* mvme162/tools: Remove obsolete toolsJoel Sherrill2016-01-144-557/+0
|
* api: Remove deprecated NotepadsAun-Ali Zaidi2015-12-241-2/+0
| | | | | | | | | | | | | | | | | | | | | | | Notepads where a feature of RTEMS' tasks that simply functioned in the same way as POSIX keys or threaded local storage (TLS). They were introduced well before per task variables, which are also deprecated, and were barely used in favor of their POSIX alternatives. In addition to their scarce usage, Notepads took up unnecessary memory. For each task: - 16 32-bit integers were allocated. - A total of 64 bytes per task per thread. This is especially critical in low memory and safety-critical applications. They are also defined as uint32_t, and therefore are not guaranteed to hold a pointer. Lastly, they are not portable solutions for SMP and uniprocessor systems, like POSIX keys and TLS. updates #2493.
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+1
| | | | | | Use the bsp_predriver_hook() instead. Update #2408.
* Add RTEMS linker setsSebastian Huber2015-12-081-0/+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
* mvme162/tod/tod.c: Do not use rtems_clock_get()Joel Sherrill2015-03-171-2/+2
|
* Move contents of libcsupport/include/zilog into libbsp/sharedJoel Sherrill2015-03-092-0/+13
| | | | Only a few BSPs use this and it should not have been in libcsupport.
* 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".
* m68k/mvme162: Fix warningsJoel Sherrill2014-10-194-85/+57
|
* mvme162/clock/ckinit.c: Fix warningsJoel Sherrill2014-10-131-23/+6
|
* m68k/mvme162/startup/bspstart.c: Add include of <bsp/bootcard.h> to fix ↵Joel Sherrill2014-10-091-5/+5
| | | | warning and clean up
* bsps: Fix build errorSebastian Huber2014-09-182-5/+0
| | | | Fix build error introduced in f535fe5311978af53635c2da8e5cb10ef9d78802.
* tod.h -> libcsupport like other driver and helper prototype filesJoel Sherrill2014-09-161-1/+1
| | | | | This rippled into the handful of files that should have been using <rtems/tod.h>.
* 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-3/+3
| | | | | With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
* Regenerate all preinstall.am files.Joel Sherrill2014-08-281-6/+6
| | | | | Apparently, at some point automake output changed and these were not updated.
* Add More Testsuite Configuration Files and Update Existing OnesJoel Sherrill2014-07-162-0/+14
| | | | | | | 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: 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-2111-11/+11
|
* bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber2014-02-041-0/+18
|
* libbsp m68k: Add Doxygen file header to coverhd.hCynthia Rempel2014-01-141-1/+7
|
* libbsp tm27.h: Add Doxygen file header to all tm27.hCynthia Rempel2014-01-091-2/+6
|
* m68k: refactored shared/start.S to shared/start/start.SDaniel Ramirez2013-12-031-1/+1
|
* Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers2013-08-092-2/+2
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-082-787/+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: rtems_initialize_start_multitasking()Sebastian Huber2012-12-071-7/+0
| | | | | | | | | Do not return from rtems_initialize_start_multitasking() and call rtems_fatal() instead with a fatal source of RTEMS_FATAL_SOURCE_EXIT and a fatal code with the exit status. Remove all bsp_cleanup() functions. The boot_card() is now a no return function.
* score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber2012-11-152-2/+12
| | | | | | | 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().
* bsps: Include <bsp/bootcard.h>Sebastian Huber2012-11-141-1/+1
| | | | | Use <bsp/bootcard.h> to get prototype for bsp_cleanup(). Fix bsp_cleanup() definition if necessary.
* 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 CVS Id Strings (manual edits after script)Joel Sherrill2012-05-111-19/+0
| | | | | | These modifications were required by hand after running the script. In some cases, the file names did not match patterns. In others, the format of the file did not match any common patterns.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1122-49/+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
|
* m68k: use shared setvec.cGedare Bloom2012-04-161-1/+1
|
* m68k: replace m68k_isr with rtems_isrGedare Bloom2012-04-163-5/+5
|
* PR 1962/bsps - MVME162 Console Corrections and ImprovementsJoel Sherrill2012-02-026-23/+103
| | | | | | | | | | | | | | | | | | * console/console.c: char_ready() was never returning true so console never processed input data * console/console.c: added printk() support to default device * include/bsp.h: Added #define for MOT_162BUG_VEC_ADDRESS * startup/bspclean.c: Modified to use MOT_162BUG_VEC_ADDRESS * startup/bspstart.c: Modified to use MOT_162BUG_VEC_ADDRESS * make/custom/mvme162.cfg: Modified to use "RTEMS_CPU_MODEL=68lc040" and "CPU_CFLAGS = -mcpu=68040 -msoft-float" so BSP will always work with all board variations. * README: Added notes on user required configuration changes and information about board models and variants * README.models: New file that contains a detailed list of MVME162 models and variants. Signed-off-by: Vic Hoover <victor.hoover.ctr@navy.mil>
* PR 1962/bsps - MVME162 Console Corrections and ImprovementsJoel Sherrill2012-02-021-0/+233
| | | | | | | | | | | | | | | | | | * console/console.c: char_ready() was never returning true so console never processed input data * console/console.c: added printk() support to default device * include/bsp.h: Added #define for MOT_162BUG_VEC_ADDRESS * startup/bspclean.c: Modified to use MOT_162BUG_VEC_ADDRESS * startup/bspstart.c: Modified to use MOT_162BUG_VEC_ADDRESS * make/custom/mvme162.cfg: Modified to use "RTEMS_CPU_MODEL=68lc040" and "CPU_CFLAGS = -mcpu=68040 -msoft-float" so BSP will always work with all board variations. * README: Added notes on user required configuration changes and information about board models and variants * README.models: New file that contains a detailed list of MVME162 models and variants. Signed-off-by: Vic Hoover <victor.hoover.ctr@navy.mil>