2021-12-29 03:14:16 +00:00
|
|
|
///////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// WALLY-PMP
|
|
|
|
//
|
|
|
|
// Author: Kip Macsai-Goren <kmacsaigoren@g.hmc.edu>
|
|
|
|
//
|
|
|
|
// Created 2021-06-15
|
|
|
|
//
|
|
|
|
// Copyright (C) 2021 Harvey Mudd College & Oklahoma State University
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
|
|
|
|
// files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
|
|
|
|
// modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
|
|
|
|
// is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
// BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
|
|
|
|
// OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
///////////////////////////////////////////
|
|
|
|
|
2022-01-30 23:08:02 +00:00
|
|
|
#include "WALLY-TEST-LIB-64.h"
|
2022-07-22 18:14:04 +00:00
|
|
|
RVTEST_ISA("RV64I")
|
|
|
|
RVTEST_CASE(0,"//check ISA:=regex(.*64.*);check ISA:=regex(.*I.*);def TEST_CASE_1=True;",pmp)
|
2022-02-14 05:29:24 +00:00
|
|
|
|
|
|
|
INIT_TESTS
|
|
|
|
|
2022-02-25 22:14:52 +00:00
|
|
|
TRAP_HANDLER m
|
|
|
|
|
2022-05-04 21:39:09 +00:00
|
|
|
j run_test_loop // begin test loop/table tests instead of executing inline code.
|
2022-02-14 05:29:24 +00:00
|
|
|
|
|
|
|
INIT_TEST_TABLE
|
|
|
|
|
|
|
|
TEST_STACK_AND_DATA
|
|
|
|
|
|
|
|
# These tests follow the testing plan in Chapter 12 of the riscv-wally textbook
|
|
|
|
.align 3
|
|
|
|
test_cases:
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------------------------
|
|
|
|
# Test Contents
|
|
|
|
#
|
|
|
|
# Here is where the actual tests are held, or rather, what the actual tests do.
|
|
|
|
# each entry consists of 3 values that will be read in as follows:
|
|
|
|
#
|
|
|
|
# '.8byte [x28 Value], [x29 Value], [x30 value]'
|
|
|
|
# or
|
|
|
|
# '.8byte [address], [value], [test type]'
|
|
|
|
#
|
|
|
|
# The encoding for x30 test type values can be found in the test handler in the framework file
|
|
|
|
#
|
|
|
|
# ---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# These tests follow the testing plan in Chapter 12 of the riscv-wally textbook *** what is it called and how do I refer to it?
|
|
|
|
# =========== test 12.3.2.2 PMPs ===========
|
|
|
|
|
|
|
|
# Test 12.3.2.2.1 Config: Write known values and set PMP config according to table 12.4 in the *** riscv book, copied below
|
|
|
|
|
|
|
|
# write pmpaddr regs. Each of these should output the value of the pmpaddr after being written.
|
2022-04-25 17:45:47 +00:00
|
|
|
# | Reg | pmpaddr | pmpcfg | L | A | X | W | R | Comments |
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x0, 0x0FFFFFFF, write_pmpaddr_0 # | 0 | 0x0FFFFFFF | 1F | 0 | NAPOT | 0 | 1 | 1 | I/O 00000000-7FFFFFFF RW |
|
|
|
|
.8byte 0x1, 0x20040000, write_pmpaddr_1 # | 1 | 0x20040000 | 00 | 0 | OFF | 0 | 0 | 0 | |
|
|
|
|
.8byte 0x2, 0x2004003F, write_pmpaddr_2 # | 2 | 0x2004003F | 09 | 0 | TOR | 0 | 0 | 1 | 80100000-801000FF R |
|
|
|
|
.8byte 0x3, 0x20040080, write_pmpaddr_3 # | 3 | 0x20040080 | 00 | 0 | OFF | 0 | 0 | 0 | |
|
|
|
|
.8byte 0x4, 0x20040084, write_pmpaddr_4 # | 4 | 0x20040084 | 0C | 0 | TOR | 1 | 0 | 0 | 80100200-80100210 X |
|
|
|
|
.8byte 0x5, 0x200400C0, write_pmpaddr_5 # | 5 | 0x200400C0 | 90 | 1 | NA4 | 0 | 0 | 0 | 80100300-80100303 locked out |
|
|
|
|
.8byte 0x6, 0x2004013F, write_pmpaddr_6 # | 6 | 0x2004013F | 18 | 0 | NAPOT | 0 | 0 | 0 | 80100400-801004FF no access |
|
2021-12-29 03:14:16 +00:00
|
|
|
# Pmpaddr 7-14 are all zeroed out in this test, so they don't need writes.
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0xF, 0x2FFFFFFF, write_pmpaddr_15 # | 15 | 0x2FFFFFFF | 1F | 0 | NAPOT | 1 | 1 | 1 | Main mem 80000000-FFFFFFFF RWX|
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# write pmpcfg regs with the information in the table above. this should also write the value of these registers to the output.
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x0, 0x0018900C0009001F, write_pmpcfg_0 # write pmpcfg0, output 0x0018900C0009001F
|
|
|
|
.8byte 0x2, 0x1F00000000000000, write_pmpcfg_2 # write pmpcfg2, output 0x1F00000000000000
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# write known values to memory where W=0. This should be possible since we're in machine mode.
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x80100010, 0x600DAA, write64_test # write to pmpaddr 1-2 range
|
|
|
|
.8byte 0x80100400, 0x600DBB, write64_test # write to pmpaddr 6 range
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# Write executable code to regions where X = 0, 1 in main memory
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x80100200, 0x0000806711100393, write64_test # write executable code for "li x7, 0x111; ret" to region with X=1 (PMP4)
|
|
|
|
.8byte 0x80100020, 0x0000806711100393, write64_test # Write same executable code to region with X=0 (PMP2)
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# attempt to write to pmpaddr5 and pmp5cfg after lockout
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x0, 0x0018FF0C0009001F, write_pmpcfg_0 # attempt to edit only pmp5cfg (pmpcfg0[47:40]) after lockout.
|
2021-12-29 03:14:16 +00:00
|
|
|
# instruction ignored, output is 0x0018900C0009001F, NOT 0x0018FF0C0009001F
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x5, 0xFFFFFFFF, write_pmpaddr_5 # attempt to edit pmpaddr5 after lockout.
|
2022-02-06 02:05:42 +00:00
|
|
|
# instruction ignored, output is 0x200400c0, NOT 0xFFFFFFFF
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# Test 12.3.2.2.2 Machine mode access
|
|
|
|
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x80100300, 0x0, read64_test # access fault to region with L=1, R=0
|
|
|
|
.8byte 0x80100400, 0x0, read64_test # successful access to region with L=X=W=R=0
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# Test 12.3.2.2.3 System mode access
|
|
|
|
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x0, 0x0, goto_s_mode # go to S mode. 0xb written to output
|
2021-12-29 03:14:16 +00:00
|
|
|
# test a write followed by a read to each region with R=W=1
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x80200000, 0x600D15, write64_test # Write "good value" to RW range (PMP15)
|
|
|
|
.8byte 0x80200000, 0x600D15, read64_test # confirm write with read
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# test a write followed by a read on the edges of a read-only range
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x800FFFF8, 0x600D02, write64_test # Write "good value" just below read-only range (PMP2)
|
|
|
|
.8byte 0x800FFFF8, 0x600D02, read64_test # confirm write with read
|
|
|
|
.8byte 0x80100100, 0x600D12, write64_test # Write "good value" just above read-only range (PMP2)
|
|
|
|
.8byte 0x80100100, 0x600D12, read64_test # confirm write with read
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# test a read from each read only range verify a write causes an access fault
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x80100010, 0xBAD, write64_test # Write fault in read-only range (PMP2)
|
|
|
|
.8byte 0x80100010, 0x600DAA, read64_test # read correct value out
|
2021-12-29 03:14:16 +00:00
|
|
|
|
|
|
|
# test read and write fault on region with no access
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x80100208, 0x600D15, write64_test # Write fault on no-access range (PMP6)
|
|
|
|
.8byte 0x80100208, 0x600D15, read64_test # read fault on no-access range (PMP6)
|
2021-12-29 03:14:16 +00:00
|
|
|
|
2022-01-04 21:30:38 +00:00
|
|
|
# test jalr to region with X=0 causes access fault
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x80100020, 0xbad, executable_test # execute fault on no-execute range (PMP2)
|
2021-12-29 03:14:16 +00:00
|
|
|
|
2022-01-04 21:30:38 +00:00
|
|
|
# test jalr to region with X=1 returns successfully
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x80100200, 0x111, executable_test # execute success when X=1
|
2021-12-29 03:14:16 +00:00
|
|
|
|
2022-01-30 22:56:03 +00:00
|
|
|
.8byte 0x0, 0x0, terminate_test // terminate tests
|