ramips: add support for Planex DB-WRT01
This patch add support for Planex DB-WRT01. DANBOARD route on the MT7620A SoC with two Ethernet port and a 802.11n 2.4 GHz radio. DANBOARD is Cartoon character. Signed-off-by: YuheiOKAWA <tochiro.srchack@gmail.com> SVN-Revision: 46918
This commit is contained in:
parent
06a180d027
commit
2efdc7c896
7 changed files with 111 additions and 0 deletions
|
@ -87,6 +87,9 @@ d105)
|
|||
ucidef_set_led_default "power" "POWER" "$board:red:power" "1"
|
||||
set_usb_led "$board:green:usb"
|
||||
;;
|
||||
db-wrt01)
|
||||
ucidef_set_led_default "power" "power" "$board:orange:power" "1"
|
||||
;;
|
||||
dcs-930l-b1)
|
||||
ucidef_set_led_default "power" "POWER" "$board:red:power" "1"
|
||||
ucidef_set_led_netdev "wifi" "WiFi" "$board:blue:wps"
|
||||
|
|
|
@ -61,6 +61,7 @@ ramips_setup_interfaces()
|
|||
;;
|
||||
3g-6200n|\
|
||||
ai-br100|\
|
||||
db-wrt01|\
|
||||
dir-300-b7|\
|
||||
dir-320-b1|\
|
||||
dir-610-a1|\
|
||||
|
|
|
@ -94,6 +94,7 @@ get_status_led() {
|
|||
y1s)
|
||||
status_led="$board:blue:power"
|
||||
;;
|
||||
db-wrt01|\
|
||||
esr-9753)
|
||||
status_led="$board:orange:power"
|
||||
;;
|
||||
|
|
|
@ -97,6 +97,9 @@ ramips_board_detect() {
|
|||
*"DAP-1350")
|
||||
name="dap-1350"
|
||||
;;
|
||||
*"DB-WRT01")
|
||||
name="db-wrt01"
|
||||
;;
|
||||
*"DCS-930")
|
||||
name="dcs-930"
|
||||
;;
|
||||
|
|
|
@ -36,6 +36,7 @@ platform_check_image() {
|
|||
cf-wr800n|\
|
||||
d105|\
|
||||
dap-1350|\
|
||||
db-wrt01|\
|
||||
dcs-930|\
|
||||
dcs-930l-b1|\
|
||||
dir-300-b1|\
|
||||
|
|
100
target/linux/ramips/dts/DB-WRT01.dts
Normal file
100
target/linux/ramips/dts/DB-WRT01.dts
Normal file
|
@ -0,0 +1,100 @@
|
|||
/dts-v1/;
|
||||
|
||||
/include/ "mt7620a.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "ralink,mt7620a-soc";
|
||||
model = "Planex DB-WRT01";
|
||||
|
||||
palmbus@10000000 {
|
||||
gpio1: gpio@638 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
spi@b00 {
|
||||
status = "okay";
|
||||
|
||||
m25p80@0 {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
compatible = "en25q64";
|
||||
reg = <0 0>;
|
||||
linux,modalias = "m25p80", "mx25l6405d";
|
||||
spi-max-frequency = <10000000>;
|
||||
|
||||
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 {
|
||||
label = "firmware";
|
||||
reg = <0x50000 0x7b0000>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
pinctrl {
|
||||
state_default: pinctrl0 {
|
||||
gpio {
|
||||
ralink,group = "i2c", "spi refclk", "rgmii1";
|
||||
ralink,function = "gpio";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&ephy_pins>;
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
ralink,port-map = "llllw";
|
||||
};
|
||||
|
||||
gsw@10110000 {
|
||||
ralink,port4 = "ephy";
|
||||
};
|
||||
|
||||
wmac@10180000 {
|
||||
ralink,mtd-eeprom = <&factory 0>;
|
||||
};
|
||||
|
||||
pcie@10140000 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
gpio-leds {
|
||||
compatible = "gpio-leds";
|
||||
|
||||
power {
|
||||
label = "db-wrt01:orange:power";
|
||||
gpios = <&gpio1 1 1>;
|
||||
};
|
||||
};
|
||||
|
||||
gpio-keys-polled {
|
||||
compatible = "gpio-keys-polled";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
poll-interval = <20>;
|
||||
|
||||
s1 {
|
||||
label = "wps";
|
||||
gpios = <&gpio0 2 1>;
|
||||
linux,code = <0x211>;
|
||||
};
|
||||
};
|
||||
};
|
|
@ -868,6 +868,7 @@ Image/Build/Profile/CF-WR800N=$(call BuildFirmware/Default8M/$(1),$(1),cf-wr800n
|
|||
Image/Build/Profile/DIR-810L=$(call BuildFirmware/CustomFlash/$(1),$(1),dir-810l,DIR-810L,$(dlink810l_mtd_size))
|
||||
na930_mtd_size=20971520
|
||||
Image/Build/Profile/NA930=$(call BuildFirmware/CustomFlash/$(1),$(1),na930,NA930,$(na930_mtd_size))
|
||||
Image/Build/Profile/DB-WRT01=$(call BuildFirmware/Default8M/$(1),$(1),db-wrt01,DB-WRT01)
|
||||
Image/Build/Profile/MZK-750DHP=$(call BuildFirmware/Default8M/$(1),$(1),mzk-750dhp,MZK-750DHP)
|
||||
Image/Build/Profile/OY-0001=$(call BuildFirmware/Default16M/$(1),$(1),oy-0001,OY-0001)
|
||||
Image/Build/Profile/Y1=$(call BuildFirmware/Default16M/$(1),$(1),y1,Y1)
|
||||
|
@ -901,6 +902,7 @@ define Image/Build/Profile/Default
|
|||
$(call Image/Build/Profile/WHR300HP2,$(1))
|
||||
$(call Image/Build/Profile/WHR600D,$(1))
|
||||
$(call Image/Build/Profile/WHR1166D,$(1))
|
||||
$(call Image/Build/Profile/DB-WRT01,$(1))
|
||||
$(call Image/Build/Profile/MZK-750DHP,$(1))
|
||||
$(call Image/Build/Profile/NA930,$(1))
|
||||
$(call Image/Build/Profile/OY-0001,$(1))
|
||||
|
|
Loading…
Reference in a new issue