-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'LA.UM.9.1.r1-10600-SMxxx0.0' of https://github.com/arter97…
…/caf_msm-4.14 into r5 "LA.UM.9.1.r1-10600-SMxxx0.0" * tag 'LA.UM.9.1.r1-10600-SMxxx0.0' of https://github.com/arter97/caf_msm-4.14: (44 commits) msm: adsprpc: Fix race condition in internal_control msm: ipa: fix to check for ECONNRESET msm: camera: icp: Enable hang dump on failure soc: qcom: Add check to handle out of bound access defconfig: remove CONFIG_SECURITY_PERF_EVENTS_RESTRICT Revert "ANDROID: security,perf: Allow further restriction of perf_event_open" msm: ipa3: Added pdn config type check HID: make arrays usage and value to be the same netfilter: nf_conntrack_h323: lost .data_len definition for Q.931/ipv6 wil6210: Drop unicast sub frame if part of a multicast amsdu ARM: dts: msm: Enable DDR cooling device driver for mdm9607 defconfig: msm: Enable DDR bus scaling cooling device driver for mdm9607 drivers: thermal: Add a new DDR bus scaling cooling device diag: Prevent out of bound write while sending dci pkt to remote wil6210: check integrity of received AMSDU packets wil6210: accessing 802.3 addresses via utility functions wil6210: Drop plaintext frames on secure network wil6210: AP should not forward eapol packets fuse: Set fuse request error upon fuse abort connection msm: adsprpc: Clean buffers on remote invocation failure usb: dwc3: Avoid resume_work flush in pm_freeze/restore msm: adsprpc: fix compilation errors in fastrpc driver msm: adsprpc: remove PM vote counter in fastrpc driver msm: adsprpc: do pm stay awake vote in rpmsg callback soc: qcom: hgsl: Fix OOB ... Signed-off-by: KenHV <[email protected]> Conflicts: drivers/char/adsprpc.c drivers/char/adsprpc_shared.h drivers/dma-buf/dma-buf.c drivers/tty/tty_jobctrl.c
- Loading branch information
Showing
85 changed files
with
903 additions
and
239 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
Documentation/devicetree/bindings/thermal/qti-ddr-cdev.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
QTI DDR cooling device. | ||
|
||
The DDR cooling device will be used to place a DDR frequency vote. This | ||
cooling device will be used in those cases where all the subsystem's are | ||
thermally throttled and DDR has to be operated with a minimum performance | ||
level. This cooling device vote can ensure the same. | ||
|
||
Properties: | ||
- compatible: | ||
Usage: required | ||
Value type: <string> | ||
Definition: should be "qcom,ddr-cooling-device". | ||
|
||
Bus Scaling Data: | ||
- qcom,msm-bus,name: | ||
Usage: required | ||
Value type: <string> | ||
Definition: String describing DDR cooling device client. It is defined | ||
at Documentation/devicetree/bindings/arm/msm/msm_bus.txt. | ||
- qcom,msm-bus,num-cases: | ||
Usage: required | ||
Value type: <integer> | ||
Definition: This is the number of Bus Scaling use cases | ||
defined in the vectors property. This must be set to more than | ||
one for DDR cooling device based on different levels of DDR | ||
frequency cooling support required. The use-case0 always should | ||
be a vote to take off DDR cdev votes from the system. It is | ||
defined at Documentation/devicetree/bindings/arm/msm/msm_bus.txt. | ||
- qcom,msm-bus,active-only: | ||
Usage: optional | ||
Value type: <None> | ||
Definition: A boolean flag indicating if it is active only | ||
bandwidth vote. It is defined at | ||
Documentation/devicetree/bindings/arm/msm/msm_bus.txt. | ||
- qcom,msm-bus,num-paths: | ||
Usage: required | ||
Value type: <integer> | ||
Definition: This represents total number of master-slave pairs for | ||
different usecases. It is defined at | ||
Documentation/devicetree/bindings/arm/msm/msm_bus.txt. | ||
- qcom,msm-bus,vectors-KBps: | ||
Usage: required | ||
Value type: <array> | ||
Definition: A series of 4 cell properties, with a format of | ||
(src, dst, ab, ib). It is defined at | ||
Documentation/devicetree/bindings/arm/msm/msm_bus.txt. | ||
|
||
Cooling Device Property: | ||
- #cooling-cells: | ||
Usage: required | ||
Value type: <integer> | ||
Definition: Must be 2. Needed for of_thermal as cooling device | ||
identifier. Please refer to | ||
<devicetree/bindings/thermal/thermal.txt> for more | ||
details. | ||
Example: | ||
qcom,ddr-cdev { | ||
compatible = "qcom,ddr-cooling-device"; | ||
qcom,msm-bus,name = "ddr-cdev"; | ||
qcom,msm-bus,num-cases = <2>; | ||
qcom,msm-bus,num-paths = <1>; | ||
qcom,msm-bus,vectors-KBps = <1 512 0 0>, | ||
<1 512 0 366000>; | ||
#cooling-cells = <2>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.