1# Nordic Semiconductor nRF92 MCU line
2
3# Copyright (c) 2024 Nordic Semiconductor ASA
4# SPDX-License-Identifier: Apache-2.0
5
6if SOC_SERIES_NRF92X
7
8rsource "Kconfig.defconfig.nrf92*"
9
10if ARM
11
12config CACHE_NRF_CACHE
13	default y if EXTERNAL_CACHE
14
15endif # ARM
16
17if RISCV
18
19DT_CHOSEN_Z_SRAM = zephyr,sram
20DT_CHOSEN_Z_CODE = zephyr,code-partition
21
22config BUILD_OUTPUT_ADJUST_LMA
23	depends on !XIP
24	default "$(dt_chosen_partition_addr_hex,$(DT_CHOSEN_Z_CODE)) - \
25		 $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_SRAM))"
26
27config BUILD_OUTPUT_HEX
28	default y
29
30config SYS_CLOCK_HW_CYCLES_PER_SEC
31	default 1000000 if NRF_GRTC_TIMER
32
33endif # RISCV
34
35config SPI_DW_HSSI
36	default y if SPI_DW
37
38config SPI_DW_ACCESS_WORD_ONLY
39	default y if SPI_DW
40
41endif # SOC_SERIES_NRF92X
42