Subversion Repositories HelenOS

Rev

Rev 4377 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4377 Rev 4692
1
/*
1
/*
2
 * Copyright (c) 2007 Petr Stepan
2
 * Copyright (c) 2007 Petr Stepan
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup arm32
29
/** @addtogroup arm32
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 *  @brief Exception handlers and exception initialization routines.
33
 *  @brief Exception handlers and exception initialization routines.
34
 */
34
 */
35
 
35
 
36
#include <arch/exception.h>
36
#include <arch/exception.h>
37
#include <arch/memstr.h>
37
#include <arch/memstr.h>
38
#include <arch/regutils.h>
38
#include <arch/regutils.h>
39
#include <interrupt.h>
39
#include <interrupt.h>
40
#include <arch/mm/page_fault.h>
40
#include <arch/mm/page_fault.h>
41
#include <arch/barrier.h>
41
#include <arch/barrier.h>
42
#include <arch/drivers/gxemul.h>
-
 
43
#include <print.h>
42
#include <print.h>
44
#include <syscall/syscall.h>
43
#include <syscall/syscall.h>
45
#include <udebug/udebug.h>
44
#include <udebug/udebug.h>
46
 
45
 
-
 
46
#ifdef MACHINE_testarm
-
 
47
    #include <arch/mach/testarm/testarm.h>
-
 
48
#endif
-
 
49
 
-
 
50
#ifdef MACHINE_integratorcp
-
 
51
    #include <arch/mach/integratorcp/integratorcp.h>
-
 
52
#endif
-
 
53
 
47
/** Offset used in calculation of exception handler's relative address.
54
/** Offset used in calculation of exception handler's relative address.
48
 *
55
 *
49
 * @see install_handler()
56
 * @see install_handler()
50
 */
57
 */
51
#define PREFETCH_OFFSET      0x8
58
#define PREFETCH_OFFSET      0x8
52
 
59
 
53
/** LDR instruction's code */
60
/** LDR instruction's code */
54
#define LDR_OPCODE           0xe59ff000
61
#define LDR_OPCODE           0xe59ff000
55
 
62
 
56
/** Number of exception vectors. */
63
/** Number of exception vectors. */
57
#define EXC_VECTORS          8
64
#define EXC_VECTORS          8
58
 
65
 
59
/** Size of memory block occupied by exception vectors. */
66
/** Size of memory block occupied by exception vectors. */
60
#define EXC_VECTORS_SIZE     (EXC_VECTORS * 4)
67
#define EXC_VECTORS_SIZE     (EXC_VECTORS * 4)
61
 
68
 
62
/** Switches to kernel stack and saves all registers there.
-
 
63
 *
-
 
64
 * Temporary exception stack is used to save a few registers
-
 
65
 * before stack switch takes place.
-
 
66
 *
-
 
67
 */
-
 
68
inline static void setup_stack_and_save_regs()
-
 
