1/*
2 * Copyright 2023 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <zephyr/dt-bindings/gpio/gpio.h>
8
9/ {
10	zephyr,user {
11		output-high-gpios = <&gpioa 3 GPIO_ACTIVE_LOW>;
12		output-low-gpios = <&gpioa 2 GPIO_ACTIVE_HIGH>;
13		input-gpios = <&gpioa 1 GPIO_ACTIVE_HIGH>;
14	};
15};
16
17&gpioa {
18	hog1 {
19		gpio-hog;
20		gpios = <3 GPIO_ACTIVE_LOW>;
21		output-high;
22	};
23
24	hog2 {
25		gpio-hog;
26		gpios = <1 GPIO_ACTIVE_HIGH>;
27		input;
28	};
29
30	hog3 {
31		gpio-hog;
32		gpios = <2 GPIO_ACTIVE_HIGH>;
33		output-low;
34	};
35};
36