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

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

Promotion of kernel.lnx.4.4-160602.

CRs      Change ID                                   Subject
--------------------------------------------------------------------------------------------------------------
1014726   Ia6d4755408646ac4a75724f3c6f2177651875da3   ASoC: compress: fix unsigned integer overflow check
999619   Ia31c3f10c24380d9670cd0ca83834844435e593d   msm: camera: isp: For vfe version 4.8 do not reset vbif
1021009   Id0687402d56f24ca851916f92f86a145136bb866   msm: camera: Configure some of the csiphy registers
1023180   I9601efd300c7f428c4576e6ecf6d31791d0b47bd   arm64: dma-mapping: Attach IOMMUs as groups
1021593   Ide3309d4dc713892703e2eb5ee33c9db7f990156   clk: msm: osm: increase main PLL minimum L_VAL to 825.6
987041   I2eb33c63168ab26818dfdb3e11315f2ce8f24fa5   net: core: neighbour: Change the print format for addres
1003213   I9f9845fea425fc4463dae72e8f8ab6e8bda23121   clk: msm: clock-gcc-cobalt: Add the cnoc_periph RPM reso
1008023   If43428f0eb53370ca725480b3cd13e7b53e643c3   ARM: dts: msm: Advertise SG support by rmnet_ipa on msmc
1023412   I812f0f6b38e7e9973cc9a0c8bfd6fb5078f719ff   ARM: dts: msm: rename the flash/WLED devices in pmicobal
1021593 1022853   I1fdde432e267c1161ac5d28bdee4af57c23137ec   ARM: dts: msm: Add full Silver cluster frequency plan fo
890916   If4503b0e25ac151039d1743a007ba1624a2e90f4   ARM: dts: msm: Add Round robin ADC channels for pmicobal
1022663   I60185482ae9b5364e297370593d95cce056b314e   clk: msm: clock-mmss-8996: Add graphics clocks support o
1023187   Icb5c5f219a197a158e00f600e68111ff699062b7   clk: msm: osm: increase unstall timer for PC/RET FSM to
890916   I88b5922ab4dc817257042fdaa385768e6f14be57   defconfig: arm64: msmcortex: Enable IIO and RRADC driver
1007397   Iab4f544532e57682eb5dbfe7865850b8e978f1b4   ARM: dts: msm: add WCN3990 BT/FM support for msmcobalt d
1015446   I78f1d3a1ac9ed09d2f4f266f61a1c14d44b41f53   ARM: dts: msm: Enable the GPU clock driver on MSMCOBALT
1019576   Ibd0041cea2ac47180110a1cfe96516d347d9816a   ARM: dts: msm: disable IPA and rmnet-ipa nodes on APQ809
1017800   I93aa6df8c7ec1916ba23d21d92e477510db949da   qcom-charger: use mutex instead of spinlock when calling
1008023   Idf626cb5a22d2ed5152ab76dcc5fe56696a631a6   msm: rmnet_ipa3: add RMNET_IOCTL_GET_SG_SUPPORT support

Change-Id: I4e27425902c8c7fc8baad951575616e92b28b2fc
CRs-Fixed: 1014726, 1023180, 1023412, 1021593, 1023187, 1003213, 1017800, 890916, 1008023, 1022853, 1007397, 1022663, 987041, 1015446, 1019576, 1021009, 999619
parents 739d6d7a d4c48266
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -54,10 +54,12 @@ Required properties:
			"qcom,mmsscc-8996"
			"qcom,mmsscc-8996-v2"
			"qcom,mmsscc-8996-v3"
			"qcom,mmsscc-8996-pro"
			"qcom,gpucc-8996"
			"qcom,gpucc-8996-v2"
			"qcom,gpucc-8996-v3"
			"qcom,gpucc-8996-v3.0"
			"qcom,gpucc-8996-pro"
			"qcom,gcc-gfx-titanium"
			"qcom,gcc-californium"
			"qcom,cc-debug-californium"
@@ -83,7 +85,7 @@ Required properties:
			there is one expected base: "cc_base". Optional
			reg-names are "apcs_base", "meas", "mmss_base",
			"lpass_base", "apcs_c0_base", "apcs_c1_base",
			"apcs_cci_base".
			"apcs_cci_base", "efuse".

Optional properties:
- vdd_dig-supply:	The digital logic rail supply.
+2 −0
Original line number Diff line number Diff line
@@ -8,6 +8,8 @@ Required properties:
Optional:
- qcom,rmnet-ipa-ssr: determine if modem SSR is supported
- qcom,ipa-loaduC: indicate that ipa uC should be loaded
- qcom,ipa-advertise-sg-support: determine how to respond to a query
regarding scatter-gather capability

Example:
	qcom,rmnet-ipa3 {
+11 −1
Original line number Diff line number Diff line
/* Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
/* Copyright (c) 2014-2016, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -22,3 +22,13 @@
	model = "Qualcomm Technologies, Inc. APQ 8096 v2";
	qcom,msm-id = <291 0x20001>;
};

&soc {
	qcom,rmnet-ipa {
		status = "disabled";
	};
};

&ipa_hw {
	status = "disabled";
};
+11 −1
Original line number Diff line number Diff line
/* Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
/* Copyright (c) 2014-2016, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -22,3 +22,13 @@
	model = "Qualcomm Technologies, Inc. APQ 8096 v3.0";
	qcom,msm-id = <291 0x30000>;
};

&soc {
	qcom,rmnet-ipa {
		status = "disabled";
	};
};

&ipa_hw {
	status = "disabled";
};
+11 −1
Original line number Diff line number Diff line
/* Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
/* Copyright (c) 2014-2016, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -22,3 +22,13 @@
	model = "Qualcomm Technologies, Inc. APQ 8096 v3";
	qcom,msm-id = <291 0x30001>;
};

&soc {
	qcom,rmnet-ipa {
		status = "disabled";
	};
};

&ipa_hw {
	status = "disabled";
};
Loading