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

4.104.114.95
Last change on this file since d60239f was d60239f, checked in by Till Straumann <strauman@…>, on 07/16/08 at 21:57:55

2008-07-16 Till Straumann <strauman@…>

  • new-exceptions/cpu.c: use ppc_interrupt_get_disable_mask() to determine which bits to set/clear from _CPU_Context_Initialize().
  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[acc25ee]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
[9563a3a]26 *  http://www.rtems.com/license/LICENSE.
[acc25ee]27 *
28 *  $Id$
29 */
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>
[3e5a93cc]36#include <rtems/powerpc/powerpc.h>
[acc25ee]37
38/*  _CPU_Initialize
39 *
40 *  This routine performs processor dependent initialization.
41 *
42 *  INPUT PARAMETERS:
43 *    thread_dispatch - address of disptaching routine
44 */
45
46void _CPU_Initialize(
47  void      (*thread_dispatch)      /* ignored on this CPU */
48)
49{
[25a92bc1]50  /* Do nothing */
[acc25ee]51}
52
53/*PAGE
54 *
55 *  _CPU_Context_Initialize
56 */
57
[d60239f]58
[acc25ee]59void _CPU_Context_Initialize(
60  Context_Control  *the_context,
[9347024]61  uint32_t         *stack_base,
62  uint32_t          size,
63  uint32_t          new_level,
[acc25ee]64  void             *entry_point,
65  boolean           is_fp
66)
67{
[9347024]68  uint32_t   msr_value;
69  uint32_t   sp;
[acc25ee]70
[cc043dc]71  sp = (uint32_t)stack_base + size - PPC_MINIMUM_STACK_FRAME_SIZE;
[ab504d3]72
73  sp &= ~(CPU_STACK_ALIGNMENT-1);
74
[9347024]75  *((uint32_t*)sp) = 0;
[acc25ee]76  the_context->gpr1 = sp;
[6128a4a]77
[acc25ee]78  _CPU_MSR_GET( msr_value );
79
[d60239f]80  /*
81   * Setting the interrupt mask here is not strictly necessary
82   * since the IRQ level will be established from _Thread_Handler()
83   * again, as soon as the task starts execution.
84   * Because we have to establish a defined state anyways we
85   * can as well leave this code here.
86   * I.e., simply (and unconditionally) saying
87   *
88   *   msr_value &= ~ppc_interrupt_get_disable_mask();
89   *
90   * would be an alternative.
91   */
92
[acc25ee]93  if (!(new_level & CPU_MODES_INTERRUPT_MASK)) {
[d60239f]94    msr_value |= ppc_interrupt_get_disable_mask();
[acc25ee]95  }
96  else {
[d60239f]97    msr_value &= ~ppc_interrupt_get_disable_mask();
[acc25ee]98  }
99
100  the_context->msr = msr_value;
101
102  /*
103   *  The FP bit of the MSR should only be enabled if this is a floating
[6128a4a]104   *  point task.  Unfortunately, the vfprintf_r routine in newlib
[acc25ee]105   *  ends up pushing a floating point register regardless of whether or
106   *  not a floating point number is being printed.  Serious restructuring
107   *  of vfprintf.c will be required to avoid this behavior.  At this
108   *  time (7 July 1997), this restructuring is not being done.
109   */
110
[bbc8785]111  /* Make sure integer tasks have no FPU access in order to
112   * catch violations. Gcc may implicitely use the FPU and
113   * data corruption may happen.
114   * Since we set the_contex->msr using our current MSR,
115   * we must make sure MSR_FP is off if (!is_fp)...
116   * Unfortunately, this means that users of vfprintf_r have to use FP
117   * tasks or fix vfprintf. Furthermore, users of int-only tasks
118   * must prevent gcc from using the FPU (currently -msoft-float is the
119   * only way...)
[830e5f7]120   */
121  if ( is_fp )
[acc25ee]122    the_context->msr |= PPC_MSR_FP;
[830e5f7]123  else
[bbc8785]124    the_context->msr &= ~PPC_MSR_FP;
[acc25ee]125
[9347024]126  the_context->pc = (uint32_t)entry_point;
[ab504d3]127
128#if (PPC_ABI == PPC_ABI_SVR4)
129  { unsigned    r13 = 0;
130    asm volatile ("mr %0, 13" : "=r" ((r13)));
[6128a4a]131
[ab504d3]132    the_context->gpr13 = r13;
133  }
134#elif (PPC_ABI == PPC_ABI_EABI)
[9347024]135  { uint32_t    r2 = 0;
[ab504d3]136    unsigned    r13 = 0;
137    asm volatile ("mr %0,2; mr %1,13" : "=r" ((r2)), "=r" ((r13)));
[6128a4a]138
[ab504d3]139    the_context->gpr2 = r2;
140    the_context->gpr13 = r13;
141  }
142#else
143#error unsupported PPC_ABI
144#endif
[acc25ee]145}
146
147/*PAGE
148 *
149 *  _CPU_Install_interrupt_stack
150 */
151
152void _CPU_Install_interrupt_stack( void )
153{
154}
[5bd1219]155
156/*  _CPU_ISR_install_vector
157 *
158 *  This kernel routine installs the RTEMS handler for the
159 *  specified vector.
160 *
161 *  Input parameters:
162 *    vector      - interrupt vector number
163 *    old_handler - former ISR for this vector number
164 *    new_handler - replacement ISR for this vector number
165 *
166 *  Output parameters:  NONE
167 */
168
169void _CPU_ISR_install_vector(
170  uint32_t    vector,
171  proc_ptr    new_handler,
172  proc_ptr   *old_handler
173)
174{
175  BSP_panic("_CPU_ISR_install_vector called\n");
176}
Note: See TracBrowser for help on using the repository browser.