Skip to content

Commit 104f1e3

Browse files
committed
Merge tag 'v7.1-rockchip-dts32-1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip into soc/dt
A number of dt-schema cleanups that are log standing, so not suitable as fix for the current release. * tag 'v7.1-rockchip-dts32-1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip: ARM: dts: rockchip: Pass linux,code to the power key on rk3288-veyron-pinky ARM: dts: rockchip: Fix LED node names on rk3288-phycore-rdk ARM: dts: rockchip: Fix GMAC description n RK3288 boards ARM: dts: rockchip: Fix RTC description on rk3288-firefly-reload ARM: dts: rockchip: Add missing the touchscreen interrupt on rk3288-phycore-rdk ARM: dts: rockchip: Fix the trackpad supply on rk3288-veyron-jerry ARM: dts: rockchip: Fix the Bluetooth node name on rk3288-veyron ARM: dts: rockchip: Remove invalid regulator-property from rk3288-veyron ARM: dts: rockchip: Use mount-matrix on rk3188-bqedison2qc ARM: dts: rockchip: Fix RTC compatible on rk3288-phycore-rdk ARM: dts: rockchip: Move PHY reset to ethernet-phy node on rk3036 boards ARM: dts: rockchip: Remove rockchip,grf from rk3288 tsadc Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
2 parents 0ba8e91 + 94c8dc1 commit 104f1e3

13 files changed

Lines changed: 22 additions & 24 deletions

arch/arm/boot/dts/rockchip/rk3036-evb.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
&emac {
1818
phy = <&phy0>;
19-
phy-reset-duration = <10>; /* millisecond */
20-
phy-reset-gpios = <&gpio2 RK_PC6 GPIO_ACTIVE_LOW>; /* PHY_RST */
2119
pinctrl-names = "default";
2220
pinctrl-0 = <&emac_xfer>, <&emac_mdio>;
2321
status = "okay";
@@ -28,6 +26,8 @@
2826

2927
phy0: ethernet-phy@0 {
3028
reg = <0>;
29+
reset-gpios = <&gpio2 RK_PC6 GPIO_ACTIVE_LOW>;
30+
reset-assert-us = <10000>;
3131
};
3232
};
3333
};

arch/arm/boot/dts/rockchip/rk3036-kylin.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@
102102

103103
&emac {
104104
phy = <&phy0>;
105-
phy-reset-duration = <10>; /* millisecond */
106-
phy-reset-gpios = <&gpio2 RK_PC6 GPIO_ACTIVE_LOW>; /* PHY_RST */
107105
pinctrl-names = "default";
108106
pinctrl-0 = <&emac_xfer>, <&emac_mdio>;
109107
status = "okay";
@@ -114,6 +112,8 @@
114112

115113
phy0: ethernet-phy@0 {
116114
reg = <0>;
115+
reset-gpios = <&gpio2 RK_PC6 GPIO_ACTIVE_LOW>;
116+
reset-assert-us = <10000>;
117117
};
118118
};
119119
};

arch/arm/boot/dts/rockchip/rk3188-bqedison2qc.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
interrupts = <RK_PB7 IRQ_TYPE_EDGE_RISING>;
263263
pinctrl-names = "default";
264264
pinctrl-0 = <&gsensor_int>;
265-
rotation-matrix = "1", "0", "0",
265+
mount-matrix = "1", "0", "0",
266266
"0", "-1", "0",
267267
"0", "0", "1";
268268
vdd-supply = <&vcc_io>;

arch/arm/boot/dts/rockchip/rk3288-firefly-reload.dts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,10 @@
197197
};
198198

