summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts/JHR-N926R.dts
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2016-03-04 08:33:06 +0000
committerJohn Crispin <john@openwrt.org>2016-03-04 08:33:06 +0000
commitca64f498f0506276faba1de16e71bc5450de6243 (patch)
treeebb3431eb793719cc02768b25448a50e1122e83f /target/linux/ramips/dts/JHR-N926R.dts
parent97ca4cbc94854e06548e1c89c1764e7f19926b0d (diff)
downloadmaster-31e0f0ae-ca64f498f0506276faba1de16e71bc5450de6243.tar.gz
master-31e0f0ae-ca64f498f0506276faba1de16e71bc5450de6243.tar.bz2
master-31e0f0ae-ca64f498f0506276faba1de16e71bc5450de6243.zip
ramips: Add device tree for JCG JHR-N926R
Add a device tree for JCG JHR-N825R This router is based on a RT3052 and has 4MB of CFI flash and 32MB of SDRAM. As a special feature, it comes with a two digit seven segment display that is connected to a pair of daisy-chained 74164 shift registers that can be controlled via GPIOs. For details, see https://wikidevi.com/wiki/JCG_JHR-N825R . Signed-off-by: Reinhard Max <reinhard@m4x.de> Reviewed-by: Torsten Duwe <duwe@lst.de> SVN-Revision: 48904
Diffstat (limited to 'target/linux/ramips/dts/JHR-N926R.dts')
-rw-r--r--target/linux/ramips/dts/JHR-N926R.dts127
1 files changed, 127 insertions, 0 deletions
diff --git a/target/linux/ramips/dts/JHR-N926R.dts b/target/linux/ramips/dts/JHR-N926R.dts
new file mode 100644
index 0000000000..f4dfd109fe
--- /dev/null
+++ b/target/linux/ramips/dts/JHR-N926R.dts
@@ -0,0 +1,127 @@
+/dts-v1/;
+
+/include/ "rt3050.dtsi"
+
+/ {
+ compatible = "JHR-N926R", "ralink,rt3052-soc";
+ model = "JCG JHR-N926R";
+
+ pinctrl {
+ state_default: pinctrl0 {
+ gpio {
+ ralink,group = "spi", "i2c", "jtag", "rgmii", "mdio", "uartf";
+ ralink,function = "gpio";
+ };
+ };
+ };
+
+ cfi@1f000000 {
+ compatible = "cfi-flash";
+ reg = <0x1f000000 0x800000>;
+ bank-width = <2>;
+ device-width = <2>;
+ #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 {
+ label = "firmware";
+ reg = <0x50000 0x3b0000>;
+ };
+ };
+
+ ethernet@10100000 {
+ mtd-mac-address = <&factory 0x2e>;
+ };
+
+ esw@10110000 {
+ mediatek,portmap = <0x3e>;
+ };
+
+ wmac@10180000 {
+ ralink,mtd-eeprom = <&factory 0>;
+ };
+
+ gpio-leds {
+ compatible = "gpio-leds";
+
+ wlan1 {
+ label = "jhr-n926r:red:wlan";
+ gpios = <&gpio0 20 1>;
+ };
+
+ wlan2 {
+ label = "jhr-n926r:yellow:wlan";
+ gpios = <&gpio0 19 1>;
+ };
+
+ wlan3 {
+ label = "jhr-n926r:green:wlan";
+ gpios = <&gpio0 17 1>;
+ };
+
+ system {
+ label = "jhr-n926r:blue:system";
+ gpios = <&gpio0 13 1>;
+ };
+ };
+
+ gpio_export {
+ compatible = "gpio-export";
+ #size-cells = <0>;
+
+ display_data {
+ gpio-export,name = "display_data";
+ gpio-export,output = <1>;
+ gpios = <&gpio0 7 1>;
+ };
+
+ display_clock {
+ gpio-export,name = "display_clock";
+ gpio-export,output = <1>;
+ gpios = <&gpio0 8 0>;
+ };
+
+ display_blank {
+ gpio-export,name = "display_blank";
+ gpio-export,output = <1>;
+ gpios = <&gpio0 11 0>;
+ };
+ };
+
+ gpio-keys-polled {
+ compatible = "gpio-keys-polled";
+ #address-cells = <1>;
+ #size-cells = <0>;
+ poll-interval = <20>;
+
+ reset_wps {
+ label = "reset_wps";
+ gpios = <&gpio0 10 1>;
+ linux,code = <0x198>;
+ };
+
+ wlan {
+ label = "wlan";
+ gpios = <&gpio0 1 1>;
+ linux,code = <0x100>;
+ };
+ };
+};