summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds (follow)
Commit message (Collapse)AuthorAgeFilesLines
* nds/Makefile.am: Rework to avoid creating ltos of .rel filesJoel Sherrill2014-08-271-71/+35
| | | | This was necessary to enable all tests to link.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-2121-21/+21
|
* 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.
* select.h, rtems_select.c, nds select: Add restrict keywordDaniel Ramirez2013-11-201-1/+2
|
* Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers2013-08-091-1/+1
|
* bsp/nds: Include missing <rtems/framebuffer.h>Sebastian Huber2013-07-261-1/+1
|
* framebuffer: Add and use FRAMEBUFFER_DEVICE_0_NAMESebastian Huber2013-06-291-2/+2
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-082-551/+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().
* bsp/nds: Do not change configurationSebastian Huber2012-11-071-3/+0
|
* libnetworking: Use system eventsSebastian Huber2012-11-021-2/+2
| | | | | | | Add reserved system events RTEMS_EVENT_SYSTEM_NETWORK_SBWAIT and RTEMS_EVENT_SYSTEM_NETWORK_SOSLEEP. Add and use rtems_bsdnet_event_send().
* 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
|
* sapi: Add nanoseconds_per_tick to configurationSebastian Huber2012-06-141-1/+1
| | | | | | Add nanoseconds_per_tick to rtems_configuration_table. This value will be derived from the microseconds_per_tick value. This avoids some calculations at run-time.
* 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.
* Fix C files which had two semi-colons at EOLJoel Sherrill2012-05-312-3/+3
|
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+31
|
* Remove CVS Id Strings (manual edits after script)Joel Sherrill2012-05-111-1/+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-1177-155/+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.
* nds - Clock driver compiles againJoel Sherrill2012-05-101-12/+17
|
* nds/libnds - Fix missing prototype warning and formattingJoel Sherrill2012-05-101-6/+9
|
* Remove CVS-Ids.Ralf Corsépius2012-05-044-16/+0
|
* nds: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-15/+8
|
* Remove all .cvsignore files.Joel Sherrill2012-02-013-20/+0
|
* 2011-08-23 Julien Delange <julien.delange@gmail.com>Sebastian Huber2011-08-232-1/+5
| | | | * startup/linkcmds: Fixed instruction cache size.
* 2011-08-22 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-08-222-1/+5
| | | | * start/start.S: Fixed code section.
* 2011-08-15 Julien Delange <julien.delange@gmail.com>Sebastian Huber2011-08-154-3/+11
| | | | | | | * irq/irq.c: Removed printk() before the interrupt initialization because it somehow destroys the interrupt context. * make/custom/nds.cfg: Enable Thumb interwork. * startup/bspstart.c: Set default exception handler.
* 2011-06-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-06-192-1/+6
| | | | * Makefile.am: Fix broken path to clockdrv_shell.h.
* 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-112-1/+6
| | | | | * dswifi/common/source/spinlock.h: Use "__asm__" instead of "__asm" for improved c99-compliance.
* 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-114-3/+8
| | | | | * console/console.c, dswifi/arm9/source/wifi_arm9.c, tools/bin2s.c: 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.
* 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-0311-305/+71
| | | | | | | | | * startup/bspgetworkarea.c: Removed file. * Makefile.am, bsp_specs, start/start.S, startup/bspstart.c, libnds/include/nds/jtypes.h, libnds/source/arm9/gurumeditation.c, libnds/source/common/interruptDispatcher.S, libnds/source/common/interrupts.c, startup/linkcmds: Use linker command base file.
* 2010-05-20 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-05-202-1/+5
| | | | * make/dswifi/arm9/makefile: Workaround for GCC bug 38644.
* 2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-04-303-8/+9
| | | | | * make/custom/nds.cfg, Makefile.am, dswifi/arm7/makefile: Use VFP floating point model.
* 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.
* 2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-04-262-2/+6
| | | | * console/console.c: Fix warnings.
* 2010-04-25 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2010-04-262-2/+7
| | | | * startup/bspstart.c: Fix warning.
* unify irq data types and code, merge s3c2400/s3c2410 supportThomas Doerfler2010-04-0911-83/+23
|
* 2010-04-07 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2010-04-072-2/+4
| | | | * start/start.S: Verify boot_card() is passed a NULL.
* 2009-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-072-5/+7
| | | | * console/console.c: Let nds_getch return "int". Remove casts.
* 2009-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-071-0/+1
| | | | * block/block.c: Adjust prototype mismatches.
* Adjust prototype mismatches.Ralf Corsepius2009-12-071-2/+2
|
* 2009-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-072-1/+5
| | | | * Makefile.am: Remove -Dcaddr_t=uint32_t.
* 2009-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-072-8/+9
| | | | * dswifi/arm9/source/wifi_arm9.c: Add missing prototypes.
* 2009-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-072-2/+6
| | | | * ndstool/source/ndsextract.cpp: Add missing const's.
* 2009-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-072-1/+5
| | | | * console/console.c (nds_write): Adjust prototype.