199199
&i2c0 {
200-
hym8563: hym8563@51 {
200+
hym8563: rtc@51 {
201201
compatible = "haoyu,hym8563";
202202
reg = <0x51>;
203203
#clock-cells = <0>;
204-
clock-frequency = <32768>;
205204
clock-output-names = "xin32k";
206205
interrupt-parent = <&gpio7>;
207206
interrupts = <RK_PA4 IRQ_TYPE_EDGE_FALLING>;

arch/arm/boot/dts/rockchip/rk3288-phycore-rdk.dts

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@
8686
touchscreen@44 {
8787
compatible = "st,stmpe811";
8888
reg = <0x44>;
89+
interrupt-parent = <&gpio5>;
90+
interrupts = <RK_PB4 IRQ_TYPE_EDGE_FALLING>;
91+
pinctrl-names = "default";
92+
pinctrl-0 = <&ts_irq_pin>;
8993
};
9094

9195
adc@64 {
@@ -94,7 +98,7 @@
9498
};
9599

96100
i2c_rtc: rtc@68 {
97-
compatible = "rv4162";
101+
compatible = "microcrystal,rv4162";
98102
reg = <0x68>;
99103
pinctrl-names = "default";
100104
pinctrl-0 = <&i2c_rtc_int>;
@@ -121,25 +125,25 @@
121125
compatible = "nxp,pca9533";
122126
reg = <0x62>;
123127

124-
led1 {
128+
led-1 {
125129
label = "red:user1";
126130
linux,default-trigger = "none";
127131
type = <PCA9532_TYPE_LED>;
128132
};
129133

130-
led2 {
134+
led-2 {
131135
label = "green:user2";
132136
linux,default-trigger = "none";
133137
type = <PCA9532_TYPE_LED>;
134138
};
135139

136-
led3 {
140+
led-3 {
137141
label = "blue:user3";
138142
linux,default-trigger = "none";
139143
type = <PCA9532_TYPE_LED>;
140144
};
141145

142-
led4 {
146+
led-4 {
143147
label = "red:user4";
144148
linux,default-trigger = "none";
145149
type = <PCA9532_TYPE_LED>;
@@ -199,7 +203,7 @@
199203

200204
touchscreen {
201205
ts_irq_pin: ts-irq-pin {
202-
rockchip,pins = <5 RK_PB7 RK_FUNC_GPIO &pcfg_pull_none>;
206+
rockchip,pins = <5 RK_PB4 RK_FUNC_GPIO &pcfg_pull_up>;
203207
};
204208
};
205209

arch/arm/boot/dts/rockchip/rk3288-phycore-som.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
tx_delay = <0x0>;
101101
rx_delay = <0x0>;
102102

103-
mdio0 {
103+
mdio {
104104
compatible = "snps,dwmac-mdio";
105105
#address-cells = <1>;
106106
#size-cells = <0>;

arch/arm/boot/dts/rockchip/rk3288-veyron-brain.dts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,12 @@
9191
regulator-min-microvolt = <1000000>;
9292
regulator-max-microvolt = <1000000>;
9393
regulator-name = "vdd10_lcd";
94-
regulator-suspend-mem-disabled;
9594
};
9695

9796
vcc18_hdmi: SWITCH_REG2 {
9897
regulator-always-on;
9998
regulator-boot-on;
10099
regulator-name = "vcc18_hdmi";
101-
regulator-suspend-mem-disabled;
102100
};
103101
};
104102
};

arch/arm/boot/dts/rockchip/rk3288-veyron-fievel.dts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,8 @@
9898
snps,reset-gpio = <&gpio4 RK_PB0 0>;
9999
snps,reset-active-low;
100100
snps,reset-delays-us = <0 10000 30000>;
101-
wakeup-source;
102101

103-
mdio0 {
102+
mdio {
104103
compatible = "snps,dwmac-mdio";
105104
#address-cells = <1>;
106105
#size-cells = <0>;
@@ -177,7 +176,7 @@
177176
#address-cells = <1>;
178177
#size-cells = <0>;
179178

180-
btmrvl: btmrvl@2 {
179+
btmrvl: bluetooth@2 {
181180
compatible = "marvell,sd8897-bt";
182181
reg = <2>;
183182
interrupt-parent = <&gpio4>;

arch/arm/boot/dts/rockchip/rk3288-veyron-jaq.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
#address-cells = <1>;
4949
#size-cells = <0>;
5050

51-
btmrvl: btmrvl@2 {
51+
btmrvl: bluetooth@2 {
5252
compatible = "marvell,sd8897-bt";
5353
reg = <2>;
5454
interrupt-parent = <&gpio4>;

arch/arm/boot/dts/rockchip/rk3288-veyron-jerry.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@
488488
interrupts = <RK_PA3 IRQ_TYPE_EDGE_FALLING>;
489489
reg = <0x2c>;
490490
hid-descr-addr = <0x0020>;
491-
vcc-supply = <&vcc33_io>;
491+
vdd-supply = <&vcc33_io>;
492492
wakeup-source;
493493
};
494494
};

0 commit comments

Comments
 (0)