soc: andestech: Remove l2_cache.c
Replace l2_cache.c with cache driver. Signed-off-by: Wei-Tai Lee <wtlee@andestech.com>
This commit is contained in:
parent
6b26cdb7e0
commit
5db2590106
|
@ -8,7 +8,6 @@ zephyr_sources(
|
|||
)
|
||||
|
||||
zephyr_sources_ifdef(CONFIG_SOC_ANDES_V5_PMA pma.c)
|
||||
zephyr_sources_ifdef(CONFIG_SOC_ANDES_V5_L2C l2_cache.c)
|
||||
zephyr_linker_sources(ROM_START SORT_KEY 0x0 common_linker/init.ld)
|
||||
zephyr_linker_sources_ifdef(CONFIG_SOC_ANDES_V5_EXECIT RODATA SORT_KEY 0x0 common_linker/execit.ld)
|
||||
zephyr_linker_sources_ifdef(CONFIG_XIP RAM_SECTIONS SORT_KEY 0x0 common_linker/ram_start_nonzero.ld)
|
||||
|
|
|
@ -14,6 +14,7 @@ config SOC_ANDES_AE350
|
|||
select RISCV_ISA_EXT_C
|
||||
select CPU_HAS_DCACHE
|
||||
select CPU_HAS_ICACHE
|
||||
select CACHE_MANAGEMENT if DCACHE
|
||||
select RISCV_PMP
|
||||
|
||||
if SOC_SERIES_ANDES_AE350
|
||||
|
@ -103,16 +104,12 @@ config SOC_ANDES_V5_PMA_REGION_MIN_ALIGN_AND_SIZE
|
|||
Minimum size (and alignment) of an PMA region. Use this symbol
|
||||
to guarantee minimum size and alignment of PMA regions.
|
||||
|
||||
# Workaround for not being able to have commas in macro arguments
|
||||
DT_ANDESTECH_L2C := andestech,l2c
|
||||
|
||||
config SOC_ANDES_V5_L2C
|
||||
bool
|
||||
default $(dt_compat_enabled,$(DT_ANDESTECH_L2C))
|
||||
select DEPRECATED
|
||||
|
||||
config SOC_ANDES_V5_IOCP
|
||||
bool "Andes V5 I/O Coherence Port (IOCP)"
|
||||
depends on SOC_ANDES_V5_L2C
|
||||
depends on DCACHE
|
||||
help
|
||||
Support Andes V5 I/O Coherence Port to handle cache coherency
|
||||
|
|
|
@ -1,109 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2021 Andes Technology Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#define DT_DRV_COMPAT andestech_l2c
|
||||
|
||||
/**
|
||||
* @brief Andes V5 L2 Cache Controller driver
|
||||
*/
|
||||
|
||||
#include "soc_v5.h"
|
||||
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
#include <zephyr/drivers/syscon.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/arch/riscv/csr.h>
|
||||
|
||||
LOG_MODULE_REGISTER(andes_v5_l2_cache, CONFIG_SOC_LOG_LEVEL);
|
||||
|
||||
/* L2C Register Base Address */
|
||||
#define ANDES_V5_L2C_BASE DT_INST_REG_ADDR(0)
|
||||
|
||||
/* L2C Register Offset */
|
||||
#define L2C_CONFIG (ANDES_V5_L2C_BASE + 0x00)
|
||||
#define L2C_CTRL (ANDES_V5_L2C_BASE + 0x08)
|
||||
|
||||
/* L2C Helper Constant */
|
||||
#define L2C_CONFIG_VER GENMASK64(31, 24)
|
||||
#define L2C_CTRL_CEN BIT(0)
|
||||
|
||||
/* Instruction prefetch depth */
|
||||
#define IPFDPT_FIELD(x) (x << 3)
|
||||
#define L2C_CTRL_IPFDPT_0 IPFDPT_FIELD(0)
|
||||
#define L2C_CTRL_IPFDPT_1 IPFDPT_FIELD(1)
|
||||
#define L2C_CTRL_IPFDPT_2 IPFDPT_FIELD(2)
|
||||
#define L2C_CTRL_IPFDPT_3 IPFDPT_FIELD(3)
|
||||
|
||||
/* Data prefetch depth */
|
||||
#define DPFDPT_FIELD(x) (x << 5)
|
||||
#define L2C_CTRL_DPFDPT_0 DPFDPT_FIELD(0)
|
||||
#define L2C_CTRL_DPFDPT_2 DPFDPT_FIELD(1)
|
||||
#define L2C_CTRL_DPFDPT_4 DPFDPT_FIELD(2)
|
||||
#define L2C_CTRL_DPFDPT_8 DPFDPT_FIELD(3)
|
||||
|
||||
#if DT_HAS_COMPAT_STATUS_OKAY(andestech_atcsmu100)
|
||||
/* SMU Register offset */
|
||||
#define SMU_SYSTEMCFG 0x08
|
||||
|
||||
/* SMU Helper Constant */
|
||||
#define SMU_SYSTEMCFG_L2C BIT(8)
|
||||
#endif
|
||||
|
||||
static void andes_v5_l2c_enable(void)
|
||||
{
|
||||
uint32_t l2c_ctrl = sys_read32(L2C_CTRL);
|
||||
|
||||
/* Enable L2C if I-cache or D-cache is enabled */
|
||||
if (csr_read(NDS_MCACHE_CTL) & BIT_MASK(2)) {
|
||||
uint32_t l2c_config = sys_read32(L2C_CONFIG);
|
||||
|
||||
/* Memory barrier, flush all I/D-Cache before setting L2C */
|
||||
__asm__ volatile ("fence.i");
|
||||
|
||||
l2c_ctrl |= (L2C_CTRL_IPFDPT_3 | L2C_CTRL_DPFDPT_8);
|
||||
sys_write32(l2c_ctrl, L2C_CTRL);
|
||||
|
||||
/* Enable L2C for Gen1 L2C, Gen2 L2C defaults to enable */
|
||||
if ((l2c_config & L2C_CONFIG_VER) < (16 << 24)) {
|
||||
l2c_ctrl = sys_read32(L2C_CTRL);
|
||||
l2c_ctrl |= L2C_CTRL_CEN;
|
||||
sys_write32(l2c_ctrl, L2C_CTRL);
|
||||
}
|
||||
} else {
|
||||
/* Disable L2C */
|
||||
l2c_ctrl &= ~L2C_CTRL_CEN;
|
||||
sys_write32(l2c_ctrl, L2C_CTRL);
|
||||
}
|
||||
}
|
||||
|
||||
static int andes_v5_l2c_init(void)
|
||||
{
|
||||
#if DT_NODE_HAS_COMPAT_STATUS(DT_NODELABEL(syscon), andestech_atcsmu100, okay)
|
||||
const struct device *const syscon_dev = DEVICE_DT_GET(DT_NODELABEL(syscon));
|
||||
|
||||
if (device_is_ready(syscon_dev)) {
|
||||
uint32_t system_cfg;
|
||||
|
||||
syscon_read_reg(syscon_dev, SMU_SYSTEMCFG, &system_cfg);
|
||||
|
||||
/* Platform doesn't have L2C */
|
||||
if (!(system_cfg & SMU_SYSTEMCFG_L2C)) {
|
||||
return -ENODEV;
|
||||
}
|
||||
} else {
|
||||
LOG_ERR("Syscon driver should be initialized before L2 Cache "
|
||||
"initialization.");
|
||||
}
|
||||
#endif
|
||||
|
||||
andes_v5_l2c_enable();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
SYS_INIT(andes_v5_l2c_init, PRE_KERNEL_2, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);
|
Loading…
Reference in a new issue