summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gba (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-12-12arm/gba: RemoveAun-Ali Zaidi25-4153/+0
updates #2449.
2015-12-10bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber1-1/+1
Use the bsp_predriver_hook() instead. Update #2408.
2015-12-08Add RTEMS linker setsSebastian Huber1-0/+2
Update #2408.
2015-07-16remaining bsp.h: Fix by hand to LIBBSP_@CPU@_@BSP_FAMILY@_BSP_HJoel Sherrill1-2/+2
These files were left after running the script in the previous patch.
2015-05-21Multiple bsp_specs: Change *(old_endfile) to %(old_endfile)Joel Sherrill1-1/+1
Fix typo. closes 2345.
2015-05-20bsps: Convert clock drivers to use a timecounterAlexander Krutwig1-0/+2
Update #2271.
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-10-23bsps: Move extern "C" to not cover includesSebastian Huber1-4/+4
Some includes may use C++ and this conflicts if surrounded extern "C".
2014-10-20arm/gba/console/conio.c: Fix warningJoel Sherrill1-1/+5
2014-10-16arm/gba/startup/bspstart.c: Ensure bsp_start_default() is staticJoel Sherrill1-1/+1
2014-10-13arm/gba/console: Fix warnings and clean upJoel Sherrill2-111/+140
2014-10-13arm/gba/startup/bspreset.c: Include <bsp/bootcard.h>Joel Sherrill1-1/+1
2014-10-09arm/gba/startup/bspgetworkarea.c: Fix warningJoel Sherrill1-2/+2
2014-10-09arm/gba/irq/irq.c: Fix warnings and clean upJoel Sherrill1-0/+6
2014-10-09arm/gba/clock/clockdrv.c: Fix warnings and clean upJoel Sherrill1-3/+6
2014-09-16Use correct prototype of benchmark_timer_read()Joel Sherrill1-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.
2014-09-11bsps/arm: Delete obsolete compiler flagsSebastian Huber1-2/+1
These flags are obsolete with the EABI based ARM tool chain.
2014-08-29Regenerate all preinstall.am files.Chris Johns1-6/+6
With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
2014-04-22bsps: Fix TLS support in linker command filesSebastian Huber1-1/+3
The TLS section symbols had wrong values in case of an empty TLS data section and a nonempty TLS BSS section.
2014-03-21gba/include/bsp.h: Remove rtems_bsp_delay()Joel Sherrill1-12/+0
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns18-18/+18
2014-02-24bsps: Add empty cache managerSebastian Huber1-0/+5
This is necessary to add tests that use the cache manager. For example to get better estimates of worst-case timings.
2014-02-14score: Add CPU counter supportSebastian Huber1-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.
2014-02-04bsps: Thread-local storage (TLS) for linkcmdsSebastian Huber1-18/+15
2013-12-19arm/gba: doxygen improvementToma8-19/+69
Add doxygen to the header files in the arm/gba include, irq, and console directories.
2013-08-09Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers1-1/+1
2013-07-12Updated Legacy code in arm gbaVipul Nayyar1-48/+20
2013-03-18bsps: Support DWARF extensionSebastian Huber1-0/+2
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom1-379/+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-01-07arm: Rename arm_exc_interrupt()Sebastian Huber1-1/+1
Rename arm_exc_interrupt() to _ARMV4_Exception_interrupt().
2012-11-15bsps: Interrupt initialization error is fatalSebastian Huber1-3/+1
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber1-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().
2012-10-25score: Work area initialization API changeSebastian Huber1-15/+5
The work areas (RTEMS work space and C program heap) will be initialized now in a separate step and are no longer part of rtems_initialize_data_structures(). Initialization is performed with tables of Heap_Area entries. This allows usage of scattered memory areas present on various small scale micro-controllers. The sbrk() support API changes also. The bsp_sbrk_init() must now deal with a minimum size for the first memory chunk to take the configured work space size into account.
2012-08-06Revert "Add bspopts.h.in."Gedare Bloom1-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.
2012-07-19Require automake-1.12.2.Ralf Corsépius1-1/+1
2012-07-19Require autoconf-2.69.Ralf Corsépius1-1/+1
2012-05-24Add bspopts.h.in.Ralf Corsépius1-0/+31
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill20-42/+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.
2012-05-04Remove CVS-Ids.Ralf Corsépius2-6/+0
2012-05-03General - Remove extraneous blank line in license messageJoel Sherrill1-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.
2012-04-19gba: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill1-32/+25
2012-03-24bsps: Add shared default IRQ handlerSebastian Huber2-11/+7
2012-02-01Remove all .cvsignore files.Joel Sherrill2-12/+0
2011-06-192011-06-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+6
* Makefile.am: Fix broken path to clockdrv_shell.h.
2011-02-112011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius3-3/+8
* include/bsp.h, startup/bspreset.c: Use "__asm__" instead of "asm" for improved c99-compliance.
2011-02-092011-02-09 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-0/+6
* timer/timer.c: Include <rtems/btimer.h>. Fix benchmark_timer_read() definition.
2011-02-022011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-2/+6
* configure.ac: Require autoconf-2.68, automake-1.11.1.
2011-01-282011-01-28 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill14-14/+14
* 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-03Typo.Sebastian Huber1-1/+1
2010-12-032010-12-03 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-1/+42
* startup/linkcmds: Use linker command base file.