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

Commit cec8ccdb authored by Govinda Rajulu Chenna's avatar Govinda Rajulu Chenna Committed by Gerrit - the friendly Code Review server
Browse files

ARM: dts: msm: Add pin control for display on SDM855



This change adds pin controls for panel lcd enable, reset,
panel mode selection configurations. This change also
adds the pin controls for tear-effect control signal for
command mode panels.

Change-Id: I1a1c7d1a240fec7cacaca3fd86f8a650f661b3e9
Signed-off-by: default avatarGovinda Rajulu Chenna <gchenna@codeaurora.org>
parent fd32b3b7
Loading
Loading
Loading
Loading
+57 −1
Original line number Diff line number Diff line
/* Copyright (c) 2017, The Linux Foundation. All rights reserved.
/* Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -1808,5 +1808,61 @@
				};
			};
		};

		pmx_sde: pmx_sde {
			sde_dsi_active: sde_dsi_active {
				mux {
					pins = "gpio6", "gpio7", "gpio130";
					function = "gpio";
				};

				config {
					pins = "gpio6", "gpio7", "gpio130";
					drive-strength = <8>;   /* 8 mA */
					bias-disable = <0>;   /* no pull */
				};
			};
			sde_dsi_suspend: sde_dsi_suspend {
				mux {
					pins = "gpio6", "gpio7", "gpio130";
					function = "gpio";
				};

				config {
					pins = "gpio6", "gpio7", "gpio130";
					drive-strength = <2>;   /* 2 mA */
					bias-pull-down;         /* PULL DOWN */
				};
			};
		};

		pmx_sde_te {
			sde_te_active: sde_te_active {
				mux {
					pins = "gpio8";
					function = "mdp_vsync";
				};

				config {
					pins = "gpio8";
					drive-strength = <2>;   /* 2 mA */
					bias-pull-down;         /* PULL DOWN */
				};
			};

			sde_te_suspend: sde_te_suspend {
				mux {
					pins = "gpio8";
					function = "mdp_vsync";
				};

				config {
					pins = "gpio8";
					drive-strength = <2>;   /* 2 mA */
					bias-pull-down;         /* PULL DOWN */
				};
			};
		};

	};
};