Skip to content

Commit 56acb3e

Browse files
committed
Merge tag 'mvebu-fixes-5.0-1' of git://git.infradead.org/linux-mvebu into fixes
mvebu fixes for 5.0 They are all device tree fixes which also worth being in stable: - Reserve PSCI area on Armada 7K/8K preventing the kernel accessing this area and crashing while doing it. - Use correct PCIe reset signal on MACCHIATOBin (Armada 8040 based) - Fix polarity of GPIO fan line D-Link DNS NASes(kikwood based) * tag 'mvebu-fixes-5.0-1' of git://git.infradead.org/linux-mvebu: ARM: dts: kirkwood: Fix polarity of GPIO fan lines arm64: dts: marvell: mcbin: fix PCIe reset signal arm64: dts: marvell: armada-ap806: reserve PSCI area Signed-off-by: Olof Johansson <olof@lixom.net>
2 parents 2ec472e + b5f0348 commit 56acb3e

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

arch/arm/boot/dts/kirkwood-dnskw.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
compatible = "gpio-fan";
3737
pinctrl-0 = <&pmx_fan_high_speed &pmx_fan_low_speed>;
3838
pinctrl-names = "default";
39-
gpios = <&gpio1 14 GPIO_ACTIVE_LOW
40-
&gpio1 13 GPIO_ACTIVE_LOW>;
39+
gpios = <&gpio1 14 GPIO_ACTIVE_HIGH
40+
&gpio1 13 GPIO_ACTIVE_HIGH>;
4141
gpio-fan,speed-map = <0 0
4242
3000 1
4343
6000 2>;

arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
pinctrl-0 = <&cp0_pcie_pins>;
184184
num-lanes = <4>;
185185
num-viewport = <8>;
186-
reset-gpio = <&cp0_gpio1 20 GPIO_ACTIVE_LOW>;
186+
reset-gpios = <&cp0_gpio2 20 GPIO_ACTIVE_LOW>;
187187
status = "okay";
188188
};
189189

arch/arm64/boot/dts/marvell/armada-ap806.dtsi

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,23 @@
2828
method = "smc";
2929
};
3030

31+
reserved-memory {
32+
#address-cells = <2>;
33+
#size-cells = <2>;
34+
ranges;
35+
36+
/*
37+
* This area matches the mapping done with a
38+
* mainline U-Boot, and should be updated by the
39+
* bootloader.
40+
*/
41+
42+
psci-area@4000000 {
43+
reg = <0x0 0x4000000 0x0 0x200000>;
44+
no-map;
45+
};
46+
};
47+
3148
ap806 {
3249
#address-cells = <2>;
3350
#size-cells = <2>;

0 commit comments

Comments
 (0)