From 19042124244ac683cd947347943b803bbbb0f954 Mon Sep 17 00:00:00 2001 From: Ved Shanbhogue Date: Mon, 30 Oct 2023 17:19:10 -0500 Subject: [PATCH] Add Zabha extension --- model/riscv_insts_aext.sail | 11 ++++++----- model/riscv_sys_regs.sail | 3 +++ 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/model/riscv_insts_aext.sail b/model/riscv_insts_aext.sail index 9b2d7b0d1..8141acec2 100644 --- a/model/riscv_insts_aext.sail +++ b/model/riscv_insts_aext.sail @@ -21,7 +21,7 @@ function aqrl_str(aq : bool, rl : bool) -> string = } function lrsc_width_str(width : word_width) -> string = - match (width) { + match width { BYTE => ".b", HALF => ".h", WORD => ".w", @@ -33,14 +33,15 @@ function lrsc_width_str(width : word_width) -> string = * RISC-V Zabha extension defines AMOs for byte and halfword */ function lrsc_width_valid(size : word_width) -> bool = { - match(size) { + match size { WORD => true, DOUBLE => sizeof(xlen) >= 64, _ => false } } + function amo_width_valid(size : word_width) -> bool = { - match(size) { + match size { BYTE => haveZabha(), HALF => haveZabha(), WORD => true, @@ -132,7 +133,7 @@ function clause execute (STORECON(aq, rl, rs2, rs1, width, rd)) = { TR_Failure(e, _) => { handle_mem_exception(vaddr, e); RETIRE_FAIL }, TR_Address(addr, _) => { let eares = mem_write_ea(addr, width_bytes, aq & rl, rl, true); - match (eares) { + match eares { MemException(e) => { handle_mem_exception(vaddr, e); RETIRE_FAIL }, MemValue(_) => { let rs2_val = X(rs2); @@ -194,7 +195,7 @@ function clause execute (AMO(op, aq, rl, rs2, rs1, width, rd)) = { TR_Address(addr, _) => { let eares = mem_write_ea(addr, width_bytes, aq & rl, rl, true); let rs2_val = X(rs2)[width_bytes * 8 - 1 .. 0]; - match (eares) { + match eares { MemException(e) => { handle_mem_exception(vaddr, e); RETIRE_FAIL }, MemValue(_) => { match mem_read(ReadWrite(Data, Data), addr, width_bytes, aq, aq & rl, true) { diff --git a/model/riscv_sys_regs.sail b/model/riscv_sys_regs.sail index 65d141923..05bc5aac4 100644 --- a/model/riscv_sys_regs.sail +++ b/model/riscv_sys_regs.sail @@ -168,6 +168,9 @@ function haveZalrsc() -> bool = haveAtomics() /* Zicond extension support */ function haveZicond() -> bool = true +/* Zabha extension support */ +function haveZabha() -> bool = true + /* * Illegal values legalized to least privileged mode supported. * Note: the only valid combinations of supported modes are M, M+U, M+S+U.