
On Mon, May 29, 2017 at 04:11:04PM +0200, Jorge Ramirez-Ortiz wrote:
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. Since PSCI runs in DDR, u-boot carves the necessary memory from the kernel memory map.
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
This has a warning: aarch64: + poplar +In file included from include/dm/device.h:18:0, + from include/dm.h:11, + from board/hisilicon/poplar/poplar.c:14: + #define PAGE_SIZE 4096 + +In file included from board/hisilicon/poplar/poplar.c:12:0: +arch/arm/include/asm/armv8/mmu.h:27:0: note: this is the location of the previous definition + #define PAGE_SIZE (1 << PAGE_SHIFT) w+include/linux/compat.h:116:0: warning: "PAGE_SIZE" redefined
Please see if we can avoid this, and if not, we need to make sure that PAGE_SIZE is consistent in real value throughout. Thanks!