aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKunihiko Hayashi <hayashi.kunihiko@socionext.com>2017-06-12 02:07:38 -0400
committerMasahiro Yamada <yamada.masahiro@socionext.com>2017-06-12 11:00:17 -0400
commit96f5a269b3a1d4a79bcc3f7ccc1f07140ce57516 (patch)
treeb42b458b63aa697ffc6a096a17175efd1e6defe6
parent12301cffc37a138b0e901a8b536a052055c29184 (diff)
arm64: dts: uniphier: add support for LD11 Global board
Add initial device tree support for LD11 Global board. Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r--arch/arm64/boot/dts/socionext/Makefile1
-rw-r--r--arch/arm64/boot/dts/socionext/uniphier-ld11-global.dts70
2 files changed, 71 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/socionext/Makefile b/arch/arm64/boot/dts/socionext/Makefile
index 5538598b302c..8d07ee33e66f 100644
--- a/arch/arm64/boot/dts/socionext/Makefile
+++ b/arch/arm64/boot/dts/socionext/Makefile
@@ -1,4 +1,5 @@
1dtb-$(CONFIG_ARCH_UNIPHIER) += \ 1dtb-$(CONFIG_ARCH_UNIPHIER) += \
2 uniphier-ld11-global.dtb \
2 uniphier-ld11-ref.dtb \ 3 uniphier-ld11-ref.dtb \
3 uniphier-ld20-ref.dtb 4 uniphier-ld20-ref.dtb
4 5
diff --git a/arch/arm64/boot/dts/socionext/uniphier-ld11-global.dts b/arch/arm64/boot/dts/socionext/uniphier-ld11-global.dts
new file mode 100644
index 000000000000..115357018ef7
--- /dev/null
+++ b/arch/arm64/boot/dts/socionext/uniphier-ld11-global.dts
@@ -0,0 +1,70 @@
1/*
2 * Device Tree Source for UniPhier LD11 Global Board
3 *
4 * Copyright (C) 2016-2017 Socionext Inc.
5 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
6 * Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
7 *
8 * SPDX-License-Identifier: (GPL-2.0+ OR MIT)
9 */
10
11/dts-v1/;
12/include/ "uniphier-ld11.dtsi"
13
14/ {
15 model = "UniPhier LD11 Global Board (REF_LD11_GP)";
16 compatible = "socionext,uniphier-ld11-global",
17 "socionext,uniphier-ld11";
18
19 chosen {
20 stdout-path = "serial0:115200n8";
21 };
22
23 aliases {
24 serial0 = &serial0;
25 serial1 = &serial1;
26 serial2 = &serial2;
27 serial3 = &serial3;
28 i2c0 = &i2c0;
29 i2c1 = &i2c1;
30 i2c2 = &i2c2;
31 i2c3 = &i2c3;
32 i2c4 = &i2c4;
33 i2c5 = &i2c5;
34 };
35
36 memory@80000000 {
37 device_type = "memory";
38 reg = <0 0x80000000 0 0x40000000>;
39 };
40};
41
42&serial0 {
43 status = "okay";
44};
45
46&serial1 {
47 status = "okay";
48};
49
50&i2c0 {
51 status = "okay";
52
53 eeprom@50 {
54 compatible = "st,24c64", "atmel,24c64";
55 reg = <0x50>;
56 pagesize = <32>;
57 };
58};
59
60&usb0 {
61 status = "okay";
62};
63
64&usb1 {
65 status = "okay";
66};
67
68&usb2 {
69 status = "okay";
70};