summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/lm32/milkymist (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename is_internal to always_set_to_falseSebastian Huber2016-12-121-1/+1
| | | | Update #2825.
* lm32/milkymist: Remove include of <rtems/console.h> from <bsp.h> and fix ↵Joel Sherrill2016-03-291-1/+0
| | | | warnings
* lm32/milkymist/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-251-1/+0
|
* lm32/lm32_evr: Add per-section compilation and linking supportJoel Sherrill2016-03-101-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updates #2577. For the milkymist BSP variant without this option sample executables sizes were as follows: text data bss dec hex filename 101160 9044 13333 123537 1e291 ticker.exe 30888 2676 9169 42733 a6ed minimum.exe 592200 90020 26557 708777 ad0a9 fileio.exe 456048 64528 42565 563141 897c5 pppd.exe 203752 25404 16241 245397 3be95 capture.exe 118216 10704 13437 142357 22c15 nsecs.exe 197848 22468 13981 234297 39339 paranoia.exe 97496 8760 13301 119557 1d305 base_sp.exe 100392 9120 17141 126653 1eebd unlimited.exe 121032 7720 13309 142061 22aed hello.exe 289340 28120 20653 338113 528c1 loopback.exe For the milkymist BSP variant with this option sample executables sizes were as follows: text data bss dec hex filename 93464 8748 13333 115545 1c359 ticker.exe 17144 1308 9133 27585 6bc1 minimum.exe 574024 87296 26301 687621 a7e05 fileio.exe 415668 60652 41837 518157 7e80d pppd.exe 190920 24712 16233 231865 389b9 capture.exe 111800 10404 13405 135609 211b9 nsecs.exe 187272 22064 13949 223285 36835 paranoia.exe 87656 8440 13301 109397 1ab55 base_sp.exe 89048 8736 17149 114933 1c0f5 unlimited.exe 108888 7316 13309 129513 1f9e9 hello.exe 262820 26764 20557 310141 4bb7d loopback.exe
* Use linker set for libio initializationSebastian Huber2016-02-031-2/+0
| | | | Update #2408.
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+0
| | | | | | Use the bsp_predriver_hook() instead. Update #2408.
* 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
* lm32 BSPs: Add lm32_evr variant for running on gdb.Joel Sherrill2015-04-051-2/+5
| | | | | Lay groundwork for a simulator configuration configuration for the Milkymist. This is needed to use the shared code.
* Update bug report URLSebastian Huber2014-12-051-1/+1
|
* lm32/milkymist/startup/bspclean.c: Include <bsp.h> to fix warningJoel Sherrill2014-10-191-3/+6
|
* 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.
* 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-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/+14
|
* lm32_milkymist: improve doxygenToma2013-12-242-0/+24
| | | | Add doxygen to the header files in the /lm32/milymist/include directory.
* Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers2013-08-091-1/+1
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-48/+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-5/+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-39/+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.
* Reformat AC_INIT.Ralf Corsépius2012-07-191-2/+1
|
* Require automake-1.12.2.Ralf Corsépius2012-07-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+39
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-114-10/+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.
* Remove CVS-Ids.Ralf Corsépius2012-05-042-6/+0
|
* Milkymist - Increase SOFTUSB_PMEM_SIZE to 8 KBWerner Almesberger2012-03-061-1/+1
| | | | | | | | | | | | | We increased PMEM to 8 kB but never updated SOFTUSB_PMEM_SIZE. This didn't have much of an effect because all we used it for was to zero unused program memory - which we should never touch anyway. But now that "usb load" in FN uses SOFTUSB_PMEM_SIZE, this caused it to silently truncate the firmware, producing rather puzzling effects. Signed-off-by: Joel Sherrill <joel.sherrill@oarcorp.com>
* Remove all .cvsignore files.Joel Sherrill2012-02-012-12/+0
|
* 2011-11-27 Sebastien Bourdeauducq <seb@tmplab.org>Gedare Bloom2011-11-272-3/+11
| | | | | | PR 1970/bsps * include/system_conf.h: Support for the new Milkymist sysctl and clock frequency detection.
* 2011-11-27 Sebastien Bourdeauducq <seb@tmplab.org>Gedare Bloom2011-11-272-20/+43
| | | | | | PR 1966/bsps * include/system_conf.h: support for the new UART core and interrupt map
* 2011-08-01 Sebastien Bourdeauducq <sebastien.bourdeauducq@gmail.com>Joel Sherrill2011-08-0110-132/+514
| | | | | | | | | | | | | | | | | | | | | PR 1869/bsps * startup/bspclean.c: New file. * include/tm27.h: Removed. * ChangeLog, Makefile.am, README, preinstall.am, include/bsp.h, include/system_conf.h, make/custom/milkymist.cfg, startup/linkcmds: Complete BSP for Milkymist One supporting Milkymist SOC 1.0.x. Includes new or updated drivers for: - Multi-standard video input (PAL/SECAM/NTSC) - Two DMX512 (RS485) ports - MIDI IN and MIDI OUT ports - VGA output - AC'97 audio - NOR flash - 10/100 Ethernet - Memory card (experimental and incomplete) - USB host connectors (input devices only) - RC5 infrared receiver - RS232 debug port
* 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-022-2/+6
| | | | * configure.ac: Require autoconf-2.68, automake-1.11.1.
* 2010-08-25 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-08-252-0/+12
| | | | * .cvsignore: New file.
* 2010-08-20 <yann.sionneau@telecom-sudparis.eu>Joel Sherrill2010-08-2013-0/+732
Add Milkymist BSP developed as part of GSOC 2010. * ChangeLog, Makefile.am, README, bsp_specs, configure.ac, preinstall.am, Documentation/uart.txt, include/.cvsignore, include/bsp.h, include/system_conf.h, include/tm27.h, make/custom/milkymist.cfg, startup/linkcmds: New files.