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-rzg2-common.h>
8
9&pinctrl {
10	/omit-if-no-ref/ scif0_pins: scif0 {
11		scif0-pinmux {
12			pinmux = <RZG_PINMUX(PORT_38, 0, 1)>, /* TXD */
13				 <RZG_PINMUX(PORT_38, 1, 1)>; /* RXD */
14		};
15	};
16
17	/omit-if-no-ref/ scif1_pins: scif1 {
18		scif1-pinmux {
19			pinmux = <RZG_PINMUX(PORT_40, 0, 1)>, /* TXD */
20				 <RZG_PINMUX(PORT_40, 1, 1)>; /* RXD */
21		};
22	};
23};
24