source: rtems/cpukit/score/cpu/avr/cpu.c @ 04a62dce

4.104.115
Last change on this file since 04a62dce was b32020b, checked in by Joel Sherrill <joel.sherrill@…>, on 07/28/09 at 23:14:23

2009-07-28 Joel Sherrill <joel.sherrill@…>

  • cpu.c, cpu_asm.S, rtems/score/cpu.h: Context switch now works well enough to run ticker to completion with the simulator clock idle task. But if you comment out the printk's in _CPU_Context_Initialize, it hangs. This remains to be investigated.
  • Property mode set to 100644
File size: 5.7 KB
Line 
1/*
2 *  AVR CPU Dependent Source
3 *
4 *
5 *  COPYRIGHT (c) 1989-2008.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/score/isr.h>
17#include <rtems/score/wkspace.h>
18
19#include <rtems/bspIo.h> /* XXX remove me later */
20
21/*  _CPU_Initialize
22 *
23 *  This routine performs processor dependent initialization.
24 *
25 *  INPUT PARAMETERS: NONE
26 *
27 *  NO_CPU Specific Information:
28 *
29 *  XXX document implementation including references if appropriate
30 */
31void _CPU_Initialize(void)
32{
33  printk( "AVR CPU Initialize\n" );
34
35  /*
36   *  If there is not an easy way to initialize the FP context
37   *  during Context_Initialize, then it is usually easier to
38   *  save an "uninitialized" FP context here and copy it to
39   *  the task's during Context_Initialize.
40   */
41
42  /* FP context initialization support goes here */
43}
44
45/*PAGE
46 *
47 *  _CPU_Context_Initialize
48 *
49 *  This kernel routine initializes the basic non-FP context area associated
50 *  with each thread.
51 *
52 *  Input parameters:
53 *    the_context  - pointer to the context area
54 *    stack_base   - address of memory for the SPARC
55 *    size         - size in bytes of the stack area
56 *    new_level    - interrupt level for this context area
57 *    entry_point  - the starting execution point for this this context
58 *    is_fp        - TRUE if this context is associated with an FP thread
59 *
60 *  Output parameters: NONE
61 */
62
63void _CPU_Context_Initialize(
64  Context_Control  *the_context,
65  uint32_t         *stack_base,
66  uint32_t          size,
67  uint32_t          new_level,
68  void             *entry_point,
69  bool              is_fp
70)
71{
72  uint16_t stack;
73  uint16_t start;
74  uint8_t  *tmp_sp;
75  uint8_t   start_low;
76  uint8_t   start_high;
77
78  /* calc stack high end */
79  stack = (uint16_t) (stack_base) + (uint16_t) (size);
80  /* calc stack pointer initial value */
81  the_context->stack_pointer = (stack - 18);
82  /* put the entry point on the stack */
83  start = (uint16_t) entry_point;
84  start_low = start & 0xff;
85  start_high = start >> 8;
86  tmp_sp = (uint8_t *) (stack+1);
87  tmp_sp[0] = start_high;
88  tmp_sp[1] = start_low;
89
90  if (new_level) the_context->status = 0x00; //interrupts are enabled
91  else           the_context->status = 0x80; //interrupts are disabled
92
93  /*
94   * JOEL: Why if I comment out these three lines does ticker not run?
95   */
96#if 1
97  printk( "tmp_sp=0x%04x ", ((uint16_t)tmp_sp) );
98  printk("the_context = 0x%x\n", the_context);
99  printk("entry = 0x%x\n", entry_point);
100#endif
101#if 0
102  printk("sp = 0x%x\n\n",stack);
103
104 { int i; uint8_t *p;
105   p = (uint8_t *)(stack - 18);
106   for( i=0 ; i<=20 ; i+=8 ) {
107     printk( "0x%04x ", ((uint16_t)&p[i]) );
108     printk(
109      "0x%02x 0x%02x 0x%02x 0x%02x   ",
110      p[i + 0], p[i + 1], p[i + 2], p[i + 3]
111     );
112     printk(
113      "0x%02x 0x%02x 0x%02x 0x%02x\n",
114      p[i + 4], p[i + 5], p[i + 6], p[i + 7]
115     );
116   }
117 }
118#endif
119}
120
121/*PAGE
122 *
123 *  _CPU_ISR_Get_level
124 *
125 *  NO_CPU Specific Information:
126 *
127 *  XXX document implementation including references if appropriate
128 */
129 
130uint32_t   _CPU_ISR_Get_level( void )
131{
132  /*
133   *  This routine returns the current interrupt level.
134   */
135
136  return 0;
137}
138
139/*PAGE
140 *
141 *  _CPU_ISR_install_raw_handler
142 *
143 *  NO_CPU Specific Information:
144 *
145 *  XXX document implementation including references if appropriate
146 */
147 
148void _CPU_ISR_install_raw_handler(
149  uint32_t    vector,
150  proc_ptr    new_handler,
151  proc_ptr   *old_handler
152)
153{
154  /*
155   *  This is where we install the interrupt handler into the "raw" interrupt
156   *  table used by the CPU to dispatch interrupt handlers.
157   */
158}
159
160/*PAGE
161 *
162 *  _CPU_ISR_install_vector
163 *
164 *  This kernel routine installs the RTEMS handler for the
165 *  specified vector.
166 *
167 *  Input parameters:
168 *    vector      - interrupt vector number
169 *    old_handler - former ISR for this vector number
170 *    new_handler - replacement ISR for this vector number
171 *
172 *  Output parameters:  NONE
173 *
174 *
175 *  NO_CPU Specific Information:
176 *
177 *  XXX document implementation including references if appropriate
178 */
179
180void _CPU_ISR_install_vector(
181  uint32_t    vector,
182  proc_ptr    new_handler,
183  proc_ptr   *old_handler
184)
185{
186   *old_handler = _ISR_Vector_table[ vector ];
187
188   /*
189    *  If the interrupt vector table is a table of pointer to isr entry
190    *  points, then we need to install the appropriate RTEMS interrupt
191    *  handler for this vector number.
192    */
193
194   _CPU_ISR_install_raw_handler( vector, new_handler, old_handler );
195
196   /*
197    *  We put the actual user ISR address in '_ISR_vector_table'.  This will
198    *  be used by the _ISR_Handler so the user gets control.
199    */ 
200
201    _ISR_Vector_table[ vector ] = new_handler;
202}
203
204/*PAGE
205 *
206 *  _CPU_Install_interrupt_stack
207 *
208 *  NO_CPU Specific Information:
209 *
210 *  XXX document implementation including references if appropriate
211 */
212
213void _CPU_Install_interrupt_stack( void )
214{
215}
216
217/*PAGE
218 *
219 *  _CPU_Thread_Idle_body
220 *
221 *  NOTES:
222 *
223 *  1. This is the same as the regular CPU independent algorithm.
224 *
225 *  2. If you implement this using a "halt", "idle", or "shutdown"
226 *     instruction, then don't forget to put it in an infinite loop.
227 *
228 *  3. Be warned. Some processors with onboard DMA have been known
229 *     to stop the DMA if the CPU were put in IDLE mode.  This might
230 *     also be a problem with other on-chip peripherals.  So use this
231 *     hook with caution.
232 *
233 *  NO_CPU Specific Information:
234 *
235 *  XXX document implementation including references if appropriate
236 */
237
238void *_CPU_Thread_Idle_body( uintptr_t ignored )
239{
240
241  for( ; ; ) asm volatile ("sleep"::);
242    /* insert your "halt" instruction here */ ;
243  return (void *) 0;
244}
Note: See TracBrowser for help on using the repository browser.