summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/edb7312 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsps: Improve interrupt vector enable/disable APISebastian Huber2017-06-201-6/+6
| | | | | | Change bsp_interrupt_vector_enable() and bsp_interrupt_vector_disable() to not return a status code. Add bsp_interrupt_assert() and use it to validate the vector number in the vector enable/disable implementations.
* bsp: Include missing <sys/param.h>Sebastian Huber2017-06-121-0/+1
| | | | Update #2833.
* arm: Remove legacy execption supportSebastian Huber2017-03-083-46/+32
|
* arm/edb7312/include/bsp.h: Do not include <rtems/iosupp.h>Joel Sherrill2016-03-301-1/+0
|
* arm/edb7312: Remove include of <rtems/console.h> from <bsp.h> and fix warningsJoel Sherrill2016-03-291-1/+0
|
* arm/edb7312/include/bsp.h: Do not include <rtems/clockdrv.h>Joel Sherrill2016-03-251-1/+0
|
* Use linker set for libio initializationSebastian Huber2016-02-031-1/+1
| | | | Update #2408.
* arm/edb7312: Add per-section compilation and linking supportAun-Ali Zaidi2016-01-091-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The size of the sample executables without this option were: text data bss dec hex filename 60732 1636 16714848 16777216 1000000 minimum.exe 93700 1868 16681632 16777200 fffff0 base_sp.exe 114076 1956 16661156 16777188 ffffe4 nsecs.exe 192608 2352 16582244 16777204 fffff4 capture.exe 205980 1896 16569312 16777188 ffffe4 cdtest.exe 182060 2252 16592900 16777212 fffffc paranoia.exe 106596 1844 16668772 16777212 fffffc hello.exe 564540 5780 16206884 16777204 fffff4 fileio.exe 97136 1868 16678212 16777216 1000000 ticker.exe 273136 6656 16497408 16777200 fffff0 loopback.exe 592916 2112 16182176 16777204 fffff4 cxx_iostream.exe 451920 12764 16312512 16777196 ffffec pppd.exe 95812 1900 16679488 16777200 fffff0 unlimited.exe The size of the sample executables with this option enabled were: text data bss dec hex filename 32020 1208 16743968 16777196 ffffec minimum.exe 87720 1708 16687780 16777208 fffff8 base_sp.exe 108192 1796 16667200 16777188 ffffe4 nsecs.exe 184488 2184 16590532 16777204 fffff4 capture.exe 197940 1744 16577504 16777188 ffffe4 cdtest.exe 175420 2084 16599684 16777188 ffffe4 paranoia.exe 98044 1684 16677476 16777204 fffff4 hello.exe 548124 5620 16223460 16777204 fffff4 fileio.exe 91140 1708 16684352 16777200 fffff0 ticker.exe 252968 6408 16517824 16777200 fffff0 loopback.exe 414640 1952 16360612 16777204 fffff4 cxx_iostream.exe 418608 12472 16346116 16777196 ffffec pppd.exe 87616 1740 16687844 16777200 fffff0 unlimited.exe
* api: Remove deprecated NotepadsAun-Ali Zaidi2015-12-241-3/+0
| | | | | | | | | | | | | | | | | | | | | | | Notepads where a feature of RTEMS' tasks that simply functioned in the same way as POSIX keys or threaded local storage (TLS). They were introduced well before per task variables, which are also deprecated, and were barely used in favor of their POSIX alternatives. In addition to their scarce usage, Notepads took up unnecessary memory. For each task: - 16 32-bit integers were allocated. - A total of 64 bytes per task per thread. This is especially critical in low memory and safety-critical applications. They are also defined as uint32_t, and therefore are not guaranteed to hold a pointer. Lastly, they are not portable solutions for SMP and uniprocessor systems, like POSIX keys and TLS. updates #2493.
* bsps: Delete superfluous bsp_pretasking_hook()Sebastian Huber2015-12-101-1/+1
| | | | | | 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.
* bsps: Convert clock drivers to use a timecounterAlexander Krutwig2015-05-201-0/+2
| | | | Update #2271.
* 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().
* bsps: Move extern "C" to not cover includesSebastian Huber2014-10-231-4/+4
| | | | Some includes may use C++ and this conflicts if surrounded extern "C".
* arm/edb7312: Fix warningsJoel Sherrill2014-10-203-2/+17
|
* arm/edb7312/startup/bspstart.c: Ensure bsp_start_default() is staticJoel Sherrill2014-10-161-2/+4
|
* arm/edb7312/startup/bspreset.c: Include <bsp/bootcard.h>Joel Sherrill2014-10-131-0/+1
|
* arm: Fix warningSebastian Huber2014-10-101-5/+1
|
* Use correct prototype of benchmark_timer_read()Joel Sherrill2014-09-161-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.
* bsps/arm: Delete obsolete compiler flagsSebastian Huber2014-09-111-1/+1
| | | | These flags are obsolete with the EABI based ARM tool chain.
* 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.
* Regenerate all preinstall.am files.Joel Sherrill2014-08-281-3/+3
| | | | | Apparently, at some point automake output changed and these were not updated.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-2111-11/+11
|
* 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_edb7312: added new doxygenDaniel Ramirez2013-12-223-16/+135
|
* bsps: Fix clock driver definesSebastian Huber2013-08-141-1/+1
|
* Updated legacy code in arm edb7312Vipul Nayyar2013-07-162-20/+6
|
* Updated Legacy code in arm edb7312Vipul Nayyar2013-07-102-37/+39
|
* bsp/edb7312: Improve output charSebastian Huber2013-03-141-11/+20
| | | | | The output char function used by printk() is now independent of the console driver initialization.
* bsp/edb7312: Fix warningsSebastian Huber2013-03-141-8/+0
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-633/+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.
* libchip/serial: Add const qualifierSebastian Huber2013-02-111-1/+1
|
* arm: Rename arm_exc_interrupt()Sebastian Huber2013-01-071-1/+1
| | | | Rename arm_exc_interrupt() to _ARMV4_Exception_interrupt().
* arm: Move prototypes to new fileSebastian Huber2013-01-071-0/+2
| | | | | | Move bsp_interrupt_dispatch() and arm_exc_interrupt() prototypes to new file <rtems/score/armv4.h> since they have nothing to do with the CPU port.
* bsps: Interrupt initialization error is fatalSebastian Huber2012-11-151-3/+1
|
* 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().
* 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.
* 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-1112-32/+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
|
* General - Remove extraneous blank line in license messageJoel Sherrill2012-05-037-7/+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.
* edb7312: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-19/+14
|
* bsps: Add shared default IRQ handlerSebastian Huber2012-03-242-12/+8
|
* Remove all .cvsignore files.Joel Sherrill2012-02-012-13/+0
|