Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips Add mipsNN_cp0_rdhwr_cpunum() which returns th...



details:   https://anonhg.NetBSD.org/src/rev/5adf7c03b34b
branches:  trunk
changeset: 933285:5adf7c03b34b
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sun May 24 07:15:24 2020 +0000

description:
Add mipsNN_cp0_rdhwr_cpunum() which returns the current CPU number
read from the CPUNum hardware register on MIPS{32,64}R2.

diffstat:

 sys/arch/mips/include/cpuregs.h   |  28 ++++++++++++++++++++--------
 sys/arch/mips/include/locore.h    |   4 +++-
 sys/arch/mips/mips/locore_mips3.S |  20 ++++++++++++++++++--
 3 files changed, 41 insertions(+), 11 deletions(-)

diffs (103 lines):

diff -r f53da90b49e9 -r 5adf7c03b34b sys/arch/mips/include/cpuregs.h
--- a/sys/arch/mips/include/cpuregs.h   Sun May 24 04:55:53 2020 +0000
+++ b/sys/arch/mips/include/cpuregs.h   Sun May 24 07:15:24 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpuregs.h,v 1.98 2020/05/23 10:39:25 simonb Exp $      */
+/*     $NetBSD: cpuregs.h,v 1.99 2020/05/24 07:15:24 simonb Exp $      */
 
 /*
  * Copyright (c) 2009 Miodrag Vallat.
@@ -805,15 +805,27 @@
 #endif
 
 /*
+ * RDHWR register numbers
+ */
+#define        MIPS_HWR_CPUNUM                 _(0)
+#define        MIPS_HWR_SYNCI_STEP             _(1)
+#define        MIPS_HWR_CC                     _(2)
+#define        MIPS_HWR_CCRES                  _(3)
+#define        MIPS_HWR_UL                     _(29)   /* Userlocal */
+#define        MIPS_HWR_IMPL30                 _(30)
+#define        MIPS_HWR_IMPL31                 _(31)
+#define        MIPS_HWR_CPUNUM                 _(0)
+
+/*
  * Bits defined for HWREna (CP0 register 7, select 0).
  */
-#define        MIPS_HWRENA_IMPL31              __BIT(31)
-#define        MIPS_HWRENA_IMPL30              __BIT(30)
-#define        MIPS_HWRENA_UL                  __BIT(29)       /* Userlocal */
-#define        MIPS_HWRENA_CCRES               __BIT(3)
-#define        MIPS_HWRENA_CC                  __BIT(2)
-#define        MIPS_HWRENA_SYNCI_STEP          __BIT(1)
-#define        MIPS_HWRENA_CPUNUM              __BIT(0)
+#define        MIPS_HWRENA_IMPL31              __BIT(MIPS_HWR_IMPL31)
+#define        MIPS_HWRENA_IMPL30              __BIT(MIPS_HWR_IMPL30)
+#define        MIPS_HWRENA_UL                  __BIT(MIPS_HWR_UL)
+#define        MIPS_HWRENA_CCRES               __BIT(MIPS_HWR_CCRES)
+#define        MIPS_HWRENA_CC                  __BIT(MIPS_HWR_CC)
+#define        MIPS_HWRENA_SYNCI_STEP          __BIT(MIPS_HWR_SYNCI_STEP)
+#define        MIPS_HWRENA_CPUNUM              __BIT(MIPS_HWR_CPUNUM)
 
 /*
  * Bits defined for EBASE (CP0 register 15, select 1).
diff -r f53da90b49e9 -r 5adf7c03b34b sys/arch/mips/include/locore.h
--- a/sys/arch/mips/include/locore.h    Sun May 24 04:55:53 2020 +0000
+++ b/sys/arch/mips/include/locore.h    Sun May 24 07:15:24 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.h,v 1.104 2019/04/06 03:06:26 thorpej Exp $ */
+/* $NetBSD: locore.h,v 1.105 2020/05/24 07:15:24 simonb Exp $ */
 
 /*
  * This file should not be included by MI code!!!
@@ -435,6 +435,8 @@
 int32_t mipsNN_cp0_ebase_read(void);
 void   mipsNN_cp0_ebase_write(int32_t);
 
+uint32_t mipsNN_cp0_rdhwr_cpunum(void);
+
 #ifdef MIPSNNR2
 void   mipsNN_cp0_hwrena_write(uint32_t);
 void   mipsNN_cp0_userlocal_write(void *);
diff -r f53da90b49e9 -r 5adf7c03b34b sys/arch/mips/mips/locore_mips3.S
--- a/sys/arch/mips/mips/locore_mips3.S Sun May 24 04:55:53 2020 +0000
+++ b/sys/arch/mips/mips/locore_mips3.S Sun May 24 07:15:24 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: locore_mips3.S,v 1.114 2018/01/26 05:29:43 maya Exp $  */
+/*     $NetBSD: locore_mips3.S,v 1.115 2020/05/24 07:15:24 simonb Exp $        */
 
 /*
  * Copyright (c) 1997 Jonathan Stone (hereinafter referred to as the author)
@@ -92,7 +92,7 @@
 #include <mips/asm.h>
 #include <mips/cpuregs.h>
 
-RCSID("$NetBSD: locore_mips3.S,v 1.114 2018/01/26 05:29:43 maya Exp $")
+RCSID("$NetBSD: locore_mips3.S,v 1.115 2020/05/24 07:15:24 simonb Exp $")
 
 #include "assym.h"
 
@@ -493,6 +493,22 @@
 
 #if (MIPS32R2 + MIPS64R2) > 0
 /*
+ * uint32_t mipsNN_cp0_rdhwr_cpunum(void);
+ *     Set the value of the CP0 HWRENA register.
+ */
+LEAF(mipsNN_cp0_rdhwr_cpunum)
+       .set push
+#ifdef __mips_o32
+       .set mips32r2
+#else
+       .set mips64r2
+#endif
+       jr      ra
+        rdhwr  v0, MIPS_HWR_CPUNUM
+       .set pop
+END(mipsNN_cp0_rdhwr_cpunum)
+
+/*
  * void mipsNN_cp0_hwrena_write(void *);
  *     Set the value of the CP0 HWRENA register.
  */



Home | Main Index | Thread Index | Old Index