Skip to content

Commit

Permalink
ramips: HLK-RM04 - Enable GPIO14 for WPS button
Browse files Browse the repository at this point in the history
The top half of UARTF on the HLK-RM04 is used for GPIO.

  mode 1   mode 2
   RIN     GPIO14
   DSR_N   GPIO13
   DCD_N   GPIO12
   DTR_N   GPIO11
   RXD     GPIO10
   CTS_N   GPIO09
   TXD     GPIO08
   RTS_N   GPIO07

This patch applies 3'b101 mode to UARTF:

   GPIO14
   GPIO13
   GPIO12
   GPIO11
   RXD
   CTS_N
   TXD
   RTS_N

Because the base rt5350.dtsi file forces 3'b000 mode, remove the pin setting from this file and apply it directly to the files that inherit from it (WIZFI630A.dts and WT1520.dtsi).  This change makes the rt5350.dtsi file consistent with the mt7620a.dtsi file.

Signed-off-by: John Clark <[email protected]>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48665 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
John Crispin committed Feb 8, 2016
1 parent 1f6e645 commit c8960f4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions target/linux/ramips/dts/HLKRM04.dts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@
ralink,group = "i2c", "jtag";
ralink,function = "gpio";
};

uartf_gpio {
ralink,group = "uartf";
ralink,function = "gpio uartf";
};
};
};

Expand Down
2 changes: 2 additions & 0 deletions target/linux/ramips/dts/WIZFI630A.dts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
interrupt-parent = <&intc>;
interrupts = <5>;
reg-shift = <2>;
pinctrl-names = "default";
pinctrl-0 = <&uartf_pins>;
status = "okay";
};

Expand Down
2 changes: 2 additions & 0 deletions target/linux/ramips/dts/WT1520.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

palmbus@10000000 {
uart@500 {
pinctrl-names = "default";
pinctrl-0 = <&uartf_pins>;
status = "okay";
};
};
Expand Down
3 changes: 0 additions & 3 deletions target/linux/ramips/dts/rt5350.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,6 @@

reg-shift = <2>;

pinctrl-names = "default";
pinctrl-0 = <&uartf_pins>;

status = "disabled";
};

Expand Down

0 comments on commit c8960f4

Please sign in to comment.