blob: 7844c5208c5d4e5a8083c51d3e04288b8b70b3a9 [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 {
Shawn Guo655c6d92018-12-12 15:24:44 +080020 clock = <75000000>;
21 status = "okay";
Jorge Ramirez-Ortizd7542542017-06-26 15:52:49 +020022};