/* * ifetch bus fault exception test: we can restart the faulting instruction * We use the MMU to cause fault. */ #include #include #include .text .globl _start _start: .set noreorder la k0, TTY_BASE la k1, EXIT_BASE la sp, 0x00200000 - 16 PRINT(startstr) /* reset cop0 status (keep BEV) */ lui a0, 0x0040; mtc0 a0, COP0_STATUS la a0, pte1 srl a0, a0, 13 mtc2 a0, VC_PTPR nop li a0, VC_TLB_EN_ITLB | VC_TLB_EN_DTLB | VC_TLB_EN_ICACHE | VC_TLB_EN_DCACHE mtc2 a0, VC_TLB_EN PRINT(mmustr) move a1, zero la s0, testval jal doload move a0, s0 PRINTX PUTCHAR(':') PUTCHAR(' ') move a0, a1 PRINTX PUTCHAR('\n') /* we should get there */ EXIT(0) .globl excep excep: .set noreorder /* don't clobber a0 and ra */ addiu sp, sp, -8 sw a0, 4(sp) sw ra, 8(sp) PRINT(statusstr) mfc0 a0, COP0_STATUS PRINTX PRINT(causestr) mfc0 a0, COP0_CAUSE PRINTX PRINT(pcstr) mfc0 a0, COP0_EXPC PRINTX PRINT(badvastr) mfc0 a0, COP_0_BADVADDR PRINTX PUTCHAR('\n') /* map VA 0xbfc01000 at PA 0xbfc01000 */ la t0, pte2 + VADDR_TO_PTE2I(0xbfc01000) * 8 la a0, (0xbfc01000 >> PTE2_SHIFT) sw a0, 4(t0) la a0, (PTE2_V | PTE2_C | PTE2_X) sw a0, 0(t0) /* la a0, 0xbfc01000 mtc2 a0, VC_ITLB_INVAL */ lw a0, 4(sp) lw ra, 8(sp) addiu sp, sp, 8 eret .rodata: statusstr: .ascii "status \0" causestr: .ascii " cause \0" pcstr: .ascii " pc \0" badvastr: .ascii " badva \0" mmustr: .ascii "mmu started\n\0" startstr: .ascii "start\n\0" .org EXCEP_ADDRESS - BOOT_ADDRESS .globl evect evect: j excep nop /* * we use a ldscript trick here, to load this function at * the appropriate address */ .section .text2, "ax" .globl doload doload: jr ra lw a1, 0(s0) /* this should trigger the exception */ /* we should not get there */ nop nop EXIT(1) .data .word MAGIC1 testval: .word MAGIC2 .globl pte2 pte2: .align 12 .word PTE2_V | PTE2_C | PTE2_X .word BOOT_ADDRESS >> 12 .org pte2 + 4092 .globl pte1 pte1: .align 13 .word PTE1_V | PTE1_C | PTE1_W | 0x0 /* map PA 0 at VA 0 */ .word 0x0 .org pte1 + (BOOT_ADDRESS >> 21) * 4 .word PTE1_V | PTE1_T | (0x1000 >> 12) /* map PA 0xbfc00000 at VA 0xbfc00000 with 4k page: check real address of PTE2 !!! */ .org pte1 + (TTY_BASE >> 21) * 4 .word PTE1_V | PTE1_W | (TTY_BASE >> 21) /* map PA 0xd0200000 at VA 0xd0200000 */ .org pte1 + (EXIT_BASE >> 21) * 4 .word PTE1_V | PTE1_W | (EXIT_BASE >> 21) /* map PA 0xe0000000 at VA 0xe0000000 */ .org pte1 + 8192