1# Nordic Semiconductor nRF54H MCU line 2 3# Copyright (c) 2024 Nordic Semiconductor ASA 4# SPDX-License-Identifier: Apache-2.0 5 6if SOC_SERIES_NRF54HX 7 8rsource "Kconfig.defconfig.nrf54h*" 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 default 32768 if NRF_RTC_TIMER 33 34endif # RISCV 35 36config SPI_DW_HSSI 37 default y if SPI_DW 38 39config SPI_DW_ACCESS_WORD_ONLY 40 default y if SPI_DW 41 42config PM_DEVICE_POWER_DOMAIN 43 default n if PM_DEVICE 44 45endif # SOC_SERIES_NRF54HX 46