blob: 5d8399c84b8aecbd14819fb81a0d4569b1fd4b9b [file] [log] [blame]
Álvaro Fernández Rojase30d2bd2017-04-25 00:39:21 +02001/*
2 * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
Álvaro Fernández Rojas70789bd2017-05-07 20:13:02 +02007#include <dt-bindings/clock/bcm6358-clock.h>
Álvaro Fernández Rojase30d2bd2017-04-25 00:39:21 +02008#include <dt-bindings/gpio/gpio.h>
Álvaro Fernández Rojasefe8b9d2017-05-03 15:10:22 +02009#include <dt-bindings/reset/bcm6358-reset.h>
Álvaro Fernández Rojase30d2bd2017-04-25 00:39:21 +020010#include "skeleton.dtsi"
11
12/ {
13 compatible = "brcm,bcm6358";
14
15 cpus {
16 reg = <0xfffe0000 0x4>;
17 #address-cells = <1>;
18 #size-cells = <0>;
19 u-boot,dm-pre-reloc;
20
21 cpu@0 {
22 compatible = "brcm,bcm6358-cpu", "mips,mips4Kc";
23 device_type = "cpu";
24 reg = <0>;
25 u-boot,dm-pre-reloc;
26 };
27
28 cpu@1 {
29 compatible = "brcm,bcm6358-cpu", "mips,mips4Kc";
30 device_type = "cpu";
31 reg = <1>;
32 u-boot,dm-pre-reloc;
33 };
34 };
35
36 clocks {
37 compatible = "simple-bus";
38 #address-cells = <1>;
39 #size-cells = <1>;
40 u-boot,dm-pre-reloc;
41
42 periph_osc: periph-osc {
43 compatible = "fixed-clock";
44 #clock-cells = <0>;
45 clock-frequency = <50000000>;
46 u-boot,dm-pre-reloc;
47 };
Álvaro Fernández Rojas70789bd2017-05-07 20:13:02 +020048
49 periph_clk: periph-clk {
50 compatible = "brcm,bcm6345-clk";
51 reg = <0xfffe0004 0x4>;
52 #clock-cells = <1>;
53 };
Álvaro Fernández Rojase30d2bd2017-04-25 00:39:21 +020054 };
55
56 pflash: nor@1e000000 {
57 compatible = "cfi-flash";
58 reg = <0x1e000000 0x2000000>;
59 bank-width = <2>;
60 #address-cells = <1>;
61 #size-cells = <1>;
62
63 status = "disabled";
64 };
65
66 ubus {
67 compatible = "simple-bus";
68 #address-cells = <1>;
69 #size-cells = <1>;
70 u-boot,dm-pre-reloc;
71
72 pll_cntl: syscon@fffe0008 {
73 compatible = "syscon";
74 reg = <0xfffe0008 0x4>;
75 };
76
77 syscon-reboot {
78 compatible = "syscon-reboot";
79 regmap = <&pll_cntl>;
80 offset = <0x0>;
81 mask = <0x1>;
82 };
83
Álvaro Fernández Rojasefe8b9d2017-05-03 15:10:22 +020084 periph_rst: reset-controller@fffe0034 {
85 compatible = "brcm,bcm6345-reset";
86 reg = <0xfffe0034 0x4>;
87 #reset-cells = <1>;
88 };
89
Álvaro Fernández Rojasbbbb6112017-05-16 18:29:10 +020090 wdt: watchdog@fffe005c {
91 compatible = "brcm,bcm6345-wdt";
92 reg = <0xfffe005c 0xc>;
93 clocks = <&periph_osc>;
94 };
95
Álvaro Fernández Rojas2507f692017-05-07 20:09:31 +020096 gpio1: gpio-controller@fffe0080 {
97 compatible = "brcm,bcm6345-gpio";
98 reg = <0xfffe0080 0x4>, <0xfffe0088 0x4>;
99 gpio-controller;
100 #gpio-cells = <2>;
101 ngpios = <8>;
102
103 status = "disabled";
104 };
105
106 gpio0: gpio-controller@fffe0084 {
107 compatible = "brcm,bcm6345-gpio";
108 reg = <0xfffe0084 0x4>, <0xfffe008c 0x4>;
109 gpio-controller;
110 #gpio-cells = <2>;
111
112 status = "disabled";
113 };
114
Álvaro Fernández Rojas4d6a5192017-05-07 20:11:31 +0200115 leds: led-controller@fffe00d0 {
116 compatible = "brcm,bcm6358-leds";
117 reg = <0xfffe00d0 0x8>;
118 #address-cells = <1>;
119 #size-cells = <0>;
120
121 status = "disabled";
122 };
123
Álvaro Fernández Rojase30d2bd2017-04-25 00:39:21 +0200124 uart0: serial@fffe0100 {
125 compatible = "brcm,bcm6345-uart";
126 reg = <0xfffe0100 0x18>;
127 clocks = <&periph_osc>;
128
129 status = "disabled";
130 };
131
132 uart1: serial@fffe0120 {
133 compatible = "brcm,bcm6345-uart";
134 reg = <0xfffe0120 0x18>;
135 clocks = <&periph_osc>;
136
137 status = "disabled";
138 };
139
140 memory-controller@fffe1200 {
141 compatible = "brcm,bcm6358-mc";
Álvaro Fernández Rojas4153e472017-05-11 11:01:26 +0200142 reg = <0xfffe1200 0x4c>;
Álvaro Fernández Rojase30d2bd2017-04-25 00:39:21 +0200143 u-boot,dm-pre-reloc;
144 };
145 };
146};