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