69
{
-
 
70
    asm volatile (
-
 
71
        "ldr r13, =exc_stack\n"
-
 
72
        "stmfd r13!, {r0}\n"
-
 
73
        "mrs r0, spsr\n"
-
 
74
        "and r0, r0, #0x1f\n"
-
 
75
        "cmp r0, #0x10\n"
-
 
76
        "bne 1f\n"
-
 
77
       
-
 
78
        /* prev mode was usermode */
-
 
79
        "ldmfd r13!, {r0}\n"
-
 
80
        "ldr r13, =supervisor_sp\n"
-
 
81
        "ldr r13, [r13]\n"
-
 
82
        "stmfd r13!, {lr}\n"
-
 
83
        "stmfd r13!, {r0-r12}\n"
-
 
84
        "stmfd r13!, {r13, lr}^\n"
-
 
85
        "mrs r0, spsr\n"
-
 
86
        "stmfd r13!, {r0}\n"
-
 
87
        "b 2f\n"
-
 
88
       
-
 
89
        /* mode was not usermode */
-
 
90
        "1:\n"
-
 
91
            "stmfd r13!, {r1, r2, r3}\n"
-
 
92
            "mrs r1, cpsr\n"
-
 
93
            "mov r2, lr\n"
-
 
94
            "bic r1, r1, #0x1f\n"
-
 
95
            "orr r1, r1, r0\n"
-
 
96
            "mrs r0, cpsr\n"
-
 
97
            "msr cpsr_c, r1\n"
-
 
98
           
-
 
99
            "mov r3, r13\n"
-
 
100
            "stmfd r13!, {r2}\n"
-
 
101
            "mov r2, lr\n"
-
 
102
            "stmfd r13!, {r4-r12}\n"
-
 
103
            "mov r1, r13\n"
-
 
104
           
-
 
105
            /* the following two lines are for debugging */
-
 
106
            "mov sp, #0\n"
-
 
107
            "mov lr, #0\n"
-
 
108
            "msr cpsr_c, r0\n"
-
 
109
           
-
 
110
            "ldmfd r13!, {r4, r5, r6, r7}\n"
-
 
111
            "stmfd r1!, {r4, r5, r6}\n"
-
 
112
            "stmfd r1!, {r7}\n"
-
 
113
            "stmfd r1!, {r2}\n"
-
 
114
            "stmfd r1!, {r3}\n"
-
 
115
            "mrs r0, spsr\n"
-
 
116
            "stmfd r1!, {r0}\n"
-
 
117
            "mov r13, r1\n"
-
 
118
           
-
 
119
        "2:\n"
-
 
120
    );
-
 
121
}
-
 
122
 
-
 
123
/** Returns from exception mode.
-
 
124
 *
-
 
125
 * Previously saved state of registers (including control register)
-
 
126
 * is restored from the stack.
-
 
127
 */
-
 
128
inline static void load_regs()
-
 
129
{
-
 
130
    asm volatile(
-
 
131
        "ldmfd r13!, {r0}       \n"
-
 
132
        "msr spsr, r0           \n"
-
 
133
        "and r0, r0, #0x1f      \n"
-
 
134
        "cmp r0, #0x10          \n"
-
 
135
        "bne 1f             \n"
-
 
136
 
-
 
137
        /* return to user mode */
-
 
138
        "ldmfd r13!, {r13, lr}^     \n"
-
 
139
        "b 2f               \n"
-
 
140
 
-
 
141
        /* return to non-user mode */
-
 
142
    "1:\n"
-
 
143
        "ldmfd r13!, {r1, r2}       \n"
-
 
144
        "mrs r3, cpsr           \n"
-
 
145
        "bic r3, r3, #0x1f      \n"
-
 
146
        "orr r3, r3, r0         \n"
-
 
147
        "mrs r0, cpsr           \n"
-
 
148
        "msr cpsr_c, r3         \n"
-
 
149
 
-
 
150
        "mov r13, r1            \n"
-
 
151
        "mov lr, r2         \n"
-
 
152
        "msr cpsr_c, r0         \n"
-
 
153
 
-
 
154
        /* actual return */
-
 
155
    "2:\n"
-
 
156
        "ldmfd r13, {r0-r12, pc}^\n"
-
 
157
    );
-
 
158
}
-
 
159
 
-
 
160
 
-
 
161
/** Switch CPU to mode in which interrupts are serviced (currently it
-
 
162
 * is Undefined mode).
-
 
163
 *
-
 
164
 * The default mode for interrupt servicing (Interrupt Mode)
-
 
165
 * can not be used because of nested interrupts (which can occur
-
 
166
 * because interrupts are enabled in higher levels of interrupt handler).
-
 
167
 */
-
 
168
inline static void switch_to_irq_servicing_mode()
-
 
