blob: dffa6ff303608b19bf27a0ca34f96f2370d2500f [file] [log] [blame]
Kuninori Morimotocfa66a82013-07-24 00:36:51 -07001/*
2 * Reference Device Tree Source for the Bock-W board
3 *
4 * Copyright (C) 2013 Renesas Solutions Corp.
5 * Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * based on r8a7779
8 *
9 * Copyright (C) 2013 Renesas Solutions Corp.
10 * Copyright (C) 2013 Simon Horman
11 *
12 * This file is licensed under the terms of the GNU General Public License
13 * version 2. This program is licensed "as is" without any warranty of any
14 * kind, whether express or implied.
15 */
16
17/dts-v1/;
Laurent Pinchart31c46cb2013-11-09 13:23:53 +010018#include "r8a7778.dtsi"
Laurent Pinchart77e2d7e2013-11-09 13:23:55 +010019#include <dt-bindings/interrupt-controller/irq.h>
Kuninori Morimotof729dd52014-01-30 21:39:40 -080020#include <dt-bindings/gpio/gpio.h>
Kuninori Morimotocfa66a82013-07-24 00:36:51 -070021
22/ {
23 model = "bockw";
24 compatible = "renesas,bockw-reference", "renesas,r8a7778";
25
Simon Horman5be97ca2014-07-07 09:54:28 +020026 aliases {
27 serial0 = &scif0;
28 };
29
Kuninori Morimotocfa66a82013-07-24 00:36:51 -070030 chosen {
Geert Uytterhoeven05988b32014-10-03 17:11:38 +020031 bootargs = "ignore_loglevel root=/dev/nfs ip=dhcp rw";
32 stdout-path = &scif0;
Kuninori Morimotocfa66a82013-07-24 00:36:51 -070033 };
34
35 memory {
36 device_type = "memory";
37 reg = <0x60000000 0x10000000>;
38 };
Kuninori Morimoto1e918e02013-10-02 01:34:07 -070039
40 fixedregulator3v3: fixedregulator@0 {
41 compatible = "regulator-fixed";
42 regulator-name = "fixed-3.3V";
43 regulator-min-microvolt = <3300000>;
44 regulator-max-microvolt = <3300000>;
45 regulator-boot-on;
46 regulator-always-on;
47 };
48
Kuninori Morimoto73c79af2013-10-03 18:20:19 -070049 ethernet@18300000 {
Kuninori Morimoto1e918e02013-10-02 01:34:07 -070050 compatible = "smsc,lan9220", "smsc,lan9115";
51 reg = <0x18300000 0x1000>;
52
53 phy-mode = "mii";
54 interrupt-parent = <&irqpin>;
Laurent Pinchart08281422013-11-09 13:23:57 +010055 interrupts = <0 IRQ_TYPE_EDGE_FALLING>;
Kuninori Morimoto1e918e02013-10-02 01:34:07 -070056 reg-io-width = <4>;
57 vddvario-supply = <&fixedregulator3v3>;
58 vdd33a-supply = <&fixedregulator3v3>;
59 };
Kuninori Morimoto14cdd832013-10-03 18:32:34 -070060
Kuninori Morimoto14cdd832013-10-03 18:32:34 -070061};
62
63&mmcif {
64 pinctrl-0 = <&mmc_pins>;
65 pinctrl-names = "default";
66
67 vmmc-supply = <&fixedregulator3v3>;
68 bus-width = <8>;
69 broken-cd;
70 status = "okay";
Kuninori Morimoto1e918e02013-10-02 01:34:07 -070071};
72
73&irqpin {
74 status = "okay";
Kuninori Morimotocfa66a82013-07-24 00:36:51 -070075};
Kuninori Morimoto8ed1f8a2013-10-03 18:31:16 -070076
Simon Horman18b27ae2014-07-07 09:54:31 +020077&tmu0 {
78 status = "okay";
79};
80
Kuninori Morimoto8ed1f8a2013-10-03 18:31:16 -070081&pfc {
Kuninori Morimotofb9c1ce2013-10-21 19:37:48 -070082 scif0_pins: serial0 {
Kuninori Morimoto8ed1f8a2013-10-03 18:31:16 -070083 renesas,groups = "scif0_data_a", "scif0_ctrl";
84 renesas,function = "scif0";
85 };
Kuninori Morimoto9ebe54b2013-10-10 23:34:33 -070086
87 mmc_pins: mmc {
88 renesas,groups = "mmc_data8", "mmc_ctrl";
89 renesas,function = "mmc";
90 };
Kuninori Morimoto9d0395a2013-10-10 23:36:01 -070091
Kuninori Morimotofb9c1ce2013-10-21 19:37:48 -070092 sdhi0_pins: sd0 {
Kuninori Morimoto9d0395a2013-10-10 23:36:01 -070093 renesas,groups = "sdhi0_data4", "sdhi0_ctrl",
Kuninori Morimotof729dd52014-01-30 21:39:40 -080094 "sdhi0_cd";
Kuninori Morimoto9d0395a2013-10-10 23:36:01 -070095 renesas,function = "sdhi0";
96 };
Kuninori Morimoto8c663962013-10-31 18:22:53 -070097
98 hspi0_pins: hspi0 {
99 renesas,groups = "hspi0_a";
100 renesas,function = "hspi0";
101 };
Kuninori Morimoto9d0395a2013-10-10 23:36:01 -0700102};
103
104&sdhi0 {
105 pinctrl-0 = <&sdhi0_pins>;
106 pinctrl-names = "default";
107
108 vmmc-supply = <&fixedregulator3v3>;
109 bus-width = <4>;
110 status = "okay";
Kuninori Morimotof729dd52014-01-30 21:39:40 -0800111 wp-gpios = <&gpio3 18 GPIO_ACTIVE_HIGH>;
Kuninori Morimoto8ed1f8a2013-10-03 18:31:16 -0700112};
Kuninori Morimoto8c663962013-10-31 18:22:53 -0700113
114&hspi0 {
115 pinctrl-0 = <&hspi0_pins>;
116 pinctrl-names = "default";
117 status = "okay";
Geert Uytterhoeven6d879a02014-03-14 11:06:41 +0100118
119 flash: flash@0 {
120 #address-cells = <1>;
121 #size-cells = <1>;
Geert Uytterhoeven49633bb2015-05-20 20:16:50 +0200122 compatible = "spansion,s25fl008k", "jedec,spi-nor";
Geert Uytterhoeven6d879a02014-03-14 11:06:41 +0100123 reg = <0>;
124 spi-max-frequency = <104000000>;
125 m25p,fast-read;
126
127 partition@0 {
128 label = "data(spi)";
129 reg = <0x00000000 0x00100000>;
130 };
131 };
Kuninori Morimoto8c663962013-10-31 18:22:53 -0700132};
Simon Horman5be97ca2014-07-07 09:54:28 +0200133
134&scif0 {
135 pinctrl-0 = <&scif0_pins>;
136 pinctrl-names = "default";
137
138 status = "okay";
139};