Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Łukasz Stelmach and committed by
Krzysztof Kozlowski
9ef3a2c5 007fda30

+22
+22
arch/arm/boot/dts/exynos5422-odroidxu3-lite.dts
··· 16 16 / { 17 17 model = "Hardkernel Odroid XU3 Lite"; 18 18 compatible = "hardkernel,odroid-xu3-lite", "samsung,exynos5800", "samsung,exynos5"; 19 + 20 + aliases { 21 + ethernet = &ethernet; 22 + }; 19 23 }; 20 24 21 25 &arm_a7_pmu { ··· 106 102 107 103 &usbdrd_dwc3_1 { 108 104 dr_mode = "peripheral"; 105 + }; 106 + 107 + &usbhost2 { 108 + #address-cells = <1>; 109 + #size-cells = <0>; 110 + 111 + hub@1 { 112 + compatible = "usb0424,9514"; 113 + reg = <1>; 114 + #address-cells = <1>; 115 + #size-cells = <0>; 116 + 117 + ethernet: usbether@1 { 118 + compatible = "usb0424,ec00"; 119 + reg = <1>; 120 + local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */ 121 + }; 122 + }; 109 123 };