mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-22 11:16:59 +08:00

* ramips: mt7621.dtsi: add missing pinctrl to ethernet node Add rgmii1_pins (1st GMAC) and mdio_pins to ethernet node pinctrl to ensure they are set to correct mode * ramips: kernel: ralink-eth support mt7621 Signed-off-by: Chen Minqiang <ptpt52@gmail.com> * ramips: some devices use ralink-eth driver Also re-added mt7621 hwnat support for some devices. Signed-off-by: Chen Minqiang <ptpt52@gmail.com> Signed-off-by: AmadeusGhost <amadeus@openjmu.xyz> * ramips/mt7621: re-added hwnat support Co-authored-by: LGA1150 <dqfext@gmail.com> Co-authored-by: Chen Minqiang <ptpt52@gmail.com>
139 lines
2.1 KiB
Plaintext
139 lines
2.1 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/dts-v1/;
|
|
|
|
#include "mt7621.dtsi"
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
/ {
|
|
compatible = "gehua,ghl-r-001", "mediatek,mt7621-soc";
|
|
model = "GeHua GHL-R-001";
|
|
|
|
aliases {
|
|
label-mac-device = ðernet;
|
|
};
|
|
|
|
chosen {
|
|
bootargs = "console=ttyS0,57600";
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
internet {
|
|
label = "ghl-r-001:blue:internet";
|
|
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
usb {
|
|
label = "ghl-r-001:blue:usb";
|
|
gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
|
|
trigger-sources = <&xhci_ehci_port1>, <&ehci_port2>;
|
|
linux,default-trigger = "usbport";
|
|
};
|
|
};
|
|
|
|
keys {
|
|
compatible = "gpio-keys";
|
|
|
|
reset {
|
|
label = "reset";
|
|
gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
|
|
linux,code = <KEY_RESTART>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&uartlite3 {
|
|
status = "okay";
|
|
};
|
|
|
|
&spi0 {
|
|
status = "okay";
|
|
|
|
flash@0 {
|
|
compatible = "jedec,spi-nor";
|
|
reg = <0>;
|
|
spi-max-frequency = <25000000>;
|
|
broken-flash-reset;
|
|
m25p,fast-read;
|
|
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
partition@0 {
|
|
label = "u-boot";
|
|
reg = <0x0 0x30000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@30000 {
|
|
label = "u-boot-env";
|
|
reg = <0x30000 0x10000>;
|
|
read-only;
|
|
};
|
|
|
|
factory: partition@40000 {
|
|
label = "factory";
|
|
reg = <0x40000 0x10000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@50000 {
|
|
compatible = "denx,uimage";
|
|
label = "firmware";
|
|
reg = <0x50000 0x1fb0000>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&pcie {
|
|
status = "okay";
|
|
};
|
|
|
|
&pcie0 {
|
|
wifi@0,0 {
|
|
reg = <0x0000 0 0 0 0>;
|
|
mediatek,mtd-eeprom = <&factory 0x0000>;
|
|
};
|
|
};
|
|
|
|
&pcie1 {
|
|
wifi@0,0 {
|
|
reg = <0x0000 0 0 0 0>;
|
|
mediatek,mtd-eeprom = <&factory 0x8000>;
|
|
ieee80211-freq-limit = <5000000 6000000>;
|
|
|
|
led {
|
|
led-sources = <2>;
|
|
led-active-low;
|
|
};
|
|
};
|
|
};
|
|
|
|
ðernet {
|
|
compatible = "mediatek,ralink-mt7621-eth";
|
|
mediatek,switch = <&gsw>;
|
|
mtd-mac-address = <&factory 0xe000>;
|
|
};
|
|
|
|
&switch0 {
|
|
/delete-property/ compatible;
|
|
phy-mode = "rgmii";
|
|
};
|
|
|
|
&gsw {
|
|
compatible = "mediatek,ralink-mt7621-gsw";
|
|
};
|
|
|
|
&state_default {
|
|
gpio {
|
|
groups = "jtag", "wdt";
|
|
function = "gpio";
|
|
};
|
|
};
|