ARM: dts: exynos: Add Ethernet interface description for Odroid XU3 Lite

Add Ethernet interface description for Odroid XU3 Lite.

Add an alias to enable bootloaders to find the Ethernet interface
and assign a MAC address.

Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
Link: https://lore.kernel.org/r/20201103184412.18874-4-l.stelmach@samsung.com
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
This commit is contained in:
Łukasz Stelmach 2020-11-03 19:44:09 +01:00 committed by Krzysztof Kozlowski
parent 007fda302d
commit 9ef3a2c585

View file

@ -16,6 +16,10 @@
/ {
model = "Hardkernel Odroid XU3 Lite";
compatible = "hardkernel,odroid-xu3-lite", "samsung,exynos5800", "samsung,exynos5";
aliases {
ethernet = &ethernet;
};
};
&arm_a7_pmu {
@ -103,3 +107,21 @@ &pwm {
&usbdrd_dwc3_1 {
dr_mode = "peripheral";
};
&usbhost2 {
#address-cells = <1>;
#size-cells = <0>;
hub@1 {
compatible = "usb0424,9514";
reg = <1>;
#address-cells = <1>;
#size-cells = <0>;
ethernet: usbether@1 {
compatible = "usb0424,ec00";
reg = <1>;
local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */
};
};
};