mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
abc17bf306
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>
46 lines
823 B
Plaintext
46 lines
823 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "tp9343_tplink_tl-wr94x.dtsi"
|
|
|
|
/ {
|
|
compatible = "tplink,tl-wr940n-v6", "qca,tp9343";
|
|
model = "TP-Link TL-WR940N v6";
|
|
|
|
aliases {
|
|
led-boot = &led_diag_orange;
|
|
led-failsafe = &led_diag_orange;
|
|
led-running = &led_diag_orange;
|
|
led-upgrade = &led_diag_orange;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
wan_blue {
|
|
label = "blue:wan";
|
|
gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
led_diag_orange: diag_orange {
|
|
label = "orange:diag";
|
|
gpios = <&gpio 15 GPIO_ACTIVE_HIGH>;
|
|
default-state = "on";
|
|
};
|
|
};
|
|
};
|
|
|
|
ð1 {
|
|
nvmem-cells = <&macaddr_uboot_1fc00>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&uboot {
|
|
compatible = "nvmem-cells";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
macaddr_uboot_1fc00: macaddr@1fc00 {
|
|
reg = <0x1fc00 0x6>;
|
|
};
|
|
};
|