ARM: dts: exynos: Add a placeholder for a MAC address
authorŁukasz Stelmach <l.stelmach@samsung.com>
Thu, 1 Oct 2020 13:52:54 +0000 (15:52 +0200)
committerKrzysztof Kozlowski <krzk@kernel.org>
Thu, 5 Nov 2020 21:48:03 +0000 (22:48 +0100)
Add a placeholder for a MAC address. A bootloader may fill it
to set the MAC address and override EEPROM settings.

Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
Link: https://lore.kernel.org/r/20201001135254.28178-1-l.stelmach@samsung.com
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
arch/arm/boot/dts/exynos5422-odroidxu3.dts

index 7c58840..53aee3d 100644 (file)
 &usbdrd_dwc3_1 {
        dr_mode = "peripheral";
 };
+
+&usbhost2 {
+       #address-cells = <1>;
+       #size-cells = <0>;
+
+       hub@1 {
+               compatible = "usb8087,0024";
+               reg = <1>;
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               ethernet: usbether@1 {
+                       compatible = "usb0c45,6310";
+                       reg = <1>;
+                       local-mac-address = [00 00 00 00 00 00]; /* Filled in by a bootloader */
+               };
+       };
+};