blob: 5357ea9c14b1ed59944f137b228ba3c4996910c7 [file] [log] [blame]
Masahiro Yamada474e5ac2015-08-04 20:21:03 +09001/*
Masahiro Yamada77896e42016-08-30 14:02:41 +09002 * Device Tree Source for UniPhier Pro5 SoC
Masahiro Yamada474e5ac2015-08-04 20:21:03 +09003 *
Masahiro Yamada77896e42016-08-30 14:02:41 +09004 * Copyright (C) 2015-2016 Socionext Inc.
5 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamada474e5ac2015-08-04 20:21:03 +09006 *
7 * This file is dual-licensed: you can use it either under the terms
8 * of the GPL or the X11 license, at your option. Note that this dual
9 * licensing only applies to this file, and not this project as a
10 * whole.
11 *
12 * a) This file is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
16 *
17 * This file is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * Or, alternatively,
23 *
24 * b) Permission is hereby granted, free of charge, to any person
25 * obtaining a copy of this software and associated documentation
26 * files (the "Software"), to deal in the Software without
27 * restriction, including without limitation the rights to use,
28 * copy, modify, merge, publish, distribute, sublicense, and/or
29 * sell copies of the Software, and to permit persons to whom the
30 * Software is furnished to do so, subject to the following
31 * conditions:
32 *
33 * The above copyright notice and this permission notice shall be
34 * included in all copies or substantial portions of the Software.
35 *
36 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
37 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
38 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
39 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
40 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
41 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
42 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
43 * OTHER DEALINGS IN THE SOFTWARE.
44 */
45
Masahiro Yamada629b5572015-12-03 15:33:57 +090046/include/ "uniphier-common32.dtsi"
Masahiro Yamada474e5ac2015-08-04 20:21:03 +090047
48/ {
Masahiro Yamada77896e42016-08-30 14:02:41 +090049 compatible = "socionext,uniphier-pro5";
Masahiro Yamada474e5ac2015-08-04 20:21:03 +090050
51 cpus {
52 #address-cells = <1>;
53 #size-cells = <0>;
Masahiro Yamada474e5ac2015-08-04 20:21:03 +090054
55 cpu@0 {
56 device_type = "cpu";
57 compatible = "arm,cortex-a9";
58 reg = <0>;
Masahiro Yamada3bdba5a2016-08-29 03:27:42 +090059 enable-method = "psci";
Masahiro Yamada7c62f292015-10-02 13:42:21 +090060 next-level-cache = <&l2>;
Masahiro Yamada474e5ac2015-08-04 20:21:03 +090061 };
62
63 cpu@1 {
64 device_type = "cpu";
65 compatible = "arm,cortex-a9";
66 reg = <1>;
Masahiro Yamada3bdba5a2016-08-29 03:27:42 +090067 enable-method = "psci";
Masahiro Yamada7c62f292015-10-02 13:42:21 +090068 next-level-cache = <&l2>;
Masahiro Yamada474e5ac2015-08-04 20:21:03 +090069 };
70 };
71
72 clocks {
73 arm_timer_clk: arm_timer_clk {
74 #clock-cells = <0>;
75 compatible = "fixed-clock";
76 clock-frequency = <50000000>;
77 };
Masahiro Yamada474e5ac2015-08-04 20:21:03 +090078 };
Masahiro Yamada629b5572015-12-03 15:33:57 +090079};
Masahiro Yamada474e5ac2015-08-04 20:21:03 +090080
Masahiro Yamada629b5572015-12-03 15:33:57 +090081&soc {
82 l2: l2-cache@500c0000 {
83 compatible = "socionext,uniphier-system-cache";
84 reg = <0x500c0000 0x2000>, <0x503c0100 0x8>, <0x506c0000 0x400>;
85 interrupts = <0 190 4>, <0 191 4>;
86 cache-unified;
87 cache-size = <(2 * 1024 * 1024)>;
88 cache-sets = <512>;
89 cache-line-size = <128>;
90 cache-level = <2>;
91 next-level-cache = <&l3>;
92 };
93
94 l3: l3-cache@500c8000 {
95 compatible = "socionext,uniphier-system-cache";
96 reg = <0x500c8000 0x2000>, <0x503c8100 0x8>, <0x506c8000 0x400>;
97 interrupts = <0 174 4>, <0 175 4>;
98 cache-unified;
99 cache-size = <(2 * 1024 * 1024)>;
100 cache-sets = <512>;
101 cache-line-size = <256>;
102 cache-level = <3>;
103 };
104
105 i2c0: i2c@58780000 {
106 compatible = "socionext,uniphier-fi2c";
107 status = "disabled";
108 reg = <0x58780000 0x80>;
Masahiro Yamada474e5ac2015-08-04 20:21:03 +0900109 #address-cells = <1>;
Masahiro Yamada629b5572015-12-03 15:33:57 +0900110 #size-cells = <0>;
111 interrupts = <0 41 4>;
112 pinctrl-names = "default";
113 pinctrl-0 = <&pinctrl_i2c0>;
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900114 clocks = <&peri_clk 4>;
Masahiro Yamada629b5572015-12-03 15:33:57 +0900115 clock-frequency = <100000>;
116 };
Masahiro Yamada474e5ac2015-08-04 20:21:03 +0900117
Masahiro Yamada629b5572015-12-03 15:33:57 +0900118 i2c1: i2c@58781000 {
119 compatible = "socionext,uniphier-fi2c";
120 status = "disabled";
121 reg = <0x58781000 0x80>;
122 #address-cells = <1>;
123 #size-cells = <0>;
124 interrupts = <0 42 4>;
125 pinctrl-names = "default";
126 pinctrl-0 = <&pinctrl_i2c1>;
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900127 clocks = <&peri_clk 5>;
Masahiro Yamada629b5572015-12-03 15:33:57 +0900128 clock-frequency = <100000>;
129 };
Masahiro Yamada474e5ac2015-08-04 20:21:03 +0900130
Masahiro Yamada629b5572015-12-03 15:33:57 +0900131 i2c2: i2c@58782000 {
132 compatible = "socionext,uniphier-fi2c";
133 status = "disabled";
134 reg = <0x58782000 0x80>;
135 #address-cells = <1>;
136 #size-cells = <0>;
137 interrupts = <0 43 4>;
138 pinctrl-names = "default";
139 pinctrl-0 = <&pinctrl_i2c2>;
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900140 clocks = <&peri_clk 6>;
Masahiro Yamada629b5572015-12-03 15:33:57 +0900141 clock-frequency = <100000>;
142 };
Masahiro Yamada7c62f292015-10-02 13:42:21 +0900143
Masahiro Yamada629b5572015-12-03 15:33:57 +0900144 i2c3: i2c@58783000 {
145 compatible = "socionext,uniphier-fi2c";
146 status = "disabled";
147 reg = <0x58783000 0x80>;
148 #address-cells = <1>;
149 #size-cells = <0>;
150 interrupts = <0 44 4>;
151 pinctrl-names = "default";
152 pinctrl-0 = <&pinctrl_i2c3>;
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900153 clocks = <&peri_clk 7>;
Masahiro Yamada629b5572015-12-03 15:33:57 +0900154 clock-frequency = <100000>;
155 };
Masahiro Yamada7c62f292015-10-02 13:42:21 +0900156
Masahiro Yamada629b5572015-12-03 15:33:57 +0900157 /* i2c4 does not exist */
Masahiro Yamada474e5ac2015-08-04 20:21:03 +0900158
Masahiro Yamada629b5572015-12-03 15:33:57 +0900159 /* chip-internal connection for DMD */
160 i2c5: i2c@58785000 {
161 compatible = "socionext,uniphier-fi2c";
162 reg = <0x58785000 0x80>;
163 #address-cells = <1>;
164 #size-cells = <0>;
165 interrupts = <0 25 4>;
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900166 clocks = <&peri_clk 9>;
Masahiro Yamada629b5572015-12-03 15:33:57 +0900167 clock-frequency = <400000>;
168 };
Masahiro Yamada474e5ac2015-08-04 20:21:03 +0900169
Masahiro Yamada629b5572015-12-03 15:33:57 +0900170 /* chip-internal connection for HDMI */
171 i2c6: i2c@58786000 {
172 compatible = "socionext,uniphier-fi2c";
173 reg = <0x58786000 0x80>;
174 #address-cells = <1>;
175 #size-cells = <0>;
176 interrupts = <0 26 4>;
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900177 clocks = <&peri_clk 10>;
Masahiro Yamada629b5572015-12-03 15:33:57 +0900178 clock-frequency = <400000>;
Masahiro Yamada474e5ac2015-08-04 20:21:03 +0900179 };
180};
181
Masahiro Yamada61f838c2016-02-26 16:18:31 +0900182&refclk {
183 clock-frequency = <20000000>;
184};
185
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900186&mio_clk {
Masahiro Yamada1bdb60e2016-10-21 17:27:57 +0900187 compatible = "socionext,uniphier-pro5-sd-clock";
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900188};
189
190&mio_rst {
Masahiro Yamada1bdb60e2016-10-21 17:27:57 +0900191 compatible = "socionext,uniphier-pro5-sd-reset";
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900192};
193
194&peri_clk {
195 compatible = "socionext,uniphier-pro5-peri-clock";
196};
197
198&peri_rst {
199 compatible = "socionext,uniphier-pro5-peri-reset";
200};
201
Masahiro Yamada629b5572015-12-03 15:33:57 +0900202&pinctrl {
Masahiro Yamadaebe161d2016-06-14 11:59:45 +0900203 compatible = "socionext,uniphier-pro5-pinctrl";
Masahiro Yamada629b5572015-12-03 15:33:57 +0900204};
Masahiro Yamadaad0561d2016-08-30 19:13:09 +0900205
206&sys_clk {
207 compatible = "socionext,uniphier-pro5-clock";
208};
209
210&sys_rst {
211 compatible = "socionext,uniphier-pro5-reset";
212};