1/*
2 * Copyright 2023 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <zephyr/dt-bindings/gpio/nxp-s32-gpio.h>
8
9/ {
10	resources {
11		compatible = "test-gpio-basic-api";
12		/* Use LPSPI1 MISO/MOSI pins which are also used for spi_loopback test */
13		out-gpios = <&gpioa_h 13 0>;
14		in-gpios = <&gpioa_h 14 NXP_S32_GPIO_INT_WKPU>;
15	};
16};
17
18&wkpu {
19	status = "okay";
20};
21