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 = <&gpio15 5 GPIO_ACTIVE_HIGH>; 10 in-gpios = <&gpio15 4 GPIO_ACTIVE_HIGH>; 11 }; 12}; 13 14&pinctrl { 15 input_test: input_test{ 16 group1 { 17 pinmux = <RZT_PINMUX(PORT_15, 4, 4)>; 18 input-enable; 19 }; 20 }; 21}; 22 23&irq3 { 24 trigger-type = "falling"; 25 pinctrl-0 = <&input_test>; 26 pinctrl-names = "default"; 27 status = "okay"; 28}; 29 30&gpio15 { 31 irqs = <4 3>; 32 status = "okay"; 33}; 34