source: trunk/softs/tests_ccvcache_v4/test_xicu_timer/test.S @ 232

Last change on this file since 232 was 232, checked in by alain, 12 years ago

Introducing the elementary tests for a TSAR mono-cluster
mono-processor platform with MMU using the vci_cc_vcache_v4
such as the "tsarv4_mono_mmu".
(assemby level tests written by Manuel Bouyer)

File size: 1.4 KB
Line 
1/*
2 * Check that we can take an interrupt from the xicu timer0
3 */
4#include <registers.h>
5#include <misc.h>
6#include <xicu.h>
7
8        .text
9        .globl  _start
10_start:
11        .set noreorder
12        la      k0, TTY_BASE
13        la      k1, EXIT_BASE
14
15        /* reset cop0 status (keep BEV), enable interrupt 0 */
16        lui     a0, 0x0040;
17        addiu   a0, 0x0401;
18        mtc0    a0, COP0_STATUS
19
20        /* reset cause, make sure IV is off */
21        mtc0    zero, COP0_CAUSE
22
23        PRINT(startstr)
24
25        /* program xicu */
26        la      t0, XICU_BASE
27        /* clear pending interrupt */
28        lw      a0, XICU_PTI_ACK(0)(t0)
29        /* route PTI0 to irq 0 */
30        li      a0, 1 << 0
31        sw      a0, XICU_MSK_PTI_E(0)(t0)
32        /* interrupt in 10 cycles */
33        li      a0, 10
34        sw      a0, XICU_PTI_PER(0)(t0)
35
361:      j 1b
37        nop
38        /* we should not end there */
39        EXIT(1)
40
41        .globl excep
42excep:
43        .set noreorder
44        PRINT(statusstr)
45        mfc0    a0, COP0_STATUS
46        PRINTX
47
48        PRINT(causestr)
49        mfc0    a0, COP0_CAUSE
50        PRINTX
51
52        PRINT(pcstr)
53        mfc0    a0, COP0_EXPC
54        PRINTX
55
56        PRINT(badvastr)
57        mfc0    a0, COP_0_BADVADDR
58        PRINTX
59
60        PRINT(xicustr)
61        la      t0, XICU_BASE
62        lw      a0, XICU_PRIO(0)(t0)
63        PRINTX
64
65        PUTCHAR('\n')
66        /* clear interrupt */
67        mfc0    a0, COP0_CAUSE
68        andi    t0, a0, 0xff00
69        xor     a0, a0, t0
70        mtc0    a0, COP0_CAUSE
71        /* we should end there */
72        EXIT(0)
73
74        .rodata:
75statusstr: .ascii "status \0"
76causestr: .ascii " cause \0"
77pcstr: .ascii " pc \0"
78badvastr: .ascii " badva \0"
79xicustr: .ascii " xicu \0"
80startstr: .ascii "start\n\0"
81eretstr: .ascii "eret\n\0"
82
83        .org EXCEP_ADDRESS - BOOT_ADDRESS
84        .globl evect
85evect:
86        j       excep
87        nop
88        .data
89myvar:  .word 0
Note: See TracBrowser for help on using the repository browser.