1# SPDX-License-Identifier: Apache-2.0 2 3if SOC_SERIES_BSIM_NRFXX 4 5# The following file is normally parsed only for the ARM architecture, which is 6# used by Nordic SoCs, so to make the symbols defined in this file available for 7# the simulated nrf5x_bsim boards, which use the POSIX architecture, the file 8# must be read also from here. 9source "soc/arm/nordic_nrf/Kconfig.peripherals" 10 11endif # SOC_SERIES_BSIM_NRFXX 12 13 14# This would eventually be shared by a possible family of simulated NRF boards 15# which use BabbleSim. When that happens, we can move this to a common 16# Kconfig file 17 18config SOC_SERIES_BSIM_NRFXX 19 bool 20 depends on SOC_POSIX 21 help 22 Any NRF simulated SOC with BabbleSim, based on the POSIX arch 23 24config SOC_SERIES_BSIM_NRF52X 25 bool 26 depends on SOC_SERIES_BSIM_NRFXX 27 help 28 Any NRF52 simulated SOC with BabbleSim, based on the POSIX arch 29 30config SOC_SERIES_BSIM_NRF53X 31 bool 32 depends on SOC_SERIES_BSIM_NRFXX 33 help 34 Any NRF53 simulated SOC with BabbleSim, based on the POSIX arch 35