source: rtems/cpukit/score/cpu/or1k/cpu.c @ 8b65b574

Last change on this file since 8b65b574 was 8b65b574, checked in by Sebastian Huber <sebastian.huber@…>, on 07/28/21 at 12:41:32

score: Canonicalize _CPU_Fatal_halt()

Move _CPU_Fatal_halt() declaration to <rtems/score/cpuimpl.h> and make sure it
is a proper declaration of a function which does not return. Fix the type of
the error code. If necessary, add the implementation to cpu.c. Implementing
_CPU_Fatal_halt() as a function makes it possible to wrap this function for
example to fully test _Terminate().

  • Property mode set to 100644
File size: 2.6 KB
Line 
1/*
2 *  Opencore OR1K CPU Dependent Source
3 *
4 *  COPYRIGHT (c) 2014-2015 Hesham ALMatary <heshamelmatary@gmail.com>
5 *  COPYRIGHT (c) 1989-1999.
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.org/license/LICENSE.
11 *
12 */
13
14#include <rtems/score/cpuimpl.h>
15#include <rtems/score/isr.h>
16
17/* bsp_start_vector_table_begin is the start address of the vector table
18 * containing addresses to ISR Handlers. It's defined at the BSP linkcmds
19 * and may differ from one BSP to another.
20 */
21extern char bsp_start_vector_table_begin[];
22
23/**
24 * @brief Performs processor dependent initialization.
25 */
26void _CPU_Initialize(void)
27{
28  /* Do nothing */
29}
30
31void _CPU_Fatal_halt( uint32_t source, CPU_Uint32ptr error )
32{
33  ISR_Level level;
34
35  _CPU_ISR_Disable( level );
36  (void) level;
37
38  _OR1KSIM_CPU_Halt();
39
40  while ( true ) {
41    /* Do nothing */
42  }
43}
44
45/* end of Fatal Error manager macros */
46
47/**
48 * @brief Sets the hardware interrupt level by the level value.
49 *
50 * @param[in] level for or1k can only range over two values:
51 * 0 (enable interrupts) and 1 (disable interrupts). In future
52 * implementations if fast context switch is implemented, the level
53 * can range from 0 to 15. @see OpenRISC architecture manual.
54 *
55 */
56void _CPU_ISR_Set_level(uint32_t level)
57{
58  uint32_t sr = 0;
59  level = (level > 0)? 1 : 0;
60
61  /* map level bit to or1k interrupt enable/disable bit in sr register */
62  level <<= CPU_OR1K_SPR_SR_SHAMT_IEE;
63
64  sr = _OR1K_mfspr(CPU_OR1K_SPR_SR);
65
66  if (level == 0){ /* Enable all interrupts */
67    sr |= CPU_OR1K_SPR_SR_IEE | CPU_OR1K_SPR_SR_TEE;
68
69  } else{
70    sr &= ~CPU_OR1K_SPR_SR_IEE;
71  }
72
73  _OR1K_mtspr(CPU_OR1K_SPR_SR, sr);
74 }
75
76uint32_t  _CPU_ISR_Get_level( void )
77{
78  uint32_t sr = 0;
79
80  sr = _OR1K_mfspr(CPU_OR1K_SPR_SR);
81
82  return (sr & CPU_OR1K_SPR_SR_IEE)? 0 : 1;
83}
84
85void _CPU_ISR_install_raw_handler(
86  uint32_t             vector,
87  CPU_ISR_raw_handler  new_handler,
88  CPU_ISR_raw_handler *old_handler
89)
90{
91   CPU_ISR_raw_handler *table =
92     (CPU_ISR_raw_handler *) bsp_start_vector_table_begin;
93   CPU_ISR_raw_handler current_handler;
94
95   ISR_Level level;
96
97  _ISR_Local_disable( level );
98
99  current_handler = table [vector];
100
101  /* The current handler is now the old one */
102  if (old_handler != NULL) {
103    *old_handler = current_handler;
104  }
105
106  /* Write only if necessary to avoid writes to a maybe read-only memory */
107  if (current_handler != new_handler) {
108    table [vector] = new_handler;
109  }
110
111   _ISR_Local_enable( level );
112}
113
114void *_CPU_Thread_Idle_body( uintptr_t ignored )
115{
116  do {
117     _OR1K_CPU_Sleep();
118  } while (1);
119}
Note: See TracBrowser for help on using the repository browser.