mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
7ab5630a42
Sync with 14e21cb8f811 ("arm64: dt: hikey: Add optee node" from Linux kernel. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
48 lines
771 B
Text
48 lines
771 B
Text
/*
|
|
* dts file for Hisilicon HiKey Development Board
|
|
*
|
|
* Copyright (C) 2015, Hisilicon Ltd.
|
|
*
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/*Reserved 1MB memory for MCU*/
|
|
/memreserve/ 0x05e00000 0x00100000;
|
|
|
|
#include "hi6220.dtsi"
|
|
|
|
/ {
|
|
model = "HiKey Development Board";
|
|
compatible = "hisilicon,hi6220-hikey", "hisilicon,hi6220";
|
|
|
|
aliases {
|
|
serial0 = &uart0; /* On board UART0 */
|
|
serial1 = &uart1; /* BT UART */
|
|
serial2 = &uart2; /* LS Expansion UART0 */
|
|
serial3 = &uart3; /* LS Expansion UART1 */
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial3:115200n8";
|
|
};
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x0 0x0 0x40000000>;
|
|
};
|
|
|
|
firmware {
|
|
optee {
|
|
compatible = "linaro,optee-tz";
|
|
method = "smc";
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart2 {
|
|
label = "LS-UART0";
|
|
};
|
|
&uart3 {
|
|
label = "LS-UART1";
|
|
};
|