1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * U-Boot addition to: 4 * 1) use platform data for the console 5 * 2) provide support for the generic-ehci USB driver currently not available 6 * in the linux kernel (8/May/2017). 7 * 8 * (C) Copyright 2017 Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> 9 */ 10 11&soc { 12 usb2: ehci@9890000 { 13 compatible = "generic-ehci"; 14 reg = <0x9890000 0x100>; 15 status = "okay"; 16 }; 17}; 18 19&uart0 { 20 status = "disabled"; 21}; 22 23/{ 24 chosen { 25 stdout-path = ""; 26 }; 27}; 28 29