169
{
-
 
170
    /* switch to Undefined mode */
-
 
171
    asm volatile(
-
 
172
        /* save regs used during switching */
-
 
173
        "stmfd sp!, {r0-r3}     \n"
-
 
174
 
-
 
175
        /* save stack pointer and link register to r1, r2 */
-
 
176
        "mov r1, sp         \n"
-
 
177
        "mov r2, lr         \n"
-
 
178
 
-
 
179
        /* mode switch */
-
 
180
        "mrs r0, cpsr           \n"
-
 
181
        "bic r0, r0, #0x1f      \n"
-
 
182
        "orr r0, r0, #0x1b      \n"
-
 
183
        "msr cpsr_c, r0         \n"
-
 
184
 
-
 
185
        /* restore saved sp and lr */
-
 
186
        "mov sp, r1         \n"
-
 
187
        "mov lr, r2         \n"
-
 
188
 
-
 
189
        /* restore original regs */
-
 
190
        "ldmfd sp!, {r0-r3}     \n"
-
 
191
    );
-
 
192
}
-
 
193
 
-
 
194
/** Calls exception dispatch routine. */
-
 
195
#define CALL_EXC_DISPATCH(exception) \
-
 
196
    asm volatile ( \
-
 
197
        "mov r0, %[exc]\n" \
-
 
198
        "mov r1, r13\n" \
-
 
199
        "bl exc_dispatch\n" \
-
 
200
        :: [exc] "i" (exception) \
-
 
201
    );\
-
 
202
 
-
 
203
/** General exception handler.
-
 
204
 *
-
 
205
 *  Stores registers, dispatches the exception,
-
 
206
 *  and finally restores registers and returns from exception processing.
-
 
207
 *
-
 
208
 *  @param exception Exception number.
-
 
209
 */
-
 
210
#define PROCESS_EXCEPTION(exception) \
-
 
211
    setup_stack_and_save_regs(); \
-
 
212
    CALL_EXC_DISPATCH(exception) \
-
 
213
    load_regs();
-
 
214
 
-
 
215
/** Updates specified exception vector to jump to given handler.
69
/** Updates specified exception vector to jump to given handler.
216
 *
70
 *
217
 *  Addresses of handlers are stored in memory following exception vectors.
71
 *  Addresses of handlers are stored in memory following exception vectors.
218
 */
72
 */
219
static void install_handler(unsigned handler_addr, unsigned *vector)
73
static void install_handler(unsigned handler_addr, unsigned *vector)
220
{
74
{
221
    /* relative address (related to exc. vector) of the word
75
    /* relative address (related to exc. vector) of the word
222
     * where handler's address is stored
76
     * where handler's address is stored
223
    */
77
    */
224
    volatile uint32_t handler_address_ptr = EXC_VECTORS_SIZE -
78
    volatile uint32_t handler_address_ptr = EXC_VECTORS_SIZE -
225
        PREFETCH_OFFSET;
79
        PREFETCH_OFFSET;
226
   
80
   
227
    /* make it LDR instruction and store at exception vector */
81
    /* make it LDR instruction and store at exception vector */
228
    *vector = handler_address_ptr | LDR_OPCODE;
82
    *vector = handler_address_ptr | LDR_OPCODE;
229
    smc_coherence(*vector);
83
    smc_coherence(*vector);
230
   
84
   
231
    /* store handler's address */
85
    /* store handler's address */
232
    *(vector + EXC_VECTORS) = handler_addr;
86
    *(vector + EXC_VECTORS) = handler_addr;
233
 
87
 
234
}
88
}
235
 
89
 
236
/** Low-level Reset Exception handler. */
-
 
237
static void reset_exception_entry(void)
-
 
238
{
-
 
239
    PROCESS_EXCEPTION(EXC_RESET);
-
 
240
}
-
 
241
 
-
 
242
/** Low-level Software Interrupt Exception handler. */
-
 
243
static void swi_exception_entry(void)
-
 
244
{
-
 
245
    PROCESS_EXCEPTION(EXC_SWI);
-
 
246
}
-
 
247
 
-
 
