blob: 709ae1cbc9f3e614d8e399475402adc3a0161f07 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jorge Ramirez-Ortizd7542542017-06-26 15:52:49 +02002/*
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>
Jorge Ramirez-Ortizd7542542017-06-26 15:52:49 +02009 */
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