1# Copyright (c) 2024 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config NORDIC_VPR_LAUNCHER
5	bool "Nordic VPR coprocessor launcher"
6	default y
7	depends on DT_HAS_NORDIC_NRF_VPR_COPROCESSOR_ENABLED
8	help
9	  When enabled, the VPR coprocessors will be automatically launched
10	  during system initialization.
11
12if NORDIC_VPR_LAUNCHER
13
14module = NORDIC_VPR_LAUNCHER
15module-str = Nordic VPR Launcher
16source "subsys/logging/Kconfig.template.log_config"
17
18config NORDIC_VPR_LAUNCHER_INIT_PRIORITY
19	int "Nordic VPR coprocessor launcher init priority"
20	default 0
21	help
22	  The init priority of the VPR coprocessor launcher.
23
24endif # NORDIC_VPR_LAUNCHER
25