mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
06bb4a5018
Define nvmem-cells and convert mtd-mac-address to nvmem implementation. The conversion is done with an automated script. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
59 lines
877 B
Plaintext
59 lines
877 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "mt7628an_xiaomi_mi-router-4.dtsi"
|
|
|
|
/ {
|
|
compatible = "xiaomi,mi-router-4c", "mediatek,mt7628an-soc";
|
|
model = "Xiaomi Mi Router 4C";
|
|
|
|
aliases {
|
|
label-mac-device = ðernet;
|
|
};
|
|
};
|
|
|
|
&flash0 {
|
|
spi-max-frequency = <40000000>;
|
|
};
|
|
|
|
&partitions {
|
|
partition@60000 {
|
|
label = "overlay";
|
|
reg = <0x60000 0x100000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@160000 {
|
|
label = "firmware";
|
|
reg = <0x160000 0xea0000>;
|
|
compatible = "denx,uimage";
|
|
};
|
|
};
|
|
|
|
&ehci {
|
|
status = "disabled";
|
|
};
|
|
|
|
&ohci {
|
|
status = "disabled";
|
|
};
|
|
|
|
ðernet {
|
|
nvmem-cells = <&macaddr_factory_28>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&esw {
|
|
mediatek,portmap = <0x3d>;
|
|
mediatek,portdisable = <0x29>;
|
|
};
|
|
|
|
&factory {
|
|
compatible = "nvmem-cells";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
macaddr_factory_28: macaddr@28 {
|
|
reg = <0x28 0x6>;
|
|
};
|
|
};
|