zephyr/soc/renesas/rx/rx62n/Kconfig.defconfig

21 lines
539 B
Text
Raw Normal View History

# Copyright (c) 2024 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0
if SOC_SERIES_RX62N
DT_CMT_PATH := $(dt_nodelabel_path,cmt)
config SYS_CLOCK_HW_CYCLES_PER_SEC
default $(dt_node_int_prop_int,$(DT_CMT_PATH),clock-frequency)
# SYS_CLOCK_TICKS_PER_SEC is set to 100 if PCLKB is 48MHz or less.
# (PCLKB = SYS_CLOCK_HW_CYCLES_PER_SEC * 8)
config SYS_CLOCK_TICKS_PER_SEC
default 100 if SYS_CLOCK_HW_CYCLES_PER_SEC <= 6000000
default 10000
config INITIALIZATION_STACK_SIZE
default 512
endif # SOC_SERIES_RX62N