2017-06-06 22:10:18 +07:00
|
|
|
/*
|
|
|
|
* Device Tree Source for the iWave-RZG1M Qseven carrier board
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 Renesas Electronics Corp.
|
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public License
|
|
|
|
* version 2. This program is licensed "as is" without any warranty of any
|
|
|
|
* kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
#include "r8a7743-iwg20m.dtsi"
|
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "iWave Systems RainboW-G20D-Qseven board based on RZ/G1M";
|
|
|
|
compatible = "iwave,g20d", "iwave,g20m", "renesas,r8a7743";
|
|
|
|
|
|
|
|
aliases {
|
|
|
|
serial0 = &scif0;
|
2017-07-07 20:12:45 +07:00
|
|
|
ethernet0 = &avb;
|
2017-06-06 22:10:18 +07:00
|
|
|
};
|
2017-08-14 18:49:49 +07:00
|
|
|
|
|
|
|
vcc_sdhi1: regulator-vcc-sdhi1 {
|
|
|
|
compatible = "regulator-fixed";
|
|
|
|
|
|
|
|
regulator-name = "SDHI1 Vcc";
|
|
|
|
regulator-min-microvolt = <3300000>;
|
|
|
|
regulator-max-microvolt = <3300000>;
|
|
|
|
|
|
|
|
gpio = <&gpio1 16 GPIO_ACTIVE_LOW>;
|
|
|
|
};
|
|
|
|
|
|
|
|
vccq_sdhi1: regulator-vccq-sdhi1 {
|
|
|
|
compatible = "regulator-gpio";
|
|
|
|
|
|
|
|
regulator-name = "SDHI1 VccQ";
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
regulator-max-microvolt = <3300000>;
|
|
|
|
|
|
|
|
gpios = <&gpio2 30 GPIO_ACTIVE_LOW>;
|
|
|
|
gpios-states = <1>;
|
|
|
|
states = <3300000 1
|
|
|
|
1800000 0>;
|
|
|
|
};
|
2017-06-06 22:10:18 +07:00
|
|
|
};
|
|
|
|
|
2017-07-05 17:57:35 +07:00
|
|
|
&pfc {
|
|
|
|
scif0_pins: scif0 {
|
|
|
|
groups = "scif0_data_d";
|
|
|
|
function = "scif0";
|
|
|
|
};
|
2017-07-07 20:12:45 +07:00
|
|
|
|
|
|
|
avb_pins: avb {
|
|
|
|
groups = "avb_mdio", "avb_gmii";
|
|
|
|
function = "avb";
|
|
|
|
};
|
2017-08-14 18:49:49 +07:00
|
|
|
|
|
|
|
sdhi1_pins: sd1 {
|
|
|
|
groups = "sdhi1_data4", "sdhi1_ctrl";
|
|
|
|
function = "sdhi1";
|
|
|
|
power-source = <3300>;
|
|
|
|
};
|
|
|
|
|
|
|
|
sdhi1_pins_uhs: sd1_uhs {
|
|
|
|
groups = "sdhi1_data4", "sdhi1_ctrl";
|
|
|
|
function = "sdhi1";
|
|
|
|
power-source = <1800>;
|
|
|
|
};
|
2017-07-05 17:57:35 +07:00
|
|
|
};
|
|
|
|
|
2017-06-06 22:10:18 +07:00
|
|
|
&scif0 {
|
2017-07-05 17:57:35 +07:00
|
|
|
pinctrl-0 = <&scif0_pins>;
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
2017-06-06 22:10:18 +07:00
|
|
|
status = "okay";
|
|
|
|
};
|
2017-07-07 20:12:45 +07:00
|
|
|
|
|
|
|
&avb {
|
|
|
|
pinctrl-0 = <&avb_pins>;
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
|
|
|
phy-handle = <&phy3>;
|
|
|
|
phy-mode = "gmii";
|
|
|
|
renesas,no-ether-link;
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
phy3: ethernet-phy@3 {
|
|
|
|
reg = <3>;
|
|
|
|
micrel,led-mode = <1>;
|
|
|
|
};
|
|
|
|
};
|
2017-08-14 18:49:49 +07:00
|
|
|
|
|
|
|
&sdhi1 {
|
|
|
|
pinctrl-0 = <&sdhi1_pins>;
|
|
|
|
pinctrl-1 = <&sdhi1_pins_uhs>;
|
|
|
|
pinctrl-names = "default", "state_uhs";
|
|
|
|
|
|
|
|
vmmc-supply = <&vcc_sdhi1>;
|
|
|
|
vqmmc-supply = <&vccq_sdhi1>;
|
|
|
|
cd-gpios = <&gpio6 14 GPIO_ACTIVE_LOW>;
|
|
|
|
wp-gpios = <&gpio6 15 GPIO_ACTIVE_HIGH>;
|
|
|
|
sd-uhs-sdr50;
|
|
|
|
status = "okay";
|
|
|
|
};
|