|
@@ -15,8 +15,8 @@ use crate::rfence::{local_rfence, RFenceType};
|
|
use crate::riscv_spec::{CSR_TIME, CSR_TIMEH, current_hartid};
|
|
use crate::riscv_spec::{CSR_TIME, CSR_TIMEH, current_hartid};
|
|
|
|
|
|
const PAGE_SIZE: usize = 4096;
|
|
const PAGE_SIZE: usize = 4096;
|
|
-// TODO: `TLB_FLUASH_LIMIT` is a platform-dependent parameter
|
|
|
|
-const TLB_FLUASH_LIMIT: usize = 4 * PAGE_SIZE;
|
|
|
|
|
|
+// TODO: `TLB_FLUSH_LIMIT` is a platform-dependent parameter
|
|
|
|
+const TLB_FLUSH_LIMIT: usize = 4 * PAGE_SIZE;
|
|
|
|
|
|
#[naked]
|
|
#[naked]
|
|
pub(crate) unsafe extern "C" fn trap_vec() {
|
|
pub(crate) unsafe extern "C" fn trap_vec() {
|
|
@@ -228,7 +228,7 @@ pub fn msoft_rfence_handler() {
|
|
},
|
|
},
|
|
RFenceType::SFenceVma => {
|
|
RFenceType::SFenceVma => {
|
|
// If the flush size is greater than the maximum limit then simply flush all
|
|
// If the flush size is greater than the maximum limit then simply flush all
|
|
- if (ctx.start_addr == 0 && ctx.size == 0) || (ctx.size == usize::MAX) || (ctx.size > TLB_FLUASH_LIMIT) {
|
|
|
|
|
|
+ if (ctx.start_addr == 0 && ctx.size == 0) || (ctx.size == usize::MAX) || (ctx.size > TLB_FLUSH_LIMIT) {
|
|
unsafe { asm!("sfence.vma"); }
|
|
unsafe { asm!("sfence.vma"); }
|
|
} else {
|
|
} else {
|
|
for offset in (0..ctx.size).step_by(PAGE_SIZE) {
|
|
for offset in (0..ctx.size).step_by(PAGE_SIZE) {
|
|
@@ -242,7 +242,7 @@ pub fn msoft_rfence_handler() {
|
|
RFenceType::SFenceVmaAsid => {
|
|
RFenceType::SFenceVmaAsid => {
|
|
let asid = ctx.asid;
|
|
let asid = ctx.asid;
|
|
// If the flush size is greater than the maximum limit then simply flush all
|
|
// If the flush size is greater than the maximum limit then simply flush all
|
|
- if (ctx.start_addr == 0 && ctx.size == 0) || (ctx.size == usize::MAX) || (ctx.size > TLB_FLUASH_LIMIT) {
|
|
|
|
|
|
+ if (ctx.start_addr == 0 && ctx.size == 0) || (ctx.size == usize::MAX) || (ctx.size > TLB_FLUSH_LIMIT) {
|
|
unsafe { asm!("sfence.vma {}, {}", in(reg) 0, in(reg) asid); }
|
|
unsafe { asm!("sfence.vma {}, {}", in(reg) 0, in(reg) asid); }
|
|
} else {
|
|
} else {
|
|
for offset in (0..ctx.size).step_by(PAGE_SIZE) {
|
|
for offset in (0..ctx.size).step_by(PAGE_SIZE) {
|