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

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

Merge 98b9e795 on remote branch

Change-Id: I772dfee60ea45d227b2e0e1312573e5a373edb23
parents cacd98b5 98b9e795
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
HWKM (Hardware Key Manager)

The HWKM driver is a platform device driver that helps
communicating with both the master and slave blocks of the
hardware key manager to issue commands to perform key operations
mainly required for storage encryption.

Required properties:
- compatible : Should be "qcom,hwkm".
- reg: Register set for both master and slaves.
- reg-names : Identifiers for parsing master and slave regs.
- clocks : clocks needed for operating master and the slave.
- clock-names : name identifiers corresponding to the clocks.
- qcom,enable-hwkm-clk: to ensure clocks can be handled by HLOS.
- qcom,op-freq-hz: Max frequency of the listed clocks.

Example:

	qcom_hwkm: hwkm@10c0000 {
		compatible = "qcom,hwkm";
		reg = <0x10c0000 0x9000>, <0x1d90000 0x9000>;
		reg-names = "km_master", "ice_slave";
		qcom,enable-hwkm-clk;

		clock-names = "km_clk_src";
		clocks = <&clock_rpmh RPMH_HWKM_CLK>;
		qcom,op-freq-hz = <75000000>;
	};
+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ Required properties:
		qca,qca6174
		qca,wcn3990
                qca,qca6390
		qca,wcn6750
	- qca,bt-reset-gpio: GPIO pin to bring BT Controller out of reset

Optional properties:
+2 −0
Original line number Diff line number Diff line
@@ -214,6 +214,8 @@ Optional properties:
					0 = default value.
- qcom,mdss-dsi-bl-max-level:		Specifies the max backlight level supported by the panel.
					255 = default value.
- qcom,mdss-dsi-bl-inverted-dbv:	A boolean to specify whether to invert the display brightness value.
					When this boolean is set, will inverted display brightness value.
- qcom,mdss-brightness-max-level:	Specifies the max brightness level supported.
					255 = default value.
- qcom,bl-update-flag:			A string that specifies controls for backlight update of the panel.
+3 −0
Original line number Diff line number Diff line
@@ -94,6 +94,9 @@ Optional properties:
                     be specified if a group of flash LED channels are connected
                     to a single LED.

- qcom,ibatt-ocp-threshold-ua : Integer property for flash current predictive mitigation.
				  Default value is 2500000 uA.

Example:

qcom,leds@ee00 {
+8 −0
Original line number Diff line number Diff line
@@ -900,6 +900,12 @@ Optional properties:
	will load LPASS Q6 for other targets as expected.
	"adsp" option need not be explicitly mentioned in
	DTSI file, as it is default option.
 - adsp-fuse-not-supported:
	When ADSP variant read from fuse register is not
	supported, set this to true to check if image with different fw image
	name needs to be loaded
 - adsp-fw-name:
	ADSP fw name with which PIL API to load DSP needs to be called

Example:

@@ -907,6 +913,8 @@ qcom,msm-adsp-loader {
	compatible = "qcom,adsp-loader";
	qcom,adsp-state = <2>;
	qcom,proc-img-to-load = "modem";
	adsp-fuse-not-supported = <1>;
	adsp-fw-name = "adsp2";
};

* msm-audio-ion
Loading