source: rtems/cpukit/score/cpu/lm32/cpu.c @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 3.2 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief LM32 CPU Dependent Source
5 */
6
7/*
8 *  COPYRIGHT (c) 1989-1999.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.org/license/LICENSE.
14 *
15 *  Jukka Pietarinen <jukka.pietarinen@mrf.fi>, 2008,
16 *  Micro-Research Finland Oy
17 */
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include <rtems/system.h>
24#include <rtems/score/isr.h>
25#include <rtems/score/wkspace.h>
26
27/*  _CPU_Initialize
28 *
29 *  This routine performs processor dependent initialization.
30 *
31 *  INPUT PARAMETERS: NONE
32 *
33 *  LM32 Specific Information:
34 *
35 *  XXX document implementation including references if appropriate
36 */
37
38void _CPU_Initialize(void)
39{
40  /*
41   *  If there is not an easy way to initialize the FP context
42   *  during Context_Initialize, then it is usually easier to
43   *  save an "uninitialized" FP context here and copy it to
44   *  the task's during Context_Initialize.
45   */
46
47  /* FP context initialization support goes here */
48}
49
50uint32_t   _CPU_ISR_Get_level( void )
51{
52  /*
53   *  This routine returns the current interrupt level.
54   */
55
56  return 0;
57}
58
59/*
60 *  _CPU_ISR_install_raw_handler
61 *
62 *  LM32 Specific Information:
63 *
64 *  XXX document implementation including references if appropriate
65 */
66
67void _CPU_ISR_install_raw_handler(
68  uint32_t    vector,
69  proc_ptr    new_handler,
70  proc_ptr   *old_handler
71)
72{
73  /*
74   *  This is where we install the interrupt handler into the "raw" interrupt
75   *  table used by the CPU to dispatch interrupt handlers.
76   */
77}
78
79void _CPU_ISR_install_vector(
80  uint32_t    vector,
81  proc_ptr    new_handler,
82  proc_ptr   *old_handler
83)
84{
85   *old_handler = _ISR_Vector_table[ vector ];
86
87   /*
88    *  If the interrupt vector table is a table of pointer to isr entry
89    *  points, then we need to install the appropriate RTEMS interrupt
90    *  handler for this vector number.
91    */
92
93   _CPU_ISR_install_raw_handler( vector, new_handler, old_handler );
94
95   /*
96    *  We put the actual user ISR address in '_ISR_vector_table'.  This will
97    *  be used by the _ISR_Handler so the user gets control.
98    */
99
100    _ISR_Vector_table[ vector ] = new_handler;
101}
102
103/*
104 *  _CPU_Install_interrupt_stack
105 *
106 *  LM32 Specific Information:
107 *
108 *  XXX document implementation including references if appropriate
109 */
110
111void _CPU_Install_interrupt_stack( void )
112{
113}
114
115/*
116 *  _CPU_Thread_Idle_body
117 *
118 *  NOTES:
119 *
120 *  1. This is the same as the regular CPU independent algorithm.
121 *
122 *  2. If you implement this using a "halt", "idle", or "shutdown"
123 *     instruction, then don't forget to put it in an infinite loop.
124 *
125 *  3. Be warned. Some processors with onboard DMA have been known
126 *     to stop the DMA if the CPU were put in IDLE mode.  This might
127 *     also be a problem with other on-chip peripherals.  So use this
128 *     hook with caution.
129 *
130 *  LM32 Specific Information:
131 *
132 *  XXX document implementation including references if appropriate
133 */
134
135void *_CPU_Thread_Idle_body( uintptr_t ignored )
136{
137  for( ; ; ) {
138    /* The LM32 softcore itself hasn't any HLT instruction. But the
139     * LM32 qemu target interprets this nop instruction as HLT.
140     */
141    __asm__ volatile("and r0, r0, r0");
142 }
143}
Note: See TracBrowser for help on using the repository browser.