Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca21aee1 authored by Himanshu Aggarwal's avatar Himanshu Aggarwal
Browse files

ARM: dts: msm: add pinctrl configuration for Touchscreen GPIOs on MSMFALCON



Add pinctrl configuration for GPIO66 and GPIO67 used by Touchscreen
on MSMFALCON.

Change-Id: Ica5ff2bdbdfbfd2fa8dbba7048b74108b2a05f3f
Signed-off-by: default avatarHimanshu Aggarwal <haggarwa@codeaurora.org>
parent 2d28ff09
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
@@ -788,5 +788,46 @@
				};
			};
		};

		ts_mux {
			ts_active: ts_active {
				mux {
					pins = "gpio66", "gpio67";
					function = "gpio";
				};

				config {
					pins = "gpio66", "gpio67";
					drive-strength = <16>;
					bias-pull-up;
				};
			};

			ts_reset_suspend: ts_reset_suspend {
				mux {
					pins = "gpio66";
					function = "gpio";
				};

				config {
					pins = "gpio66";
					drive-strength = <2>;
					bias-pull-down;
				};
			};

			ts_int_suspend: ts_int_suspend {
				mux {
					pins = "gpio67";
					function = "gpio";
				};

				config {
					pins = "gpio67";
					drive-strength = <2>;
					bias-disable;
				};
			};
		};
	};
};