1/* 2 * Device Tree Source for the Kingfisher (ULCB extension) board 3 * 4 * Copyright (C) 2017 Renesas Electronics Corp. 5 * Copyright (C) 2017 Cogent Embedded, Inc. 6 * 7 * This file is licensed under the terms of the GNU General Public License 8 * version 2. This program is licensed "as is" without any warranty of any 9 * kind, whether express or implied. 10 */ 11 12/ { 13 aliases { 14 serial1 = &hscif0; 15 serial2 = &scif1; 16 }; 17}; 18 19&hscif0 { 20 pinctrl-0 = <&hscif0_pins>; 21 pinctrl-names = "default"; 22 uart-has-rtscts; 23 24 status = "okay"; 25}; 26 27&pfc { 28 hscif0_pins: hscif0 { 29 groups = "hscif0_data", "hscif0_ctrl"; 30 function = "hscif0"; 31 }; 32 33 scif1_pins: scif1 { 34 groups = "scif1_data_b", "scif1_ctrl"; 35 function = "scif1"; 36 }; 37}; 38 39&scif1 { 40 pinctrl-0 = <&scif1_pins>; 41 pinctrl-names = "default"; 42 uart-has-rtscts; 43 44 status = "okay"; 45}; 46