forked from riscv/sail-riscv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Zicbom, Zicboz (cbo.flush, cbo.inval, cbo.zero)
Note that Zicbop (prefetch hints) does not need to be implemented because all it does is label some existing base instructions as prefetch hints. Also I have not wired up the enable flags to the emulators because it is rather tedious (and will hopefully be replaced by riscv-config at some point).
- Loading branch information
Showing
17 changed files
with
249 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/*=======================================================================================*/ | ||
/* This Sail RISC-V architecture model, comprising all files and */ | ||
/* directories except where otherwise noted is subject the BSD */ | ||
/* two-clause license in the LICENSE file. */ | ||
/* */ | ||
/* SPDX-License-Identifier: BSD-2-Clause */ | ||
/*=======================================================================================*/ | ||
|
||
// Cache Block Operations - Management | ||
// | ||
// Note that the CBOP prefetch instructions are existing base instructions that | ||
// are just defined to be hints, so there is not need to add any code for them | ||
// (since this model has no caches to prefetch into and the encodings already | ||
// exist). | ||
|
||
function cbo_clean_flush_enabled(p : Privilege) -> bool = feature_enabled_for_priv(p, menvcfg.CBCFE()[0], senvcfg.CBCFE()[0]) | ||
function cbo_inval_enabled(p : Privilege) -> bool = feature_enabled_for_priv(p, menvcfg.CBIE()[0], senvcfg.CBIE()[0]) | ||
function cbo_inval_as_inval(p : Privilege) -> bool = feature_enabled_for_priv(p, menvcfg.CBIE()[1], senvcfg.CBIE()[1]) | ||
|
||
/* ****************************************************************** */ | ||
union clause ast = RISCV_ZICBOM : (cbop_zicbom, regidx) | ||
|
||
mapping encdec_cbop : cbop_zicbom <-> bits(12) = { | ||
CBO_CLEAN <-> 0b000000000001, | ||
CBO_FLUSH <-> 0b000000000010, | ||
CBO_INVAL <-> 0b000000000000 | ||
} | ||
|
||
mapping clause encdec = RISCV_ZICBOM(cbop, rs1) if haveZicbom() | ||
<-> encdec_cbop(cbop) @ rs1 @ 0b010 @ 0b00000 @ 0b0001111 if haveZicbom() | ||
|
||
mapping cbop_mnemonic : cbop_zicbom <-> string = { | ||
CBO_CLEAN <-> "cbo.clean", | ||
CBO_FLUSH <-> "cbo.flush", | ||
CBO_INVAL <-> "cbo.inval" | ||
} | ||
|
||
mapping clause assembly = RISCV_ZICBOM(cbop, rs1) | ||
<-> cbop_mnemonic(cbop) ^ spc() ^ "(" ^ opt_spc() ^ reg_name(rs1) ^ opt_spc() ^ ")" | ||
|
||
val process_clean_inval : (regidx, cbop_zicbom) -> Retired | ||
function process_clean_inval(rs1, cbop) = { | ||
let rs1_val = X(rs1); | ||
let cache_block_size_exp = plat_cache_block_size_exp(); | ||
let cache_block_size = 2 ^ cache_block_size_exp; | ||
|
||
// Offset from the beginning of the cache block. | ||
let offset = (rs1_val & ~(zero_extend(ones(cache_block_size_exp)))) - rs1_val; | ||
|
||
// TODO: This may not be correct since CHERI may treat CBO operations | ||
// differently to normal accesses with respect to bounds checks. | ||
match ext_data_get_addr(rs1, offset, Read(Data), cache_block_size) { | ||
Ext_DataAddr_Error(e) => { ext_handle_data_check_error(e); RETIRE_FAIL }, | ||
Ext_DataAddr_OK(vaddr) => { | ||
let res: option(ExceptionType) = match translateAddr(vaddr, Read(Data)) { | ||
TR_Address(paddr, _) => { | ||
// "A cache-block management instruction is permitted to access the | ||
// specified cache block whenever a load instruction or store instruction | ||
// is permitted to access the corresponding physical addresses. If | ||
// neither a load instruction nor store instruction is permitted to | ||
// access the physical addresses, but an instruction fetch is permitted | ||
// to access the physical addresses, whether a cache-block management | ||
// instruction is permitted to access the cache block is UNSPECIFIED." | ||
// | ||
// In this implementation we currently don't allow access for fetches. | ||
let exc_read = phys_access_check(Read(Data), cur_privilege, paddr, cache_block_size); | ||
let exc_write = phys_access_check(Write(Data), cur_privilege, paddr, cache_block_size); | ||
match (exc_read, exc_write) { | ||
(Some(e0), Some(e1)) => Some(e1), | ||
_ => None(), | ||
} | ||
}, | ||
TR_Failure(e, _) => Some(e) | ||
}; | ||
// "If access to the cache block is not permitted, a cache-block management | ||
// instruction raises a store page fault or store guest-page fault exception | ||
// if address translation does not permit any access or raises a store access | ||
// fault exception otherwise." | ||
match res { | ||
// The model has no caches so there's no action required. | ||
None() => RETIRE_SUCCESS, | ||
Some(e) => { | ||
let e : ExceptionType = match e { | ||
E_Load_Access_Fault() => E_SAMO_Access_Fault(), | ||
E_SAMO_Access_Fault() => E_SAMO_Access_Fault(), | ||
E_Load_Page_Fault() => E_SAMO_Page_Fault(), | ||
E_SAMO_Page_Fault() => E_SAMO_Page_Fault(), | ||
// No other exceptions should be generated since we're not checking | ||
// for fetch access and it's can't be misaligned. | ||
_ => internal_error(__FILE__, __LINE__, "unexpected exception for cmo.clean/inval"), | ||
}; | ||
handle_mem_exception(vaddr, e); | ||
RETIRE_FAIL | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
function clause execute(RISCV_ZICBOM(cbop, rs1)) = { | ||
if (cbop == CBO_CLEAN | cbop == CBO_FLUSH) & cbo_clean_flush_enabled(cur_privilege) then { | ||
process_clean_inval(rs1, cbop) | ||
} else if (cbop == CBO_INVAL) & cbo_inval_enabled(cur_privilege) then { | ||
process_clean_inval(rs1, if cbo_inval_as_inval(cur_privilege) then CBO_INVAL else CBO_FLUSH) | ||
} else { | ||
handle_illegal(); | ||
RETIRE_FAIL | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/*=======================================================================================*/ | ||
/* This Sail RISC-V architecture model, comprising all files and */ | ||
/* directories except where otherwise noted is subject the BSD */ | ||
/* two-clause license in the LICENSE file. */ | ||
/* */ | ||
/* SPDX-License-Identifier: BSD-2-Clause */ | ||
/*=======================================================================================*/ | ||
|
||
// Cache Block Operations - Zero | ||
// | ||
// Note that the CBOP prefetch instructions are existing base instructions that | ||
// are just defined to be hints, so there is not need to add any code for them | ||
// (since this model has no caches to prefetch into and the encodings already | ||
// exist). | ||
|
||
function cbo_zero_enabled(p : Privilege) -> bool = feature_enabled_for_priv(p, menvcfg.CBZE()[0], senvcfg.CBZE()[0]) | ||
|
||
/* ****************************************************************** */ | ||
union clause ast = RISCV_ZICBOZ : (regidx) | ||
|
||
mapping clause encdec = RISCV_ZICBOZ(rs1) if haveZicboz() | ||
<-> 0b000000000100 @ rs1 @ 0b010 @ 0b00000 @ 0b0001111 if haveZicboz() | ||
|
||
mapping clause assembly = RISCV_ZICBOZ(rs1) | ||
<-> "cbo.zero" ^ spc() ^ "(" ^ opt_spc() ^ reg_name(rs1) ^ opt_spc() ^ ")" | ||
|
||
function clause execute(RISCV_ZICBOZ(rs1)) = { | ||
if cbo_zero_enabled(cur_privilege) then { | ||
let rs1_val = X(rs1); | ||
let cache_block_size_exp = plat_cache_block_size_exp(); | ||
let cache_block_size = 2 ^ cache_block_size_exp; | ||
|
||
// Offset from the beginning of the cache block. | ||
let offset = (rs1_val & ~(zero_extend(ones(cache_block_size_exp)))) - rs1_val; | ||
|
||
// TODO: This may not be correct since CHERI may treat CBO operations | ||
// differently to normal accesses with respect to bounds checks. | ||
match ext_data_get_addr(rs1, offset, Write(Data), cache_block_size) { | ||
Ext_DataAddr_Error(e) => { ext_handle_data_check_error(e); RETIRE_FAIL }, | ||
Ext_DataAddr_OK(vaddr) => { | ||
// "An implementation may update the bytes in any order and with any granularity | ||
// and atomicity, including individual bytes." | ||
// | ||
// This implementation does a single atomic write. | ||
match translateAddr(vaddr, Write(Data)) { | ||
TR_Failure(e, _) => { handle_mem_exception(vaddr, e); RETIRE_FAIL }, | ||
TR_Address(paddr, _) => { | ||
let eares : MemoryOpResult(unit) = mem_write_ea(paddr, cache_block_size, false, false, false); | ||
match (eares) { | ||
MemException(e) => { handle_mem_exception(vaddr, e); RETIRE_FAIL }, | ||
MemValue(_) => { | ||
let res : MemoryOpResult(bool) = mem_write_value(paddr, cache_block_size, zeros(), false, false, false); | ||
match (res) { | ||
MemValue(true) => RETIRE_SUCCESS, | ||
MemValue(false) => internal_error(__FILE__, __LINE__, "store got false from mem_write_value"), | ||
MemException(e) => { handle_mem_exception(vaddr, e); RETIRE_FAIL } | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
} | ||
} else { | ||
handle_illegal(); | ||
RETIRE_FAIL | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters