summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/microblaze/cpu.c
blob: 1e829a4714cba68f01f6a88be1c9509ba1a50a78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/* SPDX-License-Identifier: BSD-2-Clause */

/**
 * @file
 *
 * @ingroup RTEMSScoreCPUMicroBlaze
 *
 * @brief MicroBlaze architecture support implementation
 */

/*
 * Copyright (c) 2015, Hesham Almatary
 * Copyright (C) 2021 On-Line Applications Research Corporation (OAR)
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <inttypes.h>

#include <rtems/bspIo.h>
#include <rtems/fatal.h>
#include <rtems/score/isr.h>
#include <rtems/score/tls.h>
#include <rtems/score/wkspace.h>

void _CPU_Initialize( void )
{
}

void _CPU_Context_Initialize(
  Context_Control *context,
  void *stack_area_begin,
  size_t stack_area_size,
  uint32_t new_level,
  void (*entry_point)( void ),
  bool is_fp,
  void *tls_area
)
{
  uint32_t stack = (uint32_t) stack_area_begin;
  uint32_t stack_high = stack + stack_area_size;

  memset( context, 0, sizeof(*context) ) ;

  context->r1 = stack_high - 64;
  context->r15 = (uint32_t) entry_point;

  uint32_t msr;
  _CPU_MSR_GET( msr );
  context->rmsr = msr;

  if ( tls_area != NULL ) {
    _TLS_TCB_at_area_begin_initialize( tls_area );
  }
}

void _CPU_Exception_frame_print( const CPU_Exception_frame *ctx )
{
  printk(
    "\n"
    "R0   = 0x%08" PRIx32  " R17  = %p\n"
    "R1   = 0x%08" PRIx32  " R18  = 0x%08" PRIx32 "\n"
    "R2   = 0x%08" PRIx32  " R19  = 0x%08" PRIx32 "\n"
    "R3   = 0x%08" PRIx32  " R20  = 0x%08" PRIx32 "\n"
    "R4   = 0x%08" PRIx32  " R21  = 0x%08" PRIx32 "\n"
    "R5   = 0x%08" PRIx32  " R22  = 0x%08" PRIx32 "\n"
    "R6   = 0x%08" PRIx32  " R23  = 0x%08" PRIx32 "\n"
    "R7   = 0x%08" PRIx32  " R24  = 0x%08" PRIx32 "\n"
    "R8   = 0x%08" PRIx32  " R25  = 0x%08" PRIx32 "\n"
    "R9   = 0x%08" PRIx32  " R26  = 0x%08" PRIx32 "\n"
    "R10  = 0x%08" PRIx32  " R27  = 0x%08" PRIx32 "\n"
    "R11  = 0x%08" PRIx32  " R28  = 0x%08" PRIx32 "\n"
    "R12  = 0x%08" PRIx32  " R29  = 0x%08" PRIx32 "\n"
    "R13  = 0x%08" PRIx32  " R30  = 0x%08" PRIx32 "\n"
    "R14  = %p"            " R31  = 0x%08" PRIx32 "\n"
    "R15  = %p"            " ESR  = 0x%08" PRIx32 "\n"
    "R16  = %p"            " EAR  = %p\n",
    0,  ctx->r17,
    ctx->r1,  ctx->r18,
    ctx->r2,  ctx->r19,
    ctx->r3,  ctx->r20,
    ctx->r4,  ctx->r21,
    ctx->r5,  ctx->r22,
    ctx->r6,  ctx->r23,
    ctx->r7,  ctx->r24,
    ctx->r8,  ctx->r25,
    ctx->r9,  ctx->r26,
    ctx->r10, ctx->r27,
    ctx->r11, ctx->r28,
    ctx->r12, ctx->r29,
    ctx->r13, ctx->r30,
    ctx->r14, ctx->r31,
    ctx->r15, ctx->esr,
    ctx->r16, ctx->ear
  );

  printk(
    "MSR  = 0x%08" PRIx32 " %s%s%s%s%s%s%s%s%s%s%s%s\n",
    ctx->msr,
    ( ctx->msr & MICROBLAZE_MSR_VM ) ? "VM " : "",
    ( ctx->msr & MICROBLAZE_MSR_UM ) ? "UM " : "",
    ( ctx->msr & MICROBLAZE_MSR_PVR ) ? "PVR " : "",
    ( ctx->msr & MICROBLAZE_MSR_EIP ) ? "EiP " : "",
    ( ctx->msr & MICROBLAZE_MSR_EE ) ? "EE " : "",
    ( ctx->msr & MICROBLAZE_MSR_DCE ) ? "DCE " : "",
    ( ctx->msr & MICROBLAZE_MSR_DZO ) ? "DZO " : "",
    ( ctx->msr & MICROBLAZE_MSR_ICE ) ? "ICE " : "",
    ( ctx->msr & MICROBLAZE_MSR_FSL ) ? "FSL " : "",
    ( ctx->msr & MICROBLAZE_MSR_BIP ) ? "BiP " : "",
    ( ctx->msr & MICROBLAZE_MSR_C ) ? "C " : "",
    ( ctx->msr & MICROBLAZE_MSR_IE ) ? "IE " : ""
  );
}

void _CPU_ISR_Set_level( uint32_t level )
{
  uint32_t microblaze_switch_reg;

  _CPU_MSR_GET( microblaze_switch_reg );

  if ( level == 0 ) {
    microblaze_switch_reg |= MICROBLAZE_MSR_IE;
  } else {
    microblaze_switch_reg &= ~(MICROBLAZE_MSR_IE);
  }

  _CPU_MSR_SET( microblaze_switch_reg );
}

uint32_t _CPU_ISR_Get_level( void )
{
  uint32_t level;

  _CPU_MSR_GET( level );

  /* This is unique. The MSR register contains an interrupt enable flag where
   * most other architectures have an interrupt disable flag. */
  return ( level & MICROBLAZE_MSR_IE ) == 0;
}