248
/** Low-level Undefined Instruction Exception handler. */
-
 
249
static void undef_instr_exception_entry(void)
-
 
250
{
-
 
251
    PROCESS_EXCEPTION(EXC_UNDEF_INSTR);
-
 
252
}
-
 
253
 
-
 
254
/** Low-level Fast Interrupt Exception handler. */
-
 
255
static void fiq_exception_entry(void)
-
 
256
{
-
 
257
    PROCESS_EXCEPTION(EXC_FIQ);
-
 
258
}
-
 
259
 
-
 
260
/** Low-level Prefetch Abort Exception handler. */
-
 
261
static void prefetch_abort_exception_entry(void)
-
 
262
{
-
 
263
    asm volatile (
-
 
264
        "sub lr, lr, #4"
-
 
265
    );
-
 
266
   
-
 
267
    PROCESS_EXCEPTION(EXC_PREFETCH_ABORT);
-
 
268
}
-
 
269
 
-
 
270
/** Low-level Data Abort Exception handler. */
-
 
271
static void data_abort_exception_entry(void)
-
 
272
{
-
 
273
    asm volatile (
-
 
274
        "sub lr, lr, #8"
-
 
275
    );
-
 
276
   
-
 
277
    PROCESS_EXCEPTION(EXC_DATA_ABORT);
-
 
278
}
-
 
279
 
-
 
280
/** Low-level Interrupt Exception handler.
-
 
281
 *
-
 
282
 * CPU is switched to Undefined mode before further interrupt processing
-
 
283
 * because of possible occurence of nested interrupt exception, which
-
 
284
 * would overwrite (and thus spoil) stack pointer.
-
 
285
 */
-
 
286
static void irq_exception_entry(void)
-
 
287
{
-
 
288
    asm volatile (
-
 
289
        "sub lr, lr, #4"
-
 
290
    );
-
 
291
   
-
 
292
    setup_stack_and_save_regs();
-
 
293
   
-
 
294
    switch_to_irq_servicing_mode();
-
 
295
   
-
 
296
    CALL_EXC_DISPATCH(EXC_IRQ)
-
 
297
 
-
 
298
    load_regs();
-
 
299
}
-
 
300
 
-
 
301
/** Software Interrupt handler.
90
/** Software Interrupt handler.
302
 *
91
 *
303
 * Dispatches the syscall.
92
 * Dispatches the syscall.
304
 */
93
 */
305
static void swi_exception(int exc_no, istate_t *istate)
94
static void swi_exception(int exc_no, istate_t *istate)
306
{
95
{
307
    istate->r0 = syscall_handler(istate->r0, istate->r1, istate->r2,
96
    istate->r0 = syscall_handler(istate->r0, istate->r1, istate->r2,
308
        istate->r3, istate->r4, istate->r5, istate->r6);
97
        istate->r3, istate->r4, istate->r5, istate->r6);
309
}
98
}
310
 
99
 
311
/** Returns the mask of active interrupts. */
-
 
312
static inline uint32_t gxemul_irqc_get_sources(void)
-
 
313
{
-
 
314
    return *((uint32_t *) gxemul_irqc);
-
 
315
}
-
 
316
 
-
 
317
/** Interrupt Exception handler.
-
 
318
 *
-
 
319
 * Determines the sources of interrupt and calls their handlers.
-
 
320
 */
-
 
321
static void irq_exception(int exc_no, istate_t *istate)
-
 
322
{
-
 
323
    uint32_t sources = gxemul_irqc_get_sources();
-
 
324
    unsigned int i;
-
 
325
   
-
 
326
    for (i = 0; i < GXEMUL_IRQC_MAX_IRQ; i++) {
-
 
327
        if (sources & (1 << i)) {
-
 
328
            irq_t *irq = irq_dispatch_and_lock(i);
-
 
329
            if (irq) {
-
 
330
                /* The IRQ handler was found. */
-
 
331
                irq->handler(irq);
-
 
332
                spinlock_unlock(&irq->lock);
-
 
333
            } else {
-
 
334
                /* Spurious interrupt.*/
-
 
335
                printf("cpu%d: spurious interrupt (inum=%d)\n",
-
 
336
                    CPU->id, i);
-
 
337
            }
-
 
338
        }
-
 
339
    }
-
 
340
}
-
 
