1# Copyright (c) 2018 Foundries.io Ltd
2# SPDX-License-Identifier: Apache-2.0
3
4config SOC_OPENISA_RV32M1
5	bool
6	help
7	  Enable support for OpenISA RV32M1 RISC-V processors. Choose
8	  this option to target the RI5CY or ZERO-RISCY core. This
9	  option should not be used to target either Arm core.
10
11config SOC_OPENISA_RV32M1_RI5CY
12	bool
13	select SOC_OPENISA_RV32M1
14	help
15	  OpenISA RV32M1 RI5CY core
16
17config SOC_OPENISA_RV32M1_ZERO_RISCY
18	bool
19	select SOC_OPENISA_RV32M1
20	help
21	  OpenISA RV32M1 ZERO-RISCY core
22
23config SOC
24	default "openisa_rv32m1" if SOC_OPENISA_RV32M1
25