2017-03-15 05:12:24 +08:00
|
|
|
# Kconfig - riscv SOC family supporting the riscv privileged architecture spec
|
|
|
|
#
|
|
|
|
# Copyright (c) 2017 Jean-Paul Etienne <fractalclone@gmail.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
|
|
|
config SOC_FAMILY_RISCV_PRIVILEGE
|
|
|
|
bool
|
|
|
|
# omit prompt to signify a "hidden" option
|
|
|
|
default n
|
|
|
|
|
|
|
|
config SOC_FAMILY
|
|
|
|
string
|
|
|
|
default "riscv-privilege"
|
|
|
|
depends on SOC_FAMILY_RISCV_PRIVILEGE
|
|
|
|
|
2017-03-15 05:13:58 +08:00
|
|
|
config RISCV_HAS_PLIC
|
|
|
|
bool "Does the SOC provide support for a Platform Level Interrupt Controller"
|
|
|
|
default n
|
|
|
|
depends on SOC_FAMILY_RISCV_PRIVILEGE
|
|
|
|
help
|
|
|
|
Does the SOC provide support for a Platform Level Interrupt Controller
|
|
|
|
|
2017-03-15 05:12:24 +08:00
|
|
|
source "arch/riscv32/soc/riscv-privilege/*/Kconfig.defconfig.series"
|