| 1 |
2 |
alfik |
/*
|
| 2 |
|
|
* This file is subject to the terms and conditions of the BSD License. See
|
| 3 |
|
|
* the file "LICENSE" in the main directory of this archive for more details.
|
| 4 |
|
|
*
|
| 5 |
|
|
* Copyright (C) 2014 Aleksander Osman
|
| 6 |
|
|
*/
|
| 7 |
|
|
|
| 8 |
|
|
#include <cstdio>
|
| 9 |
|
|
#include <cstdlib>
|
| 10 |
|
|
|
| 11 |
|
|
#include "tests.h"
|
| 12 |
|
|
|
| 13 |
|
|
//------------------------------------------------------------------------------
|
| 14 |
|
|
|
| 15 |
|
|
void tlb_fetch_till_exc_init(tst_t *tst, shared_mem_t *shared_ptr) {
|
| 16 |
|
|
|
| 17 |
|
|
for(int i=1; i<32; i++) shared_ptr->initial.reg[i-1] = rand_uint32();
|
| 18 |
|
|
|
| 19 |
|
|
shared_ptr->initial.pc = (rand() % 2)? 0x00091000 : 0xF0001000;
|
| 20 |
|
|
|
| 21 |
|
|
shared_ptr->initial.index_p = rand() & 0x1;
|
| 22 |
|
|
shared_ptr->initial.index_index = rand() & 0x3F;
|
| 23 |
|
|
|
| 24 |
|
|
shared_ptr->initial.random = rand() & 0x3F;
|
| 25 |
|
|
|
| 26 |
|
|
shared_ptr->initial.entrylo_pfn = rand() & 0xFFFFF;
|
| 27 |
|
|
shared_ptr->initial.entrylo_n = rand() & 0x1;
|
| 28 |
|
|
shared_ptr->initial.entrylo_d = rand() & 0x1;
|
| 29 |
|
|
shared_ptr->initial.entrylo_v = rand() & 0x1;
|
| 30 |
|
|
shared_ptr->initial.entrylo_g = rand() & 0x1;
|
| 31 |
|
|
|
| 32 |
|
|
shared_ptr->initial.context_ptebase = rand() & 0x7FF;
|
| 33 |
|
|
shared_ptr->initial.context_badvpn = rand() & 0x7FFFF;
|
| 34 |
|
|
|
| 35 |
|
|
shared_ptr->initial.bad_vaddr = rand_uint32();
|
| 36 |
|
|
|
| 37 |
|
|
shared_ptr->initial.entryhi_vpn = rand() & 0xFFFFF;
|
| 38 |
|
|
shared_ptr->initial.entryhi_asid = rand() & 0x3F;
|
| 39 |
|
|
|
| 40 |
|
|
shared_ptr->initial.sr_cp_usable = rand() & 0xF;
|
| 41 |
|
|
shared_ptr->initial.sr_rev_endian = rand() & 0x1;
|
| 42 |
|
|
shared_ptr->initial.sr_bootstrap_vec = rand() & 0x1;
|
| 43 |
|
|
shared_ptr->initial.sr_tlb_shutdown = rand() & 0x1;
|
| 44 |
|
|
shared_ptr->initial.sr_parity_err = rand() & 0x1;
|
| 45 |
|
|
shared_ptr->initial.sr_cache_miss = rand() & 0x1;
|
| 46 |
|
|
shared_ptr->initial.sr_parity_zero = rand() & 0x1;
|
| 47 |
|
|
shared_ptr->initial.sr_switch_cache = 0; //rand() & 0x1;
|
| 48 |
|
|
shared_ptr->initial.sr_isolate_cache = 0; //rand() & 0x1;
|
| 49 |
|
|
shared_ptr->initial.sr_irq_mask = rand() & 0xFF;
|
| 50 |
|
|
shared_ptr->initial.sr_ku_ie = rand() & 0x3F;
|
| 51 |
|
|
|
| 52 |
|
|
shared_ptr->initial.cause_branch_delay = rand() & 0x1;
|
| 53 |
|
|
shared_ptr->initial.cause_cp_error = rand() & 0x3;
|
| 54 |
|
|
shared_ptr->initial.cause_irq_pending = 0;
|
| 55 |
|
|
shared_ptr->initial.cause_exc_code = rand() & 0x1F;
|
| 56 |
|
|
|
| 57 |
|
|
shared_ptr->initial.epc = rand_uint32();
|
| 58 |
|
|
|
| 59 |
|
|
//
|
| 60 |
|
|
uint32 vaddr_pc = shared_ptr->initial.pc;
|
| 61 |
|
|
uint32 paddr_pc = 0x5000;
|
| 62 |
|
|
|
| 63 |
|
|
shared_ptr->initial.tlb[55].vpn = (vaddr_pc >> 12) & 0xFFFFF;
|
| 64 |
|
|
shared_ptr->initial.tlb[55].asid = ((rand() % 5) == 0)? (rand() % 0x1F) : shared_ptr->initial.entryhi_asid;
|
| 65 |
|
|
shared_ptr->initial.tlb[55].pfn = (paddr_pc >> 12) & 0xFFFFF;
|
| 66 |
|
|
shared_ptr->initial.tlb[55].n = rand() % 2;
|
| 67 |
|
|
shared_ptr->initial.tlb[55].d = rand() % 2;
|
| 68 |
|
|
shared_ptr->initial.tlb[55].v = rand() % 2;
|
| 69 |
|
|
shared_ptr->initial.tlb[55].g = rand() % 2;
|
| 70 |
|
|
|
| 71 |
|
|
//
|
| 72 |
|
|
shared_ptr->initial.reg[0] = 5;
|
| 73 |
|
|
|
| 74 |
|
|
//
|
| 75 |
|
|
shared_ptr->irq2_at_event = 0xFFFFFFFF;
|
| 76 |
|
|
shared_ptr->irq3_at_event = 0xFFFFFFFF;
|
| 77 |
|
|
|
| 78 |
|
|
//
|
| 79 |
|
|
uint32 *ptr = &shared_ptr->mem.ints[paddr_pc / 4];
|
| 80 |
|
|
|
| 81 |
|
|
for(int i=0; i<10; i++) {
|
| 82 |
|
|
(*ptr) = 0;
|
| 83 |
|
|
ptr++;
|
| 84 |
|
|
}
|
| 85 |
|
|
|
| 86 |
|
|
(*ptr) = (0b001000 << 26) | (0b00001 << 21) | (0b00001 << 16) | 0xFFFF; //SUB 1 from reg[0] (reg1)
|
| 87 |
|
|
ptr++;
|
| 88 |
|
|
|
| 89 |
|
|
(*ptr) = (0b000100 << 26) | (0b00000 << 21) | (0b00001 << 16) | 2; //BEQ
|
| 90 |
|
|
ptr++;
|
| 91 |
|
|
|
| 92 |
|
|
(*ptr) = 0; //delay slot
|
| 93 |
|
|
ptr++;
|
| 94 |
|
|
|
| 95 |
|
|
(*ptr) = (0b000010 << 26) | ((vaddr_pc >> 2) & 0x3FFFFFF); //J back
|
| 96 |
|
|
ptr++;
|
| 97 |
|
|
|
| 98 |
|
|
(*ptr) = 0; //delay slot
|
| 99 |
|
|
ptr++;
|
| 100 |
|
|
|
| 101 |
|
|
(*ptr) = rand() & 0x03FFFFC0;
|
| 102 |
|
|
(*ptr) |= 0b001100; //SYSCALL
|
| 103 |
|
|
ptr++;
|
| 104 |
|
|
}
|
| 105 |
|
|
|
| 106 |
|
|
//------------------------------------------------------------------------------
|