opensbi
This commit is contained in:
parent
24f66c1a70
commit
ba8c037181
|
@ -0,0 +1,9 @@
|
||||||
|
# SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
|
||||||
|
config PLATFORM_LITEX_VEXRISCV
|
||||||
|
bool
|
||||||
|
select FDT
|
||||||
|
select FDT_SERIAL
|
||||||
|
select TIMER_MTIMER
|
||||||
|
select FDT_SERIAL_LITEX
|
||||||
|
default y
|
|
@ -0,0 +1,24 @@
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: BSD-2-Clause
|
||||||
|
#
|
||||||
|
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||||
|
# Copyright (c) 2020 Dolu1990 <charles.papon.90@gmail.com>
|
||||||
|
#
|
||||||
|
|
||||||
|
# Command for platform specific "make run"
|
||||||
|
platform-runcmd = echo LiteX/VexRiscv
|
||||||
|
|
||||||
|
PLATFORM_RISCV_XLEN = 32
|
||||||
|
PLATFORM_RISCV_ABI = ilp32
|
||||||
|
PLATFORM_RISCV_ISA = rv32ima
|
||||||
|
PLATFORM_RISCV_CODE_MODEL = medany
|
||||||
|
|
||||||
|
# Blobs to build
|
||||||
|
FW_TEXT_START=0x40F00000
|
||||||
|
FW_DYNAMIC=y
|
||||||
|
FW_JUMP=y
|
||||||
|
FW_JUMP_ADDR=0x40000000
|
||||||
|
FW_JUMP_FDT_ADDR=0x40EF0000
|
||||||
|
FW_PAYLOAD=y
|
||||||
|
FW_PAYLOAD_OFFSET=0x40000000
|
||||||
|
FW_PAYLOAD_FDT_ADDR=0x40EF0000
|
|
@ -5,4 +5,3 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
platform-objs-y += platform.o
|
platform-objs-y += platform.o
|
||||||
platform-objs-y += litex.o
|
|
||||||
|
|
|
@ -11,19 +11,45 @@
|
||||||
#include <sbi/sbi_const.h>
|
#include <sbi/sbi_const.h>
|
||||||
#include <sbi/sbi_hart.h>
|
#include <sbi/sbi_hart.h>
|
||||||
#include <sbi/sbi_platform.h>
|
#include <sbi/sbi_platform.h>
|
||||||
#include <sbi_utils/serial/litex_serial.h>
|
#include <sbi_utils/ipi/aclint_mswi.h>
|
||||||
#include <sbi_utils/sys/clint.h>
|
#include <sbi_utils/irqchip/plic.h>
|
||||||
|
#include <sbi_utils/timer/aclint_mtimer.h>
|
||||||
|
|
||||||
|
// LiteX VexRISC-V only supports CLINT, not updated ACLINT
|
||||||
|
|
||||||
/* clang-format off */
|
/* clang-format off */
|
||||||
|
|
||||||
#define VEX_HART_COUNT 1
|
#define VEX_HART_COUNT 1
|
||||||
#define VEX_PLATFORM_FEATURES (SBI_PLATFORM_HAS_TIMER_VALUE | SBI_PLATFORM_HAS_MFAULTS_DELEGATION)
|
#define VEX_PLATFORM_FEATURES (SBI_PLATFORM_HAS_MFAULTS_DELEGATION)
|
||||||
|
// hardcoded in SoC Generator
|
||||||
#define VEX_CLINT_ADDR 0xF0010000
|
#define VEX_CLINT_ADDR 0xF0010000
|
||||||
#define VEX_HART_STACK_SIZE SBI_PLATFORM_DEFAULT_STACK_SIZE
|
#define VEX_PLIC_ADDR 0xF0C00000
|
||||||
|
#define VEX_HART_STACK_SIZE SBI_PLATFORM_DEFAULT_HART_STACK_SIZE
|
||||||
|
#define VEX_MSWI_ADDR (VEX_CLINT_ADDR + CLINT_MSWI_OFFSET)
|
||||||
|
#define VEX_MTIMER_ADDR (VEX_CLINT_ADDR + CLINT_MTIMER_OFFSET)
|
||||||
|
#define VEX_MTIMER_FREQ 100000000 // XXX: System clock frequency?
|
||||||
|
|
||||||
/* clang-format on */
|
/* clang-format on */
|
||||||
|
|
||||||
static struct clint_data clint = {VEX_CLINT_ADDR, 0, VEX_HART_COUNT, true};
|
static struct aclint_mswi_data clint_mswi = {
|
||||||
|
.addr = VEX_CLINT_ADDR + CLINT_MSWI_OFFSET,
|
||||||
|
.first_hartid = 0,
|
||||||
|
.hart_count = VEX_HART_COUNT,
|
||||||
|
.size = ACLINT_MSWI_SIZE
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct aclint_mtimer_data mtimer = {
|
||||||
|
.mtime_freq = VEX_MTIMER_FREQ,
|
||||||
|
.mtime_addr = VEX_MTIMER_ADDR +
|
||||||
|
ACLINT_DEFAULT_MTIME_OFFSET,
|
||||||
|
.mtime_size = ACLINT_DEFAULT_MTIME_SIZE,
|
||||||
|
.mtimecmp_addr = VEX_MTIMER_ADDR +
|
||||||
|
ACLINT_DEFAULT_MTIMECMP_OFFSET,
|
||||||
|
.mtimecmp_size = ACLINT_DEFAULT_MTIMECMP_SIZE,
|
||||||
|
.first_hartid = 0,
|
||||||
|
.hart_count = VEX_HART_COUNT,
|
||||||
|
.has_64bit_mmio = true
|
||||||
|
};
|
||||||
|
|
||||||
static int vex_early_init(bool cold_boot)
|
static int vex_early_init(bool cold_boot)
|
||||||
{
|
{
|
||||||
|
@ -45,24 +71,24 @@ static int vex_ipi_init(bool cold_boot)
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if (cold_boot) {
|
if (cold_boot) {
|
||||||
rc = clint_cold_ipi_init(&clint);
|
rc = aclint_mswi_cold_init(&clint_mswi);
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
return clint_warm_ipi_init();
|
return aclint_mswi_warm_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
static int vex_timer_init(bool cold_boot)
|
static int vex_timer_init(bool cold_boot)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
if (cold_boot) {
|
if (cold_boot) {
|
||||||
rc = clint_cold_timer_init(&clint, NULL); /* Timer has no reference */
|
rc = aclint_mtimer_cold_init(&mtimer, NULL); /* Timer has no reference */
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
return clint_warm_timer_init();
|
return aclint_mtimer_warm_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
const struct sbi_platform_operations platform_ops = {
|
const struct sbi_platform_operations platform_ops = {
|
||||||
|
|
Loading…
Reference in New Issue