1/* 2 * Copyright (c) 2025 Renesas Electronics Corporation 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6/ { 7 resources { 8 compatible = "test-gpio-basic-api"; 9 out-gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>; 10 in-gpios = <&gpio2 0 GPIO_ACTIVE_HIGH>; 11 }; 12}; 13 14&pinctrl { 15 input_test: input_test { 16 group1 { 17 pinmux = <RZN_PINMUX(PORT_02, 0, 0)>; 18 input-enable; 19 }; 20 }; 21}; 22 23&irq4 { 24 trigger-type = "falling"; 25 pinctrl-0 = <&input_test>; 26 pinctrl-names = "default"; 27 status = "okay"; 28}; 29 30&gpio2 { 31 irqs = <0 4>; 32 status = "okay"; 33}; 34