f885763b50
Because it was exclusively used by the "common" RISC-V privileged code to build CPU idle routines that are now handled by arch level code. Also, all platforms defaulted to "y", making it pointless in practice. Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
30 lines
508 B
Plaintext
30 lines
508 B
Plaintext
# Copyright (c) 2021 Henrik Brix Andersen <henrik@brixandersen.dk>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_NEORV32
|
|
|
|
config SOC
|
|
default "neorv32"
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
default $(dt_node_int_prop_int,/cpus/cpu@0,clock-frequency) if RISCV_MACHINE_TIMER
|
|
|
|
config NUM_IRQS
|
|
default 32
|
|
|
|
config RISCV_GP
|
|
default y
|
|
|
|
config SYSCON
|
|
default y
|
|
|
|
config SERIAL_INIT_PRIORITY
|
|
default 55
|
|
depends on SERIAL
|
|
|
|
config ENTROPY_INIT_PRIORITY
|
|
default 55
|
|
depends on ENTROPY_GENERATOR
|
|
|
|
endif # SOC_NEORV32
|