blob: 872882bd01bcdf0b65c9492509a880155c91b22f [file] [log] [blame]
Jon Mason707bbc42016-06-07 18:28:06 -04001/*
2 * BSD LICENSE
3 *
4 * Copyright(c) 2016 Broadcom. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Broadcom Corporation nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33/dts-v1/;
34
35#include "bcm-nsp.dtsi"
Jon Mason10baed12016-08-03 14:39:01 -040036#include <dt-bindings/gpio/gpio.h>
Jon Mason707bbc42016-06-07 18:28:06 -040037
38/ {
39 model = "NorthStar Plus XMC (BCM958525xmc)";
40 compatible = "brcm,bcm58525", "brcm,nsp";
41
42 aliases {
43 serial0 = &uart0;
44 };
45
46 chosen {
47 stdout-path = "serial0:115200n8";
48 };
Jon Mason70c341c2016-08-03 14:38:59 -040049
50 memory {
51 device_type = "memory";
52 reg = <0x60000000 0x40000000>;
53 };
Jon Mason10baed12016-08-03 14:39:01 -040054
55 gpio-restart {
56 compatible = "gpio-restart";
57 gpios = <&gpioa 31 GPIO_ACTIVE_LOW>;
Jon Masonf4bff2c2017-03-01 18:02:28 -050058 open-source;
Jon Mason10baed12016-08-03 14:39:01 -040059 priority = <200>;
60 };
Jon Mason707bbc42016-06-07 18:28:06 -040061};
62
Jon Masonbb239552016-08-03 14:38:57 -040063&i2c0 {
64 temperature-sensor@4c {
65 compatible = "adi,adt7461a";
66 reg = <0x4c>;
67 };
68
69 eeprom@52 {
70 compatible = "atmel,24c02";
71 reg = <0x52>;
72 pagesize = <16>;
73 };
74
75 rtc@68 {
76 compatible = "st,m41t81";
77 reg = <0x68>;
78 };
79};
80
Jon Mason707bbc42016-06-07 18:28:06 -040081&nand {
82 nandcs@0 {
83 compatible = "brcm,nandcs";
84 reg = <0>;
85 nand-on-flash-bbt;
86
87 #address-cells = <1>;
88 #size-cells = <1>;
89
90 nand-ecc-strength = <24>;
91 nand-ecc-step-size = <1024>;
92
93 brcm,nand-oob-sector-size = <27>;
94
95 partition@0 {
96 label = "nboot";
97 reg = <0x00000000 0x00200000>;
98 read-only;
99 };
100 partition@200000 {
101 label = "nenv";
102 reg = <0x00200000 0x00400000>;
103 };
104 partition@600000 {
105 label = "nsystem";
106 reg = <0x00600000 0x00a00000>;
107 };
108 partition@1000000 {
109 label = "nrootfs";
110 reg = <0x01000000 0x03000000>;
111 };
112 partition@4000000 {
113 label = "ncustfs";
114 reg = <0x04000000 0x3c000000>;
115 };
116 };
117};
118
Jon Masonbb239552016-08-03 14:38:57 -0400119/* XHCI, MMC, and Ethernet support needed to be complete */
Jon Mason707bbc42016-06-07 18:28:06 -0400120
121&uart0 {
122 status = "okay";
123};
124
125&pcie0 {
126 status = "okay";
127};
128
129&pcie1 {
130 status = "okay";
131};
132
Jon Masonbb239552016-08-03 14:38:57 -0400133&sata_phy0 {
134 status = "okay";
135};
136
137&sata_phy1 {
138 status = "okay";
139};
140
141&sata {
142 status = "okay";
143};
144
Jon Mason707bbc42016-06-07 18:28:06 -0400145&pinctrl {
146 pinctrl-names = "default";
147 pinctrl-0 = <&nand_sel>;
148 nand_sel: nand_sel {
149 function = "nand";
150 groups = "nand_grp";
151 };
152};