summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* bsp/genmcf548x: Fix BSP optionsSebastian Huber2012-04-201-3/+4
|
* bsps/arm: Remove superfluous includeSebastian Huber2012-04-201-1/+0
|
* s3c24xx shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-23/+11
|
* pxa255 shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-16/+8
|
* mc9328mxl shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-31/+18
|
* lpc22xx shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-58/+53
|
* at91rm9200 shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-23/+19
|
* lpc shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-1/+1
|
* armv7m shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-1/+2
|
* nds: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-15/+8
|
* gba: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-32/+25
|
* edb7312: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill2012-04-191-19/+14
|
* Clock Driver Shell - Correct PIC IRQ Prototype.Joel Sherrill2012-04-191-2/+2
|
* LEON3: rename console/debugputs.c to printk_support.cDaniel Hellstrom2012-04-192-1/+1
|
* LEON3: added TX-wait-complete and CR on NL support for UARTDaniel Hellstrom2012-04-192-6/+23
| | | | Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON3: debugputs removed pointless isinit code, invoked only onceDaniel Hellstrom2012-04-191-34/+26
| | | | Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON3: debugputs added printk mem buffer when no UART presentDaniel Hellstrom2012-04-191-1/+13
| | | | Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON3: add console interrupt mode supportDaniel Hellstrom2012-04-192-23/+153
| | | | | | | | | The comment in configure.ac is probably inherited from the LEON2 BSP. The LEON3 console driver implements a "flush" mechanism on console_close() in order to solve the problem described with sis/LEON2. Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON3: add console attributes such as parity and baudrateDaniel Hellstrom2012-04-191-3/+68
| | | | Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON3: console, lower bus utilization waiting for UART TX readyDaniel Hellstrom2012-04-191-3/+7
| | | | Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* rbheap: API changes and documentationSebastian Huber2012-04-183-156/+309
|
* LEON: updated drivers to use new AMBAPP LayerDaniel Hellstrom2012-04-1731-259/+266
| | | | | | | The drivers are updated to use the new AMBA layer, however the backwards-compatibility interface (ambapp_old) is used. Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON3: Network initialization code updated to new AMBAPP layerDaniel Hellstrom2012-04-173-41/+50
| | | | | | | Updated SMC91111, GRETH and open_eth driver registration code to use new AMBAPP Layer. Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON3: updated console driver for new AMBAPP layerDaniel Hellstrom2012-04-177-43/+75
| | | | Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON2: clock driver use new AMBAPP layerDaniel Hellstrom2012-04-171-8/+8
| | | | Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* LEON: updated AMBA PnP APIDaniel Hellstrom2012-04-1719-634/+1839
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old layer had some limitations/problems for multiple AHB buses since the data structure containing all AMBA devices were allocated before scanning. The new layer create devices as they are found and memory is allocated using malloc() or bsp_early_malloc() during booting. The old 8 functions for finding a specific AHB-Slave or APB-Slave device has been replaced with one function, ambapp_for_each(), which iterates over all devices matching the specified search options and calls a user provided function. The new way lowers the footprint and makes searching more flexible. The frequency information is now supported, if the frequency of one device is reported by the user. More AHB-to-AHB bridges are supported. The API has been split into several parts in order to lower the footprint. The API also introduces the AMBAPP CORE concept, where one ambapp_core can be created from one AHB Master, AHB Slave and one APB Slave, at least one device is required for creating a core. Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
* no_cpu: replace no_cpu_isr with rtems_isrGedare Bloom2012-04-163-9/+3
|
* libqos: generate preinstall.amGedare Bloom2012-04-161-0/+28
|
* lm32: use shared setvec.cGedare Bloom2012-04-162-44/+1
|
* m68k: use shared setvec.cGedare Bloom2012-04-1623-60/+23
|
* lm32: replace lm32_isr with rtems_isrGedare Bloom2012-04-164-13/+3
|
* m68k: replace m68k_isr with rtems_isrGedare Bloom2012-04-1636-65/+57
|
* libblock: PR2040: Fix recycle destination updateSebastian Huber2012-04-161-8/+7
| | | | | Check the availablity of a recycle destination segment only when it is necessary to avoid missing resycle source segment erasures.
* libblock: PR2040: Add starvation thresholdSebastian Huber2012-04-161-1/+15
| | | | | | Do not use the unavailable block count as the erased blocks starvation threshold. Use instead the block count of the largest segment. This improves the starvation resolution gain of available blocks.
* PR1908: QoS library for CBS schedulerPetr Benes2012-04-159-0/+814
| | | | Add the lipqos and sptest.
* PR1908: QoS library for CBS schedulerPetr Benes2012-04-154-1/+4
| | | | | | | Since the CBS scheduler is inspired by AQuoSA project for Linux, additional API (qreslib) compliant with Linux has been created. Sptest for qreslib included.
* bsp/stm32f4: API changesSebastian Huber2012-04-159-83/+174
|
* PR 1912: Add Scheduler DocumentationPetr Benes2012-04-151-0/+646
| | | | Add new file for CBS documentation.
* PR 1912: Add Scheduler DocumentationPetr Benes2012-04-155-4/+13
| | | | | | Adds documentation on the scheduler options and scheduler selection to the User's Manual to reflect changes made in the development of pluggable scheduling with EDF and CBS schedulers.
* rbtree: PR2046: Replace rtems_rbtree_uniqueSebastian Huber2012-04-133-22/+6
|
* bsp/stm32f4: Add IO and RCCSebastian Huber2012-04-129-55/+487
|
* libblock: Add rtems_bdbuf_set_block_size()Sebastian Huber2012-04-126-85/+165
| | | | | | | | The new function rtems_bdbuf_set_block_size() must be used to set the block size of a disk device. It will check if the block size is valid and set the new fields block_to_media_block_shift and bds_per_group of the rtems_disk_device structure. This helps to avoid complex arithmetic operations in the block device buffer get and read path.
* libblock: Change error status to fatal errorSebastian Huber2012-04-122-24/+47
| | | | | Calling the bdbuf API functions in the not configured state is now a fatal error.
* libblock: Use unprotected chain operationsSebastian Huber2012-04-121-4/+4
| | | | The transfer chain is accessed by at most one thread at a time.
* libblock: Use unprotected chain operationsSebastian Huber2012-04-121-17/+17
| | | | The chains are protected by the bdbuf cache lock.
* doc: Document new macrosSebastian Huber2012-04-111-0/+7
|
* score: New macros and functionsSebastian Huber2012-04-114-5/+30
| | | | | | | | | | New macros o _Objects_Maximum_per_allocation(), o rtems_resource_is_unlimited(), and o rtems_resource_maximum_per_allocation(). New function o _Objects_Is_unlimited().
* nios2: New functionsSebastian Huber2012-04-112-0/+49
| | | | | | Add o _Nios2_MPU_Get_region_descriptor(), and o _Nios2_MPU_Set_region_registers().
* nios2: API changeSebastian Huber2012-04-113-4/+4
|
* rbheap: New filesSebastian Huber2012-04-1110-1/+1018
| | | | | | | In the Red-Black Tree Heap the administration data structures are not contained in the managed memory area. This can be used for example in a task stack allocator which protects the task stacks from access by other tasks.