Skip to content

Commit 6ff6bc4

Browse files
committed
Merge tag 'imx-fixes-4.20' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into fixes
i.MX fixes for 4.20: - Add boot-on and always-on for imx6sx-sdb phy regulator to fix enet resume problem, which is exposed by commit ("regulator: fixed: Convert to use GPIO descriptor only"). - Fix improperly quoted stdout-path values for imx53-ppd and vf610m4-colibri board. - Fix the typo of compatible string "fs,imx6sll-i2c" which should be "fsl,imx6sll-i2c". * tag 'imx-fixes-4.20' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux: ARM: dts: imx6sx-sdb: Fix enet phy regulator ARM: dts: fsl: Fix improperly quoted stdout-path values ARM: dts: imx6sll: fix typo for fsl,imx6sll-i2c node Signed-off-by: Olof Johansson <olof@lixom.net>
2 parents f55275b + 1ad9fb7 commit 6ff6bc4

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

arch/arm/boot/dts/imx53-ppd.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
};
5656

5757
chosen {
58-
stdout-path = "&uart1:115200n8";
58+
stdout-path = "serial0:115200n8";
5959
};
6060

6161
memory@70000000 {

arch/arm/boot/dts/imx6sll.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@
740740
i2c1: i2c@21a0000 {
741741
#address-cells = <1>;
742742
#size-cells = <0>;
743-
compatible = "fs,imx6sll-i2c", "fsl,imx21-i2c";
743+
compatible = "fsl,imx6sll-i2c", "fsl,imx21-i2c";
744744
reg = <0x021a0000 0x4000>;
745745
interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
746746
clocks = <&clks IMX6SLL_CLK_I2C1>;

arch/arm/boot/dts/imx6sx-sdb.dtsi

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@
117117
regulator-name = "enet_3v3";
118118
regulator-min-microvolt = <3300000>;
119119
regulator-max-microvolt = <3300000>;
120-
gpios = <&gpio2 6 GPIO_ACTIVE_LOW>;
120+
gpio = <&gpio2 6 GPIO_ACTIVE_LOW>;
121+
regulator-boot-on;
122+
regulator-always-on;
121123
};
122124

123125
reg_pcie_gpio: regulator-pcie-gpio {
@@ -180,6 +182,7 @@
180182
phy-supply = <&reg_enet_3v3>;
181183
phy-mode = "rgmii";
182184
phy-handle = <&ethphy1>;
185+
phy-reset-gpios = <&gpio2 7 GPIO_ACTIVE_LOW>;
183186
status = "okay";
184187

185188
mdio {
@@ -373,6 +376,8 @@
373376
MX6SX_PAD_RGMII1_RD3__ENET1_RX_DATA_3 0x3081
374377
MX6SX_PAD_RGMII1_RX_CTL__ENET1_RX_EN 0x3081
375378
MX6SX_PAD_ENET2_RX_CLK__ENET2_REF_CLK_25M 0x91
379+
/* phy reset */
380+
MX6SX_PAD_ENET2_CRS__GPIO2_IO_7 0x10b0
376381
>;
377382
};
378383

arch/arm/boot/dts/vf610m4-colibri.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
compatible = "fsl,vf610m4";
5151

5252
chosen {
53-
bootargs = "console=ttyLP2,115200 clk_ignore_unused init=/linuxrc rw";
54-
stdout-path = "&uart2";
53+
bootargs = "clk_ignore_unused init=/linuxrc rw";
54+
stdout-path = "serial2:115200";
5555
};
5656

5757
memory@8c000000 {

0 commit comments

Comments
 (0)