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

Commit 19e4a438 authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Merge 50a6403b on remote branch

Change-Id: I72526fc6f8703ebc53180db9bcfca7fe7375a99a
parents d3759c86 50a6403b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ Required properties:
                qca,qca6390
		qca,wcn6750
	- qca,bt-reset-gpio: GPIO pin to bring BT Controller out of reset
	- qca,wl-reset-gpio: GPIO pin for WLAN EN, used here to check status only

Optional properties:
	- qca,bt-vdd-pa-supply: Bluetooth VDD PA regulator handle
@@ -50,6 +51,7 @@ Example:
		pinctrl-names = "default";
		pinctrl-0 = <&bt_en_sleep>;
		qca,bt-reset-gpio = <&tlmm 21 0>; /* BT_EN */
		qca,wl-reset-gpio = <&tlmm 20 0>; /* WL_EN */
		qca,bt-vdd-aon-supply = <&pm8150_s6>;
		qca,bt-vdd-dig-supply = <&pm8009_s2>;
		qca,bt-vdd-rfa1-supply = <&pm8150_s5>;
+3 −0
Original line number Diff line number Diff line
@@ -79,6 +79,9 @@ Optional properties:
                       WLAN devices.
  - cnss-enable-self-recovery: Boolean property to enable self recovery when
                               recovery is trigeered with reason link down.
  - qcom,bt-en-gpio: QCA6490 requires synchronization for BT and WLAN GPIO
                   enable to resolve PMU power up issues. Provide BT GPIO using
                   this config param.

Example:

+7 −0
Original line number Diff line number Diff line
@@ -169,6 +169,11 @@ Optional properties:
					"dfps_immediate_porch_mode_vfp" = FPS change request is
					implemented immediately by changing panel vertical
					front porch values.
- qcom,dsi-supported-dfps-list:	List containing all the supported refresh rates.
- qcom,dsi-supported-qsync-min-fps-list:	The fps value in this list indicates the qsync min
					fps corresponding to the mode in the qcom,dsi-supported-dfps-list
					with same index. qcom,dsi-supported-qsync-min-fps-list cannot be
					defined along with qcom,mdss-dsi-qsync-min-refresh-rate.
- qcom,min-refresh-rate:		Minimum refresh rate supported by the panel.
- qcom,max-refresh-rate:		Maximum refresh rate supported by the panel. If max refresh
					rate is not specified, then the frame rate of the panel in
@@ -696,6 +701,8 @@ Example:
		qcom,mdss-dsi-bl-pmic-control-type = "bl_ctrl_wled";
		qcom,mdss-dsi-pan-enable-dynamic-fps;
		qcom,mdss-dsi-pan-fps-update = "dfps_suspend_resume_mode";
		qcom,dsi-supported-dfps-list = <30 45 60>;
		qcom,dsi-supported-qsync-min-fps-list = <30 40 55>;
		qcom,min-refresh-rate = <30>;
		qcom,max-refresh-rate = <60>;
		qcom,dsi-dyn-clk-enable;
+24 −0
Original line number Diff line number Diff line
Qualcomm Technologies, Inc. QRB5165 Fan Controller Driver

This binding describes the QRB5165 Fan Controller Driver, it controls
fan with pm8150l gpio 10.

- compatible:
	Usage: required
	Value type: <stringlist>
	Definition: must be "qcom,rb5_fan_controller"

- qcom,pwr-enable-gpio:
	Usage: required
	Value type: <prop-encoded-array>
	Definition: the gpio to enable fan pwr

Example:

	rb5_fan_controller {
		compatible = "qcom,rb5_fan_controller";
		qcom,pwr-enable-gpio = <&pm8150l_gpios 10 0x0>;
		pinctrl-name = "default";
		pinctrl-0 = <&rb5_fan_controller_pin_init>;
		status = "ok";
	};
+22 −0
Original line number Diff line number Diff line
Qualcomm Technologies, Inc. QRB5165 GPIOs Enable Driver

This binding describes the QRB5165 GPIOs Enable Driver. It enables
GPIO 140/145,116/117 by setting GPIO 60 to low.

- compatible:
	Usage: required
	Value type: <stringlist>
	Definition: must be "qcom,rb5_gpios_enable"

- qcom,enable-gpio:
	Usage: required
	Value type: <prop-encoded-array>
	Definition: the gpio to enable other gpios

Example:

	rb5_gpios_enable {
		compatible = "qcom,rb5_gpios_enable";
		qcom,enable-gpio = <&tlmm 60 0x0>;
		status = "ok";
	};
Loading