1# Copyright (c) 2024 Renesas Electronics Corporation 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_SERIES_RA8D1 5 6config NUM_IRQS 7 default 96 8 9DT_ICLK_PATH := $(dt_nodelabel_path,cpuclk) 10 11config SYS_CLOCK_HW_CYCLES_PER_SEC 12 default $(dt_node_int_prop_int,$(DT_ICLK_PATH),clock-frequency) 13 14config BUILD_OUTPUT_HEX 15 default y 16 17config CLOCK_CONTROL 18 default y 19 20# Set to the minimal size of data which can be written. 21config FLASH_FILL_BUFFER_SIZE 22 default 128 23 24config DCACHE 25 default n 26 27config CACHE_MANAGEMENT 28 default n 29 30endif # SOC_SERIES_RA8D1 31