summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/smdk2410 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsp/smdk2410: Fix format warningSebastian Huber2017-03-081-1/+1
|
* arm: Remove legacy execption supportSebastian Huber2017-03-083-32/+31
|
* smdk2410: delete unused variablesGedare Bloom2017-01-191-8/+1
| | | | Closes #2868.
* bsps/arm: Change code to explicit selection of cache implementation for ARM ↵Pavel Pisa2016-07-041-2/+4
| | | | | | | | | | | | | | | | | | | | | | | BSPs. The original ARM architecture wide cache_.h is changed to dummy version for targets not implementing/enablig cache at all. The ARM targets equipped by cache should include appropriate implementation. Next options are available for now c/src/lib/libbsp/arm/shared/armv467ar-basic-cache/cache_.h basic ARM cache integrated on the CPU core directly which requires only CP15 oparations c/src/lib/libbsp/arm/shared/arm-l2c-310/cache_.h support for case where ARM L2C-310 cache controller is used. It is accessible as mmaped peripheral. c/src/lib/libbsp/arm/shared/armv7m/include/cache_.h Cortex-M specific cache support
* arm/smdk2410/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill2016-03-301-1/+0
|
* arm/smdk2410: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill2016-03-291-1/+0
|
* arm/smdk2410/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-251-1/+0
|
* arm/smdk2410: Add per-section compilation and linking supportJoel Sherrill2016-03-101-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updates #2577. For the smdk2410 BSP variant without this option, sample executables sizes were as follows: text data bss dec hex filename 97924 1980 66992576 67092480 3ffc000 ticker.exe 38256 1400 67052800 67092456 3ffbfe8 minimum.exe 820960 2268 66269220 67092448 3ffbfe0 cxx_iostream.exe 576981 6056 66509440 67092477 3ffbffd fileio.exe 455008 12872 66624576 67092456 3ffbfe8 pppd.exe 198696 2616 66891136 67092448 3ffbfe0 capture.exe 116096 2068 66974308 67092472 3ffbff8 nsecs.exe 181880 2364 66908224 67092468 3ffbff4 paranoia.exe 191224 2012 66899232 67092468 3ffbff4 cdtest.exe 94916 1980 66995584 67092480 3ffc000 base_sp.exe 98184 2012 66992260 67092456 3ffbfe8 unlimited.exe 107860 1956 66982656 67092472 3ffbff8 hello.exe 278248 6764 66807456 67092468 3ffbff4 loopback.exe For the smdk2410 BSP variant with this option, sample executables sizes were as follows: text data bss dec hex filename 91532 1820 66999104 67092456 3ffbfe8 ticker.exe 25508 380 67066564 67092452 3ffbfe4 minimum.exe 512240 2068 66578148 67092456 3ffbfe8 cxx_iostream.exe 559481 5904 66527072 67092457 3ffbfe9 fileio.exe 419052 12580 66660836 67092468 3ffbff4 pppd.exe 188604 2440 66901408 67092452 3ffbfe4 capture.exe 110260 1908 66980288 67092456 3ffbfe8 nsecs.exe 173608 2188 66916672 67092468 3ffbff4 paranoia.exe 182184 1852 66908416 67092452 3ffbfe4 cdtest.exe 87660 1812 67003008 67092480 3ffc000 base_sp.exe 88336 1812 67002308 67092456 3ffbfe8 unlimited.exe 97604 1740 66993120 67092464 3ffbff0 hello.exe 255352 6516 66830592 67092460 3ffbfec loopback.exe
* smdk2410: Resurrect missing gp32 filesJoel Sherrill2016-03-0312-44/+1111
| | | | | | | | | When the gp32 BSP was obsoleted and removed, files were deleted that were actually used by the gp32. This was actually a violation of the expected directory structure and why it wasn't caught. Another example of why continuous integration testing -- even just building is important.
* Use linker set for libio initializationSebastian Huber2016-02-031-1/+1
| | | | Update #2408.
* 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
* Multiple bsp_specs: Change *(old_endfile) to %(old_endfile)Joel Sherrill2015-05-211-1/+1
| | | | | | Fix typo. closes 2345.
* Update bug report URLSebastian Huber2014-12-051-1/+1
|
* bsps/arm: Add .nocache sectionSebastian Huber2014-11-271-0/+2
| | | | | This section can be use to provide a cache coherent memory area via rtems_cache_coherent_add_area().
* arm/smdk2410/startup/bspreset.c: Include <bsp/bootcard.h>Joel Sherrill2014-10-131-0/+1
|
* bsps/arm: Delete obsolete compiler flagsSebastian Huber2014-09-111-1/+1
| | | | These flags are obsolete with the EABI based ARM tool chain.
* smdk2410/.../bspreset.c: Eliminate warning for set not used variableJoel Sherrill2014-09-041-0/+2
|
* 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.
* 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.
* score: Add CPU counter supportSebastian Huber2014-02-141-0/+2
| | | | | | | | | Add a CPU counter interface to allow access to a free-running counter. It is useful to measure short time intervals. This can be used for example to enable profiling of critical low-level functions. Add two busy wait functions rtems_counter_delay_ticks() and rtems_counter_delay_nanoseconds() implemented via the CPU counter.
* arm_smdk2410: added new doxygenDaniel Ramirez2013-12-221-0/+12
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-168/+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.
* arm/smdk2410: Update to include bspidle.cJoel Sherrill2013-01-081-1/+1
| | | | | This BSP shares code with the gp32 and needed to include the new bspidle.c file.
* 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().
* bsps: Include <bspopts.h> in <bsp.h>Sebastian Huber2012-11-141-0/+2
|
* Revert "Add bspopts.h.in."Gedare Bloom2012-08-061-37/+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.
* Use http://www.rtems.org/bugzilla as bug-URL.Ralf Corsépius2012-07-191-1/+1
|
* Remove CVS-Ids.Ralf Corsépius2012-07-191-2/+0
|
* Require automake-1.12.2.Ralf Corsépius2012-07-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* bsps: Replace NIRVANA regionSebastian Huber2012-06-121-1/+0
| | | | | Replace the "NIRVANA" region with the more verbose "UNEXPECTED_SECTIONS" region. Move the region definition into the "linkcmds.base" files.
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+37
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-113-6/+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-041-4/+0
|
* General - Remove extraneous blank line in license messageJoel Sherrill2012-05-031-1/+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.
* smdk2410 - Remove odd $Id$Joel Sherrill2012-05-021-2/+0
|
* bsps: Add shared default IRQ handlerSebastian Huber2012-03-241-5/+6
|
* Remove all .cvsignore files.Joel Sherrill2012-02-012-12/+0
|
* 2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett2011-10-182-1/+10
| | | | | | PR 1917/bsps * Makefile.am: Modifications to add dynamic tables for libchip serial drivers.
* 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-112-1/+6
| | | | | * startup/bspreset.c: Use "__asm__" instead of "asm" for improved c99-compliance.
* 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.
* 2011-01-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2011-01-281-1/+1
| | | | | | | | | | | | * gba/clock/clockdrv.c, gba/console/conio.c, gba/console/console.c, gba/console/defaultfont.h, gba/include/arm_mode_bits.h, gba/include/asm_macros.h, gba/include/bsp.h, gba/include/conio.h, gba/include/gba.h, gba/include/gba_registers.h, gba/irq/irq.c, gba/irq/irq.h, gba/startup/bspstart.c, gba/timer/timer.c, gp32/include/bsp.h, gp32/startup/bspreset.c, gp32/startup/bspstart.c, nds/tools/runtest, shared/comm/uart.c, shared/comm/uart.h, smdk2410/include/bsp.h: Fix typo where license said found in found in.
* 2010-12-03 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-12-032-276/+26
| | | | * startup/linkcmds: Use linker command base file.
* 2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-04-303-0/+22
| | | | * Makefile.am, preinstall.am: Added generic interrupt support modules.
* 2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-04-302-1/+5
| | | | | | | | | | * csb336/make/custom/csb336.cfg, csb337/make/custom/csb337.cfg, edb7312/make/custom/edb7312.cfg, gba/make/custom/gba.cfg, gdbarmsim/make/custom/arm920.cfg, gp32/make/custom/gp32.cfg, gumstix/make/custom/gumstix.cfg, lpc32xx/make/custom/lpc32xx_phycore.cfg, nds/make/custom/nds.cfg, rtl22xx/make/custom/rtl22xx.cfg, smdk2410/make/custom/smdk2410.cfg: Use VFP floating point model.
* unify irq data types and code, merge s3c2400/s3c2410 supportThomas Doerfler2010-04-092-3/+7
|
* Whitespace removal.Ralf Corsepius2009-11-281-1/+1
|
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-3/+4
| | | | * make/custom/smdk2410.cfg: Remove RTEMS_BSP_FAMILY.