summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen83xx (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-07-16remaining bsp.h: Fix by hand to LIBBSP_@CPU@_@BSP_FAMILY@_BSP_HJoel Sherrill1-2/+2
These files were left after running the script in the previous patch.
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-10-19powerpc/gen83xx: Fix warningsJoel Sherrill4-464/+491
2014-10-19powerpc/gen83xx/startup/bsprestart.c: Fix set but not used warningJoel Sherrill1-0/+1
2014-10-16powerpc/gen83xx: Fix unused variable warningsJoel Sherrill2-2/+6
2014-10-07libchip/serial: Add alternative NS16550 driverSebastian Huber3-85/+73
Use the Termios device API.
2014-09-18bsps: Fix build errorSebastian Huber2-6/+0
Fix build error introduced in f535fe5311978af53635c2da8e5cb10ef9d78802.
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-6/+6
Apparently, at some point automake output changed and these were not updated.
2014-05-08bsp/gen83xx: Disable interrupt nesting for br_uidSebastian Huber1-2/+3
This is necessary for the USB support.
2014-05-06bsp/gen83xx: Add BSP_USB_EHCI_MPC83XX_HAS_ULPISebastian Huber1-0/+3
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns17-17/+17
2014-02-24bsps/powerpc: Use System V small-data areaSebastian Huber1-1/+1
The 32-bit ABIs for thread-local storage (TLS) and EABI read-only small-data area have a conflicting register (r2) usage. Use the System V small-data instead (here r2 is system reserved).
2014-02-19powerpc: Change interrupt disable implemetationSebastian Huber1-1/+0
Instead of SPRG0 (= special purpose register 272) use the new global symbol _PPC_INTERRUPT_DISABLE_MASK to store the interrupt disable mask. The benefit is that it is now possible to disable interrupts without further run-time initialization in boot_card(). At least on Freescale e500 cores this leads also to a faster execution since the mfmsr and mfspr instruction require four cycles to complete. The instructions to load the mask value can execute while the mfmsr is in progress.
2014-02-14score: Add CPU counter supportSebastian Huber1-0/+3
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-07-18bsp/gen83xx: Fix BSP options for MPC8348EAMDSRalf Kirchner1-2/+1
2013-04-08bsps/powerpc: Use proper typeSebastian Huber1-3/+3
2013-03-21bsp/mpc83xx: Add MPC83XX_NET*_INTERFACE_0_PHY_ADDRSebastian Huber1-0/+5
2013-03-14mpc83xx: Add and use mpc83xx_reset()Sebastian Huber1-15/+3
The inline version makes it possible to use this code in different memory areas.
2013-03-14mpc83xx: Use shared linkcmds.baseSebastian Huber13-495/+129
2013-03-14mpc83xx: Copy nothing if necessarySebastian Huber1-0/+3
2013-03-14mpc83xx: Fix local access window 1 configurationSebastian Huber1-0/+10
2013-03-14mpc83xx: Add MPC83XX_HAS_NAND_LP_FLASH_ON_CS0Sebastian Huber3-9/+27
2013-03-08RTEMS: Delete ChangeLog files.Gedare Bloom1-630/+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-01-18bsp/gen83xx: Disable caches in bsp_restart()Sebastian Huber1-1/+23
2013-01-09bsp/gen83xx: Register I2C SEMTECH SC620 driverSebastian Huber1-0/+12
2013-01-09bsps/powerpc: Add probe handler to I2C driverSebastian Huber1-52/+49
2013-01-09bsp/gen83xx: Invalidate caches only if disabledSebastian Huber1-3/+10
2013-01-09bsp/gen83xx: System reset after fatal conditionsSebastian Huber1-1/+1
2013-01-09bsp/gen83xx: Add bsp_restart()Sebastian Huber3-0/+27
2013-01-09bsp/gen83xx: Delete obsolete regionSebastian Huber1-1/+0
2012-12-21bsp/gen83xx: Fix CSB clock calculation for MPC8309Sebastian Huber1-1/+6
2012-12-03bsp/gen83xx: Workaround for USB stackSebastian Huber1-0/+3
2012-12-03bsp/gen83xx: Add sections for USB stackSebastian Huber1-0/+6
2012-11-15bsps/powerpc: Exception initialization error is fatalSebastian Huber1-4/+1
2012-11-15bsps: Interrupt initialization error is fatalSebastian Huber1-4/+1
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber1-4/+5
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-08-20bsp/gen83xx: Add br_uid BSP variantThomas Doerfler7-0/+124
2012-08-06Revert "Add bspopts.h.in."Gedare Bloom1-67/+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-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 Huber6-9/+11
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/+67
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill24-62/+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-07Revert: Remove CVS IdsJoel Sherrill2-0/+6
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius2-6/+0
2012-04-02bsp/gen83xx: Fix console driver configurationSebastian Huber1-1/+1
2012-04-02bsp/gen83xx: Removed fileSebastian Huber1-57/+0
2012-04-02bsp/gen83xx: RegenerateSebastian Huber1-36/+40
2012-04-02bsps: More accurate PowerPC clock driverSebastian Huber1-3/+6
The clock driver used previously the bsp_clicks_per_usec value. For a 33333333Hz time base frequency this leads to a relative error of one per cent for example due to integer truncation.