aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-12-09 14:00:39 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-09 14:00:39 -0500
commit1f6c926c0aa9180d42fcda53578881fc57f83a9a (patch)
treee49794a8ba2e3679a23daf52af1d92dd64a9e995
parent751471201eb92b95a29cf3dd2b296ee6f6d93d23 (diff)
parent038ccb3e8cee52e07dc118ff99f47eaebc1d0746 (diff)
Merge tag 'armsoc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC fixes from Olof Johansson: "Final batch of SoC fixes A few fixes that have trickled in over the last week, all fixing minor errors in devicetrees -- UART pin assignment on Allwinner H3, correcting number of SATA ports on a Marvell-based Linkstation platform and a display clock fix for Freescale/NXP i.MX7D that fixes a freeze when starting up X" * tag 'armsoc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: ARM: dts: orion5x: fix number of sata port for linkstation ls-gl ARM: dts: imx7d: fix LCDIF clock assignment dts: sun8i-h3: correct UART3 pin definitions
-rw-r--r--arch/arm/boot/dts/imx7s.dtsi5
-rw-r--r--arch/arm/boot/dts/orion5x-linkstation-lsgl.dts4
-rw-r--r--arch/arm/boot/dts/sun8i-h3.dtsi2
3 files changed, 7 insertions, 4 deletions
diff --git a/arch/arm/boot/dts/imx7s.dtsi b/arch/arm/boot/dts/imx7s.dtsi
index 0d7d5ac6257b..2b6cb05bc01a 100644
--- a/arch/arm/boot/dts/imx7s.dtsi
+++ b/arch/arm/boot/dts/imx7s.dtsi
@@ -643,9 +643,8 @@
643 reg = <0x30730000 0x10000>; 643 reg = <0x30730000 0x10000>;
644 interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>; 644 interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
645 clocks = <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>, 645 clocks = <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>,
646 <&clks IMX7D_CLK_DUMMY>, 646 <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>;
647 <&clks IMX7D_CLK_DUMMY>; 647 clock-names = "pix", "axi";
648 clock-names = "pix", "axi", "disp_axi";
649 status = "disabled"; 648 status = "disabled";
650 }; 649 };
651 }; 650 };
diff --git a/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts b/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts
index 1cf644bfd7ea..51dc734cd5b9 100644
--- a/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts
+++ b/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts
@@ -82,6 +82,10 @@
82 gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>; 82 gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>;
83}; 83};
84 84
85&sata {
86 nr-ports = <2>;
87};
88
85&ehci1 { 89&ehci1 {
86 status = "okay"; 90 status = "okay";
87}; 91};
diff --git a/arch/arm/boot/dts/sun8i-h3.dtsi b/arch/arm/boot/dts/sun8i-h3.dtsi
index 75a865406d3e..f4ba088b225e 100644
--- a/arch/arm/boot/dts/sun8i-h3.dtsi
+++ b/arch/arm/boot/dts/sun8i-h3.dtsi
@@ -410,7 +410,7 @@
410 }; 410 };
411 411
412 uart3_pins: uart3 { 412 uart3_pins: uart3 {
413 allwinner,pins = "PG13", "PG14"; 413 allwinner,pins = "PA13", "PA14";
414 allwinner,function = "uart3"; 414 allwinner,function = "uart3";
415 allwinner,drive = <SUN4I_PINCTRL_10_MA>; 415 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
416 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>; 416 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;