1# Copyright (C) 2023-2024, Intel Corporation
2#
3# SPDX-License-Identifier: Apache-2.0
4
5config SOC_SERIES_NIOSV
6	bool
7	select SOC_FAMILY_INTEL_NIOSV
8	help
9	  Intel FPGA NIOSV
10
11config SOC_SERIES
12	default "niosv" if SOC_SERIES_NIOSV
13
14config SOC_NIOSV_M
15	bool
16	select SOC_SERIES_NIOSV
17	help
18	  Intel FPGA NIOSV Microcontroller Core Processor
19
20config SOC_NIOSV_G
21	bool
22	select SOC_SERIES_NIOSV
23	help
24	  Intel FPGA NIOSV General Purpose Processor
25
26config SOC
27	default "niosv_m" if SOC_NIOSV_M
28	default "niosv_g" if SOC_NIOSV_G
29