summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-05-04Remove CVS-Ids.Ralf Corsépius20-68/+0
2012-05-03nds/linkcmds - Remove execute permissionJoel Sherrill1-0/+0
2012-05-03General - Remove extraneous blank line in license messageJoel Sherrill58-45/+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-05-02smdk2410 - Remove odd $Id$Joel Sherrill1-2/+0
2012-05-02gp32 - Remove odd $Id$Joel Sherrill1-3/+0
2012-05-02pc386 - Remove odd $Id$Joel Sherrill7-14/+0
2012-05-02score603e - Remove bad $Id$ and clean up file headerJoel Sherrill1-4/+6
2012-05-02LEON3 - Remove bad $Id$ and clean up file headerJoel Sherrill1-4/+6
2012-05-02LEON2 - Remove bad $Id$ and clean up file headerJoel Sherrill1-4/+6
2012-05-02MRM332 - Remove incorrect $Id$ string and correct file headerJoel Sherrill2-2/+26
2012-04-26bsps/stackalloc: Add initialization hookSebastian Huber2-16/+23
2012-04-24bsp/mpc55xxevb: Enable stack allocatorSebastian Huber6-4/+10
2012-04-24bsps/stackalloc: Use stack section symbolsSebastian Huber5-55/+26
2012-04-24bsps/powerpc: Add no cache sectionSebastian Huber14-89/+78
2012-04-24bsp/mpc55xxevb: Change early MMU settingsSebastian Huber3-17/+28
Add internal SRAM sections with cache enabled to early MMU settings. The internal SRAM initialization will use the early MMU settings. This allows applications to use cache inhibited areas in the internal SRAM.
2012-04-23bsp/lpc24xx: Fix define nameSebastian Huber1-1/+1
2012-04-20bsps/arm: Make the Clock_isr() static againSebastian Huber1-1/+1
2012-04-20bsps: Avoid rtems_irq_hdl_param type usageSebastian Huber1-2/+1
Not every clock interrupt service routine is installed with this API. Remove also the prototype to allow drivers to make this routine static.
2012-04-20bsp/genmcf548x: Enable FPU in BSP startup codeSebastian Huber1-13/+5
2012-04-20bsp/genmcf548x: Fix BSP optionsSebastian Huber1-3/+4
2012-04-20bsps/arm: Remove superfluous includeSebastian Huber1-1/+0
2012-04-19lpc shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill1-1/+1
2012-04-19armv7m shared: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill1-1/+2
2012-04-19nds: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill1-15/+8
2012-04-19gba: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill1-32/+25
2012-04-19edb7312: Clock driver clean up and ISR Handler Prototype Correction.Joel Sherrill1-19/+14
2012-04-19Clock Driver Shell - Correct PIC IRQ Prototype.Joel Sherrill1-2/+2
2012-04-19LEON3: rename console/debugputs.c to printk_support.cDaniel Hellstrom2-1/+1
2012-04-19LEON3: added TX-wait-complete and CR on NL support for UARTDaniel Hellstrom2-6/+23
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-19LEON3: debugputs removed pointless isinit code, invoked only onceDaniel Hellstrom1-34/+26
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-19LEON3: debugputs added printk mem buffer when no UART presentDaniel Hellstrom1-1/+13
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-19LEON3: add console interrupt mode supportDaniel Hellstrom2-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>
2012-04-19LEON3: add console attributes such as parity and baudrateDaniel Hellstrom1-3/+68
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-19LEON3: console, lower bus utilization waiting for UART TX readyDaniel Hellstrom1-3/+7
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-17LEON: updated drivers to use new AMBAPP LayerDaniel Hellstrom31-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>
2012-04-17LEON3: Network initialization code updated to new AMBAPP layerDaniel Hellstrom3-41/+50
Updated SMC91111, GRETH and open_eth driver registration code to use new AMBAPP Layer. Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-17LEON3: updated console driver for new AMBAPP layerDaniel Hellstrom7-43/+75
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-17LEON2: clock driver use new AMBAPP layerDaniel Hellstrom1-8/+8
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-17LEON: updated AMBA PnP APIDaniel Hellstrom19-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>
2012-04-16no_cpu: replace no_cpu_isr with rtems_isrGedare Bloom2-3/+3
2012-04-16lm32: use shared setvec.cGedare Bloom2-44/+1
2012-04-16m68k: use shared setvec.cGedare Bloom23-60/+23
2012-04-16lm32: replace lm32_isr with rtems_isrGedare Bloom2-3/+3
2012-04-16m68k: replace m68k_isr with rtems_isrGedare Bloom33-56/+56
2012-04-15bsp/stm32f4: API changesSebastian Huber9-83/+174
2012-04-12bsp/stm32f4: Add IO and RCCSebastian Huber9-55/+487
2012-04-10PR2052: LEON3: fix open_eth interrupt initialization bugDaniel Hellstrom1-4/+4
Fixed a bug where the vector number is used to clean and unmask the IRQ at the IRQ controller, the irq number must be used. Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2012-04-07bsp/stm32f4: New BSPSebastian Huber17-0/+1085
2012-04-07bsps/arm: Add BSP_ARMV7M_SYSTICK_PRIORITYSebastian Huber3-5/+6
2012-04-07bsps/arm: Add BSP_ARMV7M_IRQ_PRIORITY_DEFAULTSebastian Huber3-2/+6