forked from openwrt/openwrt
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ramips: support ThingsLink C4 16M flash device
- Loading branch information
Showing
11 changed files
with
492 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
#include "mt7628an.dtsi" | ||
|
||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/input/input.h> | ||
|
||
/{ | ||
compatible = "iyunlink,m28s", "mediatek,mt7628an-soc"; | ||
model = "M28S"; | ||
|
||
chosen { | ||
bootargs = "console=ttyS0,57600"; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
|
||
wifi_status:wifi { | ||
label = "led_wifi"; | ||
gpios = <&gpio 44 GPIO_ACTIVE_LOW>; | ||
}; | ||
|
||
mod_status:mod { | ||
label = "led_mod"; | ||
gpios = <&gpio 0 GPIO_ACTIVE_LOW>; | ||
}; | ||
}; | ||
|
||
keys { | ||
compatible = "gpio-keys"; | ||
|
||
reset { | ||
label = "reset"; | ||
gpios = <&gpio 38 GPIO_ACTIVE_HIGH>; | ||
linux,code = <KEY_RESTART>; | ||
}; | ||
|
||
sim_det { | ||
label = "BTN_0"; | ||
gpios = <&gpio 11 1>; | ||
linux,code = <0x100>; | ||
}; | ||
}; | ||
|
||
gpio_export { | ||
compatible = "gpio-export"; | ||
#size-cells = <0>; | ||
|
||
power_mod { | ||
gpio-export,name = "power_mod"; | ||
gpio-export,output = <1>; | ||
gpios = <&gpio 3 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
}; | ||
|
||
watchdog { | ||
compatible = "linux,wdt-gpio"; | ||
gpios = <&gpio 2 GPIO_ACTIVE_HIGH>; | ||
hw_algo = "toggle"; | ||
hw_margin_ms = <1300>; | ||
always-running; | ||
}; | ||
}; | ||
|
||
&state_default { | ||
gpio { | ||
groups = "gpio", "wled_an", "p0led_an", "p1led_an", "i2s"; | ||
function = "gpio"; | ||
}; | ||
}; | ||
|
||
ðernet { | ||
mtd-mac-address = <&factory 0x4>; | ||
}; | ||
|
||
&wmac { | ||
status = "okay"; | ||
}; | ||
|
||
&spi0 { | ||
status = "okay"; | ||
|
||
flash@0 { | ||
compatible = "jedec,spi-nor"; | ||
reg = <0>; | ||
spi-max-frequency = <10000000>; | ||
|
||
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 0xfb0000>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
&uart1 { | ||
status = "okay"; | ||
}; | ||
|
||
&usbphy { | ||
status = "okay"; | ||
}; |
135 changes: 135 additions & 0 deletions
135
target/linux/ramips/dts/mt7628an_kooiot_tlink-c4-16m.dts
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,135 @@ | ||
#include "mt7628an.dtsi" | ||
|
||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/input/input.h> | ||
|
||
/{ | ||
compatible = "kooiot,tlink-c4-16m", "mediatek,mt7628an-soc"; | ||
model = "ThingsLink C4 (16M)"; | ||
|
||
aliases { | ||
led-boot = &led_status; | ||
led-failsafe = &led_status; | ||
led-upgrade = &led_status; | ||
serial1 = &uart1; | ||
}; | ||
|
||
chosen { | ||
bootargs = "console=ttyS0,57600"; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
|
||
led_status: status { | ||
label = "greeen:status"; | ||
gpios = <&gpio 44 GPIO_ACTIVE_LOW>; | ||
linux,default-trigger = "heartbeat"; | ||
}; | ||
|
||
led_modem: modem { | ||
label = "green:modem"; | ||
gpios = <&gpio 0 GPIO_ACTIVE_LOW>; | ||
}; | ||
}; | ||
|
||
keys { | ||
compatible = "gpio-keys"; | ||
|
||
reset { | ||
label = "reset"; | ||
gpios = <&gpio 38 GPIO_ACTIVE_HIGH>; | ||
linux,code = <KEY_RESTART>; | ||
}; | ||
|
||
sim_det { | ||
label = "BTN_0"; | ||
gpios = <&gpio 11 1>; | ||
linux,code = <0x100>; | ||
}; | ||
}; | ||
|
||
gpio_export { | ||
compatible = "gpio-export"; | ||
#size-cells = <0>; | ||
|
||
pcie_power { | ||
gpio-export,name = "pcie_power"; | ||
gpio-export,output = <1>; | ||
gpios = <&gpio 3 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
}; | ||
|
||
watchdog { | ||
compatible = "linux,wdt-gpio"; | ||
gpios = <&gpio 2 GPIO_ACTIVE_HIGH>; | ||
hw_algo = "toggle"; | ||
hw_margin_ms = <1300>; | ||
always-running; | ||
}; | ||
}; | ||
|
||
&state_default { | ||
gpio { | ||
groups = "gpio", "wled_an", "i2s"; | ||
function = "gpio"; | ||
}; | ||
}; | ||
|
||
ðernet { | ||
mtd-mac-address = <&factory 0x4>; | ||
}; | ||
|
||
&wmac { | ||
status = "okay"; | ||
}; | ||
|
||
&spi0 { | ||
status = "okay"; | ||
|
||
flash@0 { | ||
compatible = "jedec,spi-nor"; | ||
reg = <0>; | ||
spi-max-frequency = <40000000>; | ||
// spi-max-frequency = <10000000>; | ||
|
||
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 0xfb0000>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
&uart1 { | ||
status = "okay"; | ||
}; | ||
|
||
&usbphy { | ||
status = "okay"; | ||
}; |
135 changes: 135 additions & 0 deletions
135
target/linux/ramips/dts/mt7628an_kooiot_tlink-c4-32m.dts
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,135 @@ | ||
#include "mt7628an.dtsi" | ||
|
||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/input/input.h> | ||
|
||
/{ | ||
compatible = "kooiot,tlink-c4-32m", "mediatek,mt7628an-soc"; | ||
model = "ThingsLink C4 (32M)"; | ||
|
||
aliases { | ||
led-boot = &led_status; | ||
led-failsafe = &led_status; | ||
led-upgrade = &led_status; | ||
serial1 = &uart1; | ||
}; | ||
|
||
chosen { | ||
bootargs = "console=ttyS0,57600"; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
|
||
led_status: status { | ||
label = "greeen:status"; | ||
gpios = <&gpio 44 GPIO_ACTIVE_LOW>; | ||
linux,default-trigger = "heartbeat"; | ||
}; | ||
|
||
led_modem: modem { | ||
label = "green:modem"; | ||
gpios = <&gpio 0 GPIO_ACTIVE_LOW>; | ||
}; | ||
}; | ||
|
||
keys { | ||
compatible = "gpio-keys"; | ||
|
||
reset { | ||
label = "reset"; | ||
gpios = <&gpio 38 GPIO_ACTIVE_HIGH>; | ||
linux,code = <KEY_RESTART>; | ||
}; | ||
|
||
sim_det { | ||
label = "BTN_0"; | ||
gpios = <&gpio 11 1>; | ||
linux,code = <0x100>; | ||
}; | ||
}; | ||
|
||
gpio_export { | ||
compatible = "gpio-export"; | ||
#size-cells = <0>; | ||
|
||
pcie_power { | ||
gpio-export,name = "pcie_power"; | ||
gpio-export,output = <1>; | ||
gpios = <&gpio 3 GPIO_ACTIVE_HIGH>; | ||
}; | ||
|
||
}; | ||
|
||
watchdog { | ||
compatible = "linux,wdt-gpio"; | ||
gpios = <&gpio 2 GPIO_ACTIVE_HIGH>; | ||
hw_algo = "toggle"; | ||
hw_margin_ms = <1300>; | ||
always-running; | ||
}; | ||
}; | ||
|
||
&state_default { | ||
gpio { | ||
groups = "gpio", "wled_an", "i2s"; | ||
function = "gpio"; | ||
}; | ||
}; | ||
|
||
ðernet { | ||
mtd-mac-address = <&factory 0x4>; | ||
}; | ||
|
||
&wmac { | ||
status = "okay"; | ||
}; | ||
|
||
&spi0 { | ||
status = "okay"; | ||
|
||
flash@0 { | ||
compatible = "jedec,spi-nor"; | ||
reg = <0>; | ||
spi-max-frequency = <40000000>; | ||
// spi-max-frequency = <10000000>; | ||
|
||
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>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
&uart1 { | ||
status = "okay"; | ||
}; | ||
|
||
&usbphy { | ||
status = "okay"; | ||
}; |
Oops, something went wrong.