blob: 779f724b4531defa1eebf6cf5a179a4b8bb1dcc6 [file] [log] [blame]
Jacopo Mondib879d672017-05-23 21:20:54 +02001/*
2 * Device Tree Source for the GR-Peach board
3 *
4 * Copyright (C) 2017 Jacopo Mondi <jacopo+renesas@jmondi.org>
5 * Copyright (C) 2016 Renesas Electronics
6 *
7 * This file is licensed under the terms of the GNU General Public License
8 * version 2. This program is licensed "as is" without any warranty of any
9 * kind, whether express or implied.
10 */
11
12/dts-v1/;
13#include "r7s72100.dtsi"
Jacopo Mondicfce5ac2017-08-24 10:48:43 +020014#include <dt-bindings/gpio/gpio.h>
Jacopo Mondi2f8be2d2017-08-24 10:48:41 +020015#include <dt-bindings/pinctrl/r7s72100-pinctrl.h>
Jacopo Mondib879d672017-05-23 21:20:54 +020016
17/ {
18 model = "GR-Peach";
19 compatible = "renesas,gr-peach", "renesas,r7s72100";
20
21 aliases {
22 serial0 = &scif2;
23 };
24
25 chosen {
26 bootargs = "ignore_loglevel rw root=/dev/mtdblock0";
27 stdout-path = "serial0:115200n8";
28 };
29
30 memory@20000000 {
31 device_type = "memory";
32 reg = <0x20000000 0x00a00000>;
Jacopo Mondib879d672017-05-23 21:20:54 +020033 };
34
35 lbsc {
36 #address-cells = <1>;
37 #size-cells = <1>;
38 };
39
40 flash@18000000 {
41 compatible = "mtd-rom";
42 probe-type = "map_rom";
43 reg = <0x18000000 0x00800000>;
44 bank-width = <4>;
45 device-width = <1>;
46
47 #address-cells = <1>;
48 #size-cells = <1>;
49
50 rootfs@600000 {
51 label = "rootfs";
52 reg = <0x00600000 0x00200000>;
53 };
54 };
Jacopo Mondicfce5ac2017-08-24 10:48:43 +020055
Jacopo Mondi4f049e02017-10-05 10:58:18 +020056 leds {
Jacopo Mondicfce5ac2017-08-24 10:48:43 +020057 status = "okay";
58 compatible = "gpio-leds";
59
60 led1 {
61 gpios = <&port6 12 GPIO_ACTIVE_HIGH>;
62 };
63 };
Jacopo Mondib879d672017-05-23 21:20:54 +020064};
65
Jacopo Mondi2f8be2d2017-08-24 10:48:41 +020066&pinctrl {
67 scif2_pins: serial2 {
68 /* P6_2 as RxD2; P6_3 as TxD2 */
69 pinmux = <RZA1_PINMUX(6, 2, 7)>, <RZA1_PINMUX(6, 3, 7)>;
70 };
Jacopo Mondi349adfb2017-10-09 10:48:34 +020071
72 ether_pins: ether {
73 /* Ethernet on Ports 1,3,5,10 */
74 pinmux = <RZA1_PINMUX(1, 14, 4)>, /* P1_14 = ET_COL */
75 <RZA1_PINMUX(3, 0, 2)>, /* P3_0 = ET_TXCLK */
76 <RZA1_PINMUX(3, 3, 2)>, /* P3_3 = ET_MDIO */
77 <RZA1_PINMUX(3, 4, 2)>, /* P3_4 = ET_RXCLK */
78 <RZA1_PINMUX(3, 5, 2)>, /* P3_5 = ET_RXER */
79 <RZA1_PINMUX(3, 6, 2)>, /* P3_6 = ET_RXDV */
80 <RZA1_PINMUX(5, 9, 2)>, /* P5_9 = ET_MDC */
81 <RZA1_PINMUX(10, 1, 4)>, /* P10_1 = ET_TXER */
82 <RZA1_PINMUX(10, 2, 4)>, /* P10_2 = ET_TXEN */
83 <RZA1_PINMUX(10, 3, 4)>, /* P10_3 = ET_CRS */
84 <RZA1_PINMUX(10, 4, 4)>, /* P10_4 = ET_TXD0 */
85 <RZA1_PINMUX(10, 5, 4)>, /* P10_5 = ET_TXD1 */
86 <RZA1_PINMUX(10, 6, 4)>, /* P10_6 = ET_TXD2 */
87 <RZA1_PINMUX(10, 7, 4)>, /* P10_7 = ET_TXD3 */
88 <RZA1_PINMUX(10, 8, 4)>, /* P10_8 = ET_RXD0 */
89 <RZA1_PINMUX(10, 9, 4)>, /* P10_9 = ET_RXD1 */
90 <RZA1_PINMUX(10, 10, 4)>,/* P10_10 = ET_RXD2 */
91 <RZA1_PINMUX(10, 11, 4)>;/* P10_11 = ET_RXD3 */
92 };
Jacopo Mondi2f8be2d2017-08-24 10:48:41 +020093};
94
Jacopo Mondib879d672017-05-23 21:20:54 +020095&extal_clk {
96 clock-frequency = <13333000>;
97};
98
99&usb_x1_clk {
100 clock-frequency = <48000000>;
101};
102
Jacopo Mondi62cea6d2017-10-05 10:58:19 +0200103&mtu2 {
104 status = "okay";
105};
106
Jacopo Mondi1126e102017-10-09 10:48:35 +0200107&ostm0 {
108 status = "okay";
109};
110
111&ostm1 {
112 status = "okay";
113};
114
Jacopo Mondib879d672017-05-23 21:20:54 +0200115&scif2 {
Jacopo Mondi2f8be2d2017-08-24 10:48:41 +0200116 pinctrl-names = "default";
117 pinctrl-0 = <&scif2_pins>;
118
Jacopo Mondib879d672017-05-23 21:20:54 +0200119 status = "okay";
120};
Jacopo Mondi349adfb2017-10-09 10:48:34 +0200121
122&ether {
123 pinctrl-names = "default";
124 pinctrl-0 = <&ether_pins>;
125
126 status = "okay";
127
128 renesas,no-ether-link;
129 phy-handle = <&phy0>;
130
131 phy0: ethernet-phy@0 {
132 reg = <0>;
133
134 reset-gpios = <&port4 2 GPIO_ACTIVE_LOW>;
135 reset-delay-us = <5>;
136 };
137};