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-rzn-common.h> 8 9&pinctrl { 10 /omit-if-no-ref/ sci0_default: sci0_default { 11 sci0-pinmux { 12 pinmux = <RZN_PINMUX(PORT_16, 5, 1)>, /* TXD */ 13 <RZN_PINMUX(PORT_16, 6, 2)>; /* RXD */ 14 }; 15 }; 16 17 /omit-if-no-ref/ sci3_default: sci3_default { 18 sci3-pinmux { 19 pinmux = <RZN_PINMUX(PORT_18, 0, 4)>, /* TXD */ 20 <RZN_PINMUX(PORT_17, 7, 4)>; /* RXD */ 21 }; 22 }; 23 24 /omit-if-no-ref/ irq7_default: irq7_default { 25 irq7-pinmux { 26 pinmux = <RZN_PINMUX(PORT_16, 3, 0)>; 27 input-enable; 28 }; 29 }; 30 31 /omit-if-no-ref/ gpt4_pins: gpt4 { 32 gpt4-pinmux { 33 pinmux = <RZN_PINMUX(PORT_03, 5, 4)>, /* GTIOCA */ 34 <RZN_PINMUX(PORT_03, 6, 5)>; /* GTIOCB */ 35 }; 36 }; 37 38 /omit-if-no-ref/ gpt5_pins: gpt5 { 39 gpt5-pinmux { 40 pinmux = <RZN_PINMUX(PORT_03, 7, 5)>, /* GTIOCA */ 41 <RZN_PINMUX(PORT_04, 0, 3)>; /* GTIOCB */ 42 }; 43 }; 44}; 45