1# nRF5340 DK board configuration
2
3# Copyright (c) 2024 Nordic Semiconductor ASA
4# SPDX-License-Identifier: Apache-2.0
5
6config IPM_NRFX
7	default IPM
8
9config MBOX_NRFX_IPC
10	default MBOX
11
12if BOARD_NRF7002DK_NRF5340_CPUAPP || \
13	BOARD_NRF7002DK_NRF5340_CPUAPP_NRF7001
14
15config BT_HCI_IPC
16	default y if BT
17
18config HEAP_MEM_POOL_ADD_SIZE_BOARD
19	int
20	default 4096 if BT_HCI_IPC
21
22config DOMAIN_CPUNET_BOARD
23	string
24	default "nrf7002dk/nrf5340/cpunet"
25	help
26	  The board which will be used for CPUNET domain when creating a multi
27	  image application where one or more images should be located on
28	  another board. For example hci_ipc on the nRF5340_cpunet for
29	  Bluetooth applications.
30
31endif
32
33if BOARD_NRF7002DK_NRF5340_CPUNET
34
35config BT_ECC
36	default y if BT
37
38config DOMAIN_CPUAPP_BOARD
39	string
40	default "nrf7002dk/nrf5340/cpuapp" if BOARD_NRF7002DK_NRF5340_CPUAPP
41	default "nrf7002dk/nrf5340/cpuapp/nrf7001" if BOARD_NRF7002DK_NRF5340_CPUAPP_NRF7001
42	help
43	  The board which will be used for CPUAPP domain when creating a multi
44	  image application where one or more images should be located on
45	  another board.
46
47endif
48