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

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

ARM: dts: msm: add touchscreen reset/interrupt active/suspend settings



Add the touchscreen reset and interrupt signals' active and suspend
settings as per the pinctrl framework.

Change-Id: I1fe3fc3b34b43230cf94aa304393878eb17bacc3
Signed-off-by: default avatarHimanshu Aggarwal <haggarwa@codeaurora.org>
parent d0f48d93
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
@@ -267,5 +267,54 @@
				bias-pull-up;
			};
		};

		/* add pingrp for touchscreen */
		pmx_ts_int_active {
			qcom,pins = <&gp 13>;
			qcom,pin-func = <0>;
			qcom,num-grp-pins = <1>;
			label = "pmx_ts_int_active";

			ts_int_active: ts_int_active {
				drive-strength = <16>;
				bias-pull-up;
			};
		};

		pmx_ts_int_suspend {
			qcom,pins = <&gp 13>;
			qcom,pin-func = <0>;
			qcom,num-grp-pins = <1>;
			label = "pmx_ts_int_suspend";

			ts_int_suspend: ts_int_suspend {
				drive-strength = <16>;
				bias-disable;
			};
		};

		pmx_ts_reset_active {
			qcom,pins = <&gp 12>;
			qcom,pin-func = <0>;
			qcom,num-grp-pins = <1>;
			label = "pmx_ts_reset_active";

			ts_reset_active: ts_reset_active {
				drive-strength = <16>;
				bias-pull-up;
			};
		};

		pmx_ts_reset_suspend {
			qcom,pins = <&gp 12>;
			qcom,pin-func = <0>;
			qcom,num-grp-pins = <1>;
			label = "pmx_ts_reset_suspend";

			ts_reset_suspend: ts_reset_suspend {
				drive-strength = <16>;
				bias-disable;
			};
		};
	};
};