1/*
2 * Copyright 2022 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <nxp/s32/S32Z27-BGA594-pinctrl.h>
8#include <dt-bindings/gpio/gpio.h>
9
10/ {
11	aliases {
12		led0 = &led_a3;
13	};
14
15	gpio-led {
16		compatible = "gpio-leds";
17		led_a3: led_a3 {
18			gpios = <&gpioa 3 GPIO_ACTIVE_HIGH>;
19		};
20	};
21};
22
23&pinctrl {
24	eirq0_default: eirq0_default {
25		group1 {
26			pinmux = <PA3_EIRQ_0>;
27			input-enable;
28		};
29	};
30};
31
32&eirq0 {
33	pinctrl-0 = <&eirq0_default>;
34	pinctrl-names = "default";
35	status = "okay";
36};
37
38&gpioa {
39	status = "okay";
40};
41