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