1# Configuration options for riscv SOCs supporting the riscv privileged
2# architecture specification
3
4# Copyright (c) 2017 Jean-Paul Etienne <fractalclone@gmail.com>
5# SPDX-License-Identifier: Apache-2.0
6
7config SOC_FAMILY_RISCV_PRIVILEGE
8	bool
9
10config SOC_FAMILY
11	string
12	default "riscv-privilege"
13	depends on SOC_FAMILY_RISCV_PRIVILEGE
14
15config RISCV_HAS_PLIC
16	bool "Does the SOC provide support for a Platform Level Interrupt Controller"
17	depends on SOC_FAMILY_RISCV_PRIVILEGE
18	help
19	  Does the SOC provide support for a Platform Level Interrupt Controller
20
21
22source "soc/riscv/riscv-privilege/*/Kconfig.soc"
23