summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bspgetworkarea.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bspgetworkarea.c: File header now uses DoxygenJoel Sherrill2016-03-171-10/+14
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* sapi: Use rtems_config*_get_interrupt_stack_sizeSebastian Huber2012-11-071-1/+1
|
* score: Work area initialization API changeSebastian Huber2012-10-251-50/+4
| | | | | | | | | | | | 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.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+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.
* 2011-01-27 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-01-271-5/+19
| | | | | * shared/bspgetworkarea.c: Use BSP_DISABLE_UBOOT_WORK_AREA_CONFIG and BSP_INTERRUPT_STACK_AT_WORK_AREA_BEGIN options.
* 2010-12-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-12-301-1/+1
| | | | | | * shared/bspgetworkarea.c: Include <bsp/u-boot.h> if necessary. * shared/include/u-boot.h, shared/src/bsp-uboot-board-info.c: New files.
* Whitespace removal.Ralf Corsepius2009-11-301-1/+1
|
* 2009-05-08 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-05-081-5/+5
| | | | | | * bootcard.c, bspgetworkarea.c, include/bootcard.h: Switch from ssize_t to uintptr_t for bsp_get_work_area() since the work area is larger than a single allocatable object.
* 2009-02-27 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-02-271-5/+24
| | | | | * bspgetworkarea.c: Add check to determine if current stack pointer is in work area.
* 2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-10-021-5/+5
| | | | | | | * bootcard.c, bspgetworkarea.c, bsppretaskinghook.c, include/bootcard.h: Change size_t to ssize_t on bsp_get_work_area(). On 16-bit architectures, size_t can be 16-bits which would limit the work area to 64K.
* 2008-09-21 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-211-3/+16
| | | | * bspgetworkarea.c: Fix typo. Add debug printk statements.
* 2008-09-20 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-201-7/+23
| | | | * bspgetworkarea.c: Augment to optionally know U-Boot.
* 2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2008-09-161-0/+44
* bspgetworkarea.c: New file. This implementation should be useable by most BSPs if they provide the proper support in their linker script.