summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gumstix (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-07-16Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guardJoel Sherrill1-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
2015-05-21Multiple bsp_specs: Change *(old_endfile) to %(old_endfile)Joel Sherrill1-1/+1
Fix typo. closes 2345.
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-11-27bsps/arm: Add .nocache sectionSebastian Huber1-0/+2
This section can be use to provide a cache coherent memory area via rtems_cache_coherent_add_area().
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-16arm/gumstix/startup/bspstart.c: Ensure bsp_start_default() is staticJoel Sherrill1-1/+1
2014-10-16Remove unused pxa255/pmc, update csb337 and gumstix BSPsJoel Sherrill1-2/+1
2014-10-13arm/gumstix/startup/bspreset.c: Include <bsp/bootcard.h>Joel Sherrill1-3/+1
2014-10-10gumstix/include/bsp.h: Do not include libchip/serial to avoid conflicts when ↵Joel Sherrill1-1/+6
building libchip/rtc
2014-10-10arm: Fix warningSebastian Huber1-3/+1
2014-09-11bsps/arm: Delete obsolete compiler flagsSebastian Huber1-1/+1
These flags are obsolete with the EABI based ARM tool chain.
2014-08-29Regenerate all preinstall.am files.Chris Johns1-3/+3
With this patch the preinstall.am files are in a set order and not dependent on now perl implements a hash.
2014-08-28Regenerate all preinstall.am files.Joel Sherrill1-7/+7
Apparently, at some point automake output changed and these were not updated.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns8-8/+8
2014-02-24bsps: Add empty cache managerSebastian Huber1-0/+6
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.
2013-12-22gumstix: added new doxygenDaniel Ramirez3-119/+324
2013-11-22gumstix: Move bsp_reset() to gumstix/startup/bspreset.cDaniel Ramirez3-9/+21
2013-07-12bsp/gumstix: Fix warningsVipul Nayyar1-54/+14
2013-07-10Updated Legacy code in arm gumstixVipul Nayyar1-17/+16
2013-06-29framebuffer: Add and use FRAMEBUFFER_DEVICE_0_NAMESebastian Huber1-1/+1
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom1-143/+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-02-11libchip/serial: Add const qualifierSebastian Huber1-1/+1
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-11-07sapi: Delete duplicate declarationsSebastian Huber1-2/+0
2012-11-02libnetworking: Use system eventsSebastian Huber1-3/+3
Add reserved system events RTEMS_EVENT_SYSTEM_NETWORK_SBWAIT and RTEMS_EVENT_SYSTEM_NETWORK_SOSLEEP. Add and use rtems_bsdnet_event_send().
2012-08-06Revert "Add bspopts.h.in."Gedare Bloom1-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.
2012-07-19Use http://www.rtems.org/bugzilla as bug-URL.Ralf Corsépius1-1/+1
2012-07-19Remove CVS-Ids.Ralf Corsépius1-2/+0
2012-07-19Require automake-1.12.2.Ralf Corsépius1-1/+1
2012-07-19Require autoconf-2.69.Ralf Corsépius1-1/+1
2012-06-12bsps: Replace NIRVANA regionSebastian Huber1-1/+0
Replace the "NIRVANA" region with the more verbose "UNEXPECTED_SECTIONS" region. Move the region definition into the "linkcmds.base" files.
2012-05-24Add bspopts.h.in.Ralf Corsépius1-0/+37
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill11-24/+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épius1-4/+0
2012-05-03nds/linkcmds - Remove execute permissionJoel Sherrill1-0/+0
2012-05-03General - Remove extraneous blank line in license messageJoel Sherrill10-0/+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-03-24bsps: Add shared default IRQ handlerSebastian Huber1-5/+6
2012-02-01Remove all .cvsignore files.Joel Sherrill2-12/+0
2011-11-072011-11-07 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-3/+9
PR 1953/bsps * console/uarts.c: Do not use /dev/console in libchip configuration table. Shared driver framework selects device to use as /dev/console.
2011-10-182011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett3-7/+12
PR 1917/bsps * Makefile.am, console/uarts.c: Modifications to add dynamic tables for libchip serial drivers.
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.
2010-12-032010-12-03 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber4-226/+41
* bsp_specs, start/start.S, startup/linkcmds: Use linker command base file.
2010-05-142010-05-14 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2-1/+5
* rtl8019/rtl8019.c: Fix typo.
2010-05-032010-05-03 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-27/+10
* rtl8019/rtl8019.c: Fixed interrupt handler.
2010-04-302010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber6-3/+31
* Makefile.am, preinstall.am: Added generic interrupt support modules. * include/bsp.h: Define BSP_FEATURE_IRQ_EXTENSION. * startup/bspstart.c, rtl8019/rtl8019.c: Interrupt support changes.
2010-04-302010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-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-09unify irq data types and code, merge s3c2400/s3c2410 supportThomas Doerfler2-7/+10
2010-04-072010-04-07 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-0/+5
* start/start.S: Verify boot_card() is passed a NULL.