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

Commit 29757c8c authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Promotion of kernel.lnx.4.4-160621.

CRs      Change ID                                   Subject
--------------------------------------------------------------------------------------------------------------
1018301   I724ddbf4e7c02ee25622c6712210aee948d037f6   drivers: clocksource: arch_timer: enable user access to
1024913   I7e83fe663c32a6d75470bb0cb546b42c9fe04ab1   coresight: change CoreSight device probe order
1027234   I076d9ecd27cb1c1f11578f009ebe1a19c1619454   sched: fix overflow in scaled execution time calculation
1031869   Ic24219ab22d3130aa7e9e998a9e6798648a7321c   fs:fuse: Disable passthrough when mmap is called on a fi
1023437   I15e26e4d46d5ee663923d5678fa75878636e6940   clk: msm: osm: remove rtb logging for cycle counter read
1025031   I10de98ae57284699af3abcd90bafac63ba03844e   usb: gadget: Use mult as 3 for GSI related USB IN endpoi
1031223   I38b178f38277f9a2fa40735f4e15385638403ae6   Revert "usb: dwc3: core: only setting the dma_mask when
1001335   I1bc0253ada50040d55b57f0ed07ba66b5535106a   msm: camera: isp: Implement new ioctl
1027456   I59e665f92e6e29f7dfef4380314f676a2d92c94b   msm: falcon: put reason for boot in procfs from SMEM
1027645   I629e2ae15574ab779c43dd40d40cf169fe19bb8e   msm: ipa3: support use for 64bit DMA mask
1023610   I0487e1c0d4e0fffc5df1456d53567762d7b18d51   coresight-etm4x: add code to allocate memory for dump ta
1027645   I887d10efa520eb61d814f4f5d0f8e32916f38450   ARM: dts: msm: Add 64bit DMA mask support for ipa3 on ms
1027234   Ide19321206dacb88fedca97e1b689d740f872866   sched: remove unused parameter cpu from cpu_cycles_to_fr
1028720 1029118   I180515f2ad55d1f446ad7eb1ad0bd71809db94bd   ASoC: dapm: Avoid static route b/w cpu and codec dai
946716   I315bcf43cf3d32e78d53b818571da1f5175f8ac3   pfk: fixed crash that occurred because of bio's without
1024913   I5aae2ce3d2e0dec252139db571d4598d49f3a371   coresight-tmc: add support to configure flush and reset
1030688   I7fe2840b7a72bddde887340a6e913cb120d1bc61   ASoC: msm: qdsp6v2: Compress passthrugh fixes
1024913   I55b0534ab4d81b9ce02378b513e6ae9bc3b6cd1e   coresight: add support to read cti data
1031917   I895b8b33cce4173100d58acf690e57b5f4e69081   mmc: host: sdhci-msm: fix NULL pointer dereference
1027234   I92cf75d047a45ebf15a6ddeeecf8fc3823f96e5d   sched: prevent race where update CPU cycles
1027456   I99b832418b914765a4941682929dd7183d274e1c   lowmemorykiller:fix arguments to zone_watermark_ok_safe
1024919   I08d798d6fb24571856929f84db572bbd3651cd6c   coresight-etm4x: enable default include address range co
1006485   I23a95be86412987f72287138817235d3f1f9bc61   msm: ipa3: Move IPA FnR building to IPAHAL
1030352   I79f943cbc13553b3dbdce68f5c1143fa54f6eafa   tty: serial: msm: replace iowrite32_rep with writel_rela
1031761   I6ea31b8a17107b9f42c82a7b05919ee8ed798474   ARM: dts: msm: Change the zap shader memory region for m
1027456 461256   I2bc5d80c8f26eb9e9dbb4b34960d991a51a224e4   sysctl: add cold_boot sysctl entry
1025150   Id2454683116c948b7bb4fa3c50a91a5a9585a491   net: ipc_router: Add a dummy write_space callback
987045   Ib1adf14e9620ad7b1bd3e962001c852610210d46   staging: android: Change %p to %pK in debug messages
1027234   I2be1aad3fb9b895e4f0917d05bd8eade985bbccf   sched: kill unnecessary divisions on fast path
1031383   I76a43a04d454d1f25a640831f43b51dbb7e75943   spcom: add spcom_is_sp_subsystem_link_up
1027234   Ifb3ce3fd2c5c6bf4d658137214b73659a60fd9d7   sched: fix incorrect type casting in trace events

Change-Id: I7085d89535afad1abbe4a38bbfbce15f08b9fecc
CRs-Fixed: 1029118, 1027456, 1031917, 1031761, 1027645, 1001335, 1006485, 1031223, 1028720, 1018301, 1031383, 1025031, 461256, 946716, 1025150, 1031869, 987045, 1024919, 1027234, 1030688, 1024913, 1023610, 1023437, 1030352
parents a83ca103 7d1fabce
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
Introduction
=============
The power management integrated circuit (PMIC) records the reason the
Application processor was powered on in Shared Memory.
The hardware and software used is the shared memory interface. This document
is not for the purpose of describing this interface, but to identify the
possible values for this data item.

Description
===========
Shared memory item (SMEM_POWER_ON_STATUS_INFO) is read to get access to
this data. The table below identifies the possible values stored.

power_on_status values set by the PMIC for power on event:
----------------------------------------------------------
0x01 -- keyboard power on
0x02 -- RTC alarm
0x04 -- cable power on
0x08 -- SMPL
0x10 -- Watch Dog timeout
0x20 -- USB charger
0x40 -- Wall charger
0xFF -- error reading power_on_status value
+2 −0
Original line number Diff line number Diff line
@@ -76,6 +76,8 @@ its hardware characteristcs.

	* arm,default-sink: represents the default compile time CoreSight sink

	* coresight-ctis: represents flush and reset CTIs for TMC buffer

* Required property for TPDAs:

	* qcom,tpda-atid: must be present. Specifies the ATID for TPDA.
+4 −2
Original line number Diff line number Diff line
@@ -59,6 +59,8 @@ memory allocation over a PCIe bridge
                                a pipe reset via the IPA uC is required
- qcom,ipa-wdi2:                Boolean context flag to indicate whether
                                using wdi-2.0 or not
- qcom,use-64-bit-dma-mask:     Boolean context flag to indicate whether
                                using 64bit dma mask or not
- qcom,use-dma-zone:            Boolean context flag to indicate whether memory
                                allocations controlled by IPA driver that do not
				specify a struct device * should use GFP_DMA to
+0 −1
Original line number Diff line number Diff line
@@ -16,7 +16,6 @@
		compatible = "qcom,pil-tz-generic";
		qcom,pas-id = <13>;
		qcom,firmware-name = "a530_zap";
		memory-region = <&peripheral_mem>;
	};

	msm_bus: qcom,kgsl-busmon{
+1 −0
Original line number Diff line number Diff line
@@ -896,6 +896,7 @@
		qcom,modem-cfg-emb-pipe-flt;
		qcom,do-not-use-ch-gsi-20;
		qcom,ipa-wdi2;
		qcom,use-64-bit-dma-mask;
		clock-names = "core_clk";
		clocks = <&clock_gcc clk_ipa_clk>;
		qcom,msm-bus,name = "ipa";
Loading