blob: 644ffb97073256fd3beb476edb26cdc6e159a18e [file] [log] [blame]
Masahiro Yamada3e98fc12018-04-16 12:35:33 +09001// SPDX-License-Identifier: GPL-2.0+ OR MIT
2//
3// Device Tree Source for UniPhier LD11 Global Board
4//
5// Copyright (C) 2016-2017 Socionext Inc.
6// Author: Masahiro Yamada <yamada.masahiro@socionext.com>
7// Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Kunihiko Hayashi247137f2017-06-22 18:43:51 +09008
9/dts-v1/;
Masahiro Yamada3e98fc12018-04-16 12:35:33 +090010#include <dt-bindings/gpio/uniphier-gpio.h>
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +090011#include "uniphier-ld11.dtsi"
Kunihiko Hayashi247137f2017-06-22 18:43:51 +090012
13/ {
14 model = "UniPhier LD11 Global Board (REF_LD11_GP)";
15 compatible = "socionext,uniphier-ld11-global",
16 "socionext,uniphier-ld11";
17
18 chosen {
19 stdout-path = "serial0:115200n8";
20 };
21
22 aliases {
23 serial0 = &serial0;
24 serial1 = &serial1;
25 serial2 = &serial2;
26 serial3 = &serial3;
27 i2c0 = &i2c0;
28 i2c1 = &i2c1;
29 i2c2 = &i2c2;
30 i2c3 = &i2c3;
31 i2c4 = &i2c4;
32 i2c5 = &i2c5;
Masahiro Yamada08520332020-07-09 15:08:14 +090033 ethernet0 = &eth;
Kunihiko Hayashi247137f2017-06-22 18:43:51 +090034 };
35
36 memory@80000000 {
37 device_type = "memory";
38 reg = <0 0x80000000 0 0x40000000>;
39 };
Masahiro Yamada3e98fc12018-04-16 12:35:33 +090040
41 dvdd_reg: reg-fixed {
42 compatible = "regulator-fixed";
43 regulator-name = "DVDD";
44 regulator-min-microvolt = <3300000>;
45 regulator-max-microvolt = <3300000>;
46 };
47
48 amp_vcc_reg: reg-fixed {
49 compatible = "regulator-fixed";
50 regulator-name = "AMP_VCC";
51 regulator-min-microvolt = <24000000>;
52 regulator-max-microvolt = <24000000>;
53 };
54
55 sound {
56 compatible = "audio-graph-card";
57 label = "UniPhier LD11";
Masahiro Yamada33aae6b2018-09-10 12:58:32 +090058 widgets = "Headphone", "Headphones";
Masahiro Yamada3e98fc12018-04-16 12:35:33 +090059 dais = <&i2s_port2
60 &i2s_port3
61 &i2s_port4
62 &spdif_port0
63 &comp_spdif_port0>;
Masahiro Yamada33aae6b2018-09-10 12:58:32 +090064 hp-det-gpio = <&gpio UNIPHIER_GPIO_IRQ(0) GPIO_ACTIVE_LOW>;
Masahiro Yamada3e98fc12018-04-16 12:35:33 +090065 };
66
67 spdif-out {
68 compatible = "linux,spdif-dit";
69 #sound-dai-cells = <0>;
70
71 port@0 {
72 spdif_tx: endpoint {
73 remote-endpoint = <&spdif_hiecout1>;
74 };
75 };
76 };
77
78 comp-spdif-out {
79 compatible = "linux,spdif-dit";
80 #sound-dai-cells = <0>;
81
82 port@0 {
83 comp_spdif_tx: endpoint {
84 remote-endpoint = <&comp_spdif_hiecout1>;
85 };
86 };
87 };
Kunihiko Hayashi247137f2017-06-22 18:43:51 +090088};
89
90&serial0 {
91 status = "okay";
92};
93
94&serial1 {
95 status = "okay";
96};
97
Masahiro Yamada3e98fc12018-04-16 12:35:33 +090098&i2s_hpcmout1 {
99 dai-format = "i2s";
100 remote-endpoint = <&tas_speaker>;
101};
102
103&spdif_hiecout1 {
104 remote-endpoint = <&spdif_tx>;
105};
106
107&comp_spdif_hiecout1 {
108 remote-endpoint = <&comp_spdif_tx>;
109};
110
Kunihiko Hayashi247137f2017-06-22 18:43:51 +0900111&i2c0 {
112 status = "okay";
113
Masahiro Yamada3e98fc12018-04-16 12:35:33 +0900114 tas5707a@1d {
115 compatible = "ti,tas5711";
116 reg = <0x1d>;
117 reset-gpios = <&gpio UNIPHIER_GPIO_PORT(23, 4) GPIO_ACTIVE_LOW>;
118 pdn-gpios = <&gpio UNIPHIER_GPIO_PORT(23, 5) GPIO_ACTIVE_LOW>;
119 #sound-dai-cells = <0>;
120 AVDD-supply = <&dvdd_reg>;
121 DVDD-supply = <&dvdd_reg>;
122 PVDD_A-supply = <&amp_vcc_reg>;
123 PVDD_B-supply = <&amp_vcc_reg>;
124 PVDD_C-supply = <&amp_vcc_reg>;
125 PVDD_D-supply = <&amp_vcc_reg>;
126
127 port@0 {
128 tas_speaker: endpoint {
129 dai-format = "i2s";
130 remote-endpoint = <&i2s_hpcmout1>;
131 };
132 };
133 };
134
Kunihiko Hayashi247137f2017-06-22 18:43:51 +0900135 eeprom@50 {
Masahiro Yamada53265152020-02-28 21:57:21 +0900136 compatible = "st,24c64", "atmel,24c64";
Kunihiko Hayashi247137f2017-06-22 18:43:51 +0900137 reg = <0x50>;
138 pagesize = <32>;
139 };
140};
141
142&usb0 {
143 status = "okay";
144};
145
146&usb1 {
147 status = "okay";
148};
149
150&usb2 {
151 status = "okay";
152};
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900153
Masahiro Yamada3e98fc12018-04-16 12:35:33 +0900154&eth {
155 status = "okay";
156 phy-handle = <&ethphy>;
157};
158
159&mdio {
Masahiro Yamada65282ed2020-08-04 14:41:09 +0900160 ethphy: ethernet-phy@1 {
Masahiro Yamada3e98fc12018-04-16 12:35:33 +0900161 reg = <1>;
162 };
163};
164
Masahiro Yamada6c9e46e2017-08-29 12:20:52 +0900165&nand {
166 status = "okay";
167};