1/*
2 * Copyright (c) 2024 EPAM Systems
3 * Copyright (c) 2024 Renesas Electronics Corporation
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <zephyr/dt-bindings/gpio/gpio.h>
8#include <zephyr/dt-bindings/pinctrl/renesas/pinctrl-rzg-common.h>
9
10&pinctrl {
11	/omit-if-no-ref/ scif0_pins: scif0 {
12		scif0-pinmux {
13			pinmux = <RZG_PINMUX(PORT_06, 3, 1)>, /* TXD */
14				 <RZG_PINMUX(PORT_06, 4, 1)>; /* RXD */
15		};
16	};
17
18	/omit-if-no-ref/ scif1_pins: scif1 {
19		scif1-pinmux {
20			pinmux = <RZG_PINMUX(PORT_14, 0, 1)>, /* TXD */
21				 <RZG_PINMUX(PORT_14, 1, 1)>; /* RXD */
22		};
23	};
24
25	/omit-if-no-ref/ scif3_pins: scif3 {
26		scif3-pinmux {
27			pinmux = <RZG_PINMUX(PORT_17, 3, 7)>, /* TXD */
28				 <RZG_PINMUX(PORT_17, 2, 7)>; /* RXD */
29		};
30	};
31
32	/omit-if-no-ref/ scif5_pins: scif5 {
33		scif5-pinmux {
34			pinmux = <RZG_PINMUX(PORT_15, 1, 6)>, /* RXD */
35				 <RZG_PINMUX(PORT_15, 2, 6)>; /* TXD */
36		};
37	};
38};
39