mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 14:06:15 +00:00
2f1c62e5af
This patch converts ath10k calibration data to NVMEM format for wave 1 devices with mtd binary MAC address. The "calibration" NVMEM cell size is 0x844. The MAC addresses are assigned via dts. Signed-off-by: Shiji Yang <yangshiji66@qq.com>
28 lines
470 B
Plaintext
28 lines
470 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "qca9558_openmesh_mr.dtsi"
|
|
|
|
/ {
|
|
compatible = "openmesh,mr900-v2", "qca,qca9558";
|
|
model = "OpenMesh MR900 v2";
|
|
};
|
|
|
|
&led_wifi2g {
|
|
linux,default-trigger = "phy0tpt";
|
|
};
|
|
|
|
&led_wifi5g {
|
|
linux,default-trigger = "phy1tpt";
|
|
};
|
|
|
|
&pcie0 {
|
|
/delete-node/ wifi@0,0;
|
|
|
|
wifi@0,0 {
|
|
compatible = "pci168c,0033";
|
|
reg = <0x0000 0 0 0 0>;
|
|
nvmem-cells = <&macaddr_art_0 16>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
};
|