1# Copyright 2025 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig PSI5
5	bool "Peripheral Sensor Interface (PSI5) driver"
6	help
7	  Enable PSI5 Driver Configuration
8
9if PSI5
10
11module = PSI5
12module-str = psi5
13source "subsys/logging/Kconfig.template.log_config"
14
15config PSI5_INIT_PRIORITY
16	int "PSI5 driver init priority"
17	default KERNEL_INIT_PRIORITY_DEVICE
18	help
19	  PSI5 driver device initialization priority.
20
21# zephyr-keep-sorted-start
22source "drivers/psi5/Kconfig.nxp_s32"
23# zephyr-keep-sorted-stop
24
25endif # PSI5
26