source: rtems/c/src/lib/libcpu/powerpc/new-exceptions/cpu.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

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.

  • Property mode set to 100644
File size: 5.0 KB
Line 
1/*
2 *  PowerPC CPU Dependent Source
3 *
4 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
5 *
6 *  COPYRIGHT (c) 1995 by i-cubed ltd.
7 *
8 *  To anyone who acknowledges that this file is provided "AS IS"
9 *  without any express or implied warranty:
10 *      permission to use, copy, modify, and distribute this file
11 *      for any purpose is hereby granted without fee, provided that
12 *      the above copyright notice and this notice appears in all
13 *      copies, and that the name of i-cubed limited not be used in
14 *      advertising or publicity pertaining to distribution of the
15 *      software without specific, written prior permission.
16 *      i-cubed limited makes no representations about the suitability
17 *      of this software for any purpose.
18 *
19 *  Derived from c/src/exec/cpu/no_cpu/cpu.c:
20 *
21 *  COPYRIGHT (c) 1989-1997.
22 *  On-Line Applications Research Corporation (OAR).
23 *
24 *  The license and distribution terms for this file may be found in
25 *  the file LICENSE in this distribution or at
26 *  http://www.rtems.com/license/LICENSE.
27 */
28
29#include <string.h>
30
31#include <rtems/system.h>
32#include <rtems/score/isr.h>
33#include <rtems/score/context.h>
34#include <rtems/score/thread.h>
35#include <rtems/score/interr.h>
36#include <rtems/score/cpu.h>
37#include <rtems/powerpc/powerpc.h>
38
39/*  _CPU_Initialize
40 *
41 *  This routine performs processor dependent initialization.
42 *
43 *  INPUT PARAMETERS: NONE
44 */
45
46void _CPU_Initialize(void)
47{
48  /* Do nothing */
49#ifdef __ALTIVEC__
50  _CPU_Initialize_altivec();
51#endif
52}
53
54/*PAGE
55 *
56 *  _CPU_Context_Initialize
57 */
58
59void _CPU_Context_Initialize(
60  Context_Control  *the_context,
61  uint32_t         *stack_base,
62  uint32_t          size,
63  uint32_t          new_level,
64  void             *entry_point,
65  bool              is_fp
66)
67{
68  uint32_t   msr_value;
69  uint32_t   sp;
70
71  sp = (uint32_t)stack_base + size - PPC_MINIMUM_STACK_FRAME_SIZE;
72
73  sp &= ~(CPU_STACK_ALIGNMENT-1);
74
75  *((uint32_t*)sp) = 0;
76
77  _CPU_MSR_GET( msr_value );
78
79  /*
80   * Setting the interrupt mask here is not strictly necessary
81   * since the IRQ level will be established from _Thread_Handler()
82   * again, as soon as the task starts execution.
83   * Because we have to establish a defined state anyways we
84   * can as well leave this code here.
85   * I.e., simply (and unconditionally) saying
86   *
87   *   msr_value &= ~ppc_interrupt_get_disable_mask();
88   *
89   * would be an alternative.
90   */
91
92  if (!(new_level & CPU_MODES_INTERRUPT_MASK)) {
93    msr_value |= ppc_interrupt_get_disable_mask();
94  }
95  else {
96    msr_value &= ~ppc_interrupt_get_disable_mask();
97  }
98
99  /*
100   *  The FP bit of the MSR should only be enabled if this is a floating
101   *  point task.  Unfortunately, the vfprintf_r routine in newlib
102   *  ends up pushing a floating point register regardless of whether or
103   *  not a floating point number is being printed.  Serious restructuring
104   *  of vfprintf.c will be required to avoid this behavior.  At this
105   *  time (7 July 1997), this restructuring is not being done.
106   */
107
108  /* Make sure integer tasks have no FPU access in order to
109   * catch violations. Gcc may implicitely use the FPU and
110   * data corruption may happen.
111   * Since we set the_contex->msr using our current MSR,
112   * we must make sure MSR_FP is off if (!is_fp)...
113   * Unfortunately, this means that users of vfprintf_r have to use FP
114   * tasks or fix vfprintf. Furthermore, users of int-only tasks
115   * must prevent gcc from using the FPU (currently -msoft-float is the
116   * only way...)
117   */
118  if ( is_fp )
119    msr_value |= PPC_MSR_FP;
120  else
121    msr_value &= ~PPC_MSR_FP;
122
123  memset( the_context, 0, sizeof( *the_context ) );
124
125  PPC_CONTEXT_SET_SP( the_context, sp );
126  PPC_CONTEXT_SET_PC( the_context, (uint32_t) entry_point );
127  PPC_CONTEXT_SET_MSR( the_context, msr_value );
128
129#ifndef __SPE__
130#if (PPC_ABI == PPC_ABI_SVR4)
131  /*
132   * SVR4 says R2 is for 'system-reserved' use; it cannot hurt to
133   * propagate R2 to all task contexts.
134   */
135  { uint32_t    r2 = 0;
136    unsigned    r13 = 0;
137    __asm__ volatile ("mr %0,2; mr %1,13" : "=r" ((r2)), "=r" ((r13)));
138
139    the_context->gpr2 = r2;
140    the_context->gpr13 = r13;
141  }
142#elif (PPC_ABI == PPC_ABI_EABI)
143  { uint32_t    r2 = 0;
144    unsigned    r13 = 0;
145    __asm__ volatile ("mr %0,2; mr %1,13" : "=r" ((r2)), "=r" ((r13)));
146
147    the_context->gpr2 = r2;
148    the_context->gpr13 = r13;
149  }
150#else
151#error unsupported PPC_ABI
152#endif
153#endif /* __SPE__ */
154
155#ifdef __ALTIVEC__
156  _CPU_Context_initialize_altivec(the_context);
157#endif
158}
159
160/*PAGE
161 *
162 *  _CPU_Install_interrupt_stack
163 */
164
165void _CPU_Install_interrupt_stack( void )
166{
167}
168
169/*  _CPU_ISR_install_vector
170 *
171 *  This kernel routine installs the RTEMS handler for the
172 *  specified vector.
173 *
174 *  Input parameters:
175 *    vector      - interrupt vector number
176 *    old_handler - former ISR for this vector number
177 *    new_handler - replacement ISR for this vector number
178 *
179 *  Output parameters:  NONE
180 */
181
182void _CPU_ISR_install_vector(
183  uint32_t    vector,
184  proc_ptr    new_handler,
185  proc_ptr   *old_handler
186)
187{
188  BSP_panic("_CPU_ISR_install_vector called\n");
189}
Note: See TracBrowser for help on using the repository browser.