source: rtems-docs/cpu-supplement/powerpc.rst @ ad5d632

5
Last change on this file since ad5d632 was 6297ad3, checked in by Sebastian Huber <sebastian.huber@…>, on 11/10/16 at 09:16:03

cpu-supplement: Document PowerPC SPRG0-2 usage

  • Property mode set to 100644
File size: 22.2 KB
Line 
1.. comment SPDX-License-Identifier: CC-BY-SA-4.0
2
3.. COMMENT: COPYRIGHT (c) 1988-2002.
4.. COMMENT: On-Line Applications Research Corporation (OAR).
5.. COMMENT: All rights reserved.
6
7PowerPC Specific Information
8****************************
9
10This chapter discusses the PowerPC architecture dependencies in this port of
11RTEMS.  The PowerPC family has a wide variety of implementations by a range of
12vendors.  Consequently, there are many, many CPU models within it.
13
14It is highly recommended that the PowerPC RTEMS application developer obtain
15and become familiar with the documentation for the processor being used as well
16as the specification for the revision of the PowerPC architecture which
17corresponds to that processor.
18
19**PowerPC Architecture Documents**
20
21For information on the PowerPC architecture, refer to the following documents
22available from Motorola and IBM:
23
24- *PowerPC Microprocessor Family: The Programming Environment*
25  (Motorola Document MPRPPCFPE-01).
26
27- *IBM PPC403GB Embedded Controller User's Manual*.
28
29- *PoweRisControl MPC500 Family RCPU RISC Central Processing
30  Unit Reference Manual* (Motorola Document RCPUURM/AD).
31
32- *PowerPC 601 RISC Microprocessor User's Manual*
33  (Motorola Document MPR601UM/AD).
34
35- *PowerPC 603 RISC Microprocessor User's Manual*
36  (Motorola Document MPR603UM/AD).
37
38- *PowerPC 603e RISC Microprocessor User's Manual*
39  (Motorola Document MPR603EUM/AD).
40
41- *PowerPC 604 RISC Microprocessor User's Manual*
42  (Motorola Document MPR604UM/AD).
43
44- *PowerPC MPC821 Portable Systems Microprocessor User's Manual*
45  (Motorola Document MPC821UM/AD).
46
47- *PowerQUICC MPC860 User's Manual*
48  (Motorola Document MPC860UM/AD).
49
50Motorola maintains an on-line electronic library for the PowerPC at the
51following URL:
52
53-  http://www.mot.com/powerpc/library/library.html
54
55This site has a a wealth of information and examples.  Many of the manuals are
56available from that site in electronic format.
57
58**PowerPC Processor Simulator Information**
59
60PSIM is a program which emulates the Instruction Set Architecture of the
61PowerPC microprocessor family.  It is reely available in source code form under
62the terms of the GNU General Public License (version 2 or later).  PSIM can be
63integrated with the GNU Debugger (gdb) to execute and debug PowerPC executables
64on non-PowerPC hosts.  PSIM supports the addition of user provided device
65models which can be used to allow one to develop and debug embedded
66applications using the simulator.
67
68The latest version of PSIM is included in GDB and enabled on pre-built binaries
69provided by the RTEMS Project.
70
71CPU Model Dependent Features
72============================
73
74This section presents the set of features which vary across PowerPC
75implementations and are of importance to RTEMS.  The set of CPU model feature
76macros are defined in the file ``cpukit/score/cpu/powerpc/powerpc.h`` based
77upon the particular CPU model specified on the compilation command line.
78
79Alignment
80---------
81
82The macro PPC_ALIGNMENT is set to the PowerPC model's worst case alignment
83requirement for data types on a byte boundary.  This value is used to derive
84the alignment restrictions for memory allocated from regions and partitions.
85
86Cache Alignment
87---------------
88
89The macro PPC_CACHE_ALIGNMENT is set to the line size of the cache.  It is used
90to align the entry point of critical routines so that as much code as possible
91can be retrieved with the initial read into cache.  This is done for the
92interrupt handler as well as the context switch routines.
93
94In addition, the "shortcut" data structure used by the PowerPC implementation
95to ease access to data elements frequently accessed by RTEMS routines
96implemented in assembly language is aligned using this value.
97
98Maximum Interrupts
99------------------
100
101The macro PPC_INTERRUPT_MAX is set to the number of exception sources supported
102by this PowerPC model.
103
104Has Double Precision Floating Point
105-----------------------------------
106
107The macro PPC_HAS_DOUBLE is set to 1 to indicate that the PowerPC model has
108support for double precision floating point numbers.  This is important because
109the floating point registers need only be four bytes wide (not eight) if double
110precision is not supported.
111
112Critical Interrupts
113-------------------
114
115The macro PPC_HAS_RFCI is set to 1 to indicate that the PowerPC model has the
116Critical Interrupt capability as defined by the IBM 403 models.
117
118Use Multiword Load/Store Instructions
119-------------------------------------
120
121The macro PPC_USE_MULTIPLE is set to 1 to indicate that multiword load and
122store instructions should be used to perform context switch operations.  The
123relative efficiency of multiword load and store instructions versus an
124equivalent set of single word load and store instructions varies based upon the
125PowerPC model.
126
127Instruction Cache Size
128----------------------
129
130The macro PPC_I_CACHE is set to the size in bytes of the instruction cache.
131
132Data Cache Size
133---------------
134
135The macro PPC_D_CACHE is set to the size in bytes of the data cache.
136
137Debug Model
138-----------
139
140The macro PPC_DEBUG_MODEL is set to indicate the debug support features present
141in this CPU model.  The following debug support feature sets are currently
142supported:
143
144*``PPC_DEBUG_MODEL_STANDARD``*
145    indicates that the single-step trace enable (SE) and branch trace enable
146    (BE) bits in the MSR are supported by this CPU model.
147
148*``PPC_DEBUG_MODEL_SINGLE_STEP_ONLY``*
149    indicates that only the single-step trace enable (SE) bit in the MSR is
150    supported by this CPU model.
151
152*``PPC_DEBUG_MODEL_IBM4xx``*
153    indicates that the debug exception enable (DE) bit in the MSR is supported
154    by this CPU model.  At this time, this particular debug feature set has
155    only been seen in the IBM 4xx series.
156
157Low Power Model
158~~~~~~~~~~~~~~~
159
160The macro PPC_LOW_POWER_MODE is set to indicate the low power model supported
161by this CPU model.  The following low power modes are currently supported.
162
163*``PPC_LOW_POWER_MODE_NONE``*
164    indicates that this CPU model has no low power mode support.
165
166*``PPC_LOW_POWER_MODE_STANDARD``*
167    indicates that this CPU model follows the low power model defined for the
168    PPC603e.
169
170Multilibs
171=========
172
173The following multilibs are available:
174
175#. ``.``: 32-bit PowerPC with FPU
176
177#. ``nof``: 32-bit PowerPC with software floating point support
178
179#. ``m403``: Instruction set for PPC403 with FPU
180
181#. ``m505``: Instruction set for MPC505 with FPU
182
183#. ``m603e``: Instruction set for MPC603e with FPU
184
185#. ``m603e/nof``: Instruction set for MPC603e with software floating
186   point support
187
188#. ``m604``: Instruction set for MPC604 with FPU
189
190#. ``m604/nof``: Instruction set for MPC604 with software floating point
191   support
192
193#. ``m860``: Instruction set for MPC860 with FPU
194
195#. ``m7400``: Instruction set for MPC7500 with FPU
196
197#. ``m7400/nof``: Instruction set for MPC7500 with software floating
198   point support
199
200#. ``m8540``: Instruction set for e200, e500 and e500v2 cores with
201   single-precision FPU and SPE
202
203#. ``m8540/gprsdouble``: Instruction set for e200, e500 and e500v2 cores
204   with double-precision FPU and SPE
205
206#. ``m8540/nof/nospe``: Instruction set for e200, e500 and e500v2 cores
207   with software floating point support and no SPE
208
209#. ``me6500/m32``: 32-bit instruction set for e6500 core with FPU and
210   AltiVec
211
212#. ``me6500/m32/nof/noaltivec``: 32-bit instruction set for e6500 core
213   with software floating point support and no AltiVec
214
215Calling Conventions
216===================
217
218RTEMS supports the Embedded Application Binary Interface (EABI) calling
219convention.  Documentation for EABI is available by sending a message with a
220subject line of "EABI" to eabi@goth.sis.mot.com.
221
222Programming Model
223-----------------
224
225This section discusses the programming model for the PowerPC architecture.
226
227Non-Floating Point Registers
228~~~~~~~~~~~~~~~~~~~~~~~~~~~~
229
230The PowerPC architecture defines thirty-two non-floating point registers
231directly visible to the programmer.  In thirty-two bit implementations, each
232register is thirty-two bits wide.  In sixty-four bit implementations, each
233register is sixty-four bits wide.
234
235These registers are referred to as ``gpr0`` to ``gpr31``.
236
237Some of the registers serve defined roles in the EABI programming model.  The
238following table describes the role of each of these registers:
239
240+---------------+----------------+------------------------------+
241| Register Name | Alternate Name |         Description          |
242+---------------+----------------+------------------------------+
243|      r1       |      sp        |         stack pointer        |
244+---------------+----------------+------------------------------+
245|               |                |  global pointer to the Small |
246|      r2       |      na        |     Constant Area (SDA2)     |
247+---------------+----------------+------------------------------+
248|    r3 - r12   |      na        | parameter and result passing |
249+---------------+----------------+------------------------------+
250|               |                |  global pointer to the Small |
251|      r13      |      na        |         Data Area (SDA)      |
252+---------------+----------------+------------------------------+
253
254Floating Point Registers
255~~~~~~~~~~~~~~~~~~~~~~~~
256
257The PowerPC architecture includes thirty-two, sixty-four bit floating point
258registers.  All PowerPC floating point instructions interpret these registers
259as 32 double precision floating point registers, regardless of whether the
260processor has 64-bit or 32-bit implementation.
261
262The floating point status and control register (fpscr) records exceptions and
263the type of result generated by floating-point operations.  Additionally, it
264controls the rounding mode of operations and allows the reporting of floating
265exceptions to be enabled or disabled.
266
267Special Registers
268~~~~~~~~~~~~~~~~~
269
270The PowerPC architecture includes a number of special registers which are
271critical to the programming model:
272
273*Special-Purpose Register General 0 (SPRG0)*
274    On SMP configurations, this register contains the address of the per-CPU
275    control of the processor.
276
277*Special-Purpose Register General 1 (SPRG1)*
278    This register contains the interrupt stack pointer for the outer-most
279    interrupt service routine.
280
281*Special-Purpose Register General 2 (SPRG2)*
282    This register contains the address of interrupt stack area begin.
283
284*Machine State Register*
285    The MSR contains the processor mode, power management mode, endian mode,
286    exception information, privilege level, floating point available and
287    floating point excepiton mode, address translation information and the
288    exception prefix.
289
290*Link Register*
291    The LR contains the return address after a function call.  This register
292    must be saved before a subsequent subroutine call can be made.  The use of
293    this register is discussed further in the *Call and Return Mechanism*
294    section below.
295
296*Count Register*
297    The CTR contains the iteration variable for some loops.  It may also be
298    used for indirect function calls and jumps.
299
300Call and Return Mechanism
301-------------------------
302
303The PowerPC architecture supports a simple yet effective call and return
304mechanism.  A subroutine is invoked via the "branch and link" (``bl``) and
305"brank and link absolute" (``bla``) instructions.  This instructions place the
306return address in the Link Register (LR).  The callee returns to the caller by
307executing a "branch unconditional to the link register" (``blr``) instruction.
308Thus the callee returns to the caller via a jump to the return address which is
309stored in the LR.
310
311The previous contents of the LR are not automatically saved by either the
312``bl`` or ``bla``.  It is the responsibility of the callee to save the contents
313of the LR before invoking another subroutine.  If the callee invokes another
314subroutine, it must restore the LR before executing the ``blr`` instruction to
315return to the caller.
316
317It is important to note that the PowerPC subroutine call and return mechanism
318does not automatically save and restore any registers.
319
320The LR may be accessed as special purpose register 8 (``SPR8``) using the "move
321from special register" (``mfspr``) and "move to special register" (``mtspr``)
322instructions.
323
324Calling Mechanism
325-----------------
326
327All RTEMS directives are invoked using the regular PowerPC EABI calling
328convention via the ``bl`` or``bla`` instructions.
329
330Register Usage
331--------------
332
333As discussed above, the call instruction does not automatically save any
334registers.  It is the responsibility of the callee to save and restore any
335registers which must be preserved across subroutine calls.  The callee is
336responsible for saving callee-preserved registers to the program stack and
337restoring them before returning to the caller.
338
339Parameter Passing
340-----------------
341
342RTEMS assumes that arguments are placed in the general purpose registers with
343the first argument in register 3 (``r3``), the second argument in general
344purpose register 4 (``r4``), and so forth until the seventh argument is in
345general purpose register 10 (``r10``).  If there are more than seven arguments,
346then subsequent arguments are placed on the program stack.  The following
347pseudo-code illustrates the typical sequence used to call a RTEMS directive
348with three (3) arguments:
349
350.. code-block:: c
351
352    load third argument into r5
353    load second argument into r4
354    load first argument into r3
355    invoke directive
356
357Memory Model
358============
359
360Flat Memory Model
361-----------------
362
363The PowerPC architecture supports a variety of memory models.  RTEMS supports
364the PowerPC using a flat memory model with paging disabled.  In this mode, the
365PowerPC automatically converts every address from a logical to a physical
366address each time it is used.  The PowerPC uses information provided in the
367Block Address Translation (BAT) to convert these addresses.
368
369Implementations of the PowerPC architecture may be thirty-two or sixty-four
370bit.  The PowerPC architecture supports a flat thirty-two or sixty-four bit
371address space with addresses ranging from 0x00000000 to 0xFFFFFFFF (4
372gigabytes) in thirty-two bit implementations or to 0xFFFFFFFFFFFFFFFF in
373sixty-four bit implementations.  Each address is represented by either a
374thirty-two bit or sixty-four bit value and is byte addressable.  The address
375may be used to reference a single byte, half-word (2-bytes), word (4 bytes), or
376in sixty-four bit implementations a doubleword (8 bytes).  Memory accesses
377within the address space are performed in big or little endian fashion by the
378PowerPC based upon the current setting of the Little-endian mode enable bit
379(LE) in the Machine State Register (MSR).  While the processor is in big endian
380mode, memory accesses which are not properly aligned generate an "alignment
381exception" (vector offset 0x00600).  In little endian mode, the PowerPC
382architecture does not require the processor to generate alignment exceptions.
383
384The following table lists the alignment requirements for a variety of data
385accesses:
386
387==============  ======================
388Data Type       Alignment Requirement
389==============  ======================
390byte            1
391half-word       2
392word            4
393doubleword      8
394==============  ======================
395
396Doubleword load and store operations are only available in PowerPC CPU models
397which are sixty-four bit implementations.
398
399RTEMS does not directly support any PowerPC Memory Management Units, therefore,
400virtual memory or segmentation systems involving the PowerPC are not supported.
401
402Interrupt Processing
403====================
404
405Although RTEMS hides many of the processor dependent details of interrupt
406processing, it is important to understand how the RTEMS interrupt manager is
407mapped onto the processor's unique architecture. Discussed in this chapter are
408the PowerPC's interrupt response and control mechanisms as they pertain to
409RTEMS.
410
411RTEMS and associated documentation uses the terms interrupt and vector.  In the
412PowerPC architecture, these terms correspond to exception and exception
413handler, respectively.  The terms will be used interchangeably in this manual.
414
415Synchronous Versus Asynchronous Exceptions
416------------------------------------------
417
418In the PowerPC architecture exceptions can be either precise or imprecise and
419either synchronous or asynchronous.  Asynchronous exceptions occur when an
420external event interrupts the processor.  Synchronous exceptions are caused by
421the actions of an instruction. During an exception SRR0 is used to calculate
422where instruction processing should resume.  All instructions prior to the
423resume instruction will have completed execution.  SRR1 is used to store the
424machine status.
425
426There are two asynchronous nonmaskable, highest-priority exceptions system
427reset and machine check.  There are two asynchrononous maskable low-priority
428exceptions external interrupt and decrementer.  Nonmaskable execptions are
429never delayed, therefore if two nonmaskable, asynchronous exceptions occur in
430immediate succession, the state information saved by the first exception may be
431overwritten when the subsequent exception occurs.
432
433The PowerPC arcitecure defines one imprecise exception, the imprecise floating
434point enabled exception.  All other synchronous exceptions are precise.  The
435synchronization occuring during asynchronous precise exceptions conforms to the
436requirements for context synchronization.
437
438Vectoring of Interrupt Handler
439------------------------------
440
441Upon determining that an exception can be taken the PowerPC automatically
442performs the following actions:
443
444- an instruction address is loaded into SRR0
445
446- bits 33-36 and 42-47 of SRR1 are loaded with information specific to the
447  exception.
448
449- bits 0-32, 37-41, and 48-63 of SRR1 are loaded with corresponding bits from
450  the MSR.
451
452- the MSR is set based upon the exception type.
453
454- instruction fetch and execution resumes, using the new MSR value, at a
455  location specific to the execption type.
456
457If the interrupt handler was installed as an RTEMS interrupt handler, then upon
458receipt of the interrupt, the processor passes control to the RTEMS interrupt
459handler which performs the following actions:
460
461- saves the state of the interrupted task on it's stack,
462
463- saves all registers which are not normally preserved by the calling sequence
464  so the user's interrupt service routine can be written in a high-level
465  language.
466
467- if this is the outermost (i.e. non-nested) interrupt, then the RTEMS
468  interrupt handler switches from the current stack to the interrupt stack,
469
470- enables exceptions,
471
472- invokes the vectors to a user interrupt service routine (ISR).
473
474Asynchronous interrupts are ignored while exceptions are disabled.  Synchronous
475interrupts which occur while are disabled result in the CPU being forced into
476an error mode.
477
478A nested interrupt is processed similarly with the exception that the current
479stack need not be switched to the interrupt stack.
480
481Interrupt Levels
482----------------
483
484The PowerPC architecture supports only a single external asynchronous interrupt
485source.  This interrupt source may be enabled and disabled via the External
486Interrupt Enable (EE) bit in the Machine State Register (MSR).  Thus only two
487level (enabled and disabled) of external device interrupt priorities are
488directly supported by the PowerPC architecture.
489
490Some PowerPC implementations include a Critical Interrupt capability which is
491often used to receive interrupts from high priority external devices.
492
493The RTEMS interrupt level mapping scheme for the PowerPC is not a numeric level
494as on most RTEMS ports.  It is a bit mapping in which the least three
495significiant bits of the interrupt level are mapped directly to the enabling of
496specific interrupt sources as follows:
497
498*Critical Interrupt*
499    Setting bit 0 (the least significant bit) of the interrupt level enables
500    the Critical Interrupt source, if it is available on this CPU model.
501
502*Machine Check*
503    Setting bit 1 of the interrupt level enables Machine Check execptions.
504
505*External Interrupt*
506    Setting bit 2 of the interrupt level enables External Interrupt execptions.
507
508All other bits in the RTEMS task interrupt level are ignored.
509
510Default Fatal Error Processing
511==============================
512
513The default fatal error handler for this architecture performs the following
514actions:
515
516- places the error code in r3, and
517
518- executes a trap instruction which results in a Program Exception.
519
520If the Program Exception returns, then the following actions are performed:
521
522- disables all processor exceptions by loading a 0 into the MSR, and
523
524- goes into an infinite loop to simulate a halt processor instruction.
525
526Symmetric Multiprocessing
527=========================
528
529SMP is supported.  Available platforms are the Freescale QorIQ P series (e.g.
530P1020) and T series (e.g. T2080, T4240).
531
532Thread-Local Storage
533====================
534
535Thread-local storage is supported.
536
537Board Support Packages
538======================
539
540System Reset
541------------
542
543An RTEMS based application is initiated or re-initiated when the PowerPC
544processor is reset.  The PowerPC architecture defines a Reset Exception, but
545leaves the details of the CPU state as implementation specific.  Please refer
546to the User's Manual for the CPU model in question.
547
548In general, at power-up the PowerPC begin execution at address 0xFFF00100 in
549supervisor mode with all exceptions disabled.  For soft resets, the CPU will
550vector to either 0xFFF00100 or 0x00000100 depending upon the setting of the
551Exception Prefix bit in the MSR.  If during a soft reset, a Machine Check
552Exception occurs, then the CPU may execute a hard reset.
553
554Processor Initialization
555------------------------
556
557If this PowerPC implementation supports on-chip caching and this is to be
558utilized, then it should be enabled during the reset application initialization
559code.  On-chip caching has been observed to prevent some emulators from working
560properly, so it may be necessary to run with caching disabled to use these
561emulators.
562
563In addition to the requirements described in the*Board Support Packages*
564chapter of the RTEMS C Applications User's Manual for the reset code which is
565executed before the call to ``rtems_initialize_executive``, the PowrePC version
566has the following specific requirements:
567
568- Must leave the PR bit of the Machine State Register (MSR) set to 0 so the
569  PowerPC remains in the supervisor state.
570
571- Must set stack pointer (sp or r1) such that a minimum stack size of
572  MINIMUM_STACK_SIZE bytes is provided for the RTEMS initialization sequence.
573
574- Must disable all external interrupts (i.e. clear the EI (EE) bit of the
575  machine state register).
576
577- Must enable traps so window overflow and underflow conditions can be properly
578  handled.
579
580- Must initialize the PowerPC's initial Exception Table with default handlers.
Note: See TracBrowser for help on using the repository browser.