mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 15:31:22 +01:00

On platforms with Smepmp, the MMIO regions accessed by M-mode need to be explicitly marked with M-mode only read/write or shared (both (M-mode and S-mode) read/write permission. If the above is not done then runtime PLIC access from M-mode on platforms with Smepmp will result in access fault when further results in CPU hotplug not working. Signed-off-by: Anup Patel <apatel@ventanamicro.com>
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
*
|
|
* Authors:
|
|
* Damien Le Moal <damien.lemoal@wdc.com>
|
|
*/
|
|
#ifndef _K210_PLATFORM_H_
|
|
#define _K210_PLATFORM_H_
|
|
|
|
#include <sbi/riscv_io.h>
|
|
|
|
#define K210_HART_COUNT 2
|
|
|
|
#define K210_UART_BAUDRATE 115200
|
|
#define K210_ACLINT_MTIMER_FREQ 7800000
|
|
#define K210_CLK0_FREQ 26000000UL
|
|
#define K210_PLIC_NUM_SOURCES 65
|
|
|
|
/* Registers base address */
|
|
#define K210_SYSCTL_BASE_ADDR 0x50440000ULL
|
|
#define K210_UART_BASE_ADDR 0x38000000ULL
|
|
#define K210_CLINT_BASE_ADDR 0x02000000ULL
|
|
#define K210_ACLINT_MSWI_ADDR \
|
|
(K210_CLINT_BASE_ADDR + CLINT_MSWI_OFFSET)
|
|
#define K210_ACLINT_MTIMER_ADDR \
|
|
(K210_CLINT_BASE_ADDR + CLINT_MTIMER_OFFSET)
|
|
#define K210_PLIC_BASE_ADDR 0x0C000000ULL
|
|
#define K210_PLIC_BASE_SIZE (0x200000ULL + (K210_HART_COUNT * 0x1000))
|
|
|
|
/* Registers */
|
|
#define K210_PLL0 0x08
|
|
#define K210_CLKSEL0 0x20
|
|
#define K210_RESET 0x30
|
|
|
|
/* Register bit masks */
|
|
#define K210_RESET_MASK 0x01
|
|
|
|
static inline u32 k210_read_sysreg(u32 reg)
|
|
{
|
|
return readl((volatile void *)(K210_SYSCTL_BASE_ADDR + reg));
|
|
}
|
|
|
|
static inline void k210_write_sysreg(u32 val, u32 reg)
|
|
{
|
|
writel(val, (volatile void *)(K210_SYSCTL_BASE_ADDR + reg));
|
|
}
|
|
|
|
#endif /* _K210_PLATFORM_H_ */
|