Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d295928 authored by Gregory CLEMENT's avatar Gregory CLEMENT
Browse files

ARM: mvebu: use improved armada spi device tree compatible name for each SoC



Use the new compatible introduced in order to benefit of a wider and
more accurate range of baud rates to be used.

Signed-off-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
parent 16b79921
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -149,7 +149,6 @@
			};

			spi0: spi@10600 {
				compatible = "marvell,armada-370-spi", "marvell,orion-spi";
				reg = <0x10600 0x28>;
				#address-cells = <1>;
				#size-cells = <0>;
@@ -160,7 +159,6 @@
			};

			spi1: spi@10680 {
				compatible = "marvell,armada-370-spi", "marvell,orion-spi";
				reg = <0x10680 0x28>;
				#address-cells = <1>;
				#size-cells = <0>;
+4 −0
Original line number Diff line number Diff line
@@ -139,11 +139,15 @@
			 * board level if a different configuration is used.
			 */
			spi0: spi@10600 {
				compatible = "marvell,armada-370-spi",
						"marvell,orion-spi";
				pinctrl-0 = <&spi0_pins1>;
				pinctrl-names = "default";
			};

			spi1: spi@10680 {
				compatible = "marvell,armada-370-spi",
						"marvell,orion-spi";
				pinctrl-0 = <&spi1_pins>;
				pinctrl-names = "default";
			};
+4 −2
Original line number Diff line number Diff line
@@ -238,7 +238,8 @@
			};

			spi0: spi@10600 {
				compatible = "marvell,orion-spi";
				compatible = "marvell,armada-375-spi",
						"marvell,orion-spi";
				reg = <0x10600 0x50>;
				#address-cells = <1>;
				#size-cells = <0>;
@@ -249,7 +250,8 @@
			};

			spi1: spi@10680 {
				compatible = "marvell,orion-spi";
				compatible = "marvell,armada-375-spi",
						"marvell,orion-spi";
				reg = <0x10680 0x50>;
				#address-cells = <1>;
				#size-cells = <0>;
+4 −2
Original line number Diff line number Diff line
@@ -167,7 +167,8 @@
			};

			spi0: spi@10600 {
				compatible = "marvell,orion-spi";
				compatible = "marvell,armada-380-spi",
						"marvell,orion-spi";
				reg = <0x10600 0x50>;
				#address-cells = <1>;
				#size-cells = <0>;
@@ -178,7 +179,8 @@
			};

			spi1: spi@10680 {
				compatible = "marvell,orion-spi";
				compatible = "marvell,armada-380-spi",
						"marvell,orion-spi";
				reg = <0x10680 0x50>;
				#address-cells = <1>;
				#size-cells = <0>;
+4 −2
Original line number Diff line number Diff line
@@ -128,7 +128,8 @@
			};

			spi0: spi@10600 {
				compatible = "marvell,orion-spi";
				compatible = "marvell,armada-390-spi",
						"marvell,orion-spi";
				reg = <0x10600 0x50>;
				#address-cells = <1>;
				#size-cells = <0>;
@@ -139,7 +140,8 @@
			};

			spi1: spi@10680 {
				compatible = "marvell,orion-spi";
				compatible = "marvell,armada-390-spi",
						"marvell,orion-spi";
				reg = <0x10680 0x50>;
				#address-cells = <1>;
				#size-cells = <0>;
Loading