1# PAN1783 EVB board configuration
2
3# Copyright (c) 2023 Panasonic Industrial Devices Europe GmbH
4# SPDX-License-Identifier: Apache-2.0
5
6if SOC_NRF5340_CPUAPP_QKAA
7
8config DOMAIN_CPUNET_BOARD
9	string
10	default "pan1783_evb/nrf5340/cpunet" if BOARD_PAN1783_EVB_NRF5340_CPUAPP
11	default "pan1783a_evb/nrf5340/cpunet" if BOARD_PAN1783A_EVB_NRF5340_CPUAPP
12	default "pan1783a_pa_evb/nrf5340/cpunet" if BOARD_PAN1783A_PA_EVB_NRF5340_CPUAPP
13	help
14	  The board which will be used for CPUNET domain when creating a multi
15	  image application where one or more images should be located on
16	  another board. For example hci_ipc on the nRF5340_cpunet for
17	  Bluetooth applications.
18
19endif # SOC_NRF5340_CPUAPP_QKAA
20
21config DOMAIN_CPUAPP_BOARD
22	string
23	default "pan1783_evb/nrf5340/cpuapp" if BOARD_PAN1783_EVB_NRF5340_CPUNET
24	default "pan1783a_evb/nrf5340/cpuapp" if BOARD_PAN1783A_EVB_NRF5340_CPUNET
25	default "pan1783a_pa_evb/nrf5340/cpuapp" if BOARD_PAN1783A_PA_EVB_NRF5340_CPUNET
26	help
27	  The board which will be used for CPUAPP domain when creating a multi
28	  image application where one or more images should be located on
29	  another board.
30