forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ramips: add support for XiaoYu XY-C5
- Loading branch information
1 parent
e6cd7a8
commit 40f51ae
Showing
3 changed files
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/dts-v1/; | ||
|
||
#include "mt7621.dtsi" | ||
|
||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/input/input.h> | ||
|
||
/ { | ||
compatible = "xiaoyu,xy-c5", "mediatek,mt7621-soc"; | ||
model = "XiaoYu XY-C5"; | ||
|
||
aliases { | ||
led-boot = &led_sys; | ||
led-failsafe = &led_sys; | ||
led-running = &led_sys; | ||
led-upgrade = &led_sys; | ||
label-mac-device = ðernet; | ||
}; | ||
|
||
chosen { | ||
bootargs = "console=ttyS0,57600"; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
|
||
work { | ||
label = "xy-c5:green:work"; | ||
gpios = <&gpio0 8 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
led_sys: sys { | ||
label = "xy-c5:green:sys"; | ||
gpios = <&gpio0 7 GPIO_ACTIVE_LOW>; | ||
}; | ||
}; | ||
|
||
keys { | ||
compatible = "gpio-keys"; | ||
|
||
reset { | ||
label = "reset"; | ||
gpios = <&gpio0 18 GPIO_ACTIVE_LOW>; | ||
linux,code = <KEY_RESTART>; | ||
}; | ||
}; | ||
}; | ||
|
||
&spi0 { | ||
status = "okay"; | ||
|
||
flash@0 { | ||
compatible = "jedec,spi-nor"; | ||
reg = <0>; | ||
spi-max-frequency = <25000000>; | ||
|
||
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"; | ||
}; | ||
|
||
ðernet { | ||
mtd-mac-address = <&factory 0x4>; | ||
}; | ||
|
||
&pinctrl { | ||
state_default: pinctrl0 { | ||
gpio { | ||
ralink,group = "uart3", "wdt"; | ||
ralink,function = "gpio"; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters