1# Nordic Semiconductor nRF54L MCU line
2
3# Copyright (c) 2024 Nordic Semiconductor ASA
4# SPDX-License-Identifier: Apache-2.0
5
6if SOC_SERIES_NRF54LX
7
8rsource "Kconfig.defconfig.nrf54l*"
9
10if ARM
11
12config CORTEX_M_SYSTICK
13	default !NRF_GRTC_TIMER
14
15config CACHE_NRF_CACHE
16	default y if EXTERNAL_CACHE
17
18endif # ARM
19
20if RISCV
21
22DT_CHOSEN_Z_SRAM = zephyr,sram
23DT_CHOSEN_Z_CODE = zephyr,code-partition
24
25config BUILD_OUTPUT_ADJUST_LMA
26	depends on !XIP
27	default "$(dt_chosen_partition_addr_hex,$(DT_CHOSEN_Z_CODE)) - \
28		 $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_SRAM))"
29
30endif # RISCV
31
32endif # SOC_SERIES_NRF54LX
33