diff options
author | Joel Stanley <joel@jms.id.au> | 2016-04-17 09:20:56 +0300 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2016-05-09 11:11:58 +0300 |
commit | 02440622656d26a0d68308db9e4ce1d2510f6530 (patch) | |
tree | d450ad7460a0b74243cbcb1e56310d91d5671fc4 /arch/arm/boot/dts/aspeed-ast2500-evb.dts | |
parent | d44a1138cd829d232899ef4fe5cd59e861ed3984 (diff) | |
download | linux-02440622656d26a0d68308db9e4ce1d2510f6530.tar.xz |
arm/dst: Add Aspeed ast2500 device tree
This adds a common device tree for all fifth generation Aspeed systems,
and a board specific device tree for the ast2500 evaluation board.
Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'arch/arm/boot/dts/aspeed-ast2500-evb.dts')
-rw-r--r-- | arch/arm/boot/dts/aspeed-ast2500-evb.dts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/aspeed-ast2500-evb.dts b/arch/arm/boot/dts/aspeed-ast2500-evb.dts new file mode 100644 index 000000000000..1b7a5ff0e533 --- /dev/null +++ b/arch/arm/boot/dts/aspeed-ast2500-evb.dts @@ -0,0 +1,25 @@ +/dts-v1/; + +#include "aspeed-g5.dtsi" + +/ { + model = "AST2500 EVB"; + compatible = "aspeed,ast2500"; + + aliases { + serial4 = &uart5; + }; + + chosen { + stdout-path = &uart5; + bootargs = "console=ttyS4,115200 earlyprintk"; + }; + + memory { + reg = <0x80000000 0x20000000>; + }; +}; + +&uart5 { + status = "okay"; +}; |