It appears 683-of_net-add-mac-address-to-of-tree.patch relies on the mac-address nvmem property being present. These nodes don't need it as they take it from the eeprom but label-mac-device needs it. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/14666 Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
42 lines
687 B
Devicetree
42 lines
687 B
Devicetree
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "ar7241.dtsi"
|
|
#include "ar724x_ubnt_xm.dtsi"
|
|
#include "ar724x_ubnt_xm_outdoor.dtsi"
|
|
|
|
/ {
|
|
compatible = "ubnt,rocket-m", "ubnt,xm", "qca,ar7241";
|
|
model = "Ubiquiti Rocket M (XM)";
|
|
};
|
|
|
|
ð1 {
|
|
compatible = "syscon", "simple-mfd";
|
|
};
|
|
|
|
&usb_phy {
|
|
status = "okay";
|
|
};
|
|
|
|
&usb {
|
|
status = "okay";
|
|
};
|
|
|
|
&art {
|
|
cal_art_1000: calibration@1000 {
|
|
reg = <0x1000 0xeb8>;
|
|
};
|
|
|
|
macaddr_art_1000: macaddr@1000 {
|
|
reg = <0x1000 0x6>;
|
|
};
|
|
};
|
|
|
|
&pcie {
|
|
wifi: wifi@0,0 {
|
|
compatible = "pci168c,002a";
|
|
reg = <0x0000 0 0 0 0>;
|
|
nvmem-cells = <&cal_art_1000>, <&macaddr_art_1000>;
|
|
nvmem-cell-names = "calibration", "mac-address";
|
|
};
|
|
};
|