mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
d754254f20
This port adds support for: 1) Serial 2) eMMC 3) USB It has been tested with ARM TRUSTED FIRMWARE running u-boot as the BL33 executable [see board's README] eMMC has been tested for reading and booting the loader and linux kernels as well as saving the u-boot environment. USB has been tested with ASIX networking adapter and SanDisk 7.4GB drive. PSCI has been tested via the reset call (PSCI executes from DDR) The firwmare upgrade process has been tested via TFTP and USB FAT filesystem containing the fastboot.bin image in one of the partitions. Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
29 lines
504 B
Text
29 lines
504 B
Text
/*
|
|
* U-Boot addition to:
|
|
* 1) use platform data for the console
|
|
* 2) provide support for the generic-ehci USB driver currently not available
|
|
* in the linux kernel (8/May/2017).
|
|
*
|
|
* (C) Copyright 2017 Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
&soc {
|
|
usb2: ehci@9890000 {
|
|
compatible = "generic-ehci";
|
|
reg = <0x9890000 0x100>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "disabled";
|
|
};
|
|
|
|
/{
|
|
chosen {
|
|
stdout-path = "";
|
|
};
|
|
};
|
|
|