1# BL5340-DVK board configuration
2
3# Copyright (c) 2019-2021 Nordic Semiconductor ASA
4# Copyright (c) 2021-2023 Laird Connectivity
5# SPDX-License-Identifier: Apache-2.0
6
7if BOARD_BL5340_DVK_NRF5340_CPUAPP || BOARD_BL5340_DVK_NRF5340_CPUAPP_NS
8
9config BOARD_ENABLE_DCDC_APP
10	bool "Application MCU DCDC converter"
11	select SOC_DCDC_NRF53X_APP
12	default y
13
14config BOARD_ENABLE_DCDC_NET
15	bool "Network MCU DCDC converter"
16	select SOC_DCDC_NRF53X_NET
17	default y
18
19config BOARD_ENABLE_DCDC_HV
20	bool "High Voltage DCDC converter"
21	select SOC_DCDC_NRF53X_HV
22	default y
23
24config DOMAIN_CPUNET_BOARD
25	string
26	default "bl5340_dvk/nrf5340/cpunet"
27	help
28	  The board which will be used for CPUNET domain when creating a multi
29	  image application where one or more images should be located on
30	  another board. For example hci_ipc on the bl5340_dvk_cpunet for
31	  Bluetooth applications.
32
33endif # BOARD_BL5340_DVK_NRF5340_CPUAPP || BOARD_BL5340_DVK_NRF5340_CPUAPP_NS
34
35if BOARD_BL5340_DVK_NRF5340_CPUNET
36
37config DOMAIN_CPUAPP_BOARD
38	string
39	default "bl5340_dvk/nrf5340/cpuapp"
40	help
41	  The board which will be used for CPUAPP domain when creating a multi
42	  image application where one or more images should be located on
43	  another board.
44
45endif # BOARD_BL5340_DVK_NRF5340_CPUNET
46