summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/riscv/include/rtems/score/cpuimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-27 14:47:17 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-27 15:06:55 +0200
commitcfc95736ffe1d891e850ed2e702e467b3f10165e (patch)
tree68b0526eb23595e290dcfd5666cec6c8a0333743 /cpukit/score/cpu/riscv/include/rtems/score/cpuimpl.h
parentsamples/minimum: Use default interrupt stack size (diff)
downloadrtems-cfc95736ffe1d891e850ed2e702e467b3f10165e.tar.bz2
riscv: Rework CPU counter support
Update #3433.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/riscv/include/rtems/score/cpuimpl.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/cpukit/score/cpu/riscv/include/rtems/score/cpuimpl.h b/cpukit/score/cpu/riscv/include/rtems/score/cpuimpl.h
index 4a5f81f617..5a256e8b75 100644
--- a/cpukit/score/cpu/riscv/include/rtems/score/cpuimpl.h
+++ b/cpukit/score/cpu/riscv/include/rtems/score/cpuimpl.h
@@ -345,6 +345,44 @@ static inline uint32_t _RISCV_Read_FCSR( void )
return fcsr;
}
+/*
+ * The RISC-V ISA provides a rdtime instruction, however, it is implemented in
+ * most chips via a trap-and-emulate. Using this in machine mode makes no
+ * sense. Use the memory-mapped mtime register directly instead. The address
+ * of this register is platform-specific and provided via the device tree.
+ *
+ * To allow better code generation provide a const (_RISCV_Counter) and a
+ * mutable (_RISCV_Counter_mutable) declaration for this pointer variable
+ * (defined in assembler code).
+ *
+ * See code generated for this test case:
+ *
+ * extern volatile int * const c;
+ *
+ * extern volatile int *v;
+ *
+ * int fc(void)
+ * {
+ * int a = *c;
+ * __asm__ volatile("" ::: "memory");
+ * return *c - a;
+ * }
+ *
+ * int fv(void)
+ * {
+ * int a = *v;
+ * __asm__ volatile("" ::: "memory");
+ * return *v - a;
+ * }
+ */
+extern volatile uint32_t *_RISCV_Counter_mutable;
+
+/*
+ * Initial value of _RISCV_Counter and _RISCV_Counter_mutable. Must be
+ * provided by the BSP.
+ */
+extern volatile uint32_t _RISCV_Counter_register;
+
#ifdef RTEMS_SMP
static inline struct Per_CPU_Control *_RISCV_Get_current_per_CPU_control( void )