mvebu dt for 6.3 (part 1)
Fix errors reported by dtbs_check on dove boards -----BEGIN PGP SIGNATURE----- iF0EABECAB0WIQQYqXDMF3cvSLY+g9cLBhiOFHI71QUCY9vV4AAKCRALBhiOFHI7 1SHYAJ9rkmvzRPUDBEE+nlwskG/J7+jJ6gCgh44affjWovbVlKCu+qhxqxeHeD4= =MFwN -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEo6/YBQwIrVS28WGKmmx57+YAGNkFAmPdCIwACgkQmmx57+YA GNkcJBAArYdn3juS/yOTUt8sFI5zFILdg17KChVRwK8XV63gXcGkIphYQsEKUMl+ 87wVhhI1ex/vRfWkKuzg4nvZY1nJ5a94yCpUCMOf3sxTSzT4Pw6KkdVcQtGW7B9g 7nNt4tUJJnrZrQ6Fsh/xv6hzNrhX6SYWr8AjLLjWkX0/TLQaEssBobjAW+nw8zPk jfJxwUo9cmsJ13pcjfdmYydflrQHIXE09KEoaZjITMnwesB23HmfEzK5vM64n34J hz753BWdcHqkZ4POpqA1+3x+ToQXB636PEUpLi0ocB6U6kMuHYnpZzYw0/OJ1FEx e27/AMMXK6Vq+59VsZZ3JusNbb/9OrQrl2F0/gcbbvDf6yYEJ8eW/iuFUYOyOJ5p 2ycpDPbiYIqJgUxVlqcM1UFFIpUNCs51jnTbUECDlBWzr+17GcuVML6KiYdNhRzD 2MhToiJdUetrABTPpI1+N286NhHGXYfHpYxoX7x2BuMMCC2vzx32z4ajOAoWR4yr mQEY2D+X4Pt/0gLEqpYZg6tqcRmPgFCJyk6IrWuHPlZgUFkZ7pD4bApuVdlywdGb xXTgIx/F6eQsI5X+27Nq/YdAXycIKTSRsONIWcP9yuxMz5kUFSFu5TWfVLjI7Vs+ X0SejFeMJ17RXPEKHh7yyyUKiIV2Hy8/88xz8hXcuJoZ4yENKNc= =cMCA -----END PGP SIGNATURE----- Merge tag 'mvebu-dt-6.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu into arm/dt mvebu dt for 6.3 (part 1) Fix errors reported by dtbs_check on dove boards * tag 'mvebu-dt-6.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu: ARM: dts: dove.dtsi: Move ethphy to fix schema error Link: https://lore.kernel.org/r/87357oaxs0.fsf@BL-laptop Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
commit
df5bc88fa1
arch/arm/boot/dts
|
@ -124,9 +124,17 @@
|
|||
};
|
||||
|
||||
/* Optional RTL8211D GbE PHY on SMI address 0x03 */
|
||||
ðphy {
|
||||
reg = <3>;
|
||||
status = "disabled";
|
||||
&mdio {
|
||||
ethphy: ethernet-phy@3 {
|
||||
reg = <3>;
|
||||
status = "disabled";
|
||||
};
|
||||
};
|
||||
|
||||
ð {
|
||||
ethernet-port@0 {
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
|
|
|
@ -72,11 +72,18 @@
|
|||
&uart0 { status = "okay"; };
|
||||
&sata0 { status = "okay"; };
|
||||
&mdio { status = "okay"; };
|
||||
ð { status = "okay"; };
|
||||
ð {
|
||||
status = "okay";
|
||||
ethernet-port@0 {
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
};
|
||||
|
||||
ðphy {
|
||||
compatible = "marvell,88e1310";
|
||||
reg = <1>;
|
||||
&mdio {
|
||||
ethphy: ethernet-phy@1 {
|
||||
compatible = "marvell,88e1310";
|
||||
reg = <1>;
|
||||
};
|
||||
};
|
||||
|
||||
&gpu {
|
||||
|
|
|
@ -382,7 +382,6 @@
|
|||
interrupts = <29>;
|
||||
/* overwrite MAC address in bootloader */
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
phy-handle = <ðphy>;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -394,10 +393,6 @@
|
|||
interrupts = <30>;
|
||||
clocks = <&gate_clk 2>;
|
||||
status = "disabled";
|
||||
|
||||
ethphy: ethernet-phy {
|
||||
/* set phy address in board file */
|
||||
};
|
||||
};
|
||||
|
||||
sdio0: sdio-host@92000 {
|
||||
|
|
Loading…
Reference in New Issue