42 lines
746 B
Plaintext
42 lines
746 B
Plaintext
# Nordic Semiconductor nRF92 MCU line
|
|
|
|
# Copyright (c) 2024 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_SERIES_NRF92X
|
|
|
|
rsource "Kconfig.defconfig.nrf92*"
|
|
|
|
if ARM
|
|
|
|
config CACHE_NRF_CACHE
|
|
default y if EXTERNAL_CACHE
|
|
|
|
endif # ARM
|
|
|
|
if RISCV
|
|
|
|
DT_CHOSEN_Z_SRAM = zephyr,sram
|
|
DT_CHOSEN_Z_CODE = zephyr,code-partition
|
|
|
|
config BUILD_OUTPUT_ADJUST_LMA
|
|
depends on !XIP
|
|
default "$(dt_chosen_partition_addr_hex,$(DT_CHOSEN_Z_CODE)) - \
|
|
$(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_SRAM))"
|
|
|
|
config BUILD_OUTPUT_HEX
|
|
default y
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
default 1000000 if NRF_GRTC_TIMER
|
|
|
|
endif # RISCV
|
|
|
|
config SPI_DW_HSSI
|
|
default y if SPI_DW
|
|
|
|
config SPI_DW_ACCESS_WORD_ONLY
|
|
default y if SPI_DW
|
|
|
|
endif # SOC_SERIES_NRF92X
|