summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/smdk2410/Makefile.am (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps/arm: Change code to explicit selection of cache implementation for ARM ↵Pavel Pisa2016-10-021-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 Updates #2782 Updates #2783
* 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: 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.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-4/+0
|
* bsps: Add shared default IRQ handlerSebastian Huber2012-03-241-5/+6
|
* 2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett2011-10-181-1/+4
| | | | | | PR 1917/bsps * Makefile.am: Modifications to add dynamic tables for libchip serial drivers.
* 2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-04-301-0/+10
| | | | * Makefile.am, preinstall.am: Added generic interrupt support modules.
* unify irq data types and code, merge s3c2400/s3c2410 supportThomas Doerfler2010-04-091-3/+3
|
* 2009-08-09 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-08-101-1/+1
| | | | | * Makefile.am, configure.ac: Add Skyeye reset device. * startup/bspreset.c: New file.
* 2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-09-291-5/+3
| | | | | * Makefile.am: Eliminate bsp.am. Build startup files as side-effect of building libbspstart.a, using automake-rules.
* 2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-09-291-7/+9
| | | | * Makefile.am: Eliminate *_SOURCES.
* 2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-09-291-1/+2
| | | | | * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its components.
* 2008-09-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-09-291-1/+0
| | | | * Makefile.am: Remove noinst_PROGRAMS (Unused).
* 2008-09-26 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2008-09-261-0/+3
| | | | * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
* 2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-221-1/+2
| | | | | | | | * Makefile.am, configure.ac, include/bspopts.h.in: Use standardized bsp_cleanup() which can optionally print a message, poll for user to press key, and call bsp_reset(). Using this eliminates the various bsp_cleanup() implementations which had their own implementation and variety of string constants.
* 2008-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-191-1/+1
| | | | | * Makefile.am, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
* 2008-09-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-141-1/+3
| | | | | | | * Makefile.am, configure.ac, include/bspopts.h.in: Split out bsp_get_work_area() into its own file and user BSP Framework to perform more initialization. Use same shared implementation as edb7312 and csb336.
* 2008-08-21 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-08-211-1/+1
| | | | | * Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX routine.
* 2008-06-04 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-06-041-0/+1
| | | | * Makefile.am, preinstall.am: Need tm27.h
* 2008-05-14 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-141-22/+8
| | | | * Makefile.am: Rework to avoid .rel files.
* 2008-05-06 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2008-05-061-1/+1
| | | | * Makefile.am: Use shared bsp_predriver_hook.
* 2008-05-06 Ray Xu <rayx.cn@gmail.com>Joel Sherrill2008-05-061-0/+59
* ChangeLog, Makefile.am, README, bsp_specs, configure.ac, preinstall.am, include/bsp.h, include/bspopts.h.in, startup/linkcmds, startup/memmap.c: New files.