1/* 2 * Copyright (c) 2025 Renesas Electronics Corporation 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6#include <zephyr/dt-bindings/gpio/gpio.h> 7#include <zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzt-common.h> 8 9&pinctrl { 10 /omit-if-no-ref/ sci0_default: sci0_default { 11 sci0-pinmux { 12 pinmux = <RZT_PINMUX(PORT_16, 5, 1)>, /* TXD */ 13 <RZT_PINMUX(PORT_16, 6, 2)>; /* RXD */ 14 }; 15 }; 16 17 /omit-if-no-ref/ irq2_default: irq2_default{ 18 irq2-pinmux{ 19 pinmux = <RZT_PINMUX(PORT_10, 5, 0)>; 20 input-enable; 21 }; 22 }; 23 24 /omit-if-no-ref/ gpt0_pins: gpt0 { 25 gpt0-pinmux { 26 pinmux = <RZT_PINMUX(PORT_17, 4, 3)>; /* GTIOCA */ 27 }; 28 }; 29 30 /omit-if-no-ref/ gpt4_pins: gpt4 { 31 gpt4-pinmux { 32 pinmux = <RZT_PINMUX(PORT_03, 5, 4)>, /* GTIOCA */ 33 <RZT_PINMUX(PORT_03, 6, 5)>; /* GTIOCB */ 34 }; 35 }; 36}; 37