2017-03-15 05:12:24 +08:00
|
|
|
# Kconfig - configuration options for riscv SOCs supporting
|
|
|
|
# the riscv privileged architecture specification
|
|
|
|
#
|
|
|
|
# Copyright (c) 2017 Jean-Paul Etienne <fractalclone@gmail.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
2017-09-30 19:59:27 +08:00
|
|
|
config SOC_FAMILY_RISCV_PRIVILEGE
|
|
|
|
bool
|
|
|
|
# omit prompt to signify a "hidden" option
|
|
|
|
|
|
|
|
config SOC_FAMILY
|
|
|
|
string
|
|
|
|
default "riscv-privilege"
|
|
|
|
depends on SOC_FAMILY_RISCV_PRIVILEGE
|
|
|
|
|
|
|
|
config RISCV_HAS_PLIC
|
|
|
|
bool "Does the SOC provide support for a Platform Level Interrupt Controller"
|
|
|
|
depends on SOC_FAMILY_RISCV_PRIVILEGE
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Does the SOC provide support for a Platform Level Interrupt Controller
|
2017-09-30 19:59:27 +08:00
|
|
|
|
|
|
|
|
2018-09-04 05:38:52 +08:00
|
|
|
source "soc/riscv32/riscv-privilege/*/Kconfig.soc"
|