Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jorge Ramirez-Ortiz | d754254 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 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> |
Jorge Ramirez-Ortiz | d754254 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | &soc { |
| 12 | usb2: ehci@9890000 { |
| 13 | compatible = "generic-ehci"; |
| 14 | reg = <0x9890000 0x100>; |
| 15 | status = "okay"; |
| 16 | }; |
| 17 | }; |
| 18 | |
| 19 | &uart0 { |
Shawn Guo | 655c6d9 | 2018-12-12 15:24:44 +0800 | [diff] [blame] | 20 | clock = <75000000>; |
| 21 | status = "okay"; |
Jorge Ramirez-Ortiz | d754254 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 22 | }; |