341
 
-
 
342
/** Fills exception vectors with appropriate exception handlers. */
100
/** Fills exception vectors with appropriate exception handlers. */
343
void install_exception_handlers(void)
101
void install_exception_handlers(void)
344
{
102
{
345
    install_handler((unsigned) reset_exception_entry,
103
    install_handler((unsigned) reset_exception_entry,
346
        (unsigned *) EXC_RESET_VEC);
104
        (unsigned *) EXC_RESET_VEC);
347
   
105
   
348
    install_handler((unsigned) undef_instr_exception_entry,
106
    install_handler((unsigned) undef_instr_exception_entry,
349
        (unsigned *) EXC_UNDEF_INSTR_VEC);
107
        (unsigned *) EXC_UNDEF_INSTR_VEC);
350
   
108
   
351
    install_handler((unsigned) swi_exception_entry,
109
    install_handler((unsigned) swi_exception_entry,
352
        (unsigned *) EXC_SWI_VEC);
110
        (unsigned *) EXC_SWI_VEC);
353
   
111
   
354
    install_handler((unsigned) prefetch_abort_exception_entry,
112
    install_handler((unsigned) prefetch_abort_exception_entry,
355
        (unsigned *) EXC_PREFETCH_ABORT_VEC);
113
        (unsigned *) EXC_PREFETCH_ABORT_VEC);
356
   
114
   
357
    install_handler((unsigned) data_abort_exception_entry,
115
    install_handler((unsigned) data_abort_exception_entry,
358
        (unsigned *) EXC_DATA_ABORT_VEC);
116
        (unsigned *) EXC_DATA_ABORT_VEC);
359
   
117
   
360
    install_handler((unsigned) irq_exception_entry,
118
    install_handler((unsigned) irq_exception_entry,
361
        (unsigned *) EXC_IRQ_VEC);
119
        (unsigned *) EXC_IRQ_VEC);
362
   
120
   
363
    install_handler((unsigned) fiq_exception_entry,
121
    install_handler((unsigned) fiq_exception_entry,
364
        (unsigned *) EXC_FIQ_VEC);
122
        (unsigned *) EXC_FIQ_VEC);
365
}
123
}
366
 
124
 
367
#ifdef HIGH_EXCEPTION_VECTORS
125
#ifdef HIGH_EXCEPTION_VECTORS
368
/** Activates use of high exception vectors addresses. */
126
/** Activates use of high exception vectors addresses. */
369
static void high_vectors(void)
127
static void high_vectors(void)
370
{
128
{
371
    uint32_t control_reg;
129
    uint32_t control_reg;
372
   
130
   
373
    asm volatile (
131
    asm volatile (
374
        "mrc p15, 0, %[control_reg], c1, c1"
132
        "mrc p15, 0, %[control_reg], c1, c1"
375
        : [control_reg] "=r" (control_reg)
133
        : [control_reg] "=r" (control_reg)
376
    );
134
    );
377
   
135
   
378
    /* switch on the high vectors bit */
136
    /* switch on the high vectors bit */
379
    control_reg |= CP15_R1_HIGH_VECTORS_BIT;
137
    control_reg |= CP15_R1_HIGH_VECTORS_BIT;
380
   
138
   
381
    asm volatile (
139
    asm volatile (
382
        "mcr p15, 0, %[control_reg], c1, c1"
140
        "mcr p15, 0, %[control_reg], c1, c1"
383
        :: [control_reg] "r" (control_reg)
141
        :: [control_reg] "r" (control_reg)
384
    );
142
    );
385
}
143
}
386
#endif
144
#endif
387
 
