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

Commit 4cb58b7e authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Merge 6cf0b046 on remote branch

Change-Id: I5317ddad5487b25a6870faecbd1dfcad43d52307
parents ffaf1ac7 6cf0b046
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -62,6 +62,12 @@ SoCs:
- SCUBA
  compatible = "qcom,scuba"

- SCUBAIOT
  compatible = "qcom,scuba-iot"

- SCUBAPIOT
  compatible = "qcom,scubap-iot"

- SDMSHRIKE
  compatible = "qcom,sdmshrike"

+6 −1
Original line number Diff line number Diff line
@@ -147,7 +147,12 @@ Profile data node optional properties:
			proper functionality.
			Element 0 - SOH minimum level.
			Element 1 - SOH maximum level.

- qcom,step-jeita-hysteresis: A tuple entry to allow configuring the rising
			and falling hysteresis for better fine tuning of the
			charge current across battery temperature thresholds.
			This should be in decidegree and if not specified
			default select value is 10 DeciDegC.
			<RISE_HYS_DECIDEG_C, FALL_HYS_DECIDEG_C>
Profile data node required subnodes:
- qcom,fcc-temp-lut : An 1-dimensional lookup table node that encodes
			temperature to fcc lookup. The units for this lookup
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ Qualcomm Technologies, Inc. Debug Clock Controller Binding
Required properties :
- compatible: Shall contain "qcom,kona-debugcc", "qcom,lito-debugcc",
		"qcom,bengal-debugcc", "qcom,lagoon-debugcc"
		or "qcom,gcc-debug-sdm660".
		or "qcom,sdm660-debugcc".
- qcom,gcc: phandle to the GCC device node.
- qcom,videocc: phandle to the Video CC device node.
- qcom,camcc: phandle to the Camera CC device node.
+5 −0
Original line number Diff line number Diff line
@@ -21,6 +21,11 @@ Properties:
				This value indicates which qcom,gpu-pwrlevel
				to jump on in case of context aware power level
				jump.

- qcom,gpu-bimc-interface-clk-freq:
				To specify the bimc-interface-clk set rate value,
				which is done at the time of GPU fmax vote.

Required Properties:
- reg:				Index of the powerlevel (0 = highest perf)
- qcom,gpu-freq			GPU frequency for the powerlevel (in Hz)
+28 −0
Original line number Diff line number Diff line
Qualcomm Technologies, Inc. BAM Data Multiplexer Driver

Required properties:
- compatible : should be "qcom,bam_dmux"
- reg : the location and size of the BAM hardware
- interrupts : the BAM hardware to apps processor interrupt line

Optional properties:
-qcom,satellite-mode: the hardware needs to be configured in satellite mode
-qcom,rx-ring-size: the size of the receive ring buffer pool, default is 32
-qcom,max-rx-mtu: the maximum receive MTU that can be negotiated, in bytes.
	Default is 2048.  Other possible values are 4096, 8192, and 16384.
-qcom,no-cpu-affinity: boolean value indicating that workqueue CPU affinity
	is not required.
-qcom,fast-shutdown: boolean value to support fast shutdown time.

Example:

	qcom,bam_dmux@fc834000 {
		compatible = "qcom,bam_dmux";
		reg = <0xfc834000 0x7000>;
		interrupts = <0 29 1>;
		qcom,satellite-mode;
		qcom,rx-ring-size = <64>;
		qcom,max-rx-mtu = <8192>;
		qcom,no-cpu-affinity;
		qcom,fast-shutdown;
	};
Loading