Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/riscv/include Provide riscvreg_satp_{read,write}



details:   https://anonhg.NetBSD.org/src/rev/55ba07ae11bd
branches:  trunk
changeset: 983056:55ba07ae11bd
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sat May 01 07:09:55 2021 +0000

description:
Provide riscvreg_satp_{read,write}

diffstat:

 sys/arch/riscv/include/sysreg.h |  18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diffs (39 lines):

diff -r 653b7b75bf0f -r 55ba07ae11bd sys/arch/riscv/include/sysreg.h
--- a/sys/arch/riscv/include/sysreg.h   Sat May 01 07:09:04 2021 +0000
+++ b/sys/arch/riscv/include/sysreg.h   Sat May 01 07:09:55 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sysreg.h,v 1.12 2021/05/01 07:09:04 skrll Exp $ */
+/* $NetBSD: sysreg.h,v 1.13 2021/05/01 07:09:55 skrll Exp $ */
 
 /*
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -36,6 +36,8 @@
 #include <sys/param.h>
 #endif
 
+#include <riscv/reg.h>
+
 #define FCSR_FMASK     0       // no exception bits
 #define FCSR_FRM       __BITS(7,5)
 #define  FCSR_FRM_RNE  0b000   // Round Nearest, ties to Even
@@ -262,6 +264,20 @@
 #define SATP_PPN               __BITS(21,0)
 #endif
 
+static inline uintptr_t
+riscvreg_satp_read(void)
+{
+       uintptr_t satp;
+       __asm __volatile("csrr  %0, satp" : "=r" (satp));
+       return satp;
+}
+
+static inline void
+riscvreg_satp_write(uintptr_t satp)
+{
+       __asm __volatile("csrw  satp, %0" :: "r" (satp));
+}
+
 static inline uint32_t
 riscvreg_asid_read(void)
 {



Home | Main Index | Thread Index | Old Index