mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
fd610a2083
Move nvmem-cells definitions to dts files to prevent overwriting Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com>
83 lines
1.5 KiB
Plaintext
83 lines
1.5 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "mt7621_elecom_wrc-gs-1pci.dtsi"
|
|
|
|
/ {
|
|
compatible = "elecom,wmc-s1267gs2", "mediatek,mt7621-soc";
|
|
model = "ELECOM WMC-S1267GS2";
|
|
|
|
aliases {
|
|
/*
|
|
* A MAC address printed to the label is an address of
|
|
* 5 GHz band on stock firmware, but there is no
|
|
* per-band MAC address support on Linux Kernel and that
|
|
* address is not assigned to any wlan devices now.
|
|
*/
|
|
/delete-property/ label-mac-device;
|
|
};
|
|
};
|
|
|
|
&gmac0 {
|
|
nvmem-cells = <&macaddr_factory_fff4>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&gmac1 {
|
|
status = "disabled";
|
|
};
|
|
|
|
&partitions {
|
|
partition@50000 {
|
|
compatible = "denx,uimage";
|
|
label = "firmware";
|
|
reg = <0x50000 0x1800000>;
|
|
};
|
|
|
|
partition@1850000 {
|
|
label = "tm_pattern";
|
|
reg = <0x1850000 0x400000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@1c50000 {
|
|
label = "tm_key";
|
|
reg = <0x1c50000 0x100000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@1d50000 {
|
|
label = "nvram";
|
|
reg = <0x1d50000 0xb0000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@1e00000 {
|
|
label = "user_data";
|
|
reg = <0x1e00000 0x200000>;
|
|
read-only;
|
|
};
|
|
};
|
|
|
|
&wifi {
|
|
nvmem-cells = <&eeprom_factory_0>, <&macaddr_factory_4 (-1)>;
|
|
nvmem-cell-names = "eeprom", "mac-address";
|
|
};
|
|
|
|
&factory {
|
|
nvmem-layout {
|
|
compatible = "fixed-layout";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
macaddr_factory_4: macaddr@4 {
|
|
compatible = "mac-base";
|
|
reg = <0x4 0x6>;
|
|
#nvmem-cell-cells = <1>;
|
|
};
|
|
|
|
macaddr_factory_fff4: macaddr@fff4 {
|
|
reg = <0xfff4 0x6>;
|
|
};
|
|
};
|
|
};
|