15. PowerPC Specific Information¶
15.1. Multilibs¶
The following multilibs are available:
.
: 32-bit PowerPC with FPUnof
: 32-bit PowerPC with software floating point supportm403
: Instruction set for PPC403 with FPUm505
: Instruction set for MPC505 with FPUm603e
: Instruction set for MPC603e with FPUm603e/nof
: Instruction set for MPC603e with software floating point supportm604
: Instruction set for MPC604 with FPUm604/nof
: Instruction set for MPC604 with software floating point supportm860
: Instruction set for MPC860 with FPUm7400
: Instruction set for MPC7500 with FPUm7400/nof
: Instruction set for MPC7500 with software floating point supportm8540
: Instruction set for e200, e500 and e500v2 cores with single-precision FPU and SPEm8540/gprsdouble
: Instruction set for e200, e500 and e500v2 cores with double-precision FPU and SPEm8540/nof/nospe
: Instruction set for e200, e500 and e500v2 cores with software floating point support and no SPEme6500/m32
: 32-bit instruction set for e6500 core with FPU and AltiVecme6500/m32/nof/noaltivec
: 32-bit instruction set for e6500 core with software floating point support and no AltiVecme6500/m64
: 64-bit instruction set for e6500 core with FPU and AltiVecme6500/m64/nof/noaltivec
: 64-bit instruction set for e6500 core with software floating point support and no AltiVec
15.2. Application Binary Interface¶
In 32-bit PowerPC configurations the ABI defined by Power Architecture 32-bit Application Binary Interface Supplement 1.0 - Embedded is used.
In 64-bit PowerPC configurations the ABI defined by Power Architecture 64-Bit ELF V2 ABI Specification, Version 1.1 is used.
15.3. Special Registers¶
The following special-purpose registers are used by RTEMS:
- Special-Purpose Register General 0 (SPRG0)
In SMP configurations, this register contains the address of the per-CPU control of the processor.
- Special-Purpose Register General 1 (SPRG1)
This register contains the interrupt stack pointer for the outer-most interrupt service routine.
- Special-Purpose Register General 2 (SPRG2)
This register contains the address of interrupt stack area begin.
15.4. Memory Model¶
The memory model is flat.
15.5. Interrupt Processing¶
15.5.1. Interrupt Levels¶
There are exactly two interrupt levels on PowerPC with respect to RTEMS. Level zero corresponds to interrupts enabled. Level one corresponds to interrupts disabled.
15.5.2. Interrupt Stack¶
The interrupt stack size can be configured via the
CONFIGURE_INTERRUPT_STACK_SIZE
application configuration option.
15.6. Default Fatal Error Processing¶
The default fatal error handler is BSP-specific.
15.7. Symmetric Multiprocessing¶
SMP is supported. Available platforms are the Freescale QorIQ P series (e.g. P1020) and T series (e.g. T2080, T4240).
15.8. Thread-Local Storage¶
Thread-local storage is supported.
15.9. 64-bit Caveats¶
The thread pointer is
r13
in contrast tor2
used in the 32-bit ABI.The TOC pointer is
r2
. It must be initialized as part of the C run-time setup. A valid stack pointer is not enough to call C functions. They may use the TOC to get addresses and constants.The TOC must be within the first 2GiB of the address space. This simplifies the interrupt prologue, since the
r2
can be set to.TOC.
via the usuallis
followed byori
combination. Thelis
is subject to sign-extension.The
PPC_REG_LOAD
,PPC_REG_STORE
,PPC_REG_STORE_UPDATE
, andPPC_REG_CMP
macros are available for assembly code to provide register size operations selected by the GCC-m32
and-m64
options.The
MSR[CM]
bit must be set all the time, otherwise the MMU translation my yield unexpected results. TheEPCR[ICM]
orEPCR[GICM]
bits may be used to enable the 64-bit compute mode for exceptions.