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

Commit ce815888 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "defconfig: msm: Enable PBS driver support for sdm660"

parents dd5d0b8f 9147c318
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
QPNP PBS

QPNP (Qualcomm Technologies, Inc. Plug N Play) PBS is programmable boot sequence
and this driver is for helping the client drivers triggering such sequence
to be configured in PMIC.

This document describes the bindings for QPNP PBS driver.

=======================
Required Node Structure
=======================

- compatible
	Usage:      required
	Value type: <string>
	Definition: should be "qcom,qpnp-pbs".

- reg
	Usage:      required
	Value type: <prop-encoded-array>
	Definition:  Base address of the PBS registers.


=======
Example
=======
	pm660l_pbs: qcom,pbs@7300 {
		compatible = "qcom,qpnp-pbs";
		reg = <0x7300 0x100>;
	};
+1 −0
Original line number Diff line number Diff line
@@ -510,6 +510,7 @@ CONFIG_IOMMU_TESTS=y
CONFIG_QCOM_COMMON_LOG=y
CONFIG_MSM_SMEM=y
CONFIG_QPNP_HAPTIC=y
CONFIG_QPNP_PBS=y
CONFIG_MSM_SMD=y
CONFIG_MSM_SMD_DEBUG=y
CONFIG_MSM_GLINK=y
+1 −0
Original line number Diff line number Diff line
@@ -510,6 +510,7 @@ CONFIG_IOMMU_TESTS=y
CONFIG_QCOM_COMMON_LOG=y
CONFIG_MSM_SMEM=y
CONFIG_QPNP_HAPTIC=y
CONFIG_QPNP_PBS=y
CONFIG_MSM_SMD=y
CONFIG_MSM_SMD_DEBUG=y
CONFIG_MSM_GLINK=y
+1 −0
Original line number Diff line number Diff line
@@ -527,6 +527,7 @@ CONFIG_IOMMU_DEBUG_TRACKING=y
CONFIG_IOMMU_TESTS=y
CONFIG_MSM_SMEM=y
CONFIG_QPNP_HAPTIC=y
CONFIG_QPNP_PBS=y
CONFIG_MSM_SMD=y
CONFIG_MSM_GLINK=y
CONFIG_MSM_GLINK_LOOPBACK_SERVER=y
+1 −0
Original line number Diff line number Diff line
@@ -541,6 +541,7 @@ CONFIG_IOMMU_TESTS=y
CONFIG_QCOM_COMMON_LOG=y
CONFIG_MSM_SMEM=y
CONFIG_QPNP_HAPTIC=y
CONFIG_QPNP_PBS=y
CONFIG_MSM_SMD=y
CONFIG_MSM_SMD_DEBUG=y
CONFIG_MSM_GLINK=y
Loading