void _CPU_ISR_install_vector(
  uint32_t         vector,
  CPU_ISR_handler  new_handler,
  CPU_ISR_handler *old_handler
)
{
  *old_handler = _ISR_Vector_table[ vector ];
  _ISR_Vector_table[ vector ] = new_handler;
}

void *_CPU_Thread_Idle_body( uintptr_t ignored )
{
  while ( true ) {
  }
}

MicroBlaze_Exception_handler installed_exception_handler = NULL;

void _MicroBlaze_Exception_install_handler(
  MicroBlaze_Exception_handler  new_handler,
  MicroBlaze_Exception_handler *old_handler
)
{
  if ( old_handler != NULL ) {
    *old_handler = installed_exception_handler;
  }

  installed_exception_handler = new_handler;
}

void _MicroBlaze_Exception_handle( CPU_Exception_frame *ef )
{
  /* EiP is not set for user exceptions which are unused and not hooked */
  if (
    ( ef->msr & MICROBLAZE_MSR_EIP ) != 0
    && installed_exception_handler != NULL
  ) {
    installed_exception_handler( ef );
  }

  rtems_fatal( RTEMS_FATAL_SOURCE_EXCEPTION, (rtems_fatal_code) ef );
}

MicroBlaze_Exception_handler installed_debug_handler = NULL;

void _MicroBlaze_Debug_install_handler(
  MicroBlaze_Exception_handler  new_handler,
  MicroBlaze_Exception_handler *old_handler
)
{
  if ( old_handler != NULL ) {
    *old_handler = installed_debug_handler;
  }

  installed_debug_handler = new_handler;
}

void _MicroBlaze_Debug_handle( CPU_Exception_frame *ef )
{
  /* BiP is not set for software debug events, set it here */
  ef->msr |= MICROBLAZE_MSR_BIP;

  if ( installed_debug_handler != NULL ) {
    installed_debug_handler( ef );
  }

  rtems_fatal( RTEMS_FATAL_SOURCE_EXCEPTION, (rtems_fatal_code) ef );
}