diff options
author | Peter Griffin <peter.griffin@linaro.org> | 2016-04-20 17:13:57 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-04-25 15:10:31 -0400 |
commit | 9122109ad75ebf7ac2380ddd5d49b981899c9a67 (patch) | |
tree | 8c121b708be33bbdccee9e8709faacdabeed9613 /arch/arm/dts/hi6220-hikey.dts | |
parent | 11b9a4d8d96674a57ff61ce622b0900ebee1392d (diff) | |
download | u-boot-9122109ad75ebf7ac2380ddd5d49b981899c9a67.tar.gz |
ARM: hisilicon: hikey: Add hikey & hi6220 dts from v4.6-rc3.
Import the upstream kernel dts into U-Boot. Currently
only serial is supported, but a lot more DT changes are
queued for v4.7.
Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/dts/hi6220-hikey.dts')
-rw-r--r-- | arch/arm/dts/hi6220-hikey.dts | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/arch/arm/dts/hi6220-hikey.dts b/arch/arm/dts/hi6220-hikey.dts new file mode 100644 index 0000000000..8185251975 --- /dev/null +++ b/arch/arm/dts/hi6220-hikey.dts @@ -0,0 +1,41 @@ +/* + * 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>; + }; +}; + +&uart2 { + label = "LS-UART0"; +}; +&uart3 { + label = "LS-UART1"; +}; |