1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2/* 3 * Device Tree Source for the RZ/G2L SMARC EVK common parts 4 * 5 * Copyright (C) 2021 Renesas Electronics Corp. 6 */ 7 8#include <dt-bindings/gpio/gpio.h> 9#include <dt-bindings/pinctrl/rzg2l-pinctrl.h> 10 11/ { 12 aliases { 13 serial0 = &scif0; 14 }; 15 16 chosen { 17 bootargs = "ignore_loglevel"; 18 stdout-path = "serial0:115200n8"; 19 }; 20}; 21 22&extal_clk { 23 clock-frequency = <24000000>; 24}; 25 26&pinctrl { 27 scif0_pins: scif0 { 28 pinmux = <RZG2L_PORT_PINMUX(38, 0, 1)>, /* TxD */ 29 <RZG2L_PORT_PINMUX(38, 1, 1)>; /* RxD */ 30 }; 31}; 32 33&scif0 { 34 pinctrl-0 = <&scif0_pins>; 35 pinctrl-names = "default"; 36 status = "okay"; 37}; 38