145
 
-
 
146
/** Interrupt Exception handler.
-
 
147
 *
-
 
148
 * Determines the sources of interrupt and calls their handlers.
-
 
149
 */
-
 
150
static void irq_exception(int exc_no, istate_t *istate)
-
 
151
{
-
 
152
    machine_irq_exception(exc_no, istate);
-
 
153
}
-
 
154
 
388
/** Initializes exception handling.
155
/** Initializes exception handling.
389
 *
156
 *
390
 * Installs low-level exception handlers and then registers
157
 * Installs low-level exception handlers and then registers
391
 * exceptions and their handlers to kernel exception dispatcher.
158
 * exceptions and their handlers to kernel exception dispatcher.
392
 */
159
 */
393
void exception_init(void)
160
void exception_init(void)
394
{
161
{
395
#ifdef HIGH_EXCEPTION_VECTORS
162
#ifdef HIGH_EXCEPTION_VECTORS
396
    high_vectors();
163
    high_vectors();
397
#endif
164
#endif
398
    install_exception_handlers();
165
    install_exception_handlers();
399
   
166
   
400
    exc_register(EXC_IRQ, "interrupt", (iroutine) irq_exception);
167
    exc_register(EXC_IRQ, "interrupt", (iroutine) irq_exception);
401
    exc_register(EXC_PREFETCH_ABORT, "prefetch abort",
168
    exc_register(EXC_PREFETCH_ABORT, "prefetch abort",
402
        (iroutine) prefetch_abort);
169
        (iroutine) prefetch_abort);
403
    exc_register(EXC_DATA_ABORT, "data abort", (iroutine) data_abort);
170
    exc_register(EXC_DATA_ABORT, "data abort", (iroutine) data_abort);
404
    exc_register(EXC_SWI, "software interrupt", (iroutine) swi_exception);
171
    exc_register(EXC_SWI, "software interrupt", (iroutine) swi_exception);
405
}
172
}
406
 
173
 
407
/** Prints #istate_t structure content.
174
/** Prints #istate_t structure content.
408
 *
175
 *
409
 * @param istate Structure to be printed.
176
 * @param istate Structure to be printed.
410
 */
177
 */
411
void print_istate(istate_t *istate)
178
void print_istate(istate_t *istate)
412
{
179
{
413
    printf("istate dump:\n");
180
    printf("istate dump:\n");
414
   
181
   
415
    printf(" r0: %x    r1: %x    r2: %x    r3: %x\n",
182
    printf(" r0: %x    r1: %x    r2: %x    r3: %x\n",
416
        istate->r0, istate->r1, istate->r2, istate->r3);
183
        istate->r0, istate->r1, istate->r2, istate->r3);
417
    printf(" r4: %x    r5: %x    r6: %x    r7: %x\n",
184
    printf(" r4: %x    r5: %x    r6: %x    r7: %x\n",
418
        istate->r4, istate->r5, istate->r6, istate->r7);
185
        istate->r4, istate->r5, istate->r6, istate->r7);
419
    printf(" r8: %x    r8: %x   r10: %x   r11: %x\n",
186
    printf(" r8: %x    r8: %x   r10: %x   r11: %x\n",
420
        istate->r8, istate->r9, istate->r10, istate->r11);
187
        istate->r8, istate->r9, istate->r10, istate->r11);
421
    printf(" r12: %x    sp: %x    lr: %x  spsr: %x\n",
188
    printf(" r12: %x    sp: %x    lr: %x  spsr: %x\n",
422
        istate->r12, istate->sp, istate->lr, istate->spsr);
189
        istate->r12, istate->sp, istate->lr, istate->spsr);
423
   
190
   
424
    printf(" pc: %x\n", istate->pc);
191
    printf(" pc: %x\n", istate->pc);
425
}
192
}
426
 
193
 
427
/** @}
194
/** @}
428
 */
195
 */
429
 
196