coreboot-kgpe-d16/src/soc/ucb/riscv/Kconfig
Kyösti Mälkki 76c4386699 arch/non-x86: Flip HAVE_MONOTONIC_TIMER default
Also remove allwinner/a10 dummy monotonic_timer
implementation.

Change-Id: I9dfa9b92dc63375465e3bb87b73eeefad601c810
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34112
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
2019-07-09 13:07:38 +00:00

51 lines
648 B
Text

config SOC_UCB_RISCV
select ARCH_RISCV_S
select ARCH_RISCV_U
select ARCH_RISCV_PMP
select ARCH_BOOTBLOCK_RISCV
select ARCH_VERSTAGE_RISCV
select ARCH_ROMSTAGE_RISCV
select ARCH_RAMSTAGE_RISCV
select RISCV_USE_ARCH_TIMER
bool
default n
if SOC_UCB_RISCV
if ARCH_RISCV_RV64
config RISCV_ARCH
string
default "rv64imafd"
config RISCV_ABI
string
default "lp64d"
config RISCV_CODEMODEL
string
default "medany"
endif
if ARCH_RISCV_RV32
config RISCV_ARCH
string
default "rv32im"
config RISCV_ABI
string
default "ilp32"
config RISCV_CODEMODEL
string
default "medany"
endif
config RISCV_WORKING_HARTID
int
default 0
endif