summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/qoriq (follow)
Commit message (Collapse)AuthorAgeFilesLines
* smp: Add and use _Per_CPU_Get()Sebastian Huber2013-07-301-2/+5
| | | | | | Add and use _Per_CPU_Get_by_index() and _Per_CPU_Get_index(). Add _Per_CPU_Send_interrupt(). This avoids direct access of _Per_CPU_Information.
* smp: Add and use _CPU_SMP_Send_interrupt()Sebastian Huber2013-07-171-2/+3
| | | | Delete bsp_smp_interrupt_cpu().
* smp: Add and use _CPU_SMP_Get_current_processor()Sebastian Huber2013-07-171-5/+0
| | | | | | | | | | Add and use _SMP_Get_current_processor() and rtems_smp_get_current_processor(). Delete bsp_smp_interrupt_cpu(). Change type of current processor index from int to uint32_t to match _SMP_Processor_count type.
* termios: Update due to API changesSebastian Huber2013-06-251-21/+23
| | | | | Termios notifies now the driver about an inactive transmit with the length argument set to zero.
* bsps/powerpc: Delete bsp_exceptions_in_RAMSebastian Huber2013-06-212-6/+6
| | | | | Delete ppc_exc_vector_base. Add and use ppc_exc_initialize_with_vector_base().
* bsp/qoriq: Add missing #ifdef RTEMS_SMPSebastian Huber2013-06-031-0/+6
|
* bsp/qoriq: Add SMP supportSebastian Huber2013-05-316-8/+252
|
* bsp/qoriq: Avoid NULL pointer accessSebastian Huber2013-05-271-5/+11
|
* bsps: Update due to linker changesSebastian Huber2013-05-272-0/+16
| | | | | | | In case the VMA and LMA regions differ, the LMA start address is now no longer aligned with the alignment of the input sections: http://sourceware.org/bugzilla/show_bug.cgi?id=15222
* bsps/powerpc: Use proper typeSebastian Huber2013-04-081-3/+3
|
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-40/+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.
* libchip/serial: Add const qualifierSebastian Huber2013-02-113-4/+4
|
* bsps/powerpc: Use explicit compiler optionsSebastian Huber2012-12-071-1/+2
|
* bsps/powerpc: Add .nvram sectionSebastian Huber2012-12-033-6/+12
|
* bsp/qoriq: Set PPC_EXC_CONFIG_BOOKE_ONLYSebastian Huber2012-12-031-0/+4
|
* bsp/qoriq: Set PPC_EXC_CONFIG_USE_FIXED_HANDLERSebastian Huber2012-12-034-3/+40
|
* bsps/powerpc: Exception initialization error is fatalSebastian Huber2012-11-151-5/+1
|
* bsps: Interrupt initialization error is fatalSebastian Huber2012-11-151-4/+1
|
* score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber2012-11-151-2/+4
| | | | | | | 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().
* sapi: Use rtems_config*_get_interrupt_stack_sizeSebastian Huber2012-11-071-1/+1
|
* bsp/qoriq: Fix maximum packet sizeSebastian Huber2012-10-081-1/+1
|
* Revert "Add bspopts.h.in."Gedare Bloom2012-08-061-101/+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.
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* bsps: Replace NIRVANA regionSebastian Huber2012-06-123-9/+6
| | | | | Replace the "NIRVANA" region with the more verbose "UNEXPECTED_SECTIONS" region. Move the region definition into the "linkcmds.base" files.
* bsps/powerpc: Add load section for .nocacheSebastian Huber2012-06-043-3/+6
|
* bsp/qoriq: New BSP optionSebastian Huber2012-06-042-0/+6
| | | | New BSP option BSP_USE_DATA_CACHE_BLOCK_TOUCH.
* Add bspopts.h.in.Ralf Corsépius2012-05-241-0/+98
|
* powerpc/qoriq: Fix due to console API changesSebastian Huber2012-05-211-2/+2
|
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1129-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.
* Revert: Remove CVS IdsJoel Sherrill2012-05-072-0/+8
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-042-8/+0
|
* bsps/powerpc: Add no cache sectionSebastian Huber2012-04-243-0/+3
|
* bsps: Update due to API changesSebastian Huber2012-04-071-5/+5
|
* bsps: More accurate PowerPC clock driverSebastian Huber2012-04-021-1/+1
| | | | | | 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.
* bsps: Add shared default IRQ handlerSebastian Huber2012-03-242-11/+7
|
* Remove all .cvsignore files.Joel Sherrill2012-02-012-10/+0
|
* 2011-12-13 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-12-132-2/+5
| | | | * make/custom/qoriq.inc: Remove -W* flags.
* 2011-10-20 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-10-203-0/+53
| | | | | | PR 1926/bsps * timer/timer.c: New file. * Makefile.am: Reflect change above.
* 2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett2011-10-186-15/+23
| | | | | | | PR 1917/bsps * Makefile.am, console/console-config.c, console/uart-bridge-master.c, console/uart-bridge-slave.c, startup/bspstart.c: Modifications to add dynamic tables for libchip serial drivers.
* New (Missing from BSP import).Ralf Corsepius2011-10-021-0/+155
|
* 2011-08-31 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-08-313-376/+6
| | | | | * startup/linkcmds.base: Removed file. * Makefile.am: Reflect change above.
* 2011-07-21 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2011-07-2143-0/+5223
PR 1799/bsps * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac, clock/clock-config.c, console/console-config.c, console/uart-bridge-master.c, console/uart-bridge-slave.c, include/.cvsignore, include/bsp.h, include/hwreg_vals.h, include/intercom.h, include/irq.h, include/mmu.h, include/qoriq.h, include/tm27.h, include/tsec-config.h, include/u-boot-config.h, include/uart-bridge.h, irq/irq.c, make/custom/qoriq.inc, make/custom/qoriq_core_0.cfg, make/custom/qoriq_core_1.cfg, make/custom/qoriq_p1020rdb.cfg, network/if_intercom.c, network/network.c, rtc/rtc-config.c, shmsupp/intercom-mpci.c, shmsupp/intercom.c, shmsupp/lock.S, start/start.S, startup/bsppredriverhook.c, startup/bspreset.c, startup/bspstart.c, startup/linkcmds.base, startup/linkcmds.qoriq_core_0, startup/linkcmds.qoriq_core_1, startup/linkcmds.qoriq_p1020rdb, startup/mmu-config.c, startup/mmu-tlb1.S, startup/mmu.c: New files.