1# Copyright (c) 2021 Henrik Brix Andersen <henrik@brixandersen.dk>
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_NEORV32
5
6config SOC
7	default "neorv32"
8
9config SYS_CLOCK_HW_CYCLES_PER_SEC
10	default $(dt_node_int_prop_int,/cpus/cpu@0,clock-frequency) if RISCV_MACHINE_TIMER
11
12config NUM_IRQS
13	default 32
14
15config RISCV_GP
16	default y
17
18config SYSCON
19	default y
20
21config SERIAL_INIT_PRIORITY
22	default 55
23	depends on SERIAL
24
25config ENTROPY_INIT_PRIORITY
26	default 55
27	depends on ENTROPY_GENERATOR
28
29endif # SOC_NEORV32
30