123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018-10-03 Bernard The first version
- */
- #ifndef CPUPORT_H__
- #define CPUPORT_H__
- #include <rtconfig.h>
- /* bytes of register width */
- #ifdef ARCH_CPU_64BIT
- #define STORE sd
- #define LOAD ld
- #define REGBYTES 8
- #else
- // error here, not portable
- #error "Not supported XLEN"
- #endif
- /* 33 general register */
- #define CTX_GENERAL_REG_NR 33
- #ifdef ENABLE_FPU
- /* 32 fpu register */
- #define CTX_FPU_REG_NR 32
- #else
- #define CTX_FPU_REG_NR 0
- #endif
- #ifdef ENABLE_VECTOR
- #if defined(ARCH_VECTOR_VLEN_128)
- #define CTX_VECTOR_REGS 64
- #elif defined(ARCH_VECTOR_VLEN_256)
- #define CTX_VECTOR_REGS 128
- #endif
- #define CTX_VECTOR_REG_NR (CTX_VECTOR_REGS + 4)
- #else
- #define CTX_VECTOR_REG_NR 0
- #endif
- /* all context registers */
- #define CTX_REG_NR (CTX_GENERAL_REG_NR + CTX_FPU_REG_NR + CTX_VECTOR_REG_NR)
- #ifdef RT_USING_SMP
- typedef union {
- unsigned long slock;
- struct __arch_tickets {
- unsigned short owner;
- unsigned short next;
- } tickets;
- } rt_hw_spinlock_t;
- #endif
- #ifndef __ASSEMBLY__
- #include <rtdef.h>
- rt_inline void rt_hw_dsb(void)
- {
- asm volatile("fence":::"memory");
- }
- rt_inline void rt_hw_dmb(void)
- {
- asm volatile("fence":::"memory");
- }
- rt_inline void rt_hw_isb(void)
- {
- asm volatile(".long 0x0000100F":::"memory");
- }
- #endif
- #endif
- #ifdef RISCV_U_MODE
- #define RISCV_USER_ENTRY 0xFFFFFFE000000000ULL
- #endif
|