* [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals
@ 2025-10-14 4:41 Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 1/6] arm64: dts: qcom: r0q: small refactor Eric Gonçalves
` (6 more replies)
0 siblings, 7 replies; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-14 4:41 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
This patchset adds support for multiple devices found on the Galaxy S22,
side buttons, touchscreen, max77705 charger/fuelgauge, RTC and UFS. It
depends on "Input: add support for the STM FTS2BA61Y touchscreen" for
TS to be enabled - and for the fuelgauge/charger to work,
"mfd: max77705: support revision 0x2" is needed too.
Thanks!
Changes in v2:
- split the gpio keys patch into 2 for small refactor
- rename spi-gpio: spi-gpio@0 to spi8
- use tabs instead of spaces on max77705 nodes
- added new patch that fixes adsp_mem and video_mem memory regions
I couldn't find the clock-frequency for i2c5 bus :(
Eric Gonçalves (6):
arm64: dts: qcom: r0q: small refactor
arm64: dts: qcom: r0q: add gpio keys
arm64: dts: qcom: r0q: add touchscreen support
arm64: dts: qcom: r0q: enable max77705 fuelgauge
arm64: dts: qcom: r0q: enable ufs storage
arm64: dts: qcom: r0q: fix reserved memory regions
.../boot/dts/qcom/sm8450-samsung-r0q.dts | 278 +++++++++++++++++-
1 file changed, 270 insertions(+), 8 deletions(-)
--
2.51.0
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v2 1/6] arm64: dts: qcom: r0q: small refactor
2025-10-14 4:41 [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Eric Gonçalves
@ 2025-10-14 4:41 ` Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 2/6] arm64: dts: qcom: r0q: add gpio keys Eric Gonçalves
` (5 subsequent siblings)
6 siblings, 0 replies; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-14 4:41 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
Fix the order of some nodes and add regulator names.
Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
---
.../boot/dts/qcom/sm8450-samsung-r0q.dts | 25 +++++++++++--------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
index 880d74ae6032..a17dcb848fc1 100644
--- a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
+++ b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
@@ -28,15 +28,6 @@ framebuffer: framebuffer@b8000000 {
};
};
- vph_pwr: regulator-vph-pwr {
- compatible = "regulator-fixed";
- regulator-name = "vph_pwr";
- regulator-min-microvolt = <3700000>;
- regulator-max-microvolt = <3700000>;
- regulator-always-on;
- regulator-boot-on;
- };
-
reserved-memory {
/*
* The bootloader will only keep display hardware enabled
@@ -47,6 +38,16 @@ splash-region@b8000000 {
no-map;
};
};
+
+ vph_pwr: regulator-vph-pwr {
+ compatible = "regulator-fixed";
+ regulator-name = "vph_pwr";
+ regulator-min-microvolt = <3700000>;
+ regulator-max-microvolt = <3700000>;
+
+ regulator-always-on;
+ regulator-boot-on;
+ };
};
&apps_rsc {
@@ -71,12 +72,14 @@ regulators-0 {
vdd-l3-l5-supply = <&vreg_bob>;
vreg_l2b_3p07: ldo2 {
+ regulator-name = "vreg_l2b_3p07";
regulator-min-microvolt = <3072000>;
regulator-max-microvolt = <3072000>;
regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
};
vreg_l5b_0p88: ldo5 {
+ regulator-name = "vreg_l5b_0p88";
regulator-min-microvolt = <880000>;
regulator-max-microvolt = <888000>;
regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
@@ -106,12 +109,14 @@ regulators-1 {
vdd-bob-supply = <&vph_pwr>;
vreg_bob: bob {
+ regulator-name = "vreg_bob";
regulator-min-microvolt = <3008000>;
regulator-max-microvolt = <3960000>;
regulator-initial-mode = <RPMH_REGULATOR_MODE_AUTO>;
};
vreg_l1c_1p8: ldo1 {
+ regulator-name = "vreg_l1c_1p8";
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
@@ -120,7 +125,7 @@ vreg_l1c_1p8: ldo1 {
};
&tlmm {
- gpio-reserved-ranges = <36 4>; /* SPI (not linked to anything) */
+ gpio-reserved-ranges = <36 4>; /* SPI (Unused) */
};
&usb_1 {
--
2.51.0
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH v2 2/6] arm64: dts: qcom: r0q: add gpio keys
2025-10-14 4:41 [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 1/6] arm64: dts: qcom: r0q: small refactor Eric Gonçalves
@ 2025-10-14 4:41 ` Eric Gonçalves
2025-10-14 9:59 ` Konrad Dybcio
2025-10-14 4:41 ` [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support Eric Gonçalves
` (4 subsequent siblings)
6 siblings, 1 reply; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-14 4:41 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
Add GPIO keys support to Samsung Galaxy S22 (r0q).
Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
---
.../boot/dts/qcom/sm8450-samsung-r0q.dts | 36 +++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
index a17dcb848fc1..5ca45b040a99 100644
--- a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
+++ b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
@@ -2,11 +2,13 @@
/dts-v1/;
+#include <dt-bindings/input/linux-event-codes.h>
#include <dt-bindings/regulator/qcom,rpmh-regulator.h>
#include "sm8450.dtsi"
#include "pm8350.dtsi"
#include "pm8350c.dtsi"
+#include "pmk8350.dtsi"
/ {
model = "Samsung Galaxy S22 5G";
@@ -28,6 +30,21 @@ framebuffer: framebuffer@b8000000 {
};
};
+ gpio-keys {
+ compatible = "gpio-keys";
+ autorepeat;
+
+ pinctrl-0 = <&vol_up_n>;
+ pinctrl-names = "default";
+
+ key-vol-up {
+ label = "Volume Up";
+ linux,code = <KEY_VOLUMEUP>;
+ gpios = <&pm8350_gpios 6 GPIO_ACTIVE_LOW>;
+ debounce-interval = <15>;
+ };
+ };
+
reserved-memory {
/*
* The bootloader will only keep display hardware enabled
@@ -124,6 +141,25 @@ vreg_l1c_1p8: ldo1 {
};
};
+&pm8350_gpios {
+ vol_up_n: vol-up-n-state {
+ pins = "gpio6";
+ function = "normal";
+ power-source = <1>;
+ input-enable;
+ };
+};
+
+&pon_pwrkey {
+ status = "okay";
+};
+
+&pon_resin {
+ linux,code = <KEY_VOLUMEDOWN>;
+
+ status = "okay";
+};
+
&tlmm {
gpio-reserved-ranges = <36 4>; /* SPI (Unused) */
};
--
2.51.0
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-14 4:41 [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 1/6] arm64: dts: qcom: r0q: small refactor Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 2/6] arm64: dts: qcom: r0q: add gpio keys Eric Gonçalves
@ 2025-10-14 4:41 ` Eric Gonçalves
2025-10-14 10:01 ` Konrad Dybcio
2025-10-14 4:41 ` [PATCH v2 4/6] arm64: dts: qcom: r0q: enable max77705 fuelgauge Eric Gonçalves
` (3 subsequent siblings)
6 siblings, 1 reply; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-14 4:41 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
depends on "Input: add support for the STM FTS2BA61Y touchscreen".
The device has an issue where SPI 8 (the bus which the touchscreen is
connected to) is not working properly right now, so
spi-gpio is used instead.
Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
---
.../boot/dts/qcom/sm8450-samsung-r0q.dts | 134 ++++++++++++++++++
1 file changed, 134 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
index 5ca45b040a99..96a8a0e69681 100644
--- a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
+++ b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
@@ -56,6 +56,50 @@ splash-region@b8000000 {
};
};
+ /*
+ * The device has an issue where SPI 8 (the bus which the touchscreen is
+ * connected to) is not working properly right now, so spi-gpio
+ * is used instead.
+ */
+
+ spi8 {
+ compatible = "spi-gpio";
+ pinctrl-names = "default", "sleep";
+ pinctrl-0 = <&spi_clk_tsp_active &spi_mosi_tsp_active &spi_miso_tsp_active>;
+ pinctrl-1 = <&spi_clk_tsp_sleep &spi_mosi_tsp_sleep &spi_miso_tsp_sleep>;
+
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ sck-gpios = <&tlmm 30 GPIO_ACTIVE_HIGH>;
+ mosi-gpios = <&tlmm 29 GPIO_ACTIVE_HIGH>;
+ miso-gpios = <&tlmm 28 GPIO_ACTIVE_HIGH>;
+ cs-gpios = <&tlmm 31 GPIO_ACTIVE_LOW>;
+
+ num-chipselects = <1>;
+
+ spi-max-frequency = <5000000>;
+
+ touchscreen@0 {
+ compatible = "st,fts2ba61y";
+ reg = <0>;
+ spi-max-frequency = <5000000>;
+
+ vdd-supply = <&vreg_l8c_1p8>;
+ avdd-supply = <&vreg_l11c_3p0>;
+
+ interrupt-parent = <&tlmm>;
+ interrupts = <46 IRQ_TYPE_LEVEL_LOW>;
+
+ pinctrl-names = "default", "sleep";
+ pinctrl-0 = <&tsp_int_active>;
+ pinctrl-1 = <&tsp_int_sleep>;
+
+ status = "okay";
+ };
+ };
+
vph_pwr: regulator-vph-pwr {
compatible = "regulator-fixed";
regulator-name = "vph_pwr";
@@ -138,6 +182,20 @@ vreg_l1c_1p8: ldo1 {
regulator-max-microvolt = <1800000>;
regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
};
+
+ vreg_l8c_1p8: ldo8 {
+ regulator-name = "vreg_l8c_1p8";
+ regulator-min-microvolt = <1800000>;
+ regulator-max-microvolt = <1800000>;
+ regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
+ };
+
+ vreg_l11c_3p0: ldo11 {
+ regulator-name = "vreg_l11c_3p0";
+ regulator-min-microvolt = <3000000>;
+ regulator-max-microvolt = <3000000>;
+ regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
+ };
};
};
@@ -162,6 +220,82 @@ &pon_resin {
&tlmm {
gpio-reserved-ranges = <36 4>; /* SPI (Unused) */
+
+ spi_clk_tsp_active: spi-clk-tsp-active {
+ pins = "gpio30";
+ function = "gpio";
+ drive-strength = <6>;
+ bias-disable;
+ };
+
+ spi_clk_tsp_sleep: spi-clk-tsp-sleep {
+ pins = "gpio30";
+ function = "gpio";
+ drive-strength = <6>;
+ input-enable;
+ bias-pull-down;
+ };
+
+ spi_cs_tsp_active: spi-cs-tsp-active {
+ pins = "gpio31";
+ function = "gpio";
+ drive-strength = <6>;
+ bias-disable;
+ };
+
+ spi_cs_tsp_sleep: spi-cs-tsp-sleep {
+ pins = "gpio31";
+ function = "gpio";
+ drive-strength = <6>;
+ input-enable;
+ bias-pull-down;
+ };
+
+ spi_miso_tsp_active: spi-miso-tsp-active {
+ pins = "gpio28";
+ function = "gpio";
+ drive-strength = <6>;
+ bias-disable;
+ };
+
+ spi_miso_tsp_sleep: spi-miso-tsp-sleep {
+ pins = "gpio28";
+ function = "gpio";
+ drive-strength = <6>;
+ input-enable;
+ bias-pull-down;
+ };
+
+ spi_mosi_tsp_active: spi-mosi-tsp-active {
+ pins = "gpio29";
+ function = "gpio";
+ drive-strength = <6>;
+ bias-disable;
+ };
+
+ spi_mosi_tsp_sleep: spi-mosi-tsp-sleep {
+ pins = "gpio29";
+ function = "gpio";
+ drive-strength = <6>;
+ input-enable;
+ bias-pull-down;
+ };
+
+ tsp_int_active: tsp-int-active {
+ pins = "gpio46";
+ function = "gpio";
+ drive-strength = <2>;
+ input-enable;
+ bias-disable;
+ };
+
+ tsp_int_sleep: tsp-int-sleep-state {
+ pins = "gpio46";
+ function = "gpio";
+ drive-strength = <2>;
+ input-enable;
+ bias-disable;
+ };
};
&usb_1 {
--
2.51.0
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH v2 4/6] arm64: dts: qcom: r0q: enable max77705 fuelgauge
2025-10-14 4:41 [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Eric Gonçalves
` (2 preceding siblings ...)
2025-10-14 4:41 ` [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support Eric Gonçalves
@ 2025-10-14 4:41 ` Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 5/6] arm64: dts: qcom: r0q: enable ufs storage Eric Gonçalves
` (2 subsequent siblings)
6 siblings, 0 replies; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-14 4:41 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
The Samsung Galaxy S22 uses max77705 for its charger and fuelgauge,
enable them.
Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
---
.../boot/dts/qcom/sm8450-samsung-r0q.dts | 32 +++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
index 96a8a0e69681..244fed27a4cc 100644
--- a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
+++ b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
@@ -15,6 +15,16 @@ / {
compatible = "samsung,r0q", "qcom,sm8450";
chassis-type = "handset";
+ battery: battery {
+ compatible = "simple-battery";
+
+ constant-charge-current-max-microamp = <2150000>;
+ charge-full-design-microamp-hours = <3700000>;
+ over-voltage-threshold-microvolt = <4500000>;
+ voltage-min-design-microvolt = <3400000>;
+ voltage-max-design-microvolt = <4350000>;
+ };
+
chosen {
#address-cells = <2>;
#size-cells = <2>;
@@ -199,6 +209,24 @@ vreg_l11c_3p0: ldo11 {
};
};
+&i2c5 {
+ status = "okay";
+
+ max77705_charger: charger@69 {
+ compatible = "maxim,max77705-charger";
+ reg = <0x69>;
+ monitored-battery = <&battery>;
+ interrupts-extended = <&tlmm 5 IRQ_TYPE_LEVEL_LOW>;
+ };
+
+ fuel-gauge@36 {
+ reg = <0x36>;
+ compatible = "maxim,max77705-battery";
+ power-supplies = <&max77705_charger>;
+ interrupts-extended = <&tlmm 5 IRQ_TYPE_LEVEL_LOW>;
+ };
+};
+
&pm8350_gpios {
vol_up_n: vol-up-n-state {
pins = "gpio6";
@@ -218,6 +246,10 @@ &pon_resin {
status = "okay";
};
+&qupv3_id_0 {
+ status = "okay";
+};
+
&tlmm {
gpio-reserved-ranges = <36 4>; /* SPI (Unused) */
--
2.51.0
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH v2 5/6] arm64: dts: qcom: r0q: enable ufs storage
2025-10-14 4:41 [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Eric Gonçalves
` (3 preceding siblings ...)
2025-10-14 4:41 ` [PATCH v2 4/6] arm64: dts: qcom: r0q: enable max77705 fuelgauge Eric Gonçalves
@ 2025-10-14 4:41 ` Eric Gonçalves
2025-10-14 10:02 ` Konrad Dybcio
2025-10-14 4:41 ` [PATCH v2 6/6] arm64: dts: qcom: r0q: fix reserved memory regions Eric Gonçalves
2025-10-14 9:58 ` [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Konrad Dybcio
6 siblings, 1 reply; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-14 4:41 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
Enable UFS internal storage of the Samsung Galaxy S22.
Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
---
.../boot/dts/qcom/sm8450-samsung-r0q.dts | 42 +++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
index 244fed27a4cc..a3b81403d180 100644
--- a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
+++ b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
@@ -155,6 +155,27 @@ vreg_l5b_0p88: ldo5 {
regulator-max-microvolt = <888000>;
regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
};
+
+ vreg_l6b_1p2: ldo6 {
+ regulator-name = "vreg_l6b_1p2";
+ regulator-min-microvolt = <1200000>;
+ regulator-max-microvolt = <1200000>;
+ regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
+ };
+
+ vreg_l7b_2p5: ldo7 {
+ regulator-name = "vreg_l7b_2p5";
+ regulator-min-microvolt = <2504000>;
+ regulator-max-microvolt = <2504000>;
+ regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
+ };
+
+ vreg_l9b_1p2: ldo9 {
+ regulator-name = "vreg_l9b_1p2";
+ regulator-min-microvolt = <1200000>;
+ regulator-max-microvolt = <1200000>;
+ regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
+ };
};
regulators-1 {
@@ -330,6 +351,27 @@ tsp_int_sleep: tsp-int-sleep-state {
};
};
+&ufs_mem_hc {
+ reset-gpios = <&tlmm 210 GPIO_ACTIVE_LOW>;
+
+ vcc-supply = <&vreg_l7b_2p5>;
+ vcc-max-microamp = <1100000>;
+ vccq-supply = <&vreg_l9b_1p2>;
+ vccq-max-microamp = <1200000>;
+ vccq2-supply = <&vreg_l9b_1p2>;
+ vccq2-max-microamp = <1200000>;
+ vdd-hba-supply = <&vreg_l9b_1p2>;
+
+ status = "okay";
+};
+
+&ufs_mem_phy {
+ vdda-phy-supply = <&vreg_l5b_0p88>;
+ vdda-pll-supply = <&vreg_l6b_1p2>;
+
+ status = "okay";
+};
+
&usb_1 {
/* Keep USB 2.0 only for now */
qcom,select-utmi-as-pipe-clk;
--
2.51.0
^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH v2 6/6] arm64: dts: qcom: r0q: fix reserved memory regions
2025-10-14 4:41 [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Eric Gonçalves
` (4 preceding siblings ...)
2025-10-14 4:41 ` [PATCH v2 5/6] arm64: dts: qcom: r0q: enable ufs storage Eric Gonçalves
@ 2025-10-14 4:41 ` Eric Gonçalves
2025-10-14 10:02 ` Konrad Dybcio
2025-10-14 9:58 ` [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Konrad Dybcio
6 siblings, 1 reply; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-14 4:41 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
ADSP and video memory regions in SoC dtsi is misplaced on this
platform, fix them by deleting those nodes and redefining them.
Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
---
arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
index a3b81403d180..8ed8a67aae0d 100644
--- a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
+++ b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
@@ -10,6 +10,9 @@
#include "pm8350c.dtsi"
#include "pmk8350.dtsi"
+/delete-node/ &adsp_mem;
+/delete-node/ &video_mem;
+
/ {
model = "Samsung Galaxy S22 5G";
compatible = "samsung,r0q", "qcom,sm8450";
@@ -64,6 +67,16 @@ splash-region@b8000000 {
reg = <0x0 0xb8000000 0x0 0x2b00000>;
no-map;
};
+
+ adsp_mem: memory@84500000 {
+ reg = <0x0 0x84500000 0x0 0x3b00000>;
+ no-map;
+ };
+
+ video_mem: memory@83e00000 {
+ reg = <0x0 0x83e00000 0x0 0x700000>;
+ no-map;
+ };
};
/*
--
2.51.0
^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals
2025-10-14 4:41 [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Eric Gonçalves
` (5 preceding siblings ...)
2025-10-14 4:41 ` [PATCH v2 6/6] arm64: dts: qcom: r0q: fix reserved memory regions Eric Gonçalves
@ 2025-10-14 9:58 ` Konrad Dybcio
2025-10-31 21:12 ` Ghatto
6 siblings, 1 reply; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-14 9:58 UTC (permalink / raw)
To: Eric Gonçalves, Krzysztof Kozlowski, Bjorn Andersson,
Konrad Dybcio, Rob Herring, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> This patchset adds support for multiple devices found on the Galaxy S22,
> side buttons, touchscreen, max77705 charger/fuelgauge, RTC and UFS. It
> depends on "Input: add support for the STM FTS2BA61Y touchscreen" for
> TS to be enabled - and for the fuelgauge/charger to work,
> "mfd: max77705: support revision 0x2" is needed too.
>
> Thanks!
>
> Changes in v2:
> - split the gpio keys patch into 2 for small refactor
> - rename spi-gpio: spi-gpio@0 to spi8
> - use tabs instead of spaces on max77705 nodes
> - added new patch that fixes adsp_mem and video_mem memory regions
> I couldn't find the clock-frequency for i2c5 bus :(
You can boot downstram and run debugcc to dump the current state
(incl. rates) of all clocks
https://github.com/linux-msm/debugcc
Or /sys/kernel/debug/clk/gcc_name_of_the_clock/clk_rate
may also give you a good result, although YMMV
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 2/6] arm64: dts: qcom: r0q: add gpio keys
2025-10-14 4:41 ` [PATCH v2 2/6] arm64: dts: qcom: r0q: add gpio keys Eric Gonçalves
@ 2025-10-14 9:59 ` Konrad Dybcio
0 siblings, 0 replies; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-14 9:59 UTC (permalink / raw)
To: Eric Gonçalves, Krzysztof Kozlowski, Bjorn Andersson,
Konrad Dybcio, Rob Herring, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> Add GPIO keys support to Samsung Galaxy S22 (r0q).
>
> Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-14 4:41 ` [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support Eric Gonçalves
@ 2025-10-14 10:01 ` Konrad Dybcio
2025-10-14 15:10 ` Ghatto
0 siblings, 1 reply; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-14 10:01 UTC (permalink / raw)
To: Eric Gonçalves, Krzysztof Kozlowski, Bjorn Andersson,
Konrad Dybcio, Rob Herring, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
The second sentence doesn't really make sense to be included in
the git log
> The device has an issue where SPI 8 (the bus which the touchscreen is
> connected to) is not working properly right now, so
> spi-gpio is used instead.
Some Samsung devices used to use spi/i2c-gpio intentionally, also
on downstream. I'm assuming this isn't the case for r0q.
Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
that? I don't see any obvious errors in the dt that would cause
problems
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 5/6] arm64: dts: qcom: r0q: enable ufs storage
2025-10-14 4:41 ` [PATCH v2 5/6] arm64: dts: qcom: r0q: enable ufs storage Eric Gonçalves
@ 2025-10-14 10:02 ` Konrad Dybcio
0 siblings, 0 replies; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-14 10:02 UTC (permalink / raw)
To: Eric Gonçalves, Krzysztof Kozlowski, Bjorn Andersson,
Konrad Dybcio, Rob Herring, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> Enable UFS internal storage of the Samsung Galaxy S22.
>
> Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 6/6] arm64: dts: qcom: r0q: fix reserved memory regions
2025-10-14 4:41 ` [PATCH v2 6/6] arm64: dts: qcom: r0q: fix reserved memory regions Eric Gonçalves
@ 2025-10-14 10:02 ` Konrad Dybcio
2025-10-14 15:12 ` Ghatto
0 siblings, 1 reply; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-14 10:02 UTC (permalink / raw)
To: Eric Gonçalves, Krzysztof Kozlowski, Bjorn Andersson,
Konrad Dybcio, Rob Herring, Conor Dooley
Cc: linux-arm-msm, devicetree, linux-kernel
On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> ADSP and video memory regions in SoC dtsi is misplaced on this
> platform, fix them by deleting those nodes and redefining them.
>
> Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
> ---
> arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
> index a3b81403d180..8ed8a67aae0d 100644
> --- a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
> +++ b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
> @@ -10,6 +10,9 @@
> #include "pm8350c.dtsi"
> #include "pmk8350.dtsi"
>
> +/delete-node/ &adsp_mem;
> +/delete-node/ &video_mem;
> +
> / {
> model = "Samsung Galaxy S22 5G";
> compatible = "samsung,r0q", "qcom,sm8450";
> @@ -64,6 +67,16 @@ splash-region@b8000000 {
> reg = <0x0 0xb8000000 0x0 0x2b00000>;
> no-map;
> };
> +
> + adsp_mem: memory@84500000 {
> + reg = <0x0 0x84500000 0x0 0x3b00000>;
> + no-map;
> + };
> +
> + video_mem: memory@83e00000 {
> + reg = <0x0 0x83e00000 0x0 0x700000>;
> + no-map;
> + };
Please keep the entries sorted, also with regards to the existing ones
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-14 10:01 ` Konrad Dybcio
@ 2025-10-14 15:10 ` Ghatto
2025-10-14 15:17 ` Konrad Dybcio
0 siblings, 1 reply; 26+ messages in thread
From: Ghatto @ 2025-10-14 15:10 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
<konrad.dybcio@oss.qualcomm.com> wrote:
>
> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> > Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
> > depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>
> The second sentence doesn't really make sense to be included in
> the git log
I'll keep it to the cover letter then
>
> > The device has an issue where SPI 8 (the bus which the touchscreen is
> > connected to) is not working properly right now, so
> > spi-gpio is used instead.
>
> Some Samsung devices used to use spi/i2c-gpio intentionally, also
> on downstream. I'm assuming this isn't the case for r0q.
It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
want to take a look.
>
> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
The driver probes, but it fails to recognize the touchscreen device
and ends up erroring, spi-gpio solves this and I did try enabling those.
It also works on the S22+ with spi-gpio, so I decided to do the same on r0q.
> that? I don't see any obvious errors in the dt that would cause
> problems
>
> Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 6/6] arm64: dts: qcom: r0q: fix reserved memory regions
2025-10-14 10:02 ` Konrad Dybcio
@ 2025-10-14 15:12 ` Ghatto
0 siblings, 0 replies; 26+ messages in thread
From: Ghatto @ 2025-10-14 15:12 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On Tue, Oct 14, 2025 at 7:02 AM Konrad Dybcio
<konrad.dybcio@oss.qualcomm.com> wrote:
>
> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> > ADSP and video memory regions in SoC dtsi is misplaced on this
> > platform, fix them by deleting those nodes and redefining them.
> >
> > Signed-off-by: Eric Gonçalves <ghatto404@gmail.com>
> > ---
> > arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts | 13 +++++++++++++
> > 1 file changed, 13 insertions(+)
> >
> > diff --git a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
> > index a3b81403d180..8ed8a67aae0d 100644
> > --- a/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
> > +++ b/arch/arm64/boot/dts/qcom/sm8450-samsung-r0q.dts
> > @@ -10,6 +10,9 @@
> > #include "pm8350c.dtsi"
> > #include "pmk8350.dtsi"
> >
> > +/delete-node/ &adsp_mem;
> > +/delete-node/ &video_mem;
> > +
> > / {
> > model = "Samsung Galaxy S22 5G";
> > compatible = "samsung,r0q", "qcom,sm8450";
> > @@ -64,6 +67,16 @@ splash-region@b8000000 {
> > reg = <0x0 0xb8000000 0x0 0x2b00000>;
> > no-map;
> > };
> > +
> > + adsp_mem: memory@84500000 {
> > + reg = <0x0 0x84500000 0x0 0x3b00000>;
> > + no-map;
> > + };
> > +
> > + video_mem: memory@83e00000 {
> > + reg = <0x0 0x83e00000 0x0 0x700000>;
> > + no-map;
> > + };
>
> Please keep the entries sorted, also with regards to the existing ones
Sure, thanks
>
> Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-14 15:10 ` Ghatto
@ 2025-10-14 15:17 ` Konrad Dybcio
2025-10-14 19:04 ` Ghatto
0 siblings, 1 reply; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-14 15:17 UTC (permalink / raw)
To: Ghatto
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On 10/14/25 5:10 PM, Ghatto wrote:
> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
> <konrad.dybcio@oss.qualcomm.com> wrote:
>>
>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>>
>> The second sentence doesn't really make sense to be included in
>> the git log
> I'll keep it to the cover letter then
>>
>>> The device has an issue where SPI 8 (the bus which the touchscreen is
>>> connected to) is not working properly right now, so
>>> spi-gpio is used instead.
>>
>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
>> on downstream. I'm assuming this isn't the case for r0q.
> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
> want to take a look.
>>
>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
> The driver probes, but it fails to recognize the touchscreen device
Could you post a complete dmesg and the precise DT diff you used?
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-14 15:17 ` Konrad Dybcio
@ 2025-10-14 19:04 ` Ghatto
2025-10-16 10:06 ` Konrad Dybcio
0 siblings, 1 reply; 26+ messages in thread
From: Ghatto @ 2025-10-14 19:04 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
<konrad.dybcio@oss.qualcomm.com> wrote:
>
> On 10/14/25 5:10 PM, Ghatto wrote:
> > On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
> > <konrad.dybcio@oss.qualcomm.com> wrote:
> >>
> >> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> >>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
> >>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
> >>
> >> The second sentence doesn't really make sense to be included in
> >> the git log
> > I'll keep it to the cover letter then
> >>
> >>> The device has an issue where SPI 8 (the bus which the touchscreen is
> >>> connected to) is not working properly right now, so
> >>> spi-gpio is used instead.
> >>
> >> Some Samsung devices used to use spi/i2c-gpio intentionally, also
> >> on downstream. I'm assuming this isn't the case for r0q.
> > It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
> > DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
> > want to take a look.
> >>
> >> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
> > The driver probes, but it fails to recognize the touchscreen device
>
> Could you post a complete dmesg and the precise DT diff you used?
https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
any relevant information other than spi/i2c probing, however, I've noticed
both on deviceinfohw.ru and the dmesg that for some reason the touchscreen
is on spi0.0 (even though DT says 8) and I'm not sure if that means it's on SPI
but on a bugged out bus or if it's really just spi on bus 0
@@ -85,7 +85,7 @@
* is used instead.
*/
- spi8 {
+ /*spi8 {
compatible = "spi-gpio";
pinctrl-names = "default", "sleep";
pinctrl-0 = <&spi_clk_tsp_active &spi_mosi_tsp_active
&spi_miso_tsp_active>;
@@ -106,7 +106,6 @@
touchscreen@0 {
compatible = "st,fts2ba61y";
reg = <0>;
- spi-max-frequency = <5000000>;
vdd-supply = <&vreg_l8c_1p8>;
avdd-supply = <&vreg_l11c_3p0>;
@@ -120,8 +119,7 @@
status = "okay";
};
- };
-
+ };*/
vph_pwr: regulator-vph-pwr {
compatible = "regulator-fixed";
@@ -134,6 +132,10 @@
};
};
+&gpi_dma1 {
+ status = "okay";
+};
+
&apps_rsc {
regulators-0 {
compatible = "qcom,pm8350-rpmh-regulators";
@@ -280,10 +282,38 @@
status = "okay";
};
+&spi8 {
+ spi-max-frequency = <5000000>;
+
+ touchscreen@0 {
+ compatible = "st,fts2ba61y";
+ reg = <0>;
+
+ vdd-supply = <&vreg_l8c_1p8>;
+ avdd-supply = <&vreg_l11c_3p0>;
+
+ interrupt-parent = <&tlmm>;
+ interrupts = <46 IRQ_TYPE_LEVEL_LOW>;
+
+ pinctrl-names = "default", "sleep";
+ pinctrl-0 = <&tsp_int_active>;
+ pinctrl-1 = <&tsp_int_sleep>;
+
+ status = "okay";
+ };
+
+
+ status = "okay";
+};
+
&qupv3_id_0 {
status = "okay";
};
+&qupv3_id_1 {
+ status = "okay";
+};
+
&tlmm {
gpio-reserved-ranges = <36 4>; /* SPI (Unused) */>
> Konrad
Resend (forgot to reply all)
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-14 19:04 ` Ghatto
@ 2025-10-16 10:06 ` Konrad Dybcio
2025-10-16 20:08 ` Ghatto
0 siblings, 1 reply; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-16 10:06 UTC (permalink / raw)
To: Ghatto
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On 10/14/25 9:04 PM, Ghatto wrote:
> On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
> <konrad.dybcio@oss.qualcomm.com> wrote:
>>
>> On 10/14/25 5:10 PM, Ghatto wrote:
>>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>
>>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
>>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
>>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>>>>
>>>> The second sentence doesn't really make sense to be included in
>>>> the git log
>>> I'll keep it to the cover letter then
>>>>
>>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
>>>>> connected to) is not working properly right now, so
>>>>> spi-gpio is used instead.
>>>>
>>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
>>>> on downstream. I'm assuming this isn't the case for r0q.
>>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
>>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
>>> want to take a look.
>>>>
>>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
>>> The driver probes, but it fails to recognize the touchscreen device
>>
>> Could you post a complete dmesg and the precise DT diff you used?
> https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
The link has expired 🙁
> any relevant information other than spi/i2c probing, however, I've noticed
> both on deviceinfohw.ru and the dmesg that for some reason the touchscreen
> is on spi0.0 (even though DT says 8) and I'm not sure if that means it's on SPI
> but on a bugged out bus or if it's really just spi on bus 0
It means that it's on the SPI bus that probed first (index 0)
[...]
> +&spi8 {
> + spi-max-frequency = <5000000>;
> +
> + touchscreen@0 {
> + compatible = "st,fts2ba61y";
> + reg = <0>;
> +
> + vdd-supply = <&vreg_l8c_1p8>;
> + avdd-supply = <&vreg_l11c_3p0>;
> +
> + interrupt-parent = <&tlmm>;
> + interrupts = <46 IRQ_TYPE_LEVEL_LOW>;
> +
> + pinctrl-names = "default", "sleep";
> + pinctrl-0 = <&tsp_int_active>;
> + pinctrl-1 = <&tsp_int_sleep>;
> +
> + status = "okay";
> + };
> +
> +
> + status = "okay";
> +};
this won't compile ^
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-16 10:06 ` Konrad Dybcio
@ 2025-10-16 20:08 ` Ghatto
2025-10-17 8:20 ` Konrad Dybcio
0 siblings, 1 reply; 26+ messages in thread
From: Ghatto @ 2025-10-16 20:08 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On Thu, Oct 16, 2025 at 6:06 AM Konrad Dybcio
<konrad.dybcio@oss.qualcomm.com> wrote:
>
>
>
> On 10/14/25 9:04 PM, Ghatto wrote:
> > On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
> > <konrad.dybcio@oss.qualcomm.com> wrote:
> >>
> >> On 10/14/25 5:10 PM, Ghatto wrote:
> >>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
> >>> <konrad.dybcio@oss.qualcomm.com> wrote:
> >>>>
> >>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> >>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
> >>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
> >>>>
> >>>> The second sentence doesn't really make sense to be included in
> >>>> the git log
> >>> I'll keep it to the cover letter then
> >>>>
> >>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
> >>>>> connected to) is not working properly right now, so
> >>>>> spi-gpio is used instead.
> >>>>
> >>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
> >>>> on downstream. I'm assuming this isn't the case for r0q.
> >>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
> >>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
> >>> want to take a look.
> >>>>
> >>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
> >>> The driver probes, but it fails to recognize the touchscreen device
> >>
> >> Could you post a complete dmesg and the precise DT diff you used?
> > https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
>
> The link has expired 🙁
https://pastebin.com/s4abJS9M shouldn't expire now!
>
> > any relevant information other than spi/i2c probing, however, I've noticed
> > both on deviceinfohw.ru and the dmesg that for some reason the touchscreen
> > is on spi0.0 (even though DT says 8) and I'm not sure if that means it's on SPI
> > but on a bugged out bus or if it's really just spi on bus 0
>
> It means that it's on the SPI bus that probed first (index 0)
>
> [...]
>
> > +&spi8 {
> > + spi-max-frequency = <5000000>;
> > +
> > + touchscreen@0 {
> > + compatible = "st,fts2ba61y";
> > + reg = <0>;
> > +
> > + vdd-supply = <&vreg_l8c_1p8>;
> > + avdd-supply = <&vreg_l11c_3p0>;
> > +
> > + interrupt-parent = <&tlmm>;
> > + interrupts = <46 IRQ_TYPE_LEVEL_LOW>;
> > +
> > + pinctrl-names = "default", "sleep";
> > + pinctrl-0 = <&tsp_int_active>;
> > + pinctrl-1 = <&tsp_int_sleep>;
> > +
> > + status = "okay";
> > + };
> > +
> > +
> > + status = "okay";
> > +};
>
> this won't compile ^
>
> Konrad
>
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-16 20:08 ` Ghatto
@ 2025-10-17 8:20 ` Konrad Dybcio
2025-10-17 18:22 ` Eric Gonçalves
0 siblings, 1 reply; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-17 8:20 UTC (permalink / raw)
To: Ghatto
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On 10/16/25 10:08 PM, Ghatto wrote:
> On Thu, Oct 16, 2025 at 6:06 AM Konrad Dybcio
> <konrad.dybcio@oss.qualcomm.com> wrote:
>>
>>
>>
>> On 10/14/25 9:04 PM, Ghatto wrote:
>>> On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>
>>>> On 10/14/25 5:10 PM, Ghatto wrote:
>>>>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>
>>>>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
>>>>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
>>>>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>>>>>>
>>>>>> The second sentence doesn't really make sense to be included in
>>>>>> the git log
>>>>> I'll keep it to the cover letter then
>>>>>>
>>>>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
>>>>>>> connected to) is not working properly right now, so
>>>>>>> spi-gpio is used instead.
>>>>>>
>>>>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
>>>>>> on downstream. I'm assuming this isn't the case for r0q.
>>>>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
>>>>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
>>>>> want to take a look.
>>>>>>
>>>>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
>>>>> The driver probes, but it fails to recognize the touchscreen device
>>>>
>>>> Could you post a complete dmesg and the precise DT diff you used?
>>> https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
>>
>> The link has expired 🙁
> https://pastebin.com/s4abJS9M shouldn't expire now!
And yet it did!
Feel free to just attach it to your message.. the list may bounce
it, but it will still reach the To/Cc recipients
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-17 8:20 ` Konrad Dybcio
@ 2025-10-17 18:22 ` Eric Gonçalves
2025-10-20 12:18 ` Konrad Dybcio
0 siblings, 1 reply; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-17 18:22 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 2022 bytes --]
On October 17, 2025 5:20:43 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
>On 10/16/25 10:08 PM, Ghatto wrote:
>> On Thu, Oct 16, 2025 at 6:06 AM Konrad Dybcio
>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>
>>>
>>>
>>> On 10/14/25 9:04 PM, Ghatto wrote:
>>>> On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>
>>>>> On 10/14/25 5:10 PM, Ghatto wrote:
>>>>>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>
>>>>>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
>>>>>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
>>>>>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>>>>>>>
>>>>>>> The second sentence doesn't really make sense to be included in
>>>>>>> the git log
>>>>>> I'll keep it to the cover letter then
>>>>>>>
>>>>>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
>>>>>>>> connected to) is not working properly right now, so
>>>>>>>> spi-gpio is used instead.
>>>>>>>
>>>>>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
>>>>>>> on downstream. I'm assuming this isn't the case for r0q.
>>>>>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
>>>>>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
>>>>>> want to take a look.
>>>>>>>
>>>>>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
>>>>>> The driver probes, but it fails to recognize the touchscreen device
>>>>>
>>>>> Could you post a complete dmesg and the precise DT diff you used?
>>>> https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
>>>
>>> The link has expired 🙁
>> https://pastebin.com/s4abJS9M shouldn't expire now!
>
>And yet it did!
>
>Feel free to just attach it to your message.. the list may bounce
>it, but it will still reach the To/Cc recipients
Attached the dmesg.txt file.
>
>Konrad
[-- Attachment #2: dmesg_20251017151737.txt --]
[-- Type: text/plain, Size: 275577 bytes --]
[ 18.617737] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY set_suspend for resume called with cable disconnected
[ 18.617746] msm-usb-ssphy-qmp 88e8000.ssphy: reg (HPM)
[ 18.617761] msm-usb-ssphy-qmp 88e8000.ssphy: min_vol:912000 max_vol:912000
[ 18.618158] msm-usb-ssphy-qmp 88e8000.ssphy: msm_ssphy_qmp_enable_clks(): clk_enabled:0 on:1
[ 18.618197] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY is resumed
[ 18.618206] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_clocks(): clocks_enabled:0 on:1
[ 18.618213] msm-dwc3 a600000.ssusb: dwc3_msm_resume: exit power collapse
[ 18.618224] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode
[ 18.618228] msm-dwc3 a600000.ssusb: dwc3_pwr_event_handler irq_stat=1000
[ 18.618233] msm-dwc3 a600000.ssusb: dwc3_pwr_event_handler: unexpected PWR_EVNT, irq_stat=1000
[ 18.618244] dwc3_runtime_resume : ++
[ 18.618250] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_init phy_flags:0x0
[ 18.618257] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_power turn on regulators. power_enabled:0
[ 18.619129] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_clocks(): clocks_enabled:1 on:1
[ 18.619323] msm-usb-hsphy 88e3000.hsphy: x0:e7e7e7e7 x1:0f0f0f0f x2:2f2f2f2f x3:03030303
[ 18.619337] msm-usb-ssphy-qmp 88e8000.ssphy: Initializing QMP phy
[ 18.619340] msm-usb-ssphy-qmp 88e8000.ssphy: reg (HPM)
[ 18.619343] msm-usb-ssphy-qmp 88e8000.ssphy: PHYs' regulators status 1
[ 18.619346] msm-usb-ssphy-qmp 88e8000.ssphy: msm_ssphy_qmp_enable_clks(): clk_enabled:1 on:1
[ 18.619349] msm-usb-ssphy-qmp 88e8000.ssphy: Global reset of QMP DP combo phy
[ 18.619358] msm-usb-ssphy-qmp 88e8000.ssphy: USB DP QMP PHY: Update TYPEC CTRL(3)
[ 18.625542] conn_gadget_open
[ 18.626109] conn_gadget_poll() _conn_gadget_dev is offlined
[ 18.626125] conn_gadget_poll() _conn_gadget_dev is offlined
[ 18.630810] vaultkeeper: Error: Failed in connect function(-1/No such file or directory)
[ 18.630837] vaultkeeper: Check registered : exec_cmd failed(-42)
[ 18.632236] vaultkeeper: vaultkeeper read error(-18)
[ 18.638068] BTON:Turn Bt On bt-reset-gpio(382) value(1)
[ 18.638080] BTON: Turn BT ON bt-sw-ctrl-gpio(383) value(1)
[ 18.638083] bt_configure_gpios: bt_gpio= 382 on: 1
[ 18.638926] msm_geni_serial 894000.qcom,qup_uart: order: 2 uart_xmit_size: 16384 bytes
[ 18.642108] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_clocks(): clocks_enabled:1 on:1
[ 18.642122] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY set_suspend for resume called with cable disconnected
[ 18.642130] msm-usb-ssphy-qmp 88e8000.ssphy: msm_ssphy_qmp_set_suspend: USB PHY is already resumed.
[ 18.642151] msm-dwc3 a600000.ssusb: DWC3_GSI_EVT_BUF_SETUP
[ 18.642160] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffe000 length 4096
[ 18.642170] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffd000 length 4096
[ 18.642180] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffc000 length 4096
[ 18.642459] dwc3 a600000.dwc3: Set IRQ thread:irq/323-dwc3 pid:4400 to SCHED_NORMAL prio
[ 18.644531] dwc3_runtime_resume : --
[ 18.644556] msm-dwc3 a600000.ssusb: DWC3_CONTROLLER_PULLUP_EXIT 1
[ 18.649935] dwc3_runtime_idle : ++
[ 18.649953] dwc3_runtime_suspend : ++
[ 18.649969] msm-dwc3 a600000.ssusb: DWC3_GSI_EVT_BUF_CLEAR
[ 18.649982] msm-dwc3 a600000.ssusb: DWC3_CONTROLLER_NOTIFY_CLEAR_DB
[ 18.655202] msm-usb-hsphy 88e3000.hsphy: phy->flags:0x0
[ 18.655222] msm-usb-hsphy 88e3000.hsphy: turning off clocks/ldo
[ 18.655229] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_clocks(): clocks_enabled:1 on:0
[ 18.655246] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_power turn off regulators. power_enabled:1
[ 18.655325] android_work: did not send uevent (0 0 0000000000000000)
[ 18.655333] msm-usb-hsphy 88e3000.hsphy: Avail curr from USB = 0
[ 18.655340] msm-usb-hsphy 88e3000.hsphy: Error (-19) setting input current limit
[ 18.655467] msm-usb-hsphy 88e3000.hsphy: HSUSB PHY's regulators are turned OFF.
[ 18.655478] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY set_suspend for suspend called with cable disconnected
[ 18.655487] msm-usb-ssphy-qmp 88e8000.ssphy: msm_ssphy_qmp_enable_clks(): clk_enabled:1 on:0
[ 18.655531] msm-usb-ssphy-qmp 88e8000.ssphy: reg (LPM)
[ 18.655875] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY is suspend
[ 18.656417] dwc3_runtime_suspend : --
[ 18.656432] dwc3_runtime_idle : --
[ 18.656443] msm-dwc3 a600000.ssusb: DWC3-msm runtime idle
[ 18.716081] bt_ioctl: unified Current SOC Version : 400c1211
[ 18.773962] qcom_guestvm_loader soc:qcom,guestvm_loader@e0b00000: VM(45) loaded in 449689 us
[ 18.775026] QSEECOM: __qseecom_unload_app: App (35) is unloaded
[ 18.790990] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [1] [1454 / 2340]
[ 18.806355] sec_nfc: nfc_dev_open: 494, 0
[ 18.817654] sec_nfc: nfc_i2c_dev_read: NONBLOCK read ret = 255
[ 18.821429] F2FS-fs (dm-56): node block address is NULL, nid: 25655, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 18.822959] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [2] [907 / 2340]
[ 18.823194] i2c_geni 888000.i2c: i2c error :-107
[ 18.823204] sec_nfc: nfc_i2c_dev_read: NONBLOCK read ret = -107
[ 18.823218] sec_nfc: nfc_dev_close: 494, 0
[ 18.823235] sec_nfc: en: 1, firm: -22, pvdd: 1, irq: 0, clk_req: 0
[ 18.823241] sec_nfc: nfc_print_status: state=1 o_pid=4245 rel_pid=0 o_task=sem_daemon rel_task=
[ 18.823262] sec_nfc: nfc_dev_open: 494, 0
[ 18.823282] sec_nfc: nfc_dev_ioctl: cmd = 4008e904 arg = 1
[ 18.823286] sec_nfc: nfc_dev_ioctl: bad cmd 1
[ 18.824789] sec_nfc: Enter p61_dev_release: ESE driver release
[ 18.824804] sec_nfc: perform_cold_reset_protection: invalid cmd
[ 18.824813] sec_nfc: pinctrl[ese_off]
[ 18.824826] sec_nfc: p61_dev_release: state=0 o_pid=4245 rel_pid=4245 o_task=sem_daemon rel_task=sem_daemon
[ 18.824832] sec_nfc: Exit p61_dev_release: ESE driver release
[ 18.838276] QSEECOM: qseecom_load_app: App (sem) does'nt exist, loading apps for first time
[ 18.838677] !@ 8,0 r 43475 1903749 w 1082 21384 d 497 23552 f 0 234 iot 13476 0 th 0 0 0 pt 0 inp 0 9 18.808
[ 18.842425] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [3] [1875 / 2340]
[ 18.872093] QSEECOM: qseecom_load_app: App with id 36 (sem) now loaded
[ 18.874633] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [4] [1411 / 2340]
[ 18.881890] [SSC_FAC] light_copr_debug_work_func: 228,240,237,188,216,207,231,243,240,232,245,242
[ 18.898674] servicemanager: Notifying vendor.samsung.hardware.tlc.kg.ISehKg/default they do (previously: don't) have clients when service is guaranteed to be in use
[ 18.898734] binder: 597:1132 transaction failed 29201/-1, size 104-8 line 3292
[ 18.898751] audit: type=1400 audit(1749960103.691:440): avc: denied { call } for pid=597 comm="binder:597_3" scontext=u:r:servicemanager:s0 tcontext=u:r:hal_kgta_default:s0 tclass=binder permissive=0
[ 18.937752] set sleep_disabled as N
[ 18.942087] [FACTORY] light seamless init, M200,1500, S:0,0
[ 18.942699] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [5] [1788 / 2340]
[ 18.956927] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [6] [885 / 2340]
[ 18.975821] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [7] [1651 / 2340]
[ 18.982091] QSEECOM: __qseecom_unload_app: App (36) is unloaded
[ 18.982307] sec_nfc: p61_dev_open pre: state=1 o_pid=4245 rel_pid=4245 o_task=sem_daemon rel_task=sem_daemon
[ 18.982315] sec_nfc: pinctrl[ese_on]
[ 18.982319] sec_nfc: p61_dev_open: state=1 o_pid=4245 rel_pid=0 o_task=sem_daemon rel_task=
[ 18.986581] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 19.009397] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [8] [1676 / 2340]
[ 19.020654] QSEECOM: qseecom_load_app: App with id 37 (tz_kg) now loaded
[ 19.025951] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [9] [1605 / 2340]
[ 19.029701] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 19.030894] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 19.032967] QSEECOM: __qseecom_unload_app: App (37) is unloaded
[ 19.039885] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 19.072228] QSEECOM: qseecom_load_app: App with id 38 (tz_kg) now loaded
[ 19.074812] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [10] [1107 / 2340]
[ 19.076971] QSEECOM: qseecom_load_app: App (sem) does'nt exist, loading apps for first time
[ 19.080735] sec_nfc: nfc_dev_ioctl: cmd = 4008e901 arg = 1
[ 19.080747] sec_nfc: nfc_dev_ioctl: NFC_SET_PWR
[ 19.109729] QSEECOM: qseecom_load_app: App with id 39 (sem) now loaded
[ 19.115624] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 19.158271] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [11] [996 / 2340]
[ 19.181401] init: Service 'kernel-post-boot' (pid 4217) exited with status 0 oneshot service took 1.059000 seconds in background
[ 19.181445] init: Sending signal 9 to service 'kernel-post-boot' (pid 4217) process group...
[ 19.181866] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_0/pid_4217
[ 19.199601] CASS: VaultKeeper is not ready. try again Retry cnt(25).
[ 19.223654] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 19.225552] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [12] [1093 / 2340]
[ 19.226102] QSEECOM: __qseecom_unload_app: App (39) is unloaded
[ 19.227100] QSEECOM: __qseecom_unload_app: App (38) is unloaded
[ 19.242408] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [13] [1128 / 2340]
[ 19.248730] sec_argos:argos_pm_qos_notify() name:UFS, speed:95Mbps, prev level:0, request level:-1
[ 19.248739] sec_argos:argos_freq_lock() update cpu freq -1
[ 19.248742] set_freq_limit: cflm: id(3) freq(-1)
[ 19.248744] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 19.248757] cflm_update_current_freq: current freq: s(614400 ~ 1785600), g(633600 ~ 2112000), p(806400 ~ 2726400)
[ 19.273653] sec_nfc: Enter p61_dev_release: ESE driver release
[ 19.273678] sec_nfc: perform_cold_reset_protection: invalid cmd
[ 19.273689] sec_nfc: pinctrl[ese_off]
[ 19.273707] sec_nfc: p61_dev_release: state=0 o_pid=4245 rel_pid=4245 o_task=sem_daemon rel_task=sem_daemon
[ 19.273714] sec_nfc: Exit p61_dev_release: ESE driver release
[ 19.276917] !@ check_set_fs_encrypt(1142) : sys.rdxd.erase_all 1
[ 19.284944] usb_notify: read disable_state OFF
[ 19.285658] QSEECOM: qseecom_load_app: App (sem) does'nt exist, loading apps for first time
[ 19.292395] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [14] [1033 / 2340]
[ 19.303284] init: starting service 'resetreason'...
[ 19.315712] init: ... started service 'resetreason' has pid 4585
[ 19.315761] init: Control message: Processed ctl.restart for 'resetreason' from pid: 2420 (system_server)
[ 19.337989] QSEECOM: qseecom_load_app: App with id 40 (sem) now loaded
[ 19.342392] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [15] [940 / 2340]
[ 19.344247] init: Service 'resetreason' (pid 4585) exited with status 0 oneshot service took 0.033000 seconds in background
[ 19.344281] init: Sending signal 9 to service 'resetreason' (pid 4585) process group...
[ 19.344798] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_4585
[ 19.383810] sec_nfc: i2c_write: irq high during write, wait
[ 19.387016] sec_nfc: i2c_write: irq high during write, wait
[ 19.390245] sec_nfc: i2c_write: irq high during write, wait
[ 19.390555] [FACTORY] support_dual_sensor_show: SINGLE_GYRO
[ 19.391610] [FACTORY] support_dual_sensor_show: SINGLE_GYRO
[ 19.398516] [FACTORY] support_dual_sensor_show: SINGLE_GYRO
[ 19.398674] [FACTORY] support_dual_sensor_show: SINGLE_GYRO
[ 19.410415] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [16] [1299 / 2340]
[ 19.443834] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [17] [1268 / 2340]
[ 19.456843] QSEECOM: __qseecom_unload_app: App (40) is unloaded
[ 19.457072] sec_nfc: p61_dev_open pre: state=1 o_pid=4245 rel_pid=4245 o_task=sem_daemon rel_task=sem_daemon
[ 19.457079] sec_nfc: pinctrl[ese_on]
[ 19.457084] sec_nfc: p61_dev_open: state=1 o_pid=4245 rel_pid=0 o_task=sem_daemon rel_task=
[ 19.460501] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 19.476131] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [18] [835 / 2340]
[ 19.487765] sec_nfc: i2c_write: irq high during write, wait
[ 19.492337] QSEECOM: qseecom_load_app: App with id 41 (vaultkeeper) now loaded
[ 19.494035] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [19] [1247 / 2340]
[ 19.495348] vaultkeeper: QSEECom_start_app done
[ 19.499367] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 19.501330] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 19.502517] vaultkeeper: QSEECom_send_cmd done(3346/0x0c000c03/VK)
[ 19.502589] QSEECOM: qseecom_load_app: App (sem) does'nt exist, loading apps for first time
[ 19.526624] sec_nfc: scrn_on
[ 19.541731] QSEECOM: qseecom_load_app: App with id 42 (sem) now loaded
[ 19.545469] QSEECOM: __qseecom_unload_app: App (41) is unloaded
[ 19.545906] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 19.545941] vaultkeeper: Failed cmdProcessing(-10032)
[ 19.545980] vaultkeeper: runCommand error.(-10032)
[ 19.546032] vaultkeeper: There is no VK ID
[ 19.546054] vaultkeeper: VaultKeeper service preparation is failed
[ 19.577629] bt_ioctl: BT_CMD_SET_IPA_TCS_INFO
[ 19.577656] btpower_aop_set_vreg_param: sending AOP Mbox msg: {class: wlan_pdc, res: s3e.e, upval: 1}
[ 19.578652] btpower_aop_set_vreg_param: IPA regulator entry is missing in dts
[ 19.666093] QSEECOM: __qseecom_unload_app: App (42) is unloaded
[ 19.668650] qcom_gunyah_qrtr soc:qrtr-gunyah: failed to raise doorbell -11
[ 19.685777] qcom_guestvm_loader soc:qcom,guestvm_loader@e0600000: Expected a notification from vmid = 50, but received one from vmid = 45
[ 19.688582] psci: CPU5 killed (polled 0 ms)
[ 19.690395] guestvm_isolate_cpu: offlined cpu : 5
[ 19.693453] psci: CPU6 killed (polled 0 ms)
[ 19.694162] msm_watchdog_data - pet: 19.694152 / last_pet: 10.234089 (delta: 9.460062)
[ 19.694970] (virq:irq_count)- GICv3:IPI(1):137915 GICv3:IPI(6):66953 GICv3:IPI(2):60156 GICv3:ufshcd(31):40736 GICv3:arch_timer(11):38286 GICv3:i2c_geni(54):11247 GICv3:gpi_dma800000_gpii0(71):11053 GICv3:ipcc_0(28):5074 GICv3:c263000.thermal-sensor(223):2795 ipcc:glink-native-slpi(424):2467
[ 19.695019] (cpu:irq_count)- 0:119703 1:21400 2:19820 3:13031 4:55420 5:52590 6:53198 7:57507
[ 19.695047] (ipi:irq_count)- 0:137916 1:60156 2:0 3:0 4:0 5:66954 6:0
[ 19.698147] sec_nfc: Enter p61_dev_release: ESE driver release
[ 19.698176] sec_nfc: perform_cold_reset_protection: invalid cmd
[ 19.698188] sec_nfc: pinctrl[ese_off]
[ 19.698198] guestvm_isolate_cpu: offlined cpu : 6
[ 19.698220] sec_nfc: p61_dev_release: state=0 o_pid=4245 rel_pid=4245 o_task=sem_daemon rel_task=sem_daemon
[ 19.698230] sec_nfc: Exit p61_dev_release: ESE driver release
[ 19.703630] QSEECOM: qseecom_load_app: App (sem) does'nt exist, loading apps for first time
[ 19.728960] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [20] [1379 / 2340]
[ 19.736461] QSEECOM: qseecom_load_app: App with id 43 (sem) now loaded
[ 19.740057] qcom-bwmon: Zone thres larger than hw limit: hi:72090 med:19661 lo:0
[ 19.746643] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [21] [1711 / 2340]
[ 19.789171] bt_ioctl: BT_CMD_PWR_CTRL pwr_cntrl: 2
[ 19.789186] bluetooth_power: on: 2
[ 19.796704] [drm:sde_encoder_phys_cmd_te_rd_ptr_irq:313] mdp wr_ptr_line_count check : cnt [22] [1641 / 2340]
[ 19.808133] qcom_guestvm_loader soc:qcom,guestvm_loader@e0b00000: VM(45) started running in 3 us
[ 19.808155] qcom_guestvm_loader soc:qcom,guestvm_loader@e0600000: Expected a notification from vmid = 50, but received one from vmid = 45
[ 19.808166] hyp_core_ctl: init: reserve_cpus=5-6
[ 19.849571] QSEECOM: __qseecom_unload_app: App (43) is unloaded
[ 19.855539] sec_nfc: p61_dev_open pre: state=1 o_pid=4245 rel_pid=4245 o_task=sem_daemon rel_task=sem_daemon
[ 19.855555] sec_nfc: pinctrl[ese_on]
[ 19.855560] sec_nfc: p61_dev_open: state=1 o_pid=4245 rel_pid=0 o_task=sem_daemon rel_task=
[ 19.866073] msm-dwc3 a600000.ssusb: DWC3-msm runtime suspend
[ 19.866571] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_set_suspend: USB PHY is already suspended
[ 19.866588] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY set_suspend for suspend called with cable disconnected
[ 19.866595] msm-usb-ssphy-qmp 88e8000.ssphy: msm_ssphy_qmp_set_suspend: USB PHY is already suspended.
[ 19.866682] msm-dwc3 a600000.ssusb: dwc3_msm_suspend: power collapse
[ 19.875684] msm-dwc3 a600000.ssusb: DWC3 in low power mode
[ 19.875748] msm-dwc3 a600000.ssusb: idle state
[ 19.883324] qcom_guestvm_loader soc:qcom,guestvm_loader@e0b00000: VM(45) booted in 1559046 us
[ 19.883342] qcom_guestvm_loader soc:qcom,guestvm_loader@e0600000: Expected a notification from vmid = 50, but received one from vmid = 45
[ 19.905406] [SSC_FAC] light_copr_debug_work_func: 228,240,238,184,212,202,231,243,240,232,245,242
[ 19.927299] sec_nfc: Enter p61_dev_release: ESE driver release
[ 19.927328] sec_nfc: perform_cold_reset_protection: invalid cmd
[ 19.927339] sec_nfc: pinctrl[ese_off]
[ 19.927355] sec_nfc: p61_dev_release: state=0 o_pid=4245 rel_pid=4245 o_task=sem_daemon rel_task=sem_daemon
[ 19.927362] sec_nfc: Exit p61_dev_release: ESE driver release
[ 19.938376] F2FS-fs (dm-56): node block address is NULL, nid: 25669, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 19.942847] F2FS-fs (dm-56): node block address is NULL, nid: 25670, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 19.996734] servicemanager: Caller(pid=3601,uid=1002,sid=u:r:bluetooth:s0) Could not find android.hardware.bluetooth.ranging.IBluetoothChannelSounding/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 19.997488] servicemanager: Caller(pid=3601,uid=1002,sid=u:r:bluetooth:s0) Could not find android.hardware.bluetooth.ranging.IBluetoothChannelSounding/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 20.037085] F2FS-fs (dm-56): node block address is NULL, nid: 25673, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 20.116279] vaultkeeper: Error: Failed in connect function(-1/No such file or directory)
[ 20.116297] vaultkeeper: Check registered : exec_cmd failed(-42)
[ 20.116351] vaultkeeper: vaultkeeper read error(-18)
[ 20.135157] vaultkeeper: Error: Failed in connect function(-1/No such file or directory)
[ 20.135213] vaultkeeper: Check registered : exec_cmd failed(-42)
[ 20.137348] sec sec_debug: FMM lock[OFF]
[ 20.173274] F2FS-fs (dm-56): node block address is NULL, nid: 25677, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 20.199816] CASS: VaultKeeper is not ready. try again Retry cnt(27).
[ 20.208676] vaultkeeper: Error: Failed in connect function(-1/No such file or directory)
[ 20.208735] vaultkeeper: Check registered : exec_cmd failed(-42)
[ 20.325172] F2FS-fs (dm-56): node block address is NULL, nid: 25679, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 20.487607] F2FS-fs (dm-56): node block address is NULL, nid: 25680, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 20.549898] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 20.581813] QSEECOM: qseecom_load_app: App with id 44 (vaultkeeper) now loaded
[ 20.583954] vaultkeeper: QSEECom_start_app done
[ 20.586684] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 20.589020] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 20.590381] vaultkeeper: QSEECom_send_cmd done(4367/0x0c000c03/VK)
[ 20.591396] QSEECOM: __qseecom_unload_app: App (44) is unloaded
[ 20.591486] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 20.591499] vaultkeeper: Failed cmdProcessing(-10032)
[ 20.591515] vaultkeeper: runCommand error.(-10032)
[ 20.591523] vaultkeeper: There is no VK ID
[ 20.591531] vaultkeeper: VaultKeeper service preparation is failed
[ 20.599110] qcom_guestvm_loader soc:qcom,guestvm_loader@e0b00000: Unisolating VM(45) cpus after 2274829 us: VM app status = 1
[ 20.599179] qcom_guestvm_loader soc:qcom,guestvm_loader@e0600000: Expected a notification from vmid = 50, but received one from vmid = 45
[ 20.600032] CPU features: detected: Hardware dirty bit management
[ 20.600042] CPU features: detected CPU5: Activity Monitors Unit (AMU)
[ 20.600068] Detected PIPT I-cache on CPU5
[ 20.600073] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011212122, CPU5: 0x00000010212122
[ 20.600095] GICv3: CPU5: found redistributor 500 region 0:0x00000000172c0000
[ 20.600258] CPU5: Booted secondary processor 0x0000000500 [0x412fd470]
[ 20.601114] qcom-pmu: event 23 not set for cpu 5 ret -13
[ 20.602622] dev_name = 254:0,total_blks = 311614,skipped_blks = 18947,corrupted_blks = 0,fec_correct_blks = 0
[ 20.602979] guestvm_unisolate_cpu: onlined cpu : 5
[ 20.603252] CPU features: detected CPU6: Activity Monitors Unit (AMU)
[ 20.603280] Detected PIPT I-cache on CPU6
[ 20.603286] CPU features: SANITY CHECK: Unexpected variation in SYS_ID_AA64MMFR1_EL1. Boot CPU: 0x00000011212122, CPU6: 0x00000010212122
[ 20.603312] GICv3: CPU6: found redistributor 600 region 0:0x0000000017300000
[ 20.603474] CPU6: Booted secondary processor 0x0000000600 [0x412fd470]
[ 20.604176] qcom-pmu: event 23 not set for cpu 6 ret -13
[ 20.605736] guestvm_unisolate_cpu: onlined cpu : 6
[ 20.656083] F2FS-fs (dm-56): node block address is NULL, nid: 25682, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 20.691365] F2FS-fs (dm-56): node block address is NULL, nid: 25683, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 20.712601] vaultkeeper: Error: Failed in connect function(-1/No such file or directory)
[ 20.712711] vaultkeeper: Check registered : exec_cmd failed(-42)
[ 20.714254] vaultkeeper: Error: Failed in connect function(-1/No such file or directory)
[ 20.714303] vaultkeeper: Check registered : exec_cmd failed(-42)
[ 20.730028] PM: Active wake lock:
[ 20.730054] PM: tftp_server_wakelock: active_count(4), active_time(436), total_time(6566)
[ 20.730080] PM: nfc_wake_lock: active_count(1), active_time(1918), total_time(1918)
[ 20.730083] PM: ese_spi_wake_lock: active_count(1), active_time(5494), total_time(5494)
[ 20.730092] PM: 894000.qcom,qup_uart: active_count(2), active_time(2091), total_time(2278)
[ 20.730141] thermal_sys: thermal: cdev[thermal-cluster-1-2:7]
[ 20.753057] sec_argos:argos_pm_qos_notify() name:UFS, speed:525Mbps, prev level:-1, request level:0
[ 20.753066] sec_argos:argos_freq_lock() update cpu freq 892800
[ 20.753070] set_freq_limit: cflm: id(3) freq(892800)
[ 20.753072] cflm_freq_decision: input: type(3), min(892800), max(0)
[ 20.753088] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(633600 ~ 1766400), p(806400 ~ 2284800)
[ 20.839151] !@ 8,0 r 46509 2036437 w 1343 23224 d 641 29140 f 0 271 iot 15320 0 th 0 0 0 pt 0 inp 0 1 20.809
[ 20.839342] !@ MemInfo(KB): total 7394220 free 2346368 avail 4385432 actv(f) 269820 inactv(f) 1760392 dirty 6216 wb 0 anonpg 1250312 slab 409672
[ 20.839704] !@ Read_top(KB): .gms.persistent(3985) 55856 qcrosvm(4229) 34016 gle.android.gms(4641) 32528
[ 20.839732] !@ Write_top(KB): kworker/u16:7(272) 8964 f2fs_ckpt-254:5(1153) 1396 system_server(2420) 1016
[ 20.864300] F2FS-fs (dm-56): node block address is NULL, nid: 25687, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 20.926637] F2FS-fs (dm-56): node block address is NULL, nid: 25688, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.052789] F2FS-fs (dm-56): node block address is NULL, nid: 25689, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.146247] pmon: Pending Wakeup Sources: tftp_server_wakelock nfc_wake_lock ese_spi_wake_lock 894000.qcom,qup_uart
[ 21.201072] CASS: VaultKeeper is not ready. try again Retry cnt(29).
[ 21.242139] ts_print: tsens[0:667][1:752][2:745][3:756][4:752][5:718][6:739][7:739][8:797][9:756][10:780][11:790][12:838][13:780][14:605][15:602][16:670][17:687][18:735][19:732][20:759][21:595][22:547][23:561][24:670][25:657][26:588][27:540][28:554][29:568][30:547][31:574]
[ 21.275491] [PASS-THROUGH]:store_attrs: user_mode = 0 <-> 0, disabled
[ 21.293060] i2c_geni 888000.i2c: i2c error :-107
[ 21.293084] sec_nfc: i2c_write: write failed ret(-107), maybe in standby
[ 21.557257] F2FS-fs (dm-56): node block address is NULL, nid: 25700, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.595550] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 21.627021] QSEECOM: qseecom_load_app: App with id 45 (vaultkeeper) now loaded
[ 21.628475] vaultkeeper: QSEECom_start_app done
[ 21.631394] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 21.632596] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 21.633599] vaultkeeper: QSEECom_send_cmd done(6059/0x0c000c03/VK)
[ 21.634334] QSEECOM: __qseecom_unload_app: App (45) is unloaded
[ 21.634437] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 21.634450] vaultkeeper: Failed cmdProcessing(-10032)
[ 21.634463] vaultkeeper: runCommand error.(-10032)
[ 21.634470] vaultkeeper: There is no VK ID
[ 21.634477] vaultkeeper: VaultKeeper service preparation is failed
[ 21.723288] F2FS-fs (dm-56): node block address is NULL, nid: 25701, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.742850] dev_name = 254:0,total_blks = 328001,skipped_blks = 20480,corrupted_blks = 0,fec_correct_blks = 0
[ 21.775851] F2FS-fs (dm-56): node block address is NULL, nid: 25702, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.814687] F2FS-fs (dm-56): node block address is NULL, nid: 25703, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.814879] F2FS-fs (dm-56): node block address is NULL, nid: 25704, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.815072] F2FS-fs (dm-56): node block address is NULL, nid: 25705, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.915168] F2FS-fs (dm-56): node block address is NULL, nid: 25706, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 21.931965] init: Service 'sem_daemon' (pid 4245) exited with status 0 oneshot service took 3.711000 seconds in background
[ 21.932011] init: Sending signal 9 to service 'sem_daemon' (pid 4245) process group...
[ 21.932446] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_4245
[ 21.946039] sec_nfc: release ese spi
[ 21.946060] sec_nfc: pinctrl[suspend]
[ 22.011452] [SDE_0] ss_disp_SVC_OCTA_show : [bb1412292c26e30bec0c8e]
[ 22.012606] [FACTORY] get_accel_cal_data: Reading Bytes Num -1!!!
[ 22.012613] [FACTORY] accel_cal_work_func: get_accel_cal_data fail (0)
[ 22.013723] [SSC_FAC] prox_send_cal_data: Cal data: 145
[ 22.132676] F2FS-fs (dm-56): node block address is NULL, nid: 25710, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.181158] F2FS-fs (dm-56): node block address is NULL, nid: 25711, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.200840] pca9481_read_adc: adc_ch=5, raw_adc=0x454, convert_val=1108000
[ 22.201332] CASS: Fatal error : VaultKeeper is not running. Exit
[ 22.201360] CASS: Disconnect ril daemon
[ 22.203556] init: Service 'cass' (pid 1353) exited with status 0
[ 22.203586] init: Sending signal 9 to service 'cass' (pid 1353) process group...
[ 22.203960] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_1353
[ 22.205547] init: starting service 'cass'...
[ 22.206956] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 22.206986] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 22.207673] max77705_fg_read_avg_current: avg_current=-1221mA
[ 22.208123] max77705_fg_read_avg_current: avg_current=-1221mA
[ 22.211518] init: ... started service 'cass' has pid 4974
[ 22.212075] init: processing action (vendor.thermal.amb.last=*) from (/vendor/etc/init/vendor.samsung.hardware.thermal@1.0-service.rc:18)
[ 22.219647] F2FS-fs (dm-56): node block address is NULL, nid: 25713, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.219889] F2FS-fs (dm-56): node block address is NULL, nid: 25714, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.220577] F2FS-fs (dm-56): node block address is NULL, nid: 25715, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.220784] F2FS-fs (dm-56): node block address is NULL, nid: 25716, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.221088] CASS: Start CASS Service for Qualcomm modem. v1.6.7
[ 22.221141] CASS: VaultKeeper is not ready. try again Retry cnt(1).
[ 22.239621] F2FS-fs (dm-56): node block address is NULL, nid: 25717, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.254083] F2FS-fs (dm-56): node block address is NULL, nid: 25718, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.258434] sec_argos:argos_pm_qos_notify() name:UFS, speed:241Mbps, prev level:0, request level:-1
[ 22.258451] sec_argos:argos_freq_lock() update cpu freq -1
[ 22.258457] set_freq_limit: cflm: id(3) freq(-1)
[ 22.258462] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 22.258488] cflm_update_current_freq: current freq: s(614400 ~ 1785600), g(633600 ~ 1881600), p(806400 ~ 2400000)
[ 22.259118] F2FS-fs (dm-56): node block address is NULL, nid: 25719, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.276389] [FACTORY] press_get_device_id: Timeout!!!
[ 22.276400] [FACTORY] press_get_device_id: device_id : 0,0,0,0
[ 22.276403] [FACTORY] press_get_device_id: No information
[ 22.276405] [FACTORY] press_get_device_id: Device ID - Unknown(Unknown)
[ 22.276408] [FACTORY] pressure_cal_work_func: pressure_cal = 0 (lsb)
[ 22.358669] F2FS-fs (dm-56): node block address is NULL, nid: 25722, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.467390] F2FS-fs (dm-56): node block address is NULL, nid: 25724, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.514549] F2FS-fs (dm-56): node block address is NULL, nid: 25725, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.516703] F2FS-fs (dm-56): node block address is NULL, nid: 25726, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 22.639865] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 22.670854] QSEECOM: qseecom_load_app: App with id 46 (vaultkeeper) now loaded
[ 22.672524] vaultkeeper: QSEECom_start_app done
[ 22.676052] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 22.677970] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 22.679177] vaultkeeper: QSEECom_send_cmd done(8580/0x0c000c03/VK)
[ 22.679965] QSEECOM: __qseecom_unload_app: App (46) is unloaded
[ 22.680052] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 22.680063] vaultkeeper: Failed cmdProcessing(-10032)
[ 22.680075] vaultkeeper: runCommand error.(-10032)
[ 22.680081] vaultkeeper: There is no VK ID
[ 22.680087] vaultkeeper: VaultKeeper service preparation is failed
[ 22.840544] !@ 8,0 r 48836 2191249 w 1425 25392 d 688 31288 f 0 287 iot 16664 0 th 0 0 0 pt 0 inp 0 0 22.810
[ 22.842983] !@Screen__Off(d) - 0 : dream(timeout) (timeout) groupId=0
[ 22.856834] !@sysfs_write +: /sys/class/power_supply/battery/lcd: 0
[ 22.856854] sec_bat_store_attrs : lcd_status (0)
[ 22.856876] !@sysfs_write -: /sys/class/power_supply/battery/lcd: 0
[ 22.856889] !@sysfs_write +: /sys/class/sec/tsp/input/enabled: 0
[ 22.856914] stm_ts_spi spi0.0: [sec_input] sec_tclm_position_history: [Now] LCIA1
[ 22.856924] stm_ts_spi spi0.0: [sec_input] sec_tclm_position_history: [Old] O1
[ 22.856951] stm_ts_spi spi0.0: [sec_input] mode:0000 tc:0 noise:0/0 ext_n:0 wet:0 wc:0(f:0) lp:3c fn:0061/0000 irqd:0 ED:0 PK:0 LS:0// v:0033 C01T0029.LCIA.L Cal_flag:1 fail_cnt:0 // id:0,0 tmp:31 // #2 2
[ 22.856964] stm_ts_spi spi0.0: [sec_input] stm_ts_set_lowpowermode: ENTER(3C)
[ 22.856971] stm_ts_spi spi0.0: [sec_input] Write UTC to Sponge = 684E45AB
[ 22.857366] kauditd_printk_skb: 5 callbacks suppressed
[ 22.857378] audit: type=1400 audit(1749960107.647:446): avc: denied { read } for pid=1505 comm="lmCoreThread" name="status" dev="sysfs" ino=120280 scontext=u:r:vendor_hal_perf_default:s0 tcontext=u:object_r:sysfs_battery:s0 tclass=file permissive=0
[ 22.858590] stm_ts_spi spi0.0: [sec_input] stm_ts_set_custom_library: Sponge (0x3c)
[ 22.859094] stm_ts_spi spi0.0: [sec_input] stm_ts_set_custom_library: sponge_inf_dump:0, sponge_dump_format:10, sponge_dump_event:37
[ 22.859699] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 62 00 00 00 00 01 00 00 00 00 00 00 00 00
[ 22.859732] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 31 01 00 00 00 00 00 00 00 00 00 00 00 00
[ 22.859909] stm_ts_spi spi0.0: [sec_input] sec_input_gesture_report: SCAN UNBLOCK: 225
[ 22.859991] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: lp changed
[ 22.863177] stm_ts_spi spi0.0: [sec_input] scrub_pos_show: id: 225
[ 22.864474] stm_ts_spi spi0.0: [sec_input] stm_ts_set_opmode: opmode 1
[ 22.865074] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 39 02 00 00 00 00 00 00 00 00 00 00 00 00
[ 22.869766] stm_ts_spi spi0.0: [sec_input] stm_ts_set_lowpowermode: write(1) read(1) retry 0
[ 22.869782] stm_ts_spi spi0.0: [sec_input] stm_ts_set_lowpowermode: end 0
[ 22.869823] !@sysfs_write -: /sys/class/sec/tsp/input/enabled: 0
[ 22.873965] servicemanager: Caller(pid=2420,uid=1000,sid=u:r:system_server:s0) Could not find android.hardware.graphics.allocator.IAllocator/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 22.884968] servicemanager: Caller(pid=2420,uid=1000,sid=u:r:system_server:s0) Could not find android.hardware.graphics.allocator.IAllocator/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 22.891460] audit: type=1400 audit(1749960107.683:447): avc: denied { read } for pid=2420 comm="PowerManagerSer" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=532 scontext=u:r:system_server:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0
[ 22.915414] audit: type=1400 audit(1749960107.707:448): avc: denied { read } for pid=2420 comm="PowerManagerSer" name="u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=532 scontext=u:r:system_server:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=0
[ 22.950837] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 22.950893] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x60xcmdPHS(1080x2340@60PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 22.952891] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 22.953133] [SDE_0] ss_panel_vrr_switch : +++ VRR: 60PHS -> 120HS
[ 22.953174] [SDE_0] ss_vrr : VRR: (prev: 60PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 22.953197] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [69] cur_md [0] base [0] smooth_frame [0]
[ 22.953564] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 69 during VRR
[ 22.953600] [SDE_0] ss_brightness_dcs : tx_time(0.379ms) level:69 candela:93CD hbm:0 acl:(1|1) itp:TABLE
[ 22.953634] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 22.958737] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (4774.629947 ms delta, 0/120)
[ 22.967025] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.264063 ms delta, 121/120)
[ 22.970440] [3][FG] 0080h,ffa0h,7f80h,ff01h,1900h,04c2h,5c94h,6351h,1fcdh,d092h,fbach,fa00h,0047h,5abch,5cb0h,04c8h,048ah,0602h,4b00h,5d00h,065bh,0148h,1fd9h,003ah,0544h,d1a6h,2311h,dc9ah,0af0h,0314h,02b0h,0482h,ffffh,6200h,2200h,053bh,1403h,1e05h,1fd9h,7ffch,2616h,cea4h,023ch,3850h,e3e1h,290eh,0400h,0001h,505dh,3291h,0d80h,ffffh,1d78h,0524h,0436h,05e0h,002bh,151fh,7d54h,fa00h,1680h,1008h,37d1h,e000h,07fch,0009h,0b00h,08dah,d1f1h,0181h,3922h,fe62h,62cfh,2441h,04deh,0b06h,0520h,04c8h,21d6h,04d1h,0000h,660fh,0015h,2b33h,7f80h,0005h,0007h,0600h,0000h,006bh,090ch,0055h,1449h,0204h,0007h,0000h,0e74h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0010h,0008h,ffffh,5cf4h,04c0h,1cb5h,01edh,06c6h,0008h,167eh,0000h,7fffh,ffffh,4aaeh,0000h,4648h,0000h,4000h,0000h,ab40h,0620h,ffffh,ffffh,ffffh,ffffh,209ch,0000h,0100h,0019h,3ffeh,5960h,feabh,d495h,0023h,2913h,d092h,5c5ah,
[ 22.973409] max77705_fg_read_current: current=-865mA
[ 22.974444] max77705_fg_read_avg_current: avg_current=-1195mA
[ 22.975622] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.573281 ms delta, 116/120)
[ 22.977066] max77705_fg_read_qh : QH(3060000)
[ 22.977083] [FG power] ISYS(1385mA),ISYSAVG(1598mA),VSYS(4082mV),IIN(462mA),VBYP(4712mV) QH(3060000 uah)
[ 22.977605] max77705_fg_read_current: current=-865mA
[ 22.978225] max77705_fg_read_avg_current: avg_current=-1195mA
[ 22.979712] max77705_fg_read_avg_current: avg_current=-1195mA
[ 22.980693] max77705_fg_read_current: current=-865mA
[ 22.991194] sec_nfc: scrn_off
[ 23.009430] max77705_fg_write_temp: temperature to (322, 0x2033)
[ 23.010899] max77705_fg_read_avg_current: avg_current=-1195mA
[ 23.010912] max77705_get_fg_soc: soc(925)
[ 23.010923] max77705_fg_get_scaled_capacity : capacity_max (984) scaled capacity(94.0), raw_soc(92.5)
[ 23.011178] max77705_fg_read_rawsoc: raw capacity (0.01%) (9256)
[ 23.011826] max77705_fg_read_qh : QH(3060000)
[ 23.011840] max77705_fg_check_vempty_recover_time: check vempty time(4, 18)
[ 23.011849] max77705_fg_get_atomic_capacity : NOW(94), OLD(94)
[ 23.011868] sec_bat_get_battery_info:Vnow(4171mV),Vavg(4192mV),Inow(-865mA),Iavg(-1195mA),Isysavg(1598mA),Imax(475mA),Ichg(550mA),SOC(94%),Tbat(322),Tusb(274),Tchg(469),Twpc(322),Tblkt(0),Tlrp(337),Tdchg(438)
[ 23.011905] sec_calc_ttf: cap: 3195, soc: 940, T: 1450, avg: -1195, cv soc: 1000, i: 16, val: 475
[ 23.011920] sec-battery samsung_mobile_device:battery: sec_bat_calc_time_to_full: T: 1510 sec, passed time: 1, current: 475
[ 23.011949] max77705_chg_set_wdtmr_kick: WDT Kick
[ 23.012718] max77705_get_charging_health: reg_data(0x3)
[ 23.013017] max77705_get_charging_health: details00(0xe0)
[ 23.013544] max77705_get_vbus_state: VBUS is valid. CHGIN < CHGIN_OVLO
[ 23.014641] max77705_get_charging_health: vbus_state: 0x3, chg_dtls: 0x1, iin: 462mA, vbyp: 4723mV, health: 1, abnormal: false
[ 23.014660] sec_bat_thermal_check: co_c3: 0, c3_c2: 50, c2_c1: 150, c1_no: 180, no_wa: 420, wa_ov: 500, tz(NORMAL)
[ 23.014675] sec_usb_temp_gap_check: NORMAL -> NORMAL
[ 23.014688] sec-battery samsung_mobile_device:battery: sec_bat_fullcharged_check: Charging Mode : Normal
[ 23.014697] sec_bat_set_current_event: current event before(0x100000), after(0x100000)
[ 23.014713] sec_bat_calculate_safety_time : SAFETY TIME RESET! DISCHARGING CNT(5)
[ 23.014725] sec_bat_check_mix_temp: mix_limit(0), temp(322), chg_temp(469), input_current(475)
[ 23.014734] sec_bat_check_afc_temp: cable_type(4), chg_limit(0)
[ 23.014744] sec_bat_check_lrp_step: st1(380), st2(900), recv_st1(370), recv_st2(380), lrp(337)
[ 23.014752] sec_bat_check_lrp_temp: force_check(1), ret(5000), lcd(0)
[ 23.014761] sec_bat_check_lrp_temp: cable_type(4), lrp_step(0), lrp(337)
[ 23.014768] sec_bat_check_temp_ctrl_by_cable: ct : USB
[ 23.019944] max77705 : [0xb1]0x7a, [0xb2]0xdf, [0xb3]0xe0, [0xb4]0x31, [0xb5]0x00, [0xb6]0xff, [0xb7]0x15, [0xb8]0x38, [0xb9]0x4b, [0xba]0x9f, [0xbb]0x1a, [0xbc]0x60, [0xbd]0xec, [0xbe]0x34, [0xbf]0x00, [0xc0]0x92, [0xc1]0x10, [0xc2]0x00, [0xc3]0x68,
[ 23.020586] F2FS-fs (dm-56): node block address is NULL, nid: 25727, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 23.021037] max77705_chg_monitor_work: [CHG] MODE(0x5), B2SOVRC(0x0), otg_on(0)
[ 23.021052] [PASS-THROUGH]:sb_pt_monitor: end - step = None
[ 23.021106] sec_bat_monitor_work: Status(Charging), mode(Normal), Health(Good), Cable(USB, USB, 1, 0), rp(1), HV(NONE)
[ 23.021116] sec_bat_monitor_work: lcd(0), slate(0), store(0), siop_level(100), sleep_mode(0), Cycle(50)
[ 23.021150] sec-battery samsung_mobile_device:battery: sec_bat_set_polling: Polling time 30/30 sec.
[ 23.021793] max77705_fg_read_current: current=-535mA
[ 23.022447] max77705_fg_read_avg_current: avg_current=-1195mA
[ 23.023078] max77705_fg_read_current: current=-535mA
[ 23.023088] max77705_fg_read_isys: isys_current=1187mA
[ 23.024302] max77705_fg_read_vcell: VCELL(4182)mV, data(0xd11a)
[ 23.024312] max77705_fg_read_avg_current: avg_current=-1195mA
[ 23.025321] pca9481_chg_get_property: CHARGER_STATUS(NO_CHARGING)
[ 23.025337] max77705_fg_read_current: current=-535mA
[ 23.026817] F2FS-fs (dm-56): node block address is NULL, nid: 25728, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 23.032251] max77705_fg_read_avg_current: avg_current=-1195mA
[ 23.035023] max77705_fg_read_current: current=-535mA
[ 23.035301] sec_bat_show_attrs : HV_CHARGER_STATUS(0), max_charger_power(2375), pd_max charge power(0)
[ 23.035820] healthd: efs_buf: 0 8 6 3365 3290 1 0 50 743 0 0 0 0 0 0 1 357 175 517 168 357 174 309 178 353 175 517 168 353 174 294 178 0 0 0 0 0 0 0 95 0 3347 43 1 3290 3290 0 0 3 0 0 0 0 0 0 0 357 302 0 0 485 313 309 273 333 302 0 0 484 313 294 273 0 0 0 0 0 0 0 0 0 0
[ 23.037901] healthd: battery l=94 v=4171 t=32.2 h=2 st=2 c=-535 fc=3700000 o=4 ca=-1195 ct=1 hv=0 sec=65536 sce=1048576 tx=0 chg=u
[ 23.039151] sec-battery samsung_mobile_device:battery: sec_bat_store_attrs: LRP(361)
[ 23.124740] F2FS-fs (dm-56): node block address is NULL, nid: 25729, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 23.128251] F2FS-fs (dm-56): node block address is NULL, nid: 25730, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 23.142225] [3][FG] 0080h,ffa0h,7f80h,ff01h,1900h,04c2h,5c90h,6351h,2033h,d11ah,fd53h,fa06h,0047h,5abch,5cb0h,04c8h,048ah,0602h,4b00h,5d00h,065bh,0148h,1fd9h,003ah,0544h,d1a5h,2311h,dc9ah,0af0h,0314h,02b0h,0482h,ffffh,6200h,2200h,053bh,1403h,1e05h,1fd9h,7ffch,2616h,cea4h,023ch,3850h,e3e1h,290eh,0400h,0001h,505dh,3291h,0d80h,ffffh,1d78h,0524h,0436h,05e0h,002bh,151fh,7d54h,fa06h,1680h,1008h,37d2h,e000h,07fch,0009h,0b00h,0ad4h,d1f1h,0181h,3922h,fe62h,62cfh,2441h,04deh,0b06h,0520h,04c8h,1f29h,04d1h,0000h,658fh,0015h,2b4bh,7f80h,0005h,0007h,0600h,0000h,006bh,090ch,0055h,1429h,0204h,0007h,0000h,0e70h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0010h,0008h,ffffh,5cf4h,04c0h,1b18h,ffffh,06d2h,0002h,000eh,0002h,fef4h,ffffh,4aaeh,0000h,4648h,0000h,4000h,0000h,ab40h,0620h,ffffh,ffffh,ffffh,ffffh,2096h,0000h,0000h,007bh,3ffeh,599ah,ff2dh,d495h,0022h,2910h,d11ah,5c5ah,
[ 23.144240] max77705_fg_read_current: current=-535mA
[ 23.145148] max77705_fg_read_avg_current: avg_current=-1185mA
[ 23.146416] max77705_fg_read_qh : QH(3060000)
[ 23.146428] [FG power] ISYS(1057mA),ISYSAVG(1590mA),VSYS(4062mV),IIN(462mA),VBYP(4723mV) QH(3060000 uah)
[ 23.146739] max77705_fg_read_rawsoc: raw capacity (0.01%) (9256)
[ 23.149322] !@new_battery_dump : 4171,-865,475,550,94,322,274,469,322,0,337,438,0,Charging,NO_CHARGING,Normal,Good,USB,1,Normal,0,0,9600,0x100000,0x10000,0x0,0,0,0000,0000,00000000,0,0,0,0,50,4251,9256,984,0,
[ 23.150229] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 23.221694] CASS: VaultKeeper is not ready. try again Retry cnt(3).
[ 23.269471] !@ColorFade entry displayId=0
[ 23.275984] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 23.276017] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [0] cur_md [0] base [0] smooth_frame [15]
[ 23.276440] [SDE_0] ss_brightness_dcs : tx_time(0.394ms) level:0 candela:2CD hbm:0 acl:(1|1) itp:TABLE
[ 23.277079] [SSC_FAC] light_panel_data_notify: br: 0(inx: 0)
[ 23.288867] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 23.292097] [SDE_0] ss_lux_store : lux : -1
[ 23.292110] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 23.293213] ALS_dbg : tsl2510_als_enable_store - en : 0, c : 0
[ 23.293225] ALS_dbg : tsl2510_als_stop
[ 23.293453] ALS_dbg : tsl2510_power_ctrl - onoff : 0, state : 1
[ 23.293516] ALS_dbg : tsl2510_power_ctrl - disable vdd_1p8 done, rc=0
[ 23.297922] !@display_state requestDisplayStateInternal: ON -> OFF displayId=0
[ 23.300579] stm_ts_spi spi0.0: [sec_input] enabled_store: device already disabled1
[ 23.300810] !@display_state - 1 : ON -> OFF (MAIN)
[ 23.302876] tsp: [sec_input] sec_cmd_store: push cmd: fod_enable,1,0,0,0
[ 23.302884] tsp: [sec_input] sec_cmd_store_function: cmd = fod_enable param = 1 0 0 0
[ 23.302900] stm_ts_spi spi0.0: [sec_input] fod_enable: on, fast:off, strict:off, 3C
[ 23.302908] stm_ts_spi spi0.0: [sec_input] stm_ts_set_custom_library: Sponge (0x3c)
[ 23.303775] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 23.303799] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [0] cur_md [0] base [0] smooth_frame [15]
[ 23.304513] stm_ts_spi spi0.0: [sec_input] stm_ts_set_custom_library: sponge_inf_dump:0, sponge_dump_format:10, sponge_dump_event:37
[ 23.304985] stm_ts_spi spi0.0: [sec_input] stm_ts_set_press_property: 0
[ 23.304997] stm_ts_spi spi0.0: [sec_input] stm_ts_set_fod_finger_merge: 1
[ 23.308564] [SDE_0] ss_brightness_dcs : tx_time(4.698ms) level:0 candela:2CD hbm:0 acl:(1|1) itp:TABLE
[ 23.308600] [SDE_0] ss_panel_off_pre : +
[ 23.308810] [SDE_0] ss_panel_data_read_gpara : [386] samsung,ldi_debug0_rx_cmds_revA, addr: 0x0A, off: 0(0x00), len: 1, buf: 9f
[ 23.309034] [SDE_0] ss_panel_data_read_gpara : [389] samsung,ldi_debug3_rx_cmds_revA, addr: 0x0E, off: 0(0x00), len: 1, buf: 80
[ 23.309471] [SDE_0] ss_panel_data_read_gpara : [388] samsung,ldi_debug2_rx_cmds_revA, addr: 0xEE, off: 0(0x00), len: 1, buf: 00
[ 23.309847] [SDE_0] ss_panel_data_read_gpara : [390] samsung,ldi_debug4_rx_cmds_revA, addr: 0x05, off: 0(0x00), len: 1, buf: 00
[ 23.310328] [SDE_0] ss_panel_data_read_gpara : [392] samsung,ldi_debug6_rx_cmds_revA, addr: 0xE9, off: 0(0x00), len: 2, buf: 00 00
[ 23.310721] [SDE_0] ss_print_rx_buf : samsung,gct_ecc_rx_cmds_revA: [cmdid 2] addr: 0xF8, off: 0x00, len: 3, data: 00 00 00
[ 23.311138] [SDE_0] ss_print_rx_buf : samsung,flash_loading_check_revA: [cmdid 2] addr: 0x91, off: 0x00, len: 1, data: 00
[ 23.311251] [SDE_0] ss_check_flash_done : FLASH GOOD [0]
[ 23.311261] [SDE_0] ss_read_ddi_debug_reg : pass: panel dbg: 9f 80 0 0 0 0 0
[ 23.311632] [SDE_0] ss_panel_data_read_gpara : [276] samsung,self_disp_debug_rx_cmds_revA, addr: 0x7F, off: 1(0x01), len: 4, buf: 00 83 1e 48
[ 23.311641] [SDE_0] self_display_debug : MEM_SUM_O(0x831E48)
[ 23.311675] [SDE_0] esd_irq_enable : [ESD] IRQ disabled (nosync, no_wakeup) with Input Mask(0x1), Current Mask(0x1)
[ 23.311682] [SDE_0] ss_set_panel_state : set panel state 0
[ 23.311701] [SDE_0] ss_panel_off_pre : -
[ 23.312000] [SDE_0] dsi_display_disable : ++
[ 23.312010] [SDE_0] dsi_panel_disable : ++
[ 23.312071] [SSC_FAC] light_panel_data_notify: panel_state 0(inx: 0, mode: 4)
[ 23.312384] [SSC_FAC] light_lcd_onoff_store: new_value 0(idx: 0)
[ 23.313854] [SDE_0][mDNIe] night_mode_store : [mDNIe] night_mode_store: enable = 0, idx = 11
[ 23.313865] [SDE_0] night_mode_store : error: Panel is not ready. Panel State(0)
[ 23.320740] [FACTORY] algo_lcd_onoff_store: lcd:1,0
[ 23.384211] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: event 43 11 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 23.452468] [SDE_0] ss_panel_off_post : +
[ 23.452501] [SDE_0] ss_panel_off_post : - : mdp underrun: 22
[ 23.452519] [SDE_0] dsi_panel_disable : --
[ 23.452532] [SDE_0] dsi_display_disable : --
[ 23.452541] [SDE_0] dsi_display_unprepare : ++
[ 23.468402] [SDE_0] dsi_display_unprepare : --
[ 23.470786] !@display_state - 1 : OFF (MAIN) took 169 ms
[ 23.532951] servicemanager: Notifying apexservice they don't (previously: do) have clients when we now have no record of a client
[ 23.533385] AidlLazyServiceRegistrar: Process has 0 (of 1 available) client(s) in use after notification apexservice has clients: 0
[ 23.533408] AidlLazyServiceRegistrar: Shutdown prevented by forcePersist override flag.
[ 23.533565] servicemanager: Notifying vendor.samsung.hardware.tlc.kg.ISehKg/default they don't (previously: do) have clients when we now have no record of a client
[ 23.533691] binder: 597:597 transaction failed 29201/-1, size 104-8 line 3292
[ 23.533714] audit: type=1400 audit(1749960108.323:449): avc: denied { call } for pid=597 comm="servicemanager" scontext=u:r:servicemanager:s0 tcontext=u:r:hal_kgta_default:s0 tclass=binder permissive=0
[ 23.547180] !@AlwaysOnDisplayEx: constructor hashCode=127316937
[ 23.570714] usb_notify: usb_sl_show secure_lock = 2
[ 23.643703] !@SystemSuspend: wakeup_count+
[ 23.643767] PM: active wakeup source: tftp_server_wakelock
[ 23.643799] PM: active wakeup source: tsp
[ 23.643824] PM: active wakeup source: nfc_wake_lock
[ 23.651154] [SDE_0] ss_panel_lpm_mode_store : [Panel LPM][DIPSLAY_0] Mode : 65538(10002) Index(0)
[ 23.651163] [SDE_0] ss_panel_set_lpm_mode : [Panel LPM][DIPSLAY_0]: ver(1) mode(2)brightness(0)
[ 23.652922] !@AlwaysOnDisplayEx: onStart hashCode=127316937
[ 23.668809] init: Sending signal 9 to service 'idmap2d' (pid 1817) process group...
[ 23.673186] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_1817
[ 23.673283] servicemanager: 'idmap' died
[ 23.673889] init: Control message: Processed ctl.stop for 'idmap2d' from pid: 2420 (system_server)
[ 23.674565] init: Service 'idmap2d' (pid 1817) received signal 9
[ 23.674599] init: Sending signal 9 to service 'idmap2d' (pid 1817) process group...
[ 23.674706] libprocessgroup: Failed to open /sys/fs/cgroup/uid_1000/pid_1817/cgroup.procs: No such file or directory
[ 23.679784] tsp: [sec_input] sec_cmd_store: push cmd: set_aod_rect,0,0,0,0
[ 23.679809] tsp: [sec_input] sec_cmd_store_function: cmd = set_aod_rect param = 0 0 0 0
[ 23.685467] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 23.702716] [FACTORY] algo_lcd_onoff_store: lcd:3,0
[ 23.715828] QSEECOM: qseecom_load_app: App with id 47 (vaultkeeper) now loaded
[ 23.720276] vaultkeeper: QSEECom_start_app done
[ 23.722986] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 23.724666] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 23.725744] vaultkeeper: QSEECom_send_cmd done(6741/0x0c000c03/VK)
[ 23.726751] QSEECOM: __qseecom_unload_app: App (47) is unloaded
[ 23.726885] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 23.726898] vaultkeeper: Failed cmdProcessing(-10032)
[ 23.726914] vaultkeeper: runCommand error.(-10032)
[ 23.726922] vaultkeeper: There is no VK ID
[ 23.726931] vaultkeeper: VaultKeeper service preparation is failed
[ 24.108306] !@display_state requestDisplayStateInternal: OFF -> DOZE displayId=0
[ 24.109597] !@display_state - 2 : OFF -> DOZE (MAIN)
[ 24.113916] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 24.113953] [SDE_0] dsi_display_prepare : ++
[ 24.114567] [drm:dsi_ctrl_isr_configure [msm_drm]] [msm-dsi-info]: dsi-ctrl-0: IRQ 419 registered
[ 24.117580] [FACTORY] algo_lcd_onoff_store: lcd:1,1
[ 24.132469] !@BOOT: **** SHOWN CALLED ****
[ 24.136897] stm_ts_spi spi0.0: [sec_input] enabled_store: device already disabled
[ 24.140487] [SDE_0] dsi_panel_prepare : ++
[ 24.140506] [SDE_0] dsi_panel_prepare : --
[ 24.140514] [SDE_0] dsi_display_prepare : primary --
[ 24.140521] [SDE_0] dsi_display_enable : ++
[ 24.140528] [SDE_0] dsi_panel_enable : ++
[ 24.140534] [SDE_0] ss_panel_on_pre : +
[ 24.140572] [SDE_0] ss_set_panel_state : set panel state 1
[ 24.140584] [SDE_0] samsung_panel_on_pre : +: ndx=0
[ 24.140592] [SDE_0] ss_panel_on_pre : -
[ 24.140599] [SDE_0] dsi_panel_enable : tx on_pre_cmd +
[ 24.140615] [SDE_0] dsi_panel_enable : tx on_pre_cmd -
[ 24.140621] [SDE_0] dsi_panel_enable : tx on_cmd +
[ 24.164275] !@ColorFade exit displayId=0
[ 24.165453] tsp: [sec_input] sec_cmd_store: push cmd: set_grip_data,1,45,7,24,702,24,2340
[ 24.165474] tsp: [sec_input] sec_cmd_store_function: cmd = set_grip_data param = 1 45 7 24 702 24 2340
[ 24.165525] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: flag: 04 (clr,lan,nor,edg,han)
[ 24.166210] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: 0x08 07,18,02,BE
[ 24.166232] stm_ts_spi spi0.0: [sec_input] set_grip_data: OK
[ 24.166502] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 C1 08 00 00 00 00 07 18 02 BE 00 00 00 00
[ 24.221856] CASS: VaultKeeper is not ready. try again Retry cnt(5).
[ 24.266459] [SDE_0] dsi_panel_enable : tx on_cmd -
[ 24.266488] [SDE_0] ss_panel_on_post : +
[ 24.267024] [SDE_0] samsung_panel_on_post : write 60HS gamma offset (73~510lv)
[ 24.267038] [SDE_0] self_mask_img_write : ++ (cur_rr: 120)
[ 24.272161] [SDE_0] self_mask_img_write : tx self mask --
[ 24.272306] [SDE_0] self_mask_img_write : --
[ 24.272318] [SDE_0] self_mask_on : ++ (1)
[ 24.272586] [SDE_0] self_mask_on : --
[ 24.272597] [SDE_0] samsung_panel_on_post : Need to write mafpc image data to DDI
[ 24.272641] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 24.272665] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [0] cur_md [0] base [0] smooth_frame [0]
[ 24.272962] [SDE_0] ss_brightness_dcs : tx_time(0.271ms) level:0 candela:2CD hbm:0 acl:(1|1) itp:TABLE
[ 24.273001] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 24.273012] [SSC_FAC] light_panel_data_notify: br: 0(inx: 0)
[ 24.273494] [SDE_0] ss_panel_on_post : FFC+OSC Setting for Dynamic MIPI Clock
[ 24.273507] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 24.276906] [SDE_0] esd_irq_enable : [ESD] IRQ enabled (nosync, no_wakeup) with Input Mask(0x1), Current Mask(0x0)
[ 24.276916] [SDE_0] ss_set_panel_state : set panel state 2
[ 24.276942] [SDE_0] ss_panel_on_post : -
[ 24.276950] [SDE_0] dsi_panel_enable : --
[ 24.276962] [SSC_FAC] light_panel_data_notify: panel_state 1(inx: 0, mode: 4)
[ 24.276969] [SDE_0] dsi_display_enable : --
[ 24.277161] [SDE_0] dsi_display_set_power : LP1 ++
[ 24.277174] [SDE_0] ss_panel_lpm_power_ctrl : ss_panel_lpm_power_ctrl: No panel power control for LPM
[ 24.277182] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] ++
[ 24.277203] [SDE_0] esd_irq_enable : [ESD] IRQ disabled (nosync, wakeup_source) with Input Mask(0x4), Current Mask(0x4)
[ 24.277215] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] update lpm cmd done(on)
[ 24.277224] [SDE_0] self_display_aod_enter : ++
[ 24.277464] [SDE_0] self_mask_on : ++ (0)
[ 24.277742] [SDE_0] self_mask_on : --
[ 24.277752] [SDE_0] self_display_aod_enter : --
[ 24.277760] [SDE_0] ss_panel_lpm_ctrl : tx lpm_on_pre
[ 24.277771] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] Send panel LPM cmds +++
[ 24.296614] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] Send panel LPM cmds ---
[ 24.296641] [SDE_0] ss_wait_for_te_gpio : ss_wait_for_te_gpio 2 times
[ 24.298335] [SDE_0] ss_wait_for_te_gpio_high : ss_wait_for_te_high success : 1673
[ 24.300528] [SDE_0] ss_wait_for_te_gpio_low : ss_wait_for_te_low success : 2169
[ 24.342268] [SDE_0] ss_wait_for_te_gpio_high : ss_wait_for_te_high success : 41669
[ 24.342290] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] Set wait_disp_on to true
[ 24.342299] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] panel_state: 2 -> LPM
[ 24.342307] [SDE_0] ss_set_panel_state : set panel state 3
[ 24.342346] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 24.342361] [SSC_FAC] light_panel_data_notify: panel_state 2(inx: 0, mode: 4)
[ 24.342847] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] En/Dis : Enable, LPM_MODE : HLPM, Hz : 30Hz, bl_level : 2NIT
[ 24.342856] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] --
[ 24.342867] [SDE_0] dsi_display_set_power : LP1 successful --
[ 24.342968] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 24.343418] [SDE_0] dsi_display_post_enable : ++
[ 24.343434] [SDE_0] dsi_display_post_enable : --
[ 24.343455] [SDE_0] ss_brightness_dcs : [Panel LPM]: set brightness.(0 level)->(2 cd)
[ 24.343878] [SDE_0] ss_set_panel_lpm_brightness : [Panel LPM] bl_level : 2NIT
[ 24.377639] !@display_state - 2 : DOZE (MAIN) took 268 ms
[ 24.384790] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 24.384817] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x60xcmdPHS(1080x2340@60PHS)
[ 24.385095] [SDE_0] ss_event_frame_update_pre : update mafpc
[ 24.385106] [SDE_0] ss_mafpc_img_write : ++(0)
[ 24.406563] [SDE_0] ss_mafpc_img_write : --(0)
[ 24.406876] [SDE_0] ss_mafpc_enable : Disable
[ 24.408791] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=60, clk_rate=1368000000
[ 24.408910] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 60PHS
[ 24.408922] [SDE_0] ss_panel_vrr_switch : error: error: panel_state(3), skip VRR (save VRR state)
[ 24.408938] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 24.409200] [SDE_0] ss_brightness_dcs : [Panel LPM]: set brightness.(0 level)->(2 cd)
[ 24.409450] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (1433.810572 ms delta, 0/60)
[ 24.413701] [SDE_0] ss_set_panel_lpm_brightness : [Panel LPM] bl_level : 2NIT
[ 24.413760] [SDE_0] ss_event_frame_update_post : self_grid [ON]
[ 24.413770] [SDE_0] ss_brightness_dcs : [Panel LPM]: set brightness.(0 level)->(2 cd)
[ 24.414098] [SDE_0] ss_event_frame_update_post : self_grid [OFF]
[ 24.414108] [SDE_0] ss_event_frame_update_post : flash_gamma_init_done: 0, flash_gamma_support: 0
[ 24.414115] [SDE_0] ss_event_frame_update_post : DISPLAY_ON
[ 24.414565] [SDE_0] ss_set_panel_lpm_brightness : [Panel LPM] bl_level : 2NIT
[ 24.443030] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (33.558073 ms delta, 29/60)
[ 24.476587] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (33.521407 ms delta, 29/60)
[ 24.476903] [drm:sde_core_perf_crtc_update:1098] [SDE_0] During VRR (0|0|1): keep max SDE core clock (200000000 -> 500000000 hz)
[ 24.483584] msm_vidc: err : ffffffff: codec: Mani msm_vidc_session_streamoff - 0
[ 24.484155] msm_vidc: err : ffffffff: codec: Mani streamoff successful
[ 24.491655] msm_vidc: err : ffffffff: codec: Mani msm_vidc_session_streamoff - 1
[ 24.492618] msm_vidc: err : ffffffff: codec: Mani streamoff successful
[ 24.492740] msm_vidc: err : ffffffff: codec: Mani msm_vidc_session_streamoff - 0
[ 24.493220] msm_vidc: err : ffffffff: codec: Mani streamoff successful
[ 24.606389] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 24.732265] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 24.763291] QSEECOM: qseecom_load_app: App with id 48 (vaultkeeper) now loaded
[ 24.764630] vaultkeeper: QSEECom_start_app done
[ 24.768118] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 24.770325] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 24.771452] vaultkeeper: QSEECom_send_cmd done(6008/0x0c000c03/VK)
[ 24.772131] QSEECOM: __qseecom_unload_app: App (48) is unloaded
[ 24.772214] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 24.772225] vaultkeeper: Failed cmdProcessing(-10032)
[ 24.772237] vaultkeeper: runCommand error.(-10032)
[ 24.772243] vaultkeeper: There is no VK ID
[ 24.772249] vaultkeeper: VaultKeeper service preparation is failed
[ 24.841384] !@ 8,0 r 48892 2192105 w 1556 31872 d 713 31412 f 0 292 iot 16836 0 th 0 0 0 pt 0 inp 0 0 24.811
[ 24.841898] !@ Read_top(KB): gle.android.gms(4641) 69344 droid.messaging(4894) 19348 pp.clockpackage(4952) 17320
[ 24.842078] !@ Write_top(KB): kworker/u16:6(271) 6236 system_server(2420) 1856 f2fs_ckpt-254:5(1153) 192
[ 25.086065] [kworke][0x29279ae6][04:01:49.880294] wlan: [1580:I:HIF] hif_pm_runtime_sync_resume: request runtime PM resume, rtpm_dbgid(16,RTPM_ID_SOC_IDLE_SHUTDOWN)
[ 25.086084] cnss: Runtime resume start
[ 25.086108] cnss: Resuming PCI link
[ 25.089745] msm_pcie_drv_resume: PCIe RC0: LTSSM_STATE: LTSSM_L1_IDLE
[ 25.089931] msm_pcie_drv_resume: PCIe RC0 Target GEN1, EP GEN1
[ 25.089935] msm_pcie_drv_resume: PCIe RC0 Current GEN1, 1 lanes
[ 25.089938] cnss: Set PCI link status to: 2
[ 25.089946] cnss: Setting MHI state: RESUME(7)
[ 25.090384] [kworke][0x2928df48][04:01:49.884618] wlan: [1580:I:PMO] pmo_core_psoc_send_host_wakeup_ind_to_fw: Host wakeup indication sent to fw
[ 25.096170] cnss: Runtime resume status: 0
[ 25.096182] [kworke][0x292a9233][04:01:49.890417] wlan: [1580:I:HDD] hdd_psoc_idle_timeout_callback: Psoc idle timeout elapsed; starting psoc shutdown
[ 25.096187] cnss: Doing idle shutdown
[ 25.096193] cnss: Posting event: IDLE_SHUTDOWN(14)-sync, state: 0xd26107 flags: 0x3
[ 25.096197] cnss: PM stay awake, state: 0xd26107, count: 1
[ 25.096251] cnss: Processing driver event: IDLE_SHUTDOWN-sync(14), state: 0xd26107
[ 25.097037] [kworke][0x292acdbf][04:01:49.891212] wlan: [269:E:WMI] wmi_unified_unregister_event_handler: event handler is not registered: evt id 0x1d01a
[ 25.097890] [kworke][0x292b119b][04:01:49.892116] wlan: [269:I:SPECTRAL] wlan_spectral_psoc_disable: Spectral feature is disabled
[ 25.098090] [schedu][0x292b1948][04:01:49.892219] wlan: [3337:E:SYS] Processing SYS MC STOP
[ 25.098781] [kworke][0x292b5487][04:01:49.893009] wlan: [269:E:HDD] hdd_sysfs_destroy_dump_in_progress_interface: could not get wifi kobject!
[ 25.098894] [kworke][0x292b574d][04:01:49.893045] wlan: [269:E:HDD] hdd_sysfs_destroy_wifi_root_obj: could not get wifi kobject!
[ 25.113918] cnss: Get IRQ number 336 for vector index 3
[ 25.114342] cnss: Get IRQ number 337 for vector index 4
[ 25.114615] cnss: Get IRQ number 338 for vector index 5
[ 25.114874] cnss: Get IRQ number 339 for vector index 6
[ 25.115133] cnss: Get IRQ number 340 for vector index 7
[ 25.115392] cnss: Get IRQ number 342 for vector index 9
[ 25.115646] cnss: Get IRQ number 344 for vector index 11
[ 25.116166] [kworke][0x29306bf7][04:01:49.910388] wlan: [269:I:WMI] WMI Stop
[ 25.116200] [kworke][0x29306ed7][04:01:49.910427] wlan: [269:I:HTC] htc_stop: endpoints cleanup
[ 25.116237] [kworke][0x293071a9][04:01:49.910464] wlan: [269:I:HTC] htc_stop: stopping hif layer
[ 25.121038] [kworke][0x2931d781][04:01:49.915235] wlan: [269:I:HTC] htc_stop: flush endpoints Tx lookup queue
[ 25.121064] [kworke][0x2931dbf9][04:01:49.915294] wlan: [269:I:HTC] htc_stop: resetting endpoints state
[ 25.125810] [kworke][0x29333f92][04:01:49.920036] wlan: [269:I:HIF] hif_event_history_deinit: SRNG events history de-initialized for group: 0
[ 25.125833] [kworke][0x293341c4][04:01:49.920065] wlan: [269:I:HIF] hif_event_history_deinit: SRNG events history de-initialized for group: 1
[ 25.125847] [kworke][0x293342d7][04:01:49.920079] wlan: [269:I:HIF] hif_event_history_deinit: SRNG events history de-initialized for group: 2
[ 25.125861] [kworke][0x293343e1][04:01:49.920093] wlan: [269:I:HIF] hif_event_history_deinit: SRNG events history de-initialized for group: 3
[ 25.125875] [kworke][0x293344ef][04:01:49.920107] wlan: [269:I:HIF] hif_event_history_deinit: SRNG events history de-initialized for group: 4
[ 25.125889] [kworke][0x293345ff][04:01:49.920121] wlan: [269:I:HIF] hif_event_history_deinit: SRNG events history de-initialized for group: 5
[ 25.125903] [kworke][0x2933470c][04:01:49.920135] wlan: [269:I:HIF] hif_event_history_deinit: SRNG events history de-initialized for group: 6
[ 25.141617] [kworke][0x2937e0c6][04:01:49.935839] wlan: [269:I:QDF] pktlogmod_exit: pkt_log module cleanup
[ 25.141643] [kworke][0x2937e393][04:01:49.935876] wlan: [269:I:QDF] pktlog_detach: detach pktlog resources
[ 25.141876] [kworke][0x2937f4fd][04:01:49.936108] wlan: [269:E:OSIF] os_if_spectral_netlink_deinit: Spectral feature is disabled
[ 25.150653] [kworke][0x293a873b][04:01:49.944884] wlan: [269:I:SPECTRAL] wlan_spectral_psoc_close: Spectral feature is disabled
[ 25.183216] [kworke][0x294411a3][04:01:49.977450] wlan: [269:I:GREEN_AP] wlan_green_ap_pdev_obj_destroy_notification: Deleting green ap pdev obj, green ap ctx: 0000000000000000, pdev: 0000000000000000
[ 25.183226] [kworke][0x2944129c][04:01:49.977463] wlan: [269:I:GREEN_AP] wlan_green_ap_pdev_obj_destroy_notification: green ap deletion successful
[ 25.187186] [kworke][0x29453b6d][04:01:49.981420] wlan: [269:I:HIF] hif_pci_disable_bus: X
[ 25.187216] cnss: Sending mode message, mode: OFF(4), state: 0xd26187
[ 25.196503] cnss: WLFW server exiting
[ 25.196554] cnss: Posting event: SERVER_EXIT(1), state: 0xda6187 flags: 0x0
[ 25.196680] cnss: Enable ADSP power collapse
[ 25.196684] cnss: Setting MHI state: POWER_OFF(4)
[ 25.222062] CASS: VaultKeeper is not ready. try again Retry cnt(7).
[ 25.230525] mhi mhi_1103_00.01.00: [E][mhi_unprepare_channel] Current EE: DISABLE Required EE Mask: 0x4 for chan: IPCR
[ 25.230638] mhi mhi_1103_00.01.00: [E][mhi_unprepare_channel] Current EE: DISABLE Required EE Mask: 0x4 for chan: IPCR
[ 25.250176] cnss: Suspending PCI link
[ 25.250283] msm_pcie_pm_suspend: PCIe RC0: PARF LTSSM_STATE: LTSSM_L1_IDLE
[ 25.250456] msm_pcie_pm_suspend: RC0: PME_TURNOFF_MSG is sent out
[ 25.258074] msm_pcie_pm_suspend: PCIe RC0: PARF LTSSM_STATE: LTSSM_L2_IDLE
[ 25.258096] msm_pcie_disable: PCIe: Assert the reset of endpoint of RC0.
[ 25.258463] cnss: Setting MHI state: DEINIT(1)
[ 25.258514] cnss: De-assert WLAN_EN GPIO successfully
[ 25.258517] cnss: Regulator vdd-wlan-rfa2 is being disabled
[ 25.258524] cnss: Regulator vdd-wlan-rfa1 is being disabled
[ 25.258530] cnss: Regulator vdd-wlan-dig is being disabled
[ 25.258535] cnss: Regulator vdd-wlan-aon is being disabled
[ 25.258552] cnss: Regulator wlan-ant-switch is being disabled
[ 25.258558] cnss: Regulator vdd-wlan-io is being disabled
[ 25.258584] cnss: Completed event: IDLE_SHUTDOWN(14), state: 0xda6101, ret: 0/0
[ 25.258598] cnss: Processing driver event: SERVER_EXIT(1), state: 0xda6101
[ 25.258601] cnss: QMI WLFW service disconnected, state: 0xda6100
[ 25.259094] cnss: PM relax, state: 0xd26100, count: 0
[ 25.259103] cnss: PM stay awake, state: 0xd26100, count: 1
[ 25.259106] cnss: PM relax, state: 0xd26100, count: 0
[ 25.277586] !@ check_set_fs_encrypt(1160) : erased(2)
[ 25.279380] init: processing action (sys.rdxd.create=1) from (/system/etc/init/rdxd.rc:18)
[ 25.281398] init: Encryption policy of /data/rdx_dump set to 409e7e6ff820047d3cb367064655d712 v2 modes 1/4 flags 0xa
[ 25.370367] [SDE_0] esd_irq_handler : now: 4294898632, threshold: 4294898657
[ 25.370398] [SDE_0] esd_irq_enable : [ESD] IRQ enabled (nosync, wakeup_source) with Input Mask(0x4), Current Mask(0x0)
[ 25.370420] [SDE_0] ss_esd_enable_event_work : Done
[ 25.778894] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 25.810815] QSEECOM: qseecom_load_app: App with id 49 (vaultkeeper) now loaded
[ 25.811811] vaultkeeper: QSEECom_start_app done
[ 25.816031] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 25.818628] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 25.820179] vaultkeeper: QSEECom_send_cmd done(3738/0x0c000c03/VK)
[ 25.821145] QSEECOM: __qseecom_unload_app: App (49) is unloaded
[ 25.821241] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 25.821254] vaultkeeper: Failed cmdProcessing(-10032)
[ 25.821271] vaultkeeper: runCommand error.(-10032)
[ 25.821277] vaultkeeper: There is no VK ID
[ 25.821284] vaultkeeper: VaultKeeper service preparation is failed
[ 25.850053] thermal_sys: thermal: cdev[thermal-cluster-1-2:4]
[ 25.850061] PM: Active wake lock:
[ 25.850093] PM: nfc_wake_lock: active_count(2), active_time(2670), total_time(6850)
[ 25.850508] fps_qbt2000_work_func_debug: ldo:1,ipc:1,wuhb:0,tz:1,type:QBT2608,int:0,0,rst:0
[ 26.010649] msm_vidc: err : ffffffff: codec: Entering suspend
[ 26.222241] CASS: VaultKeeper is not ready. try again Retry cnt(9).
[ 26.278947] !@ check_set_fs_encrypt(1184) : sys.rdxd.create 1
[ 26.362130] ts_print: tsens[0:626][1:657][2:633][3:639][4:650][5:650][6:670][7:598][8:609][9:602][10:609][11:752][12:865][13:769][14:571][15:568][16:633][17:591][18:612][19:609][20:612][21:550][22:520][23:526][24:578][25:609][26:550][27:516][28:526][29:540][30:513][31:530]
[ 26.362143] usb_notify: is_blocked type=2, disable_state=6
[ 26.362145] TCM: manager_usb_enum_state_check_work usb device is blocked. skip.
[ 26.362468] pmon: Pending Wakeup Sources: nfc_wake_lock
[ 26.604181] apexd: Deleting unused dm device com.android.btservices
[ 26.611349] apexd: Deleting unused dm device com.samsung.android.camera.qciq
[ 26.639368] apexd: Deleting unused dm device com.samsung.android.biometrics.fingerprint
[ 26.662492] apexd: Deleting unused dm device com.android.i18n
[ 26.685021] apexd: Deleting unused dm device com.android.runtime
[ 26.710923] apexd: Deleting unused dm device com.samsung.android.biometrics.face
[ 26.736634] apexd: Deleting unused dm device com.android.rkpd
[ 26.763108] apexd: Deleting unused dm device com.samsung.android.camera.unihal
[ 26.788274] apexd: Deleting unused dm device com.android.apex.cts.shim
[ 26.813983] apexd: Deleting unused dm device com.samsung.android.lifeguard
[ 26.826561] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 26.840505] apexd: Deleting unused dm device com.samsung.android.authfw.ta
[ 26.857547] QSEECOM: qseecom_load_app: App with id 50 (vaultkeeper) now loaded
[ 26.858469] vaultkeeper: QSEECom_start_app done
[ 26.861770] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 26.863767] !@ 8,0 r 48911 2192413 w 1558 31908 d 714 31416 f 0 293 iot 16888 0 th 0 0 0 pt 0 inp 0 0 26.833
[ 26.864144] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 26.865207] vaultkeeper: QSEECom_send_cmd done(1643/0x0c000c03/VK)
[ 26.865830] QSEECOM: __qseecom_unload_app: App (50) is unloaded
[ 26.865896] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 26.865907] vaultkeeper: Failed cmdProcessing(-10032)
[ 26.865919] vaultkeeper: runCommand error.(-10032)
[ 26.865926] vaultkeeper: There is no VK ID
[ 26.865934] vaultkeeper: VaultKeeper service preparation is failed
[ 26.866893] apexd: Deleting unused dm device com.samsung.android.shell
[ 26.891436] apexd: Deleting unused dm device com.samsung.android.spqr
[ 26.918626] apexd: Deleting unused dm device com.android.tzdata
[ 26.942633] apexd: Deleting unused dm device com.android.devicelock
[ 26.966304] apexd: Deleting unused dm device com.google.mainline.primary.libs
[ 26.973617] apexd: Deleting unused dm device com.android.virt
[ 26.981621] apexd: Deleting unused dm device com.android.vndk.v31
[ 27.008190] AidlLazyServiceRegistrar: Trying to shut down the service. No clients in use for any service in process.
[ 27.009059] servicemanager: Caller(pid=1169,uid=0,sid=u:r:apexd:s0) Unregistering apexservice
[ 27.009111] BpBinder: onLastStrongRef automatically unlinking death recipients:
[ 27.009471] AidlLazyServiceRegistrar: Unregistered all clients and exiting
[ 27.013276] init: Service 'apexd' (pid 1169) exited with status 0 oneshot service took 20.577000 seconds in background
[ 27.013339] init: Sending signal 9 to service 'apexd' (pid 1169) process group...
[ 27.013977] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_0/pid_1169
[ 27.202950] pca9481_read_adc: adc_ch=5, raw_adc=0x44c, convert_val=1100000
[ 27.210771] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 27.210951] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 27.212248] max77705_fg_read_avg_current: avg_current=-951mA
[ 27.213122] max77705_fg_read_avg_current: avg_current=-951mA
[ 27.215041] init: processing action (vendor.thermal.amb.last=*) from (/vendor/etc/init/vendor.samsung.hardware.thermal@1.0-service.rc:18)
[ 27.222493] CASS: VaultKeeper is not ready. try again Retry cnt(11).
[ 27.505675] [sec_input] key_event: 116, 1
[ 27.505740] [Input Booster] IB Trigger Press :: IB Uniq Id(0)
[ 27.505797] [Input Booster] Press State Func :::: Unique_Id(0)
[ 27.505815] set_freq_limit: cflm: id(1) freq(1190400)
[ 27.505829] cflm_freq_decision: input: type(1), min(1190400), max(0)
[ 27.505888] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1190400 ~ 2112000), p(1190400 ~ 2726400)
[ 27.506074] !@notifyKey(116), action=0
[ 27.506459] !@interceptKeyBeforeQueueing(116), action=0, interactive=false
[ 27.513714] cflm_freq_decision: input: type(0), min(1612800), max(0)
[ 27.513768] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1612800 ~ 2112000), p(1612800 ~ 2726400)
[ 27.515880] !@Screen__On - 0 : wakeUp: (uid: 1000 pid: 2420) (power_button) (10ms) groupId=0
[ 27.521263] !@handleInterceptActions(116), action=0, wmActions=0
[ 27.529895] tsp: [sec_input] sec_cmd_store: push cmd: set_sip_mode,0
[ 27.529929] tsp: [sec_input] sec_cmd_store_function: cmd = set_sip_mode param = 0
[ 27.530748] stm_ts_spi spi0.0: [sec_input] set_sip_mode: disable
[ 27.530774] stm_ts_spi spi0.0: [sec_input] set_sip_mode: OK
[ 27.531474] tsp: [sec_input] sec_cmd_store: push cmd: set_note_mode,0
[ 27.531495] tsp: [sec_input] sec_cmd_store_function: cmd = set_note_mode param = 0
[ 27.531929] stm_ts_spi spi0.0: [sec_input] set_note_mode: disable
[ 27.531952] stm_ts_spi spi0.0: [sec_input] set_note_mode: OK
[ 27.533464] tsp: [sec_input] sec_cmd_store: push cmd: set_grip_data,2,0
[ 27.533486] tsp: [sec_input] sec_cmd_store_function: cmd = set_grip_data param = 2 0
[ 27.533524] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: flag: 10 (clr,lan,nor,edg,han)
[ 27.533759] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: 0x09 00
[ 27.533949] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: 0x0A 00
[ 27.533969] stm_ts_spi spi0.0: [sec_input] set_grip_data: OK
[ 27.534426] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 C1 09 00 00 00 01 00 00 00 00 00 00 00 00
[ 27.534444] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 C1 0A 00 00 00 00 00 00 00 00 00 00 00 00
[ 27.535819] usb_notify: usb_sl_show secure_lock = 2
[ 27.564376] !@display_state requestDisplayStateInternal: DOZE -> ON displayId=0
[ 27.570940] !@display_state - 3 : DOZE -> ON (MAIN)
[ 27.574149] tsp: [sec_input] sec_cmd_store: push cmd: fod_enable,1,1,0,0
[ 27.574161] tsp: [sec_input] sec_cmd_store_function: cmd = fod_enable param = 1 1 0 0
[ 27.574179] stm_ts_spi spi0.0: [sec_input] fod_enable: on, fast:on, strict:off, 3C
[ 27.574188] stm_ts_spi spi0.0: [sec_input] stm_ts_set_custom_library: Sponge (0x3c)
[ 27.575143] stm_ts_spi spi0.0: [sec_input] stm_ts_set_custom_library: sponge_inf_dump:0, sponge_dump_format:10, sponge_dump_event:37
[ 27.575612] stm_ts_spi spi0.0: [sec_input] stm_ts_set_press_property: 1
[ 27.575633] stm_ts_spi spi0.0: [sec_input] stm_ts_set_fod_finger_merge: 1
[ 27.581521] [SDE_0][mDNIe] night_mode_store : [mDNIe] night_mode_store: enable = 0, idx = 11
[ 27.581536] [SSC_FAC] light_lcd_onoff_store: new_value 1(idx: 0)
[ 27.581546] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 27.582583] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 27.595163] [SDE_0] dsi_display_set_power : ON ++
[ 27.595191] [SDE_0] ss_panel_lpm_power_ctrl : ss_panel_lpm_power_ctrl: No panel power control for LPM
[ 27.595198] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] ++
[ 27.595240] [SDE_0] esd_irq_enable : [ESD] IRQ disabled (nosync, no_wakeup) with Input Mask(0x4), Current Mask(0x4)
[ 27.595248] [SDE_0] self_display_aod_exit : ++
[ 27.601111] [SDE_0] self_mask_on : ++ (1)
[ 27.603243] [SDE_0] self_mask_on : --
[ 27.603251] [SDE_0] self_display_aod_exit : --
[ 27.603255] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] update lpm cmd done(off)
[ 27.608197] sec_nfc: scrn_on
[ 27.614646] !@ hermes_secnvm_service.cpp(430) HERMES_CMD_NOTIFY_LOCKED(17) cmd_ret 0
[ 27.617839] !@ hermes_command_handler.cpp(1488) timer expired and notified of locked state, clear cached kdm :2018
[ 27.629344] [FACTORY] algo_lcd_onoff_store: lcd:3,1
[ 27.637282] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 27.640331] F2FS-fs (dm-56): node block address is NULL, nid: 25734, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 27.641805] [SDE_0] ss_lux_store : lux : 0
[ 27.641815] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] Send panel LPM off cmds
[ 27.641823] [SDE_0] ss_set_panel_state : set panel state 2
[ 27.641861] [SDE_0] ss_vrr : VRR: (prev: 60PHS -> cur: 1080x2340@60PHS) brightness_lock (0)
[ 27.641879] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [0] cur_md [3] base [0] smooth_frame [15]
[ 27.641930] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 27.641945] [SSC_FAC] light_panel_data_notify: panel_state 1(inx: 0, mode: 4)
[ 27.642337] F2FS-fs (dm-56): node block address is NULL, nid: 25735, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 27.643014] [SDE_0] ss_brightness_dcs : tx_time(1.110ms) level:0 candela:2CD hbm:0 acl:(1|1) itp:TABLE
[ 27.643031] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 27.643101] [SSC_FAC] light_panel_data_notify: br: 0(inx: 0)
[ 27.643514] [SDE_0] ss_wait_for_te_gpio : ss_wait_for_te_gpio 2 times
[ 27.643766] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 27.647749] [SSC_FAC] light_hyst_store: (12) -1 < 0 < 10
[ 27.661548] [SDE_0] ss_wait_for_te_gpio_high : ss_wait_for_te_high success : 18024
[ 27.662073] [SDE_0] ss_wait_for_te_gpio_low : ss_wait_for_te_low success : 515
[ 27.662798] [sec_input] key_event: 116, 0
[ 27.662862] [Input Booster] IB Trigger Release :: Uniq ID(0)
[ 27.663204] !@notifyKey(116), action=1
[ 27.663308] !@interceptKeyBeforeQueueing(116), action=1, interactive=true
[ 27.673486] !@handleInterceptActions(116), action=1, wmActions=0
[ 27.681656] [SDE_0] ss_lux_show : lux : 0
[ 27.682973] [SDE_0] ss_adaptive_control_store : ACL value : 1
[ 27.683017] [SDE_0] ss_vrr : VRR: (prev: 60PHS -> cur: 1080x2340@60PHS) brightness_lock (0)
[ 27.683036] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [0] cur_md [3] base [0] smooth_frame [15]
[ 27.683259] [SDE_0] ss_brightness_dcs : tx_time(0.202ms) level:0 candela:2CD hbm:0 acl:(1|1) itp:TABLE
[ 27.695229] [SDE_0] ss_wait_for_te_gpio_high : ss_wait_for_te_high success : 33144
[ 27.695241] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] Set wait_disp_on to true
[ 27.695247] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] En/Dis : Disable, LPM_MODE : HLPM, Hz : 30Hz, bl_level : 2NIT
[ 27.695250] [SDE_0] ss_panel_lpm_ctrl : [Panel LPM] --
[ 27.695257] [SDE_0] dsi_display_set_power : ON successful --
[ 27.713024] !@display_state - 3 : ON (MAIN) took 142 ms
[ 27.714376] stm_ts_spi spi0.0: [sec_input] enabled_store: [sysinput@1.3-se] enable
[ 27.714395] stm_ts_spi spi0.0: [sec_input] stm_ts_set_lowpowermode: EXIT(3C)
[ 27.714936] stm_ts_spi spi0.0: [sec_input] stm_ts_get_touch_function: touch_functions:61 ic_status:0
[ 27.715492] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: event 43 05 01 00 00 00 00 01 00 00 00 00 00 00 00 00
[ 27.715514] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 31 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 27.715634] stm_ts_spi spi0.0: [sec_input] sec_input_gesture_report: SCAN UNBLOCK: 225
[ 27.715647] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: Normal changed
[ 27.716720] !@sysfs_write +: /sys/class/sec/tsp/input/enabled: 1
[ 27.716747] [sec_input] sec_input_enabled_store: device already enabled
[ 27.716838] !@sysfs_write -: /sys/class/sec/tsp/input/enabled: 1
[ 27.716903] !@sysfs_write +: /sys/class/power_supply/battery/lcd: 1
[ 27.716930] sec_bat_store_attrs : lcd_status (1)
[ 27.717004] !@sysfs_write -: /sys/class/power_supply/battery/lcd: 1
[ 27.717360] [Hyst QoS] PerfLock ::: Rqst Val(3000000), Type(0), Qos Value(3000000)
[ 27.717461] [Hyst QoS] PerfLock ::: Rqst Val(3000000), Type(0), Qos Value(3000000)
[ 27.720300] audit: type=1400 audit(1749960112.511:450): avc: denied { read } for pid=3183 comm="ndroid.systemui" name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=536 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0
[ 27.720553] stm_ts_spi spi0.0: [sec_input] stm_ts_set_opmode: opmode 0
[ 27.720800] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 39 02 00 00 00 00 00 00 00 00 00 00 00 00
[ 27.721770] [SDE_0] ss_vrr : VRR: (prev: 60PHS -> cur: 1080x2340@60PHS) brightness_lock (0)
[ 27.721781] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [3] base [0] smooth_frame [15]
[ 27.722158] [SDE_0] ss_brightness_dcs : tx_time(0.362ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 27.722828] [SSC_FAC] light_panel_data_notify: br: 12(inx: 0)
[ 27.726416] stm_ts_spi spi0.0: [sec_input] stm_ts_set_lowpowermode: write(0) read(0) retry 0
[ 27.726456] stm_ts_spi spi0.0: [sec_input] stm_ts_set_lowpowermode: end 0
[ 27.726468] stm_ts_spi spi0.0: [sec_input] sec_input_set_grip_type: re-init grip(0), edh:0, edg:45, lan:0
[ 27.726658] stm_ts_spi spi0.0: [sec_input] sec_input_set_temperature set temperature:32
[ 27.726872] stm_ts_spi spi0.0: [sec_input] stm_ts_input_open: read offset data(0x3c)
[ 27.727192] stm_ts_spi spi0.0: [sec_input] mode:0000 tc:0 noise:0/0 ext_n:0 wet:0 wc:0(f:0) lp:3c fn:0061/0000 irqd:0 ED:0 PK:0 LS:0// v:0033 C01T0029.LCIA.L Cal_flag:1 fail_cnt:0 // id:0,0 tmp:32 // #1 1
[ 27.727506] stm_ts_spi spi0.0: [sec_input] scrub_pos_show: id: 225
[ 27.732354] stm_ts_spi spi0.0: [sec_input] stm_ts_status_event: STATUS 59 1 0 0 0 0 0 0
[ 27.735272] [SDE_0] ss_event_frame_update_post : flash_gamma_init_done: 0, flash_gamma_support: 0
[ 27.735279] [SDE_0] ss_event_frame_update_post : DISPLAY_ON
[ 27.770401] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 27.770435] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x60xcmdPHS(1080x2340@60PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 27.773829] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 27.773979] [SDE_0] ss_panel_vrr_switch : +++ VRR: 60PHS -> 120HS
[ 27.774298] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 27.774364] [SDE_0] ss_vrr : VRR: (prev: 60PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 27.774393] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 27.774755] [SDE_0] ss_brightness_dcs : tx_time(0.334ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 27.774797] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 27.779236] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (3302.616405 ms delta, 0/120)
[ 27.784406] !@AlwaysOnDisplayEx: onDestroy hashCode=127316937
[ 27.785619] tsp: [sec_input] sec_cmd_store: push cmd: set_aod_rect,0,0,0,0
[ 27.785627] tsp: [sec_input] sec_cmd_store_function: cmd = set_aod_rect param = 0 0 0 0
[ 27.787593] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.332448 ms delta, 120/120)
[ 27.791808] [SDE_0][mDNIe] scenario_show : [mDNIe] Current APP : Current APP: UI_APP
[ 27.796093] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.472500 ms delta, 118/120)
[ 27.802479] audit: type=1400 audit(1749960112.595:451): avc: denied { read } for pid=3183 comm="ImageWallpaper" name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=536 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0
[ 27.826423] servicemanager: Caller(pid=3183,uid=10045,sid=u:r:platform_app:s0:c512,c768) Found vendor.samsung.frameworks.codecsolution.ISehCodecSolution/default in framework VINTF manifest.
[ 27.832787] msm_vidc: err : 76c23f88: ....d: Opening video instance: 2
[ 27.833657] msm_vidc: err : ffffffff: codec: Resuming from power collapse
[ 27.838149] [3][FG] 0080h,ffa0h,7f80h,ff01h,1900h,04c2h,5c8dh,6351h,2033h,d10eh,fbf8h,fb53h,0036h,5ab5h,5cc9h,04c8h,049bh,07d3h,4b00h,5d00h,0665h,0148h,1fddh,003ah,0544h,d1a6h,2311h,dc9ah,0af0h,0314h,02b0h,0493h,ffffh,6200h,2200h,053bh,1403h,1e05h,1fddh,8004h,2616h,cea4h,023ch,3850h,e3e1h,290eh,0400h,0001h,51abh,3312h,0d80h,ffffh,1d70h,0524h,0436h,05e0h,002bh,151fh,7d54h,fb53h,1680h,1008h,37edh,e000h,07fch,0009h,0b00h,0a7ah,d1f1h,0181h,3922h,fe5bh,62cfh,2441h,04deh,0a32h,0520h,04c7h,e583h,04d1h,0000h,65dch,0015h,2b6dh,7f80h,0005h,0007h,0600h,0000h,006bh,090ch,0055h,10a8h,0204h,0007h,0000h,0eabh,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0010h,0007h,ffffh,5cf8h,04c1h,121bh,0000h,0360h,029dh,0000h,0000h,0000h,000dh,4aaeh,0000h,4648h,0000h,4000h,0000h,ab40h,0620h,ffffh,ffffh,ffffh,ffffh,2096h,0000h,0100h,ef7ah,4002h,58e4h,fe37h,d491h,0022h,2910h,cf72h,5c5ah,
[ 27.838335] msm_vidc: fw: <VFW_E:HostDr:265d:904cff88:00> VenusHostDriver_ParseC2Command(908): QC_IMAGE_VERSION_STRING=video-firmware.2.4-4774f455582f669b4e1c6b24c4c991296de4479e
[ 27.838350] msm_vidc: fw: <VFW_E:HostDr:265d:904cff88:00> VenusHostDriver_ParseC2Command(909): IMAGE_VARIANT_STRING=PROD
[ 27.838360] msm_vidc: fw: <VFW_E:HostDr:265d:904cff88:00> VenusHostDriver_ParseC2Command(910): OEM_IMAGE_VERSION_STRING=hyd-lablnx446
[ 27.838512] msm_vidc: fw: <VFW_E:HostDr:265d:904cff88:00> VenusHostDriver_ParseC2Command(911): BUILD_TIME: Aug 5 2024 20:04:05
[ 27.840089] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: event 43 11 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[ 27.840314] max77705_fg_read_current: current=-1162mA
[ 27.843241] max77705_fg_read_avg_current: avg_current=-938mA
[ 27.844563] max77705_fg_read_qh : QH(3057500)
[ 27.844582] [FG power] ISYS(1535mA),ISYSAVG(1377mA),VSYS(4074mV),IIN(469mA),VBYP(4737mV) QH(3057500 uah)
[ 27.844986] max77705_fg_read_current: current=-1162mA
[ 27.845606] max77705_fg_read_avg_current: avg_current=-938mA
[ 27.846965] max77705_fg_read_avg_current: avg_current=-938mA
[ 27.847526] max77705_fg_read_current: current=-1162mA
[ 27.861639] msm_vidc: err : 76c23f88: h265d: msm_vidc_allow_s_fmt: type 9 not allowed in state START
[ 27.873125] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 27.879201] max77705_fg_write_temp: temperature to (325, 0x2080)
[ 27.881321] max77705_fg_read_vcell: VCELL(4148)mV, data(0xcf72)
[ 27.881339] max77705_fg_read_avg_current: avg_current=-938mA
[ 27.881347] max77705_get_fg_soc: soc(925)
[ 27.881358] max77705_fg_get_scaled_capacity : capacity_max (984) scaled capacity(94.0), raw_soc(92.5)
[ 27.881737] max77705_fg_read_rawsoc: raw capacity (0.01%) (9255)
[ 27.882270] max77705_fg_read_qh : QH(3057500)
[ 27.882282] max77705_fg_check_vempty_recover_time: check vempty time(4, 23)
[ 27.882291] max77705_fg_get_atomic_capacity : NOW(94), OLD(94)
[ 27.882312] sec_bat_get_battery_info:Vnow(4181mV),Vavg(4192mV),Inow(-1162mA),Iavg(-938mA),Isysavg(1377mA),Imax(475mA),Ichg(550mA),SOC(94%),Tbat(325),Tusb(274),Tchg(455),Twpc(325),Tblkt(0),Tlrp(361),Tdchg(433)
[ 27.882355] sec_calc_ttf: cap: 3195, soc: 940, T: 1450, avg: -938, cv soc: 1000, i: 16, val: 475
[ 27.882371] sec-battery samsung_mobile_device:battery: sec_bat_calc_time_to_full: T: 1510 sec, passed time: 8, current: 475
[ 27.882399] max77705_chg_set_wdtmr_kick: WDT Kick
[ 27.883641] max77705_get_charging_health: reg_data(0x3)
[ 27.883945] max77705_get_charging_health: details00(0xe0)
[ 27.884500] max77705_get_vbus_state: VBUS is valid. CHGIN < CHGIN_OVLO
[ 27.886757] max77705_get_charging_health: vbus_state: 0x3, chg_dtls: 0x1, iin: 469mA, vbyp: 4737mV, health: 1, abnormal: false
[ 27.886781] sec_bat_thermal_check: co_c3: 0, c3_c2: 50, c2_c1: 150, c1_no: 180, no_wa: 420, wa_ov: 500, tz(NORMAL)
[ 27.886796] sec_usb_temp_gap_check: NORMAL -> NORMAL
[ 27.886812] sec-battery samsung_mobile_device:battery: sec_bat_fullcharged_check: Charging Mode : Normal
[ 27.886821] sec_bat_set_current_event: current event before(0x100000), after(0x100000)
[ 27.886842] sec_bat_check_afc_temp: cable_type(4), chg_limit(0)
[ 27.886852] sec_bat_check_lrp_step: st1(380), st2(900), recv_st1(360), recv_st2(380), lrp(361)
[ 27.886862] sec_bat_check_lrp_temp: force_check(0), ret(5000), lcd(1)
[ 27.886870] sec_bat_check_lrp_temp: cable_type(4), lrp_step(0), lrp(361)
[ 27.886878] sec_bat_check_temp_ctrl_by_cable: ct : USB
[ 27.897441] max77705 : [0xb1]0x7a, [0xb2]0xdf, [0xb3]0xe0, [0xb4]0x31, [0xb5]0x00, [0xb6]0xff, [0xb7]0x15, [0xb8]0x38, [0xb9]0x4b, [0xba]0x9f, [0xbb]0x1a, [0xbc]0x60, [0xbd]0xec, [0xbe]0x34, [0xbf]0x00, [0xc0]0x92, [0xc1]0x10, [0xc2]0x00, [0xc3]0x68,
[ 27.898032] max77705_chg_monitor_work: [CHG] MODE(0x5), B2SOVRC(0x0), otg_on(0)
[ 27.898047] [PASS-THROUGH]:sb_pt_monitor: end - step = None
[ 27.898096] sec_bat_monitor_work: Status(Charging), mode(Normal), Health(Good), Cable(USB, USB, 1, 0), rp(1), HV(NONE)
[ 27.898106] sec_bat_monitor_work: lcd(1), slate(0), store(0), siop_level(100), sleep_mode(0), Cycle(50)
[ 27.898138] sec-battery samsung_mobile_device:battery: sec_bat_set_polling: Polling time 10/30 sec.
[ 27.898716] max77705_fg_read_current: current=-1162mA
[ 27.900974] max77705_fg_read_avg_current: avg_current=-938mA
[ 27.902545] max77705_fg_read_current: current=-1162mA
[ 27.904044] max77705_fg_read_avg_current: avg_current=-938mA
[ 27.905563] QSEECOM: qseecom_load_app: App with id 51 (vaultkeeper) now loaded
[ 27.906860] pca9481_chg_get_property: CHARGER_STATUS(NO_CHARGING)
[ 27.909171] max77705_fg_read_current: current=-1162mA
[ 27.909323] vaultkeeper: QSEECom_start_app done
[ 27.910505] max77705_fg_read_avg_current: avg_current=-938mA
[ 27.912477] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 27.912614] max77705_fg_read_current: current=-1239mA
[ 27.912808] sec_bat_show_attrs : HV_CHARGER_STATUS(0), max_charger_power(2375), pd_max charge power(0)
[ 27.913143] healthd: efs_buf: 0 8 6 3365 3290 1 0 50 743 0 0 0 0 0 0 1 357 175 517 168 357 174 309 178 353 175 517 168 353 174 294 178 0 0 0 0 0 0 0 95 0 3347 43 1 3290 3290 0 0 3 0 0 0 0 0 0 0 357 302 0 0 485 313 309 273 333 302 0 0 484 313 294 273 0 0 0 0 0 0 0 0 0 0
[ 27.914247] healthd: battery l=94 v=4181 t=32.5 h=2 st=2 c=-1162 fc=3700000 o=4 ca=-938 ct=1 hv=0 sec=65536 sce=1048576 tx=0 chg=u
[ 27.914383] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 27.914936] sec-battery samsung_mobile_device:battery: sec_bat_store_attrs: LRP(363)
[ 27.916754] vaultkeeper: QSEECom_send_cmd done(3064/0x0c000c03/VK)
[ 27.917625] QSEECOM: __qseecom_unload_app: App (51) is unloaded
[ 27.917720] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 27.917731] vaultkeeper: Failed cmdProcessing(-10032)
[ 27.917744] vaultkeeper: runCommand error.(-10032)
[ 27.917750] vaultkeeper: There is no VK ID
[ 27.917756] vaultkeeper: VaultKeeper service preparation is failed
[ 27.917762] vaultkeeper: Restart VaultKeeper after termination
[ 27.919091] init: Service 'vaultkeeper' (pid 4022) exited with status 255
[ 27.919129] init: Sending signal 9 to service 'vaultkeeper' (pid 4022) process group...
[ 27.919596] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_4022
[ 27.921354] init: starting service 'vaultkeeper'...
[ 27.927779] PROCA: file path /system/bin/init and cert app name /vendor/bin/vaultkeeperd doesn't match
[ 27.927801] PROCA: Certificate /vendor/bin/vaultkeeperd doesn't relate to task.
[ 27.927945] init: ... started service 'vaultkeeper' has pid 5205
[ 27.932944] PROCA: PROCA certificate was found for task 5205
[ 27.933093] PROCA: Task descriptor for task 5205 was created
[ 27.933101] PROCA: Task 5205 has application name /vendor/bin/vaultkeeperd
[ 27.951036] PROCA: Destroying proca task descriptor for task 4022
[ 27.977610] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 27.983359] stm_ts_spi spi0.0: [sec_input] [P] tID:0.0 z:3 major:4 minor:3 loc:C.C tc:1 type:0 noise:(0,00), nlvl:2, maxS:64, hid:0, fid:0
[ 27.983545] [Input Booster] IB Trigger Press :: IB Uniq Id(1)
[ 27.983568] [Input Booster] Press State Func :::: Unique_Id(1)
[ 27.983582] set_freq_limit: cflm: id(1) freq(1190400)
[ 27.983593] cflm_freq_decision: input: type(1), min(1190400), max(0)
[ 27.983610] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1612800 ~ 2112000), p(1612800 ~ 2726400)
[ 27.983889] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 28.020202] F2FS-fs (dm-56): node block address is NULL, nid: 25739, ino: 0, blk_addr: 0, version: 0, flag: 0x0
[ 28.022125] [3][FG] 0080h,ffa0h,7f80h,ff01h,1900h,04c2h,5c8dh,6351h,2080h,cf66h,f9ceh,fb4fh,0036h,5ab5h,5cc9h,04c8h,049bh,07d3h,4b00h,5d00h,0665h,0148h,1fdeh,003ah,0544h,d1a4h,2311h,dc9ah,0af0h,0314h,02b0h,0493h,ffffh,6200h,2200h,053bh,1403h,1e05h,1fddh,8004h,2616h,cea4h,023ch,3850h,e3e1h,290eh,0400h,0001h,51abh,3312h,0d80h,ffffh,1d70h,0524h,0436h,05e0h,002bh,151fh,7d54h,fb4fh,1680h,1008h,37eeh,e000h,07fch,0009h,0b00h,0c70h,d1f1h,0181h,3922h,fe5bh,62cfh,2441h,04deh,0a3bh,0520h,04c7h,dfb3h,04d1h,0000h,66cdh,0015h,2b4bh,7f80h,0005h,0007h,0600h,0000h,006bh,090ch,0055h,10a9h,0204h,0007h,0000h,0ea4h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0010h,0006h,ffffh,5cf8h,04c2h,1298h,0000h,0000h,0855h,1540h,1fffh,04b7h,0002h,4aaeh,0000h,4648h,0000h,4000h,0000h,ab40h,0620h,ffffh,ffffh,ffffh,ffffh,2082h,0000h,0000h,ee49h,4002h,58dfh,fe1ah,d491h,0022h,2910h,cf66h,5c5ah,
[ 28.024491] max77705_fg_read_current: current=-1239mA
[ 28.025373] max77705_fg_read_avg_current: avg_current=-942mA
[ 28.026068] [Input Booster] Press Timeout Func :::: Unique_Id(0) Tail_Time(0)
[ 28.026259] [Input Booster] Press Timeout Func :::: 0's TV No Exist(1)
[ 28.026690] [Input Booster] Press Timeout Func :::: 0's TV No Exist(3)
[ 28.026710] set_freq_limit: cflm: id(1) freq(1171200)
[ 28.026724] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 28.026743] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1612800 ~ 1996800), p(1612800 ~ 2515200)
[ 28.026871] [Input Booster] Del Ib Instance's Id : 0
[ 28.027113] max77705_fg_read_qh : QH(3057500)
[ 28.027126] [FG power] ISYS(1738mA),ISYSAVG(1383mA),VSYS(4112mV),IIN(468mA),VBYP(4723mV) QH(3057500 uah)
[ 28.027774] max77705_fg_read_rawsoc: raw capacity (0.01%) (9255)
[ 28.030097] !@new_battery_dump : 4181,-1162,475,550,94,325,274,455,325,0,361,433,0,Charging,NO_CHARGING,Normal,Good,USB,1,Normal,0,0,9600,0x100000,0x10000,0x0,0,0,0000,0000,00000000,0,0,0,0,50,4251,9255,984,0,
[ 28.108828] stm_ts_spi spi0.0: [sec_input] [R] tID:0 loc:C.C dd:-836,-996 mc:14 tc:0 p:0 noise:(0,00) nlvl:4, maxS:99, hid:0, fid:0
[ 28.108966] [Input Booster] IB Trigger Release :: Uniq ID(1)
[ 28.182163] [Input Booster] Press Timeout Func :::: Unique_Id(1) Tail_Time(300)
[ 28.182210] [Input Booster] Release State Func :::: Unique_Id(1) Rel_Flag(1)
[ 28.182229] set_freq_limit: cflm: id(1) freq(1075200)
[ 28.182240] cflm_freq_decision: input: type(1), min(1075200), max(0)
[ 28.182265] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1612800 ~ 1996800), p(1612800 ~ 2515200)
[ 28.182529] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 28.222811] CASS: VaultKeeper is not ready. try again Retry cnt(13).
[ 28.494822] stm_ts_spi spi0.0: [sec_input] [P] tID:0.1 z:10 major:11 minor:4 loc:C.C tc:1 type:0 noise:(0,00), nlvl:2, maxS:104, hid:0, fid:0
[ 28.494993] [Input Booster] IB Trigger Press :: IB Uniq Id(2)
[ 28.495013] [Input Booster] Press State Func :::: Unique_Id(2)
[ 28.495026] set_freq_limit: cflm: id(1) freq(1171200)
[ 28.495036] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 28.495057] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1612800 ~ 1996800), p(1612800 ~ 2515200)
[ 28.495158] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 28.506124] [Input Booster] Release Timeout Func :::: Unique_Id(1)
[ 28.506788] set_freq_limit: cflm: id(1) freq(1171200)
[ 28.506800] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 28.506817] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1612800 ~ 1881600), p(1612800 ~ 2400000)
[ 28.507051] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 28.507174] [Input Booster] Del Ib Instance's Id : 1
[ 28.514206] cflm_freq_decision: input: type(0), min(-1), max(0)
[ 28.514246] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 1996800), p(1171200 ~ 2515200)
[ 28.607010] [SSC_FAC] light_copr_debug_work_func: 228,240,238,189,217,208,228,241,238,225,238,235
[ 28.653304] stm_ts_spi spi0.0: [sec_input] [R] tID:0 loc:C.C dd:67,-1369 mc:18 tc:0 p:0 noise:(0,00) nlvl:4, maxS:127, hid:0, fid:0
[ 28.653687] [Input Booster] IB Trigger Release :: Uniq ID(2)
[ 28.672225] init: Service 'sem_hal' (pid 4321) exited with status 0 oneshot service took 10.215000 seconds in background
[ 28.672285] init: Sending signal 9 to service 'sem_hal' (pid 4321) process group...
[ 28.672799] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_4321
[ 28.696319] [Input Booster] Press Timeout Func :::: Unique_Id(2) Tail_Time(300)
[ 28.696361] [Input Booster] Release State Func :::: Unique_Id(2) Rel_Flag(1)
[ 28.696376] set_freq_limit: cflm: id(1) freq(1075200)
[ 28.696384] cflm_freq_decision: input: type(1), min(1075200), max(0)
[ 28.696417] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1075200 ~ 1996800), p(1075200 ~ 2515200)
[ 28.696799] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 28.698087] [SDE_0] esd_irq_enable : [ESD] IRQ enabled (nosync, no_wakeup) with Input Mask(0x4), Current Mask(0x0)
[ 28.698093] [SDE_0] ss_esd_enable_event_work : Done
[ 28.698148] [SDE_0] esd_irq_handler : now: 4294899464, threshold: 4294899489
[ 28.717018] audit: type=1400 audit(1749960113.507:452): avc: denied { read } for pid=3183 comm="ndroid.systemui" name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=536 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0
[ 28.864386] !@ 8,0 r 48927 2192717 w 1636 32748 d 817 32480 f 0 304 iot 16992 0 th 0 0 0 pt 0 inp 0 0 28.834
[ 28.864658] !@ Read_top(KB): oid.mdecservice(4848) 200 snap_utility_64(4331) 148 droid.messaging(4894) 96
[ 28.864711] !@ Write_top(KB): f2fs_ckpt-254:5(1153) 420 system_server(2420) 196 jbd2/sda5-8(1040) 32
[ 28.948601] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 28.983806] QSEECOM: qseecom_load_app: App with id 52 (vaultkeeper) now loaded
[ 28.984733] vaultkeeper: QSEECom_start_app done
[ 28.988146] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 28.990731] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 28.991915] vaultkeeper: QSEECom_send_cmd done(1427/0x0c000c03/VK)
[ 28.992665] QSEECOM: __qseecom_unload_app: App (52) is unloaded
[ 28.992787] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 28.992798] vaultkeeper: Failed cmdProcessing(-10032)
[ 28.992814] vaultkeeper: runCommand error.(-10032)
[ 28.992819] vaultkeeper: There is no VK ID
[ 28.992828] vaultkeeper: VaultKeeper service preparation is failed
[ 29.018107] [Input Booster] Release Timeout Func :::: Unique_Id(2)
[ 29.019821] set_freq_limit: cflm: id(1) freq(-1)
[ 29.019838] cflm_freq_decision: input: type(1), min(-1), max(0)
[ 29.019890] cflm_update_current_freq: current freq: s(614400 ~ 1785600), g(633600 ~ 2112000), p(806400 ~ 2726400)
[ 29.020074] [Hyst QoS] Input Booster ::: Rqst Val(0), Type(0), Qos Value(3000000)
[ 29.020201] [Input Booster] Del Ib Instance's Id : 2
[ 29.178182] msm_watchdog_data - pet: 29.178163 / last_pet: 19.694152 (delta: 9.484010)
[ 29.178554] (virq:irq_count)- GICv3:IPI(1):183707 GICv3:IPI(6):74980 GICv3:IPI(2):65190 GICv3:arch_timer(11):60459 GICv3:ufshcd(31):46041 GICv3:i2c_geni(54):13600 GICv3:gpi_dma800000_gpii0(71):11053 GICv3:ipcc_0(28):5482 GICv3:c263000.thermal-sensor(223):3942 GICv3:apps_rsc(34):3261
[ 29.178613] (cpu:irq_count)- 0:148017 1:35327 2:33084 3:27459 4:67602 5:58849 6:58587 7:62276
[ 29.178646] (ipi:irq_count)- 0:183709 1:65190 2:0 3:0 4:0 5:74980 6:0
[ 29.218107] tsp: [sec_input] sec_cmd_store: push cmd: set_grip_data,1,45,36,36,0,36,2340
[ 29.218119] tsp: [sec_input] sec_cmd_store_function: cmd = set_grip_data param = 1 45 36 36 0 36 2340
[ 29.218138] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: flag: 04 (clr,lan,nor,edg,han)
[ 29.218721] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: 0x08 24,24,00,00
[ 29.218760] stm_ts_spi spi0.0: [sec_input] set_grip_data: OK
[ 29.219002] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 C1 08 00 00 00 00 24 24 00 00 00 00 00 00
[ 29.223041] CASS: VaultKeeper is not ready. try again Retry cnt(15).
[ 29.256624] stm_ts_spi spi0.0: [sec_input] [P] tID:0.2 z:7 major:8 minor:6 loc:C.C tc:1 type:0 noise:(0,00), nlvl:2, maxS:104, hid:0, fid:0
[ 29.256773] [Input Booster] IB Trigger Press :: IB Uniq Id(3)
[ 29.256813] [Input Booster] Press State Func :::: Unique_Id(3)
[ 29.256826] set_freq_limit: cflm: id(1) freq(1171200)
[ 29.256836] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 29.256883] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 1996800), p(1171200 ~ 2515200)
[ 29.257139] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 29.265515] stm_ts_spi spi0.0: [sec_input] sec_input_gesture_report: FOD PRESS: 15
[ 29.265546] stm_ts_spi spi0.0: [sec_input] stm_ts_gesture_event: FOD PRESS
[ 29.266669] [VIB] functions_show
[ 29.266677] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.266716] cs40l26 56-0040: sec_vib_inputff_get_current_temp temperature : 0
[ 29.266720] cs40l26 56-0040: cs40l26_set_gain:gain(4000), gain_pct(40)
[ 29.266741] [VIB] functions_show
[ 29.266744] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.266763] cs40l26 56-0040: cs40l26_resume: Disabling hibernation
[ 29.266772] cs40l26 56-0040: cs40l26_upload_effect: effect ID = 0 len=2
[ 29.267208] i2c_geni a84000.i2c: i2c error :-107
[ 29.267235] cs40l26 56-0040: Failed to write to 0x13020, attempt(s) = 1
[ 29.267311] stm_ts_spi spi0.0: [sec_input] scrub_pos_show: id: 15
[ 29.271557] cs40l26 56-0040: cs40l26_pm_state_transition PM state: PREVENT_HIBERNATE
[ 29.271612] cs40l26 56-0040: cs40l26_set_gain_worker: gain = 40%
[ 29.272682] cs40l26 56-0040: Wakesource detected (ANY)
[ 29.274890] cs40l26 56-0040: I2C event woke device from hibernate
[ 29.275919] cs40l26 56-0040: cs40l26_upload_worker SEP index(1)
[ 29.275935] cs40l26 56-0040: cs40l26_upload_worker Index(10) effect
[ 29.277195] cs40l26 56-0040: cs40l26_upload_worker: ID = 0, index = 0x0100000A, duration = 0ms
[ 29.278118] cs40l26 56-0040: Total number of waveforms = 143
[ 29.278540] [VIB] functions_show
[ 29.278559] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.278707] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 1
[ 29.280610] cs40l26 56-0040: Mailbox: AWAKE
[ 29.281317] cs40l26 56-0040: Reached end of queue
[ 29.282594] cs40l26 56-0040: cs40l26_vibe_start_worker CS40L26_START_PLAYBACK duration = 0ms
[ 29.284099] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_PLAYBACK)->(VIBE_STATE_HAPTIC) effects_in_flight(1) asp_enable(0)
[ 29.314391] cs40l26 56-0040: Mailbox: COMPLETE_MBOX
[ 29.314432] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_COMPLETE)->(VIBE_STATE_STOPPED) effects_in_flight(0) asp_enable(0)
[ 29.315218] cs40l26 56-0040: Reached end of queue
[ 29.323403] stm_ts_spi spi0.0: [sec_input] [R] tID:0 loc:C.C dd:71,19 mc:7 tc:0 p:0 noise:(0,00) nlvl:4, maxS:133, hid:0, fid:0
[ 29.323453] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event DB 01 01 00 16 01 00 00 00 00 00 00 00 00 00 00
[ 29.323607] [Input Booster] IB Trigger Release :: Uniq ID(3)
[ 29.385972] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 29.386062] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 29.386079] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 29.454109] [Input Booster] Press Timeout Func :::: Unique_Id(3) Tail_Time(300)
[ 29.454157] [Input Booster] Release State Func :::: Unique_Id(3) Rel_Flag(1)
[ 29.454175] set_freq_limit: cflm: id(1) freq(1075200)
[ 29.454186] cflm_freq_decision: input: type(1), min(1075200), max(0)
[ 29.454207] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1075200 ~ 2112000), p(1075200 ~ 2726400)
[ 29.454467] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 29.625397] stm_ts_spi spi0.0: [sec_input] [P] tID:0.3 z:15 major:12 minor:9 loc:C.C tc:1 type:0 noise:(0,00), nlvl:2, maxS:128, hid:0, fid:0
[ 29.625528] [Input Booster] IB Trigger Press :: IB Uniq Id(4)
[ 29.625568] [Input Booster] Press State Func :::: Unique_Id(4)
[ 29.625582] set_freq_limit: cflm: id(1) freq(1171200)
[ 29.625593] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 29.625638] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 2112000), p(1171200 ~ 2726400)
[ 29.625766] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 29.628977] [SSC_FAC] light_copr_debug_work_func: 241,241,241,202,227,219,244,244,244,245,245,245
[ 29.630200] [VIB] functions_show
[ 29.630208] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.630239] cs40l26 56-0040: sec_vib_inputff_get_current_temp temperature : 0
[ 29.630242] cs40l26 56-0040: cs40l26_set_gain:gain(4000), gain_pct(40)
[ 29.630263] [VIB] functions_show
[ 29.630265] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.630273] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 29.630275] cs40l26 56-0040: cs40l26_erase_effect: effect ID = 0
[ 29.630305] cs40l26 56-0040: cs40l26_set_gain_worker: gain = 40%
[ 29.630949] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 29.630966] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 29.630982] cs40l26 56-0040: cs40l26_erase_worker: effect ID = 0, index = 0X100000a
[ 29.632869] cs40l26 56-0040: cs40l26_upload_effect: effect ID = 0 len=2
[ 29.632941] cs40l26 56-0040: cs40l26_upload_worker SEP index(1)
[ 29.632956] cs40l26 56-0040: cs40l26_upload_worker Index(10) effect
[ 29.634273] cs40l26 56-0040: cs40l26_upload_worker: ID = 0, index = 0x0100000A, duration = 0ms
[ 29.635371] cs40l26 56-0040: Total number of waveforms = 143
[ 29.635693] [VIB] functions_show
[ 29.635713] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.635806] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 1
[ 29.635864] cs40l26 56-0040: cs40l26_vibe_start_worker CS40L26_START_PLAYBACK duration = 0ms
[ 29.637346] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_PLAYBACK)->(VIBE_STATE_HAPTIC) effects_in_flight(1) asp_enable(0)
[ 29.667221] cs40l26 56-0040: Mailbox: COMPLETE_MBOX
[ 29.667259] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_COMPLETE)->(VIBE_STATE_STOPPED) effects_in_flight(0) asp_enable(0)
[ 29.668083] cs40l26 56-0040: Reached end of queue
[ 29.742128] stm_ts_spi spi0.0: [sec_input] [R] tID:0 loc:C.C dd:125,2 mc:13 tc:0 p:0 noise:(0,00) nlvl:3, maxS:129, hid:0, fid:0
[ 29.742312] [Input Booster] IB Trigger Release :: Uniq ID(4)
[ 29.749634] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 29.749694] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 29.749709] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 29.754106] [Input Booster] Release Timeout Func :::: Unique_Id(3)
[ 29.754447] set_freq_limit: cflm: id(1) freq(1171200)
[ 29.754459] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 29.754474] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 1996800), p(1171200 ~ 2515200)
[ 29.754630] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 29.754715] [Input Booster] Del Ib Instance's Id : 3
[ 29.822094] [Input Booster] Press Timeout Func :::: Unique_Id(4) Tail_Time(300)
[ 29.822139] [Input Booster] Release State Func :::: Unique_Id(4) Rel_Flag(1)
[ 29.822155] set_freq_limit: cflm: id(1) freq(1075200)
[ 29.822166] cflm_freq_decision: input: type(1), min(1075200), max(0)
[ 29.822219] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1075200 ~ 1996800), p(1075200 ~ 2515200)
[ 29.822411] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 29.960373] stm_ts_spi spi0.0: [sec_input] [P] tID:0.4 z:14 major:12 minor:6 loc:C.C tc:1 type:0 noise:(0,00), nlvl:3, maxS:124, hid:0, fid:0
[ 29.960510] [Input Booster] IB Trigger Press :: IB Uniq Id(5)
[ 29.960552] [Input Booster] Press State Func :::: Unique_Id(5)
[ 29.960569] set_freq_limit: cflm: id(1) freq(1171200)
[ 29.960581] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 29.960623] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 2112000), p(1171200 ~ 2726400)
[ 29.960801] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 29.965253] [VIB] functions_show
[ 29.965265] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.965298] cs40l26 56-0040: sec_vib_inputff_get_current_temp temperature : 0
[ 29.965301] cs40l26 56-0040: cs40l26_set_gain:gain(4000), gain_pct(40)
[ 29.965333] [VIB] functions_show
[ 29.965335] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.965344] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 29.965365] cs40l26 56-0040: cs40l26_erase_effect: effect ID = 0
[ 29.965379] cs40l26 56-0040: cs40l26_set_gain_worker: gain = 40%
[ 29.966107] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 29.966124] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 29.966141] cs40l26 56-0040: cs40l26_erase_worker: effect ID = 0, index = 0X100000a
[ 29.968078] cs40l26 56-0040: cs40l26_upload_effect: effect ID = 0 len=2
[ 29.968167] cs40l26 56-0040: cs40l26_upload_worker SEP index(1)
[ 29.968182] cs40l26 56-0040: cs40l26_upload_worker Index(10) effect
[ 29.969174] cs40l26 56-0040: cs40l26_upload_worker: ID = 0, index = 0x0100000A, duration = 0ms
[ 29.970175] cs40l26 56-0040: Total number of waveforms = 143
[ 29.970485] [VIB] functions_show
[ 29.970500] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 29.970623] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 1
[ 29.970689] cs40l26 56-0040: cs40l26_vibe_start_worker CS40L26_START_PLAYBACK duration = 0ms
[ 29.972258] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_PLAYBACK)->(VIBE_STATE_HAPTIC) effects_in_flight(1) asp_enable(0)
[ 29.996300] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 30.002137] cs40l26 56-0040: Mailbox: COMPLETE_MBOX
[ 30.002169] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_COMPLETE)->(VIBE_STATE_STOPPED) effects_in_flight(0) asp_enable(0)
[ 30.002916] cs40l26 56-0040: Reached end of queue
[ 30.029694] QSEECOM: qseecom_load_app: App with id 53 (vaultkeeper) now loaded
[ 30.030562] vaultkeeper: QSEECom_start_app done
[ 30.033583] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 30.036087] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 30.037297] vaultkeeper: QSEECom_send_cmd done(7022/0x0c000c03/VK)
[ 30.037980] QSEECOM: __qseecom_unload_app: App (53) is unloaded
[ 30.038125] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 30.038136] vaultkeeper: Failed cmdProcessing(-10032)
[ 30.038149] vaultkeeper: runCommand error.(-10032)
[ 30.038154] vaultkeeper: There is no VK ID
[ 30.038160] vaultkeeper: VaultKeeper service preparation is failed
[ 30.051986] stm_ts_spi spi0.0: [sec_input] [R] tID:0 loc:C.C dd:32,-4 mc:10 tc:0 p:0 noise:(0,00) nlvl:3, maxS:130, hid:0, fid:0
[ 30.052281] [Input Booster] IB Trigger Release :: Uniq ID(5)
[ 30.084555] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 30.084608] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 30.084626] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 30.138069] [Input Booster] Release Timeout Func :::: Unique_Id(4)
[ 30.138660] set_freq_limit: cflm: id(1) freq(1171200)
[ 30.138669] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 30.138680] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 2227200), p(1171200 ~ 2841600)
[ 30.138785] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 30.138977] [Input Booster] Del Ib Instance's Id : 4
[ 30.158106] [Input Booster] Press Timeout Func :::: Unique_Id(5) Tail_Time(300)
[ 30.158176] [Input Booster] Release State Func :::: Unique_Id(5) Rel_Flag(1)
[ 30.158194] set_freq_limit: cflm: id(1) freq(1075200)
[ 30.158206] cflm_freq_decision: input: type(1), min(1075200), max(0)
[ 30.158244] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1075200 ~ 2112000), p(1075200 ~ 2726400)
[ 30.158430] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 30.178112] stm_ts_spi spi0.0: [sec_input] [P] tID:0.5 z:12 major:9 minor:7 loc:C.C tc:1 type:0 noise:(0,00), nlvl:2, maxS:119, hid:0, fid:0
[ 30.178280] [Input Booster] IB Trigger Press :: IB Uniq Id(6)
[ 30.178326] [Input Booster] Press State Func :::: Unique_Id(6)
[ 30.178340] set_freq_limit: cflm: id(1) freq(1171200)
[ 30.178352] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 30.178392] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 1996800), p(1171200 ~ 2515200)
[ 30.178545] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 30.182353] [VIB] functions_show
[ 30.182364] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 30.182399] cs40l26 56-0040: sec_vib_inputff_get_current_temp temperature : 0
[ 30.182403] cs40l26 56-0040: cs40l26_set_gain:gain(4000), gain_pct(40)
[ 30.182445] [VIB] functions_show
[ 30.182448] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 30.182460] cs40l26 56-0040: cs40l26_set_gain_worker: gain = 40%
[ 30.182470] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 30.182491] cs40l26 56-0040: cs40l26_erase_effect: effect ID = 0
[ 30.182861] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 30.182879] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 30.182900] cs40l26 56-0040: cs40l26_erase_worker: effect ID = 0, index = 0X100000a
[ 30.184790] cs40l26 56-0040: cs40l26_upload_effect: effect ID = 0 len=2
[ 30.184835] cs40l26 56-0040: cs40l26_upload_worker SEP index(1)
[ 30.184851] cs40l26 56-0040: cs40l26_upload_worker Index(10) effect
[ 30.185958] cs40l26 56-0040: cs40l26_upload_worker: ID = 0, index = 0x0100000A, duration = 0ms
[ 30.186920] cs40l26 56-0040: Total number of waveforms = 143
[ 30.187366] [VIB] functions_show
[ 30.187384] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 30.187557] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 1
[ 30.187647] cs40l26 56-0040: cs40l26_vibe_start_worker CS40L26_START_PLAYBACK duration = 0ms
[ 30.189130] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_PLAYBACK)->(VIBE_STATE_HAPTIC) effects_in_flight(1) asp_enable(0)
[ 30.219137] cs40l26 56-0040: Mailbox: COMPLETE_MBOX
[ 30.219169] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_COMPLETE)->(VIBE_STATE_STOPPED) effects_in_flight(0) asp_enable(0)
[ 30.219971] cs40l26 56-0040: Reached end of queue
[ 30.223301] CASS: VaultKeeper is not ready. try again Retry cnt(17).
[ 30.234463] msm_vidc: err : ffffffff: codec: Entering suspend
[ 30.252937] stm_ts_spi spi0.0: [sec_input] [R] tID:0 loc:C.C dd:9,-4 mc:8 tc:0 p:0 noise:(0,00) nlvl:3, maxS:135, hid:0, fid:0
[ 30.253074] [Input Booster] IB Trigger Release :: Uniq ID(6)
[ 30.303133] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 30.303191] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 30.303208] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 30.378097] [Input Booster] Press Timeout Func :::: Unique_Id(6) Tail_Time(300)
[ 30.378150] [Input Booster] Release State Func :::: Unique_Id(6) Rel_Flag(1)
[ 30.378172] set_freq_limit: cflm: id(1) freq(1075200)
[ 30.378184] cflm_freq_decision: input: type(1), min(1075200), max(0)
[ 30.378222] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1075200 ~ 1996800), p(1075200 ~ 2515200)
[ 30.378403] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 30.458069] [Input Booster] Release Timeout Func :::: Unique_Id(5)
[ 30.458679] set_freq_limit: cflm: id(1) freq(1075200)
[ 30.458695] cflm_freq_decision: input: type(1), min(1075200), max(0)
[ 30.458717] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1075200 ~ 2112000), p(1075200 ~ 2726400)
[ 30.458890] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 30.458996] [Input Booster] Del Ib Instance's Id : 5
[ 30.588845] stm_ts_spi spi0.0: [sec_input] [P] tID:0.6 z:10 major:9 minor:7 loc:C.C tc:1 type:0 noise:(0,00), nlvl:2, maxS:109, hid:0, fid:0
[ 30.589035] [Input Booster] IB Trigger Press :: IB Uniq Id(7)
[ 30.589080] [Input Booster] Press State Func :::: Unique_Id(7)
[ 30.589098] set_freq_limit: cflm: id(1) freq(1171200)
[ 30.589110] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 30.589157] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 1996800), p(1171200 ~ 2515200)
[ 30.589283] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 30.593810] [VIB] functions_show
[ 30.593819] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 30.593904] cs40l26 56-0040: sec_vib_inputff_get_current_temp temperature : 0
[ 30.593908] cs40l26 56-0040: cs40l26_set_gain:gain(4000), gain_pct(40)
[ 30.593936] [VIB] functions_show
[ 30.593939] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 30.593949] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 30.593961] cs40l26 56-0040: cs40l26_set_gain_worker: gain = 40%
[ 30.594034] cs40l26 56-0040: cs40l26_erase_effect: effect ID = 0
[ 30.594706] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 30.594723] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 30.594740] cs40l26 56-0040: cs40l26_erase_worker: effect ID = 0, index = 0X100000a
[ 30.596555] cs40l26 56-0040: cs40l26_upload_effect: effect ID = 0 len=2
[ 30.596619] cs40l26 56-0040: cs40l26_upload_worker SEP index(1)
[ 30.596633] cs40l26 56-0040: cs40l26_upload_worker Index(10) effect
[ 30.597692] cs40l26 56-0040: cs40l26_upload_worker: ID = 0, index = 0x0100000A, duration = 0ms
[ 30.598809] cs40l26 56-0040: Total number of waveforms = 143
[ 30.599125] [VIB] functions_show
[ 30.599142] [VIB] names2str INTENSITY HAPTIC_ENGINE INDEX_HAPTIC_PATTERN CAPABILITY_EXTERNAL_CONTROL PRIMITIVE_EFFECT_COMPOSE
[ 30.599229] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 1
[ 30.599291] cs40l26 56-0040: cs40l26_vibe_start_worker CS40L26_START_PLAYBACK duration = 0ms
[ 30.600766] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_PLAYBACK)->(VIBE_STATE_HAPTIC) effects_in_flight(1) asp_enable(0)
[ 30.630734] cs40l26 56-0040: Mailbox: COMPLETE_MBOX
[ 30.630772] cs40l26 56-0040: cs40l26_vibe_state_update vib_state(MBOX_COMPLETE)->(VIBE_STATE_STOPPED) effects_in_flight(0) asp_enable(0)
[ 30.631660] cs40l26 56-0040: Reached end of queue
[ 30.652472] [SSC_FAC] light_copr_debug_work_func: 241,241,241,202,227,219,244,244,244,245,245,245
[ 30.671695] stm_ts_spi spi0.0: [sec_input] [R] tID:0 loc:C.C dd:6,-1 mc:9 tc:0 p:0 noise:(0,00) nlvl:3, maxS:131, hid:0, fid:0
[ 30.671819] [Input Booster] IB Trigger Release :: Uniq ID(7)
[ 30.682076] [Input Booster] Release Timeout Func :::: Unique_Id(6)
[ 30.682749] set_freq_limit: cflm: id(1) freq(1171200)
[ 30.682764] cflm_freq_decision: input: type(1), min(1171200), max(0)
[ 30.682781] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1171200 ~ 2112000), p(1171200 ~ 2726400)
[ 30.682905] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 30.683029] [Input Booster] Del Ib Instance's Id : 6
[ 30.714147] cs40l26 56-0040: cs40l26_playback_effect: effect ID = 0, val = 0
[ 30.714286] cs40l26 56-0040: cs40l26_vibe_stop_worker vib_state(VIBE_STATE_STOPPED)
[ 30.714304] cs40l26 56-0040: cs40l26_vibe_stop_worker skip stop worker
[ 30.716359] !@ hermes_command_handler.cpp(930) HermesCommandHandler HERMES_CMD_WEAVER_READ slotId=1
[ 30.716526] [star] : star_open
[ 30.716538] [star-k250a] : k250a_poweron
[ 30.742105] [star] : star_dev_ioctl set direct : 0
[ 30.742149] [star-protocol] S_IFRAME: 12 00 04
[ 30.744542] [star-protocol] R_IFRAME: 21 00 02
[ 30.744567] [star] : star_dev_write: count:20 ret:20
[ 30.744588] [star] : star_dev_ioctl read size : 2
[ 30.744608] [star] : star_dev_read: count:2
[ 30.744664] [star] : star_dev_ioctl reset protocol
[ 30.750229] !@ hermes_command_handler.cpp(217) grdg_init success.
[ 30.750531] !@ hermes_command_handler.cpp(946) initHwIfNeeded success.
[ 30.750567] [star-protocol] S_IFRAME: 12 00 15
[ 30.752666] [star-protocol] R_IFRAME: 21 00 02
[ 30.752688] [star] : star_dev_write: count:37 ret:37
[ 30.752708] [star] : star_dev_ioctl read size : 2
[ 30.752725] [star] : star_dev_read: count:2
[ 30.752814] !@ hermes_command_handler.cpp(451) grdg_iweaverInit success
[ 30.752900] !@ hermes_command_handler.cpp(952) selectWeaverApp success.
[ 30.752971] [star-protocol] S_IFRAME: 12 40 26
[ 30.756137] [star-protocol] R_SFRAME: 21 c3 04 00 00 00 14 f2
[ 30.756155] [star-protocol] : wtx_counter : 1, wait time : 20000 us
[ 30.776340] [star-protocol] S_SFRAME: 12 e3 00 f1
[ 30.786231] [Input Booster] Press Timeout Func :::: Unique_Id(7) Tail_Time(300)
[ 30.786281] [Input Booster] Release State Func :::: Unique_Id(7) Rel_Flag(1)
[ 30.786300] set_freq_limit: cflm: id(1) freq(1075200)
[ 30.786311] cflm_freq_decision: input: type(1), min(1075200), max(0)
[ 30.786352] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1075200 ~ 1996800), p(1075200 ~ 2515200)
[ 30.786522] [Hyst QoS] Input Booster ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 30.788424] [star-protocol] R_SFRAME: 21 c3 04 00 00 00 14 f2
[ 30.788441] [star-protocol] : wtx_counter : 2, wait time : 20000 us
[ 30.808636] [star-protocol] S_SFRAME: 12 e3 00 f1
[ 30.819889] [star-protocol] R_IFRAME: 21 40 23
[ 30.819920] [star] : star_dev_write: count:54 ret:54
[ 30.819947] [star] : star_dev_ioctl read size : 35
[ 30.819969] [star] : star_dev_read: count:35
[ 30.820132] !@ hermes_command_handler.cpp(964) readWeaver success
[ 30.820188] !@ hermes_command_handler.cpp(984) ret 0, rstate=0, timeout=0, weaver_state=0, fail_count=0, tbr_timeout=0
[ 30.820262] !@ hermes_command_handler.cpp(998) deinit success.
[ 30.820337] !@ hermes_command_handler.cpp(172) clear_abnormal_cnt
[ 30.820648] !@ hermes_command_handler.cpp(1510) HermesCommandHandler HERMES_CMD_DEINIT_HW, hc=0x0
[ 30.820713] [star] : star_close
[ 30.820723] [star-k250a] : k250a_poweroff
[ 30.824641] !@ hermes_weaver_hal_imp.cpp(273) read r=0, result=0, slotId=1, timeout=0 took 108 msec
[ 30.832526] !@onPasswordChecked matched=true timeoutMs=0 userId=0
[ 30.864110] !@No record file for uid 0 exists
[ 30.865252] !@ 8,0 r 48943 2192829 w 1687 33068 d 817 32480 f 0 312 iot 17072 0 th 0 0 0 pt 0 inp 0 0 30.835
[ 30.868353] !@verify ret = 0, uid = 0, type = T
[ 30.875712] KeyStorage: retrieveKey : /data/misc/vold/user_keys/ce/0/current
[ 30.877873] KeyStorage: retrieveKey success : /data/misc/vold/user_keys/ce/0/current
[ 30.942392] !@BOOT: vold unlockCeStorage SUCCESS
[ 30.943238] !@Unlocked CE storage for secured user 0
[ 30.943281] !@BOOT: Unlocking user 0
[ 30.943587] !@AM_BOOT_PROGRESS , uid : 0, state: -1, progress : 0, step : unlockUser, description : NULL
[ 30.943632] !@AM_BOOT_PROGRESS , uid : 0, state: -1, progress : 1, step : unlockUser, description : call maybeUnlockUser
[ 30.943655] !@AM_BOOT_PROGRESS , uid : 0, state: -1, progress : 0, step : maybeUnlockUser, description : NULL
[ 30.943887] !@AM_BOOT_PROGRESS , uid : 0, state: 1, progress : 0, step : finishUserUnlocking, description : NULL
[ 30.944003] !@AM_BOOT_PROGRESS , uid : 0, state: 1, progress : 1, step : finishUserUnlocking, description : OK StorageManager.isUserKeyUnlocked
[ 30.944034] !@AM_BOOT_PROGRESS , uid : 0, state: 1, progress : 1, step : finishUserUnlocking, description : mUnlockProgress.start()
[ 30.944523] !@AM_BOOT_PROGRESS , uid : 0, state: 1, progress : 2, step : finishUserUnlocking, description : NULL
[ 30.944558] !@AM_BOOT_PROGRESS , uid : 0, state: 1, progress : 1, step : finishUserUnlocking, description : Start getUserManager().onBeforeUnlockUser
[ 30.944682] !@AM_BOOT_PROGRESS , uid : 0, state: 1, progress : 2, step : unlockUserCleared, description : NULL
[ 30.958468] selinux: SELinux: Skipping restorecon on directory(/data/system_ce/0)
[ 30.961772] selinux: SELinux: Skipping restorecon on directory(/data/vendor_ce/0)
[ 30.963976] selinux: SELinux: Skipping restorecon on directory(/data/misc_ce/0)
[ 30.966625] selinux: SELinux: Skipping restorecon on directory(/data/sec)
[ 30.968379] init: processing action (sys.pdp.action=cekeyunlock) from (/system/etc/init/sec_pdp.rc:12)
[ 30.968425] init: [PDP] -- Start Sub Function [media] mode ------------------------------
[ 30.968548] init: [PDP] - End of Sub PDP --
[ 30.969087] PROCA: Going to clone proca identity from task 1035 to 5293
[ 30.969094] PROCA: Task descriptor for task 5293 was created
[ 30.969096] PROCA: Task 5293 has application name /system/bin/vold
[ 30.970022] PM: Active wake lock:
[ 30.970066] PM: nfc_wake_lock: active_count(2), active_time(7790), total_time(11970)
[ 30.970113] thermal_sys: thermal: cdev[thermal-cluster-1-2:5]
[ 30.970366] PROCA: Task descr for task 5293 already exists before exec
[ 30.970370] PROCA: Destroying proca task descriptor for task 5293
[ 31.011543] init: processing action (sys.user.0.ce_available=true) from (/system/etc/init/wifi.rc:21)
[ 31.011688] init: [softdog] !@Success to disable, do_restorecon
[ 31.017504] selinux: SELinux: Skipping restorecon on directory(/data/misc_ce/0/apexdata/com.android.wifi)
[ 31.017600] init: [softdog] persist.vendor.softdogis off, skip_enable()
[ 31.043512] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 31.050421] cflm_freq_decision: input: type(0), min(1286400), max(0)
[ 31.050479] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1286400 ~ 1996800), p(1286400 ~ 2515200)
[ 31.083677] QSEECOM: qseecom_load_app: App with id 54 (vaultkeeper) now loaded
[ 31.084451] vaultkeeper: QSEECom_start_app done
[ 31.088154] audit: type=1400 audit(1749960115.879:453): avc: denied { read } for pid=3500 comm="ndroid.settings" name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=536 scontext=u:r:system_app:s0 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0
[ 31.089196] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 31.092982] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 31.095522] vaultkeeper: QSEECom_send_cmd done(6730/0x0c000c03/VK)
[ 31.097645] QSEECOM: __qseecom_unload_app: App (54) is unloaded
[ 31.097775] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 31.097787] vaultkeeper: Failed cmdProcessing(-10032)
[ 31.097801] vaultkeeper: runCommand error.(-10032)
[ 31.097806] vaultkeeper: There is no VK ID
[ 31.097812] vaultkeeper: VaultKeeper service preparation is failed
[ 31.098053] [Input Booster] Release Timeout Func :::: Unique_Id(7)
[ 31.098428] set_freq_limit: cflm: id(1) freq(-1)
[ 31.098436] cflm_freq_decision: input: type(1), min(-1), max(0)
[ 31.098453] cflm_update_current_freq: current freq: s(844000 ~ 1785600), g(1286400 ~ 1996800), p(1286400 ~ 2515200)
[ 31.098586] [Hyst QoS] Input Booster ::: Rqst Val(0), Type(0), Qos Value(3000000)
[ 31.098684] [Input Booster] Del Ib Instance's Id : 7
[ 31.169307] servicemanager: selinux_check_access(u:r:system_server:s0,u:object_r:default_android_service:s0,service_manager,find,AuditCallbackData(sctx,vendor.qti.hardware.perf2.IPerf/default))-1
[ 31.172511] usb_notify: usb_sl_show secure_lock = 2
[ 31.183650] usb_notify: usb_sl_store before secure_lock = usb restrict lock first_restrict = 1 +
[ 31.183675] usb_notify: set_notify_lock_state +
[ 31.183683] usb_notify: set_notify_lock_state lock_state=0
[ 31.183693] usb_notify: set_notify_lock_state host block=0,host enable=0,restricted=0,allowlist_restricted=0
[ 31.183700] usb_notify: set_notify_lock_state is_hub_connected=0, pd contract=0
[ 31.183708] usb_notify: set_notify_lock_state -
[ 31.183717] usb_notify: set_notify_disable prev=block_all(3) => disable=block_off(0)
[ 31.183726] usb_notify: send_external_notify: cmd=host_block_pre_fast(9), data=0
[ 31.183738] pdic_handle_usb_external_notifier_notification : action=9 , enable=0
[ 31.183746] usb_notify: send_external_notify: notify done(0x0)
[ 31.183755] usb_notify: send_otg_notify event=disable_all_notify(15) enable=0
[ 31.183763] usb_notify: otg_notifier_callback event=disable_all_notify(15)
[ 31.183778] usb_notify: set_notify_disable event=vbus(virtual)(39) enable
[ 31.183786] usb_notify: send_otg_notify event=vbus(virtual)(39) enable=1
[ 31.183793] usb_notify: otg_notifier_callback event=vbus(virtual)(39)
[ 31.183802] usb_notify: usb_sl_store after secure_lock = unlock -
[ 31.185248] usb_notify: otg_notify_state+ event=disable_all_notify(15), enable=off
[ 31.185268] usb_notify: send_external_notify: cmd=host_block_pre(3), data=0
[ 31.185280] pdic_handle_usb_external_notifier_notification : action=3 , enable=0
[ 31.185289] usb_notify: send_external_notify: notify done(0x0)
[ 31.185296] usb_notify: send_external_notify: cmd=host_block_post(4), data=0
[ 31.185304] pdic_handle_usb_external_notifier_notification : action=4 , enable=0
[ 31.185313] max77705: max77705_set_enable_alternate_mode: is_first_booting : 0 mode 8
[ 31.185367] max77705: is_empty_usbc_cmd_queue: usbc_cmd_queue Empty(T)
[ 31.185377] max77705: max77705_usbc_opcode_write: W->W opcode[0x55] write_length[1] read_length[1]
[ 31.185384] max77705: front_usbc_cmd: Opcode(0x55)
[ 31.185393] max77705: dequeue_usbc_cmd: Opcode(0x55) Response(0xff)
[ 31.185401] max77705: max77705_usbc_cmd_run: No ISR
[ 31.185410] max77705: max77705_i2c_opcode_write: opcode 0x55, write_length 2
[ 31.185419] max77705: opcode_write: 00000000: 55 03
[ 31.186614] max77705: max77705_set_enable_alternate_mode: [NO BOOTING TIME] !!!alternate mode is started!
[ 31.186631] usb_notify: send_external_notify: notify done(0x0)
[ 31.186785] usb_notify: otg_notify_state- event=disable_all_notify, cable=vbus
[ 31.186802] usb_notify: otg_notify_state+ event=vbus(virtual)(39), enable=on
[ 31.187802] max77705:max77705_irq_thread: irq[408] 408/366/282 irq_src=0x08 pmic_rev=0x05
[ 31.189049] [MAX77705] irq_reg, complete [1], 80, 0, 0, 0, f0
[ 31.189059] [MAX77705] dump_reg, 27, ba, 81, 40, 91, 9, 19, 7
[ 31.189345] max77705_irq_thread ic_alt_mode=1
[ 31.189357] max77705: max77705_apcmd_irq: IRQ(379)_IN
[ 31.189647] max77705: max77705_apcmd_irq: [IN] sysmsg : 186
[ 31.189658] max77705: dequeue_usbc_cmd: Opcode(0xff) Response(0x55)
[ 31.189662] max77705: dequeue_usbc_cmd: front->next = NULL
[ 31.189667] max77705: is_empty_usbc_cmd_queue: usbc_cmd_queue Empty(T)
[ 31.189672] max77705: max77705_usbc_cmd_run: Apcmdres ISR !!!
[ 31.190284] max77705: max77705_i2c_opcode_read: opcode 0x55, read_length 2, ret_error 0
[ 31.190293] max77705: opcode_read: 00000000: 55 13
[ 31.190300] max77705: is_empty_usbc_cmd_queue: usbc_cmd_queue Empty(T)
[ 31.190305] max77705: max77705_usbc_cmd_run: Queue, Empty
[ 31.190311] max77705: max77705_apcmd_irq: IRQ(379)_OUT
[ 31.190319] max77705: is_empty_usbc_cmd_queue: usbc_cmd_queue Empty(T)
[ 31.190324] max77705_irq_thread doing_irq = 0, is_usbc_queue=0
[ 31.192870] usb_notify: otg_notify_state- event=vbus, cable=vbus
[ 31.192882] msm-dwc3 a600000.ssusb: dwc3_resume_work: dwc3 resume work
[ 31.192899] msm-dwc3 a600000.ssusb: dwc3_resume_work : max_speed = 5, typec_orientation = 2
[ 31.192938] msm-dwc3 a600000.ssusb: idle state
[ 31.192947] msm-dwc3 a600000.ssusb: b_sess_vld
[ 31.192958] msm-dwc3 a600000.ssusb: DWC3-msm runtime resume
[ 31.192966] msm-dwc3 a600000.ssusb: dwc3_msm_resume: exiting lpm
[ 31.193207] msm-dwc3 a600000.ssusb: dwc3_msm_resume: exit power collapse
[ 31.194911] msm-dwc3 a600000.ssusb: dwc3_msm_resume: set core clk rate 133333333
[ 31.195081] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY set_suspend for resume called with cable disconnected
[ 31.195092] msm-usb-ssphy-qmp 88e8000.ssphy: reg (HPM)
[ 31.195107] msm-usb-ssphy-qmp 88e8000.ssphy: min_vol:912000 max_vol:912000
[ 31.195570] msm-usb-ssphy-qmp 88e8000.ssphy: msm_ssphy_qmp_enable_clks(): clk_enabled:0 on:1
[ 31.195623] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY is resumed
[ 31.195636] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_clocks(): clocks_enabled:0 on:1
[ 31.195649] msm-dwc3 a600000.ssusb: dwc3_msm_resume: exit power collapse
[ 31.195662] msm-dwc3 a600000.ssusb: DWC3 exited from low power mode
[ 31.195669] msm-dwc3 a600000.ssusb: dwc3_pwr_event_handler irq_stat=1000
[ 31.195677] msm-dwc3 a600000.ssusb: dwc3_pwr_event_handler: unexpected PWR_EVNT, irq_stat=1000
[ 31.195692] msm-dwc3 a600000.ssusb: dwc3_otg_start_peripheral: turn on gadget
[ 31.195705] dwc3_runtime_resume : ++
[ 31.195715] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_init phy_flags:0x0
[ 31.195725] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_power turn on regulators. power_enabled:0
[ 31.196573] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_clocks(): clocks_enabled:1 on:1
[ 31.196968] msm-usb-hsphy 88e3000.hsphy: x0:e7e7e7e7 x1:0f0f0f0f x2:2f2f2f2f x3:03030303
[ 31.196991] msm-usb-ssphy-qmp 88e8000.ssphy: Initializing QMP phy
[ 31.197001] msm-usb-ssphy-qmp 88e8000.ssphy: reg (HPM)
[ 31.197011] msm-usb-ssphy-qmp 88e8000.ssphy: PHYs' regulators status 1
[ 31.197022] msm-usb-ssphy-qmp 88e8000.ssphy: msm_ssphy_qmp_enable_clks(): clk_enabled:1 on:1
[ 31.197032] msm-usb-ssphy-qmp 88e8000.ssphy: Global reset of QMP DP combo phy
[ 31.197053] msm-usb-ssphy-qmp 88e8000.ssphy: USB DP QMP PHY: Update TYPEC CTRL(3)
[ 31.204057] !@Boot_SystemServer: 260ms : UM.onBeforeUnlockUser-0
[ 31.204081] !@Boot_EBS: Took 260ms by 'UM.onBeforeUnlockUser-0'
[ 31.204153] !@AM_BOOT_PROGRESS , uid : 0, state: 1, progress : 1, step : finishUserUnlocking, description : End getUserManager().onBeforeUnlockUser
[ 31.205678] !@AM_BOOT_PROGRESS , uid : 0, state: 2, progress : 1, step : finishUserUnlocking, description : sendToTarget USER_UNLOCK_MSG
[ 31.205707] !@AM_BOOT_PROGRESS , uid : 0, state: -1, progress : 0, step : SYSTEM_USER_UNLOCK_MSG, description : NULL
[ 31.212438] servicemanager: Caller(pid=2420,uid=1000,sid=u:r:system_server:s0) Since 'apexservice' could not be found trying to start it as a lazy AIDL service. (if it's not configured to be a lazy service, it may be stuck starting or still starting).
[ 31.215338] init: starting service 'apexd'...
[ 31.222333] msm-usb-hsphy 88e3000.hsphy: msm_hsphy_enable_clocks(): clocks_enabled:1 on:1
[ 31.222357] msm-usb-ssphy-qmp 88e8000.ssphy: QMP PHY set_suspend for resume called with cable disconnected
[ 31.222365] msm-usb-ssphy-qmp 88e8000.ssphy: msm_ssphy_qmp_set_suspend: USB PHY is already resumed.
[ 31.222386] msm-dwc3 a600000.ssusb: DWC3_GSI_EVT_BUF_SETUP
[ 31.222396] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffe000 length 4096
[ 31.222406] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffd000 length 4096
[ 31.222415] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffc000 length 4096
[ 31.222699] dwc3 a600000.dwc3: Set IRQ thread:irq/323-dwc3 pid:4400 to SCHED_NORMAL prio
[ 31.223547] CASS: VaultKeeper is not ready. try again Retry cnt(19).
[ 31.224968] [USB] vbus_session_notify : vbus_session On run_stop(success)
[ 31.225000] dwc3_runtime_resume : --
[ 31.225018] msm-dwc3 a600000.ssusb: DWC3_GSI_EVT_BUF_SETUP
[ 31.225026] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffe000 length 4096
[ 31.225035] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffd000 length 4096
[ 31.225041] msm-dwc3 a600000.ssusb: Evt buf 0000000000000000 dma efffc000 length 4096
[ 31.225056] msm-usb-ssphy-qmp 88e8000.ssphy: QMP phy connect notification
[ 31.226723] msm-dwc3 a600000.ssusb: peripheral state
[ 31.227110] init: ... started service 'apexd' has pid 5313
[ 31.227166] init: Control message: Processed ctl.interface_start for 'aidl/apexservice' from pid: 597 (/system/bin/servicemanager)
[ 31.244690] [msm-dp] secdp_get_lpm_mode: lpcharge:0
[ 31.244704] [msm-dp] dex_store: 0x00 setting_ui:0 run:0 cable:0
[ 31.244707] [msm-dp] dex_store: cable is out
[ 31.245975] ALS_dbg : tsl2510_als_enable_store - en : 1, c : 0
[ 31.245989] ALS_dbg : tsl2510_als_start
[ 31.246043] ALS_dbg : tsl2510_power_ctrl - onoff : 1, state : 0
[ 31.246431] ALS_dbg : tsl2510_power_ctrl - enable vdd_1p8 done, rc=0
[ 31.246526] max77705: max77705_sysfs_get_local_prop: usb: PDIC_SYSFS_USBPD_TYPE : 0
[ 31.246644] max77705: max77705_sysfs_get_local_prop: usb: PDIC_SYSFS_USBPD_IDS : 0000:0000
[ 31.248347] ALS_dbg : ams_validateDevice - ID:0x5c, revID:0x11, auxID:0x00
[ 31.248356] ALS_dbg : ams_deviceSoftReset - Start
[ 31.252549] ALS_dbg : tsl2510_als_init - ok
[ 31.253043] ALS_dbg : ===== alsTimeUsToReg regValue =2be =====
[ 31.253052] ALS_dbg : ===== alsTimeUsToReg Sample time =976 =====
[ 31.253628] ALS_dbg : ===== alsTimeUsToReg regValue =2be =====
[ 31.253635] ALS_dbg : ===== alsTimeUsToReg Sample time =976 =====
[ 31.285989] apexd: Started. subcommand = (null)
[ 31.304952] [FACTORY] send_nfc_cover_status: nfc_cover_status=0
[ 31.307381] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.effect.IFactory/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.319390] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.core.IModule/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.325425] msm_vidc: err : ffffffff: codec: Mani msm_vidc_session_streamoff - 0
[ 31.325471] msm_vidc: err : ffffffff: codec: Resuming from power collapse
[ 31.327799] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.effect.IFactory/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.328011] [FACTORY] send_flip_cover_status_to_mag_sensor: nfc_cover_status=0 set in mag sensor
[ 31.328042] fcd_notifier_call_chain - 0
[ 31.328087] [FACTORY] nfc_cover_status_store: status=0
[ 31.328852] [USB] dwc3_gadget_vbus_draw: suspend -log only-
[ 31.328890] [USB] make suspend currrent event
[ 31.328906] msm-usb-hsphy 88e3000.hsphy: Avail curr from USB = 2
[ 31.328913] msm-usb-hsphy 88e3000.hsphy: Error (-19) setting input current limit
[ 31.328924] usb_notify: send_otg_notify event=usb_d_suspended(33) enable=1
[ 31.328931] usb_notify: extra_notifier_callback event=usb_d_suspended(33)
[ 31.328936] usb_notify: extra_notify_state+ event=usb_d_suspended(33), enable=on
[ 31.329240] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.core.IModule/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.330923] msm_vidc: fw: <VFW_E:HostDr:265d:76c23f88:00> VenusHostDriver_ParseC2Command(908): QC_IMAGE_VERSION_STRING=video-firmware.2.4-4774f455582f669b4e1c6b24c4c991296de4479e
[ 31.330935] msm_vidc: fw: <VFW_E:HostDr:265d:76c23f88:00> VenusHostDriver_ParseC2Command(909): IMAGE_VARIANT_STRING=PROD
[ 31.330940] msm_vidc: fw: <VFW_E:HostDr:265d:76c23f88:00> VenusHostDriver_ParseC2Command(910): OEM_IMAGE_VERSION_STRING=hyd-lablnx446
[ 31.330945] msm_vidc: fw: <VFW_E:HostDr:265d:76c23f88:00> VenusHostDriver_ParseC2Command(911): BUILD_TIME: Aug 5 2024 20:04:05
[ 31.331183] usb_notifier: usb_set_chg_current: charger_name = sec-direct-charger
[ 31.331190] usb_notifier: usb : charing current set = 1
[ 31.331207] sec_bat_set_usb_configure: usb configured 0 -> 1
[ 31.331212] sec_bat_set_current_event: current event before(0x100000), after(0x10100000)
[ 31.331221] _sec_vote(sec_bat_set_usb_configure:4071): CHGEN (VOTER_CABLE, 3) -> (VOTER_SUSPEND, 0)
[ 31.331227] sec_bat_set_charge set Buck-Off mode
[ 31.331582] msm_vidc: err : ffffffff: codec: Mani streamoff successful
[ 31.332032] [SDE_0][mDNIe] scenario_show : [mDNIe] Current APP : Current APP: UI_APP
[ 31.333214] sec_direct_chg_set_property: batt status(1)
[ 31.333227] sec_bat_reset_step_charging
[ 31.333249] sec_direct_chg_check_charging_source: dc_retry_cnt(0)
[ 31.333266] sec_direct_chg_check_charging_source: S/C was selected! Not APDO(4, 4)
[ 31.333280] sec_direct_chg_set_direct_charge: charger_mode is same(Charging-Off)
[ 31.333286] sec_direct_chg_set_switching_charge: charger_mode(Charging-On->Buck-Off)
[ 31.333600] max77705_chg_set_mode_state: current_mode(0x5), state(0)
[ 31.333607] max77705_chg_set_mode_state: current_mode(0x0)
[ 31.339168] max77705_chg_set_mode_state: CNFG_00 (0x10)
[ 31.339211] _sec_vote(sec_bat_set_usb_configure:4072): FCC (VOTER_CABLE, 550) -> (VOTER_USB_100MA, 100)
[ 31.339221] sec_direct_chg_set_charging_current: called(100mA)
[ 31.340110] [max77705_set_charge_current] REG(0xb9) DATA(0x02), CURRENT(100)
[ 31.340123] set_charging_current: power(2375), input(475), charge(100)
[ 31.340131] _sec_vote(sec_bat_set_usb_configure:4073): ICL (VOTER_CABLE, 475) -> (VOTER_USB_100MA, 100)
[ 31.340143] sec_direct_chg_set_input_current: called(100mA)
[ 31.341872] [max77705_set_input_current] REG(0xc0) DATA(0x03), CURRENT(100)
[ 31.341918] usb_notify: extra_notify_state- event=usb_d_suspended(33), cable=vbus
[ 31.343324] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.effect.IFactory/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.345264] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.core.IModule/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.353462] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.effect.IFactory/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.355124] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.core.IModule/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.363522] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.effect.IFactory/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.367287] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.core.IModule/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.377564] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.effect.IFactory/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.384687] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.core.IModule/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.394057] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.effect.IFactory/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.395739] servicemanager: Caller(pid=1566,uid=1041,sid=u:r:audioserver:s0) Could not find android.hardware.audio.core.IModule/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 31.422821] cs35l41 18-0040: cs35l41_pcm_vol_put: 0x331
[ 31.423410] adsp_sleepmon: Audio: num_sessions=1,num_lpi_sessions=0,timer_pending=0
[ 31.426420] msm-dwc3 a600000.ssusb: DWC3_CONTROLLER_NOTIFY_CLEAR_DB
[ 31.426457] waipio-asoc-snd soc:spf_core_platform:sound: msm_common_snd_startup: substream = subdevice #0 stream = 0
[ 31.427065] msm_common_snd_startup:pinctrl set actve success 0
[ 31.427128] waipio-asoc-snd soc:spf_core_platform:sound: msm_common_snd_hw_params: substream = subdevice #0 stream = 0
[ 31.427136] msm_common_snd_hw_params: clk_id :512 clk freq 6144000
[ 31.427855] usb_notify: send_otg_notify event=usb_d_unconfigured(34) enable=1
[ 31.427865] usb_notify: extra_notifier_callback event=usb_d_unconfigured(34)
[ 31.427871] usb_notify: extra_notify_state+ event=usb_d_unconfigured(34), enable=on
[ 31.427876] usb_notify: extra_notify_state- event=usb_d_unconfigured(34), cable=vbus
[ 31.427882] [USB] set_vbus_current: 100mA
[ 31.427901] sec_bat_set_usb_configure: usb configured 1 -> 100
[ 31.427908] sec_bat_set_current_event: current event before(0x10100000), after(0x40100000)
[ 31.427919] _sec_vote(sec_bat_set_usb_configure:4094): CHGEN (VOTER_SUSPEND, 0) -> (VOTER_CABLE, 3)
[ 31.427925] sec_bat_set_charge set Charging-On mode
[ 31.428423] sec_direct_chg_set_property: batt status(1)
[ 31.428438] sec_direct_chg_check_charging_source: dc_retry_cnt(0)
[ 31.428454] sec_direct_chg_check_charging_source: S/C was selected! Not APDO(4, 4)
[ 31.428466] sec_direct_chg_set_direct_charge: charger_mode is same(Charging-Off)
[ 31.428472] sec_direct_chg_set_switching_charge: charger_mode(Buck-Off->Charging-On)
[ 31.428995] max77705_chg_set_mode_state: current_mode(0x0), state(3)
[ 31.429002] max77705_chg_set_mode_state: current_mode(0x5)
[ 31.430564] max77705_chg_set_mode_state: CNFG_00 (0x15)
[ 31.430913] sec-battery samsung_mobile_device:battery: sec_bat_cable_work: Start
[ 31.430920] sec_bat_set_current_event: current event before(0x40100000), after(0x40100004)
[ 31.430926] sec-battery samsung_mobile_device:battery: cw_check_skip_condition: set usb charging current to 100 mA
[ 31.430931] sec_bat_check_afc_temp: cable_type(4), chg_limit(0)
[ 31.430935] sec_bat_check_lrp_step: st1(380), st2(900), recv_st1(360), recv_st2(380), lrp(363)
[ 31.430937] sec_bat_check_lrp_temp: force_check(0), ret(5000), lcd(1)
[ 31.430939] sec_bat_check_lrp_temp: cable_type(4), lrp_step(0), lrp(363)
[ 31.430942] sec_bat_check_temp_ctrl_by_cable: ct : USB
[ 31.430944] sec-battery samsung_mobile_device:battery: cw_check_skip_condition: Cable is NOT Changed(4)
[ 31.430947] sec-battery samsung_mobile_device:battery: sec_bat_cable_work: End
[ 31.441854] cs35l41 18-0040: cs35l41_pcm_hw_params rate:48000, width:32, wl:24
[ 31.442057] cs35l41 18-0041: cs35l41_pcm_hw_params rate:48000, width:32, wl:24
[ 31.464164] lpass-cdc soc:spf_core_platform:lpass-cdc: cirrus_amp_1_speaker ev: 2
[ 31.469826] cs35l41 18-0040: cs35l41_main_amp_event PMU
[ 31.470033] cs35l41 18-0040: cs35l41_pcm_mute mute=0
[ 31.470616] cs35l41 18-0040: cs35l41_pcm_mute: Unmuted
[ 31.470623] cs35l41 18-0040: PWR_CTRL1 = 0x1
[ 31.470625] cs35l41 18-0040: PWR_CTRL2 = 0x3721
[ 31.470627] cs35l41 18-0040: DIG_VOL_CTRL = 0x8001
[ 31.470629] cs35l41 18-0040: GAIN_CTRL = 0x253
[ 31.470633] cs35l41 18-0041: cs35l41_pcm_mute mute=0
[ 31.471127] cs35l41 18-0041: cs35l41_pcm_mute: Unmuted
[ 31.471312] cs35l41 18-0041: PWR_CTRL1 = 0x0
[ 31.471316] cs35l41 18-0041: PWR_CTRL2 = 0x0
[ 31.471320] cs35l41 18-0041: DIG_VOL_CTRL = 0xa679
[ 31.471324] cs35l41 18-0041: GAIN_CTRL = 0x13
[ 31.481147] msm-dwc3 a600000.ssusb: DWC3_CONTROLLER_CONNDONE_EVENT received
[ 31.482137] ts_print: tsens[0:657][1:749][2:739][3:759][4:759][5:739][6:780][7:725][8:766][9:752][10:776][11:793][12:845][13:787][14:602][15:595][16:663][17:674][18:728][19:728][20:763][21:578][22:533][23:544][24:653][25:646][26:574][27:530][28:540][29:557][30:526][31:550]
[ 31.482431] pmon: Pending Wakeup Sources: usb_notify a600000.ssusb nfc_wake_lock
[ 31.524199] msm-dwc3 a600000.ssusb: msm_dwc3_pwr_irq received
[ 31.524224] msm-dwc3 a600000.ssusb: dwc3_pwr_event_handler irq_stat=241004
[ 31.524231] msm-dwc3 a600000.ssusb: dwc3_pwr_event_handler: unexpected PWR_EVNT, irq_stat=241000
[ 31.540707] android_work: sent uevent USB_STATE=CONNECTED
[ 31.543014] msm-dwc3 a600000.ssusb: DWC3_CONTROLLER_NOTIFY_CLEAR_DB
[ 31.544708] usb_notify: send_otg_notify event=usb_d_unconfigured(34) enable=1
[ 31.544723] usb_notify: extra_notifier_callback event=usb_d_unconfigured(34)
[ 31.544729] usb_notify: extra_notify_state+ event=usb_d_unconfigured(34), enable=on
[ 31.544735] usb_notify: extra_notify_state- event=usb_d_unconfigured(34), cable=vbus
[ 31.544741] [USB] set_vbus_current: 100mA
[ 31.544761] sec_bat_set_usb_configure: usb configured 0 -> 100
[ 31.544768] sec_bat_set_current_event: current event before(0x40100004), after(0x40100004)
[ 31.544870] msm-usb-hsphy 88e3000.hsphy: Avail curr from USB = 100
[ 31.544878] msm-usb-hsphy 88e3000.hsphy: Error (-19) setting input current limit
[ 31.545041] sec-battery samsung_mobile_device:battery: sec_bat_cable_work: Start
[ 31.545049] sec_bat_set_current_event: current event before(0x40100004), after(0x40100004)
[ 31.545057] sec-battery samsung_mobile_device:battery: cw_check_skip_condition: set usb charging current to 100 mA
[ 31.545066] sec_bat_check_afc_temp: cable_type(4), chg_limit(0)
[ 31.545073] sec_bat_check_lrp_step: st1(380), st2(900), recv_st1(360), recv_st2(380), lrp(363)
[ 31.545079] sec_bat_check_lrp_temp: force_check(0), ret(5000), lcd(1)
[ 31.545084] sec_bat_check_lrp_temp: cable_type(4), lrp_step(0), lrp(363)
[ 31.545089] sec_bat_check_temp_ctrl_by_cable: ct : USB
[ 31.545095] sec-battery samsung_mobile_device:battery: cw_check_skip_condition: Cable is NOT Changed(4)
[ 31.545101] sec-battery samsung_mobile_device:battery: sec_bat_cable_work: End
[ 31.594665] msm-dwc3 a600000.ssusb: DWC3_CONTROLLER_CONNDONE_EVENT received
[ 31.665078] [USB] ss_monitor_setup: GET_DES(HS)
[ 31.666036] [USB] ss_monitor_setup: GET_CONFIG (0)
[ 31.666190] [USB] ss_monitor_setup: GET_CONFIG (0)
[ 31.670948] [USB] ss_monitor_setup: SET_CONFIG (1)
[ 31.671219] conn_gadget_function_set_alt: intf: 3 alt: 0
[ 31.671257] conn_gadget_function_set_alt() kfifo_reset
[ 31.671533] usb_notify: send_otg_notify event=usb_d_configured(35) enable=1
[ 31.671542] usb_notify: extra_notifier_callback event=usb_d_configured(35)
[ 31.671548] usb_notify: extra_notify_state+ event=usb_d_configured(35), enable=on
[ 31.671554] usb_notify: extra_notify_state- event=usb_d_configured(35), cable=vbus
[ 31.671559] [USB] set_vbus_current: 475mA
[ 31.671576] sec_bat_set_usb_configure: usb configured 0 -> 475
[ 31.671585] _sec_vote(sec_bat_set_usb_configure:4023): FCC (VOTER_USB_100MA, 100) -> (VOTER_CABLE, 550)
[ 31.671601] sec_direct_chg_set_charging_current: called(550mA)
[ 31.672315] msm-usb-hsphy 88e3000.hsphy: Avail curr from USB = 500
[ 31.672325] msm-usb-hsphy 88e3000.hsphy: Error (-19) setting input current limit
[ 31.672735] android_work: sent uevent USB_STATE=CONFIGURED
[ 31.675674] [max77705_set_charge_current] REG(0xb9) DATA(0x0b), CURRENT(550)
[ 31.675705] set_charging_current: power(500), input(100), charge(550)
[ 31.675716] _sec_vote(sec_bat_set_usb_configure:4024): ICL (VOTER_USB_100MA, 100) -> (VOTER_CABLE, 475)
[ 31.675797] sec_direct_chg_set_input_current: called(475mA)
[ 31.677103] [SSC_FAC] light_copr_debug_work_func: 8,28,27,8,23,21,8,29,27,9,29,27
[ 31.678650] [max77705_set_input_current] REG(0xc0) DATA(0x12), CURRENT(475)
[ 31.678670] sec_bat_set_current_event: current event before(0x40100004), after(0x100004)
[ 31.678710] sec-battery samsung_mobile_device:battery: sec_bat_cable_work: Start
[ 31.678715] sec_bat_set_current_event: current event before(0x100004), after(0x100004)
[ 31.678720] sec-battery samsung_mobile_device:battery: cw_check_skip_condition: set usb charging current to 475 mA
[ 31.678725] sec_bat_check_afc_temp: cable_type(4), chg_limit(0)
[ 31.678728] sec_bat_check_lrp_step: st1(380), st2(900), recv_st1(360), recv_st2(380), lrp(363)
[ 31.678730] sec_bat_check_lrp_temp: force_check(0), ret(5000), lcd(1)
[ 31.678733] sec_bat_check_lrp_temp: cable_type(4), lrp_step(0), lrp(363)
[ 31.678734] sec_bat_check_temp_ctrl_by_cable: ct : USB
[ 31.678737] sec-battery samsung_mobile_device:battery: cw_check_skip_condition: Cable is NOT Changed(4)
[ 31.678739] sec-battery samsung_mobile_device:battery: sec_bat_cable_work: End
[ 31.702504] dev_name = 7:232,total_blks = 344391,skipped_blks = 21985,corrupted_blks = 0,fec_correct_blks = 0
[ 31.723999] !@AM_BOOT_PROGRESS , uid : 0, state: -1, progress : 1, step : SYSTEM_USER_UNLOCK_MSG, description : Done mSystemServiceManager.onUserUnlocking
[ 31.728384] !@AM_BOOT_PROGRESS , uid : 0, state: 2, progress : 0, step : finishUserUnlocked, description : NULL
[ 31.729078] !@AM_BOOT_PROGRESS , uid : 0, state: 2, progress : 1, step : finishUserUnlocked, description : Try StorageManager.isUserKeyUnlocked
[ 31.729334] !@AM_BOOT_PROGRESS , uid : 0, state: 2, progress : 1, step : finishUserUnlocked, description : OK StorageManager.isUserKeyUnlocked
[ 31.742133] !@No record file for uid 0 exists
[ 31.744018] !@verify ret = 0, uid = 0, type = T
[ 31.753359] !@No record file for uid 0 exists
[ 31.754376] !@verify ret = 0, uid = 0, type = T
[ 31.811125] sec_argos:argos_pm_qos_notify() name:UFS, speed:521Mbps, prev level:-1, request level:0
[ 31.811134] sec_argos:argos_freq_lock() update cpu freq 892800
[ 31.811137] set_freq_limit: cflm: id(3) freq(892800)
[ 31.811139] cflm_freq_decision: input: type(3), min(892800), max(0)
[ 31.811146] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(1286400 ~ 2112000), p(1286400 ~ 2726400)
[ 31.839786] !@AM_BOOT_PROGRESS , uid : 0, state: 3, progress : 1, step : finishUserUnlocked, description : send USER UNLOCKED
[ 31.843470] !@AM_BOOT_PROGRESS , uid : 0, state: 3, progress : 2, step : finishUserUnlockedCompleted, description : NULL
[ 31.843561] !@AM_BOOT_PROGRESS , uid : 0, state: 3, progress : 1, step : finishUserUnlockedCompleted, description : OK StorageManager.isUserKeyUnlocked
[ 31.907862] tsp: [sec_input] sec_cmd_store: push cmd: set_grip_data,1,45,7,24,702,24,2340
[ 31.907874] tsp: [sec_input] sec_cmd_store_function: cmd = set_grip_data param = 1 45 7 24 702 24 2340
[ 31.907893] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: flag: 04 (clr,lan,nor,edg,han)
[ 31.908280] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: 0x08 07,18,02,BE
[ 31.908296] stm_ts_spi spi0.0: [sec_input] set_grip_data: OK
[ 31.908686] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 C1 08 00 00 00 00 07 18 02 BE 00 00 00 00
[ 31.923447] !@AM_BOOT_PROGRESS , uid : 0, state: 3, progress : 2, step : finishUserUnlockedCompleted, description : send BOOT COMPLETED and complete NULL
[ 31.923491] !@AM_BOOT_PROGRESS , uid : 0, state: 3, progress : 2, step : finishUserUnlocked, description : NULL
[ 31.923573] !@AM_BOOT_PROGRESS , uid : 0, state: -1, progress : 2, step : SYSTEM_USER_UNLOCK_MSG, description : NULL
[ 32.043562] servicemanager: Caller(pid=5362,uid=10290,sid=u:r:mediaprovider_app:s0:c34,c257,c512,c768) Found vendor.samsung.frameworks.codecsolution.ISehCodecSolution/default in framework VINTF manifest.
[ 32.051091] cflm_freq_decision: input: type(0), min(-1), max(0)
[ 32.051129] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(633600 ~ 2112000), p(806400 ~ 2726400)
[ 32.103544] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 32.144924] QSEECOM: qseecom_load_app: App with id 55 (vaultkeeper) now loaded
[ 32.146556] vaultkeeper: QSEECom_start_app done
[ 32.151526] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 32.163075] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 32.170679] vaultkeeper: QSEECom_send_cmd done(8647/0x0c000c03/VK)
[ 32.173201] QSEECOM: __qseecom_unload_app: App (55) is unloaded
[ 32.173419] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 32.173444] vaultkeeper: Failed cmdProcessing(-10032)
[ 32.173474] vaultkeeper: runCommand error.(-10032)
[ 32.173490] vaultkeeper: There is no VK ID
[ 32.173509] vaultkeeper: VaultKeeper service preparation is failed
[ 32.186984] dev_name = 254:2,total_blks = 360781,skipped_blks = 23563,corrupted_blks = 0,fec_correct_blks = 0
[ 32.202629] pca9481_read_adc: adc_ch=5, raw_adc=0x44e, convert_val=1102000
[ 32.209559] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 32.214468] servicemanager: Caller(pid=2420,uid=1000,sid=u:r:system_server:s0) Since 'apexservice' could not be found trying to start it as a lazy AIDL service. (if it's not configured to be a lazy service, it may be stuck starting or still starting).
[ 32.216558] init: service 'apexd' requested start, but it is already running (flags: 134)
[ 32.216573] init: Control message: Processed ctl.interface_start for 'aidl/apexservice' from pid: 597 (/system/bin/servicemanager)
[ 32.223839] CASS: VaultKeeper is not ready. try again Retry cnt(21).
[ 32.266465] cirrus cirrus_cal: variable read failed
[ 32.266491] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 32.268602] max77705_fg_read_avg_current: avg_current=-1029mA
[ 32.270251] max77705_fg_read_avg_current: avg_current=-1029mA
[ 32.271694] init: processing action (vendor.thermal.amb.last=*) from (/vendor/etc/init/vendor.samsung.hardware.thermal@1.0-service.rc:18)
[ 32.279543] !@ check_set_fs_encrypt(1204) : created
[ 32.281575] !@ check_fs_encrypt(1070) : FS_IOC_GET_ENCRYPTION_POLICY_EX(ret 0, err 2)
[ 32.281612] !@ check_fs_encrypt(1086) : encrypted
[ 32.281644] !@ check_set_fs_encrypt(1247) : encrypt (expect enc, result enc) ret 0
[ 32.281714] !@ get_dir_size : /data/rdx_dump/test(4)
[ 32.282410] !@ print_dir_status : total size(4)
[ 32.282436] !@ rdxd ended
[ 32.325312] msm_vidc: err : ffffffff: codec: Mani msm_vidc_session_streamoff - 0
[ 32.325801] msm_vidc: err : ffffffff: codec: Mani streamoff successful
[ 32.338077] msm_vidc: err : ffffffff: codec: Mani msm_vidc_session_streamoff - 1
[ 32.338829] msm_vidc: err : ffffffff: codec: Mani streamoff successful
[ 32.338884] msm_vidc: err : ffffffff: codec: Mani msm_vidc_session_streamoff - 0
[ 32.339281] msm_vidc: err : ffffffff: codec: Mani streamoff successful
[ 32.451309] audit: type=1400 audit(1749960117.243:454): avc: denied { write } for pid=4056 comm="Worker-1" name="property_service" dev="tmpfs" ino=689 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=0
[ 32.451694] audit: type=1400 audit(1749960117.243:455): avc: denied { write } for pid=4056 comm="Worker-1" name="property_service" dev="tmpfs" ino=689 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=0
[ 32.534939] [Hyst QoS] PerfLock ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 32.535898] cflm_freq_decision: input: type(0), min(1728000), max(0)
[ 32.535933] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(1728000 ~ 1766400), p(1728000 ~ 2284800)
[ 32.539847] apexd: Scanning /system/apex for pre-installed ApexFiles
[ 32.540044] apexd: Found pre-installed APEX /system/apex/com.android.apex.cts.shim.apex
[ 32.540441] apexd: Found pre-installed APEX /system/apex/com.android.btservices.apex
[ 32.540545] apexd: Found pre-installed APEX /system/apex/com.android.devicelock.apex
[ 32.540623] apexd: Found pre-installed APEX /system/apex/com.android.i18n.apex
[ 32.540702] apexd: Found pre-installed APEX /system/apex/com.android.profiling.capex
[ 32.540768] apexd: Found pre-installed APEX /system/apex/com.android.rkpd.apex
[ 32.540833] apexd: Found pre-installed APEX /system/apex/com.android.runtime.apex
[ 32.540893] apexd: Found pre-installed APEX /system/apex/com.android.uwb.capex
[ 32.540952] apexd: Found pre-installed APEX /system/apex/com.android.virt.apex
[ 32.541124] apexd: Found pre-installed APEX /system/apex/com.android.wifi.capex
[ 32.541186] apexd: Found pre-installed APEX /system/apex/com.google.android.adbd_compressed.apex
[ 32.541242] apexd: Found pre-installed APEX /system/apex/com.google.android.adservices_compressed.apex
[ 32.541300] apexd: Found pre-installed APEX /system/apex/com.google.android.appsearch_compressed.apex
[ 32.541356] apexd: Found pre-installed APEX /system/apex/com.google.android.art_compressed.apex
[ 32.541622] apexd: Found pre-installed APEX /system/apex/com.google.android.cellbroadcast_compressed.apex
[ 32.541693] apexd: Found pre-installed APEX /system/apex/com.google.android.configinfrastructure_compressed.apex
[ 32.541757] apexd: Found pre-installed APEX /system/apex/com.google.android.conscrypt_compressed.apex
[ 32.541810] apexd: Found pre-installed APEX /system/apex/com.google.android.extservices_tplus_compressed.apex
[ 32.541862] apexd: Found pre-installed APEX /system/apex/com.google.android.healthfitness_compressed.apex
[ 32.541912] apexd: Found pre-installed APEX /system/apex/com.google.android.ipsec_compressed.apex
[ 32.541963] apexd: Found pre-installed APEX /system/apex/com.google.android.media.swcodec_compressed.apex
[ 32.542055] apexd: Found pre-installed APEX /system/apex/com.google.android.media_compressed.apex
[ 32.542158] apexd: Found pre-installed APEX /system/apex/com.google.android.mediaprovider_compressed.apex
[ 32.542228] apexd: Found pre-installed APEX /system/apex/com.google.android.neuralnetworks_compressed.apex
[ 32.542287] apexd: Found pre-installed APEX /system/apex/com.google.android.ondevicepersonalization_compressed.apex
[ 32.542341] apexd: Found pre-installed APEX /system/apex/com.google.android.os.statsd_compressed.apex
[ 32.542398] apexd: Found pre-installed APEX /system/apex/com.google.android.permission_compressed.apex
[ 32.542448] apexd: Found pre-installed APEX /system/apex/com.google.android.resolv_compressed.apex
[ 32.542532] apexd: Found pre-installed APEX /system/apex/com.google.android.scheduling_compressed.apex
[ 32.542592] apexd: Found pre-installed APEX /system/apex/com.google.android.sdkext_compressed.apex
[ 32.542647] apexd: Found pre-installed APEX /system/apex/com.google.android.tethering_compressed.apex
[ 32.542711] apexd: Found pre-installed APEX /system/apex/com.google.android.tzdata6.apex
[ 32.542772] apexd: Found pre-installed APEX /system/apex/com.google.mainline.primary.libs.apex
[ 32.542832] apexd: Found pre-installed APEX /system/apex/com.samsung.android.lifeguard.signed.apex
[ 32.542895] apexd: Found pre-installed APEX /system/apex/com.samsung.android.shell.apex
[ 32.542957] apexd: Found pre-installed APEX /system/apex/com.samsung.android.spqr.apex
[ 32.543029] apexd: Scanning /system_ext/apex for pre-installed ApexFiles
[ 32.543084] apexd: Found pre-installed APEX /system_ext/apex/com.android.vndk.v31.apex
[ 32.543153] apexd: Scanning /product/apex for pre-installed ApexFiles
[ 32.543178] apexd: /product/apex does not exist. Skipping
[ 32.543182] apexd: Scanning /vendor/apex for pre-installed ApexFiles
[ 32.543232] apexd: Found pre-installed APEX /vendor/apex/com.samsung.android.authfw.ta.preload.apex
[ 32.543309] apexd: Found pre-installed APEX /vendor/apex/com.samsung.android.biometrics.face.signed.apex
[ 32.543368] apexd: Found pre-installed APEX /vendor/apex/com.samsung.android.biometrics.fingerprint.signed.apex
[ 32.543425] apexd: Found pre-installed APEX /vendor/apex/com.samsung.android.camera.qciq.signed.apex
[ 32.543481] apexd: Found pre-installed APEX /vendor/apex/com.samsung.android.camera.unihal.signed.apex
[ 32.543564] apexd: No block apex metadata partition found, not adding block apexes
[ 32.543569] apexd: Populating APEX database from mounts...
[ 32.544404] apexd: Found "/apex/com.android.tzdata@351400020" backed by file /system/apex/com.google.android.tzdata6.apex
[ 32.544517] apexd: Found "/apex/com.android.virt@2" backed by file /system/apex/com.android.virt.apex
[ 32.544616] apexd: Found "/apex/com.android.i18n@1" backed by file /system/apex/com.android.i18n.apex
[ 32.544711] apexd: Found "/apex/com.samsung.android.shell@342504171" backed by file /system/apex/com.samsung.android.shell.apex
[ 32.544801] apexd: Found "/apex/com.android.runtime@1" backed by file /system/apex/com.android.runtime.apex
[ 32.544885] apexd: Found "/apex/com.android.vndk.v31@1" backed by file /system_ext/apex/com.android.vndk.v31.apex
[ 32.544967] apexd: Found "/apex/com.android.rkpd@352090000" backed by file /system/apex/com.android.rkpd.apex
[ 32.545056] apexd: Found "/apex/com.android.apex.cts.shim@1" backed by file /system/apex/com.android.apex.cts.shim.apex
[ 32.545766] apexd: Found "/apex/com.samsung.android.spqr@432" backed by file /system/apex/com.samsung.android.spqr.apex
[ 32.545889] apexd: Found "/apex/com.android.btservices@352090000" backed by file /system/apex/com.android.btservices.apex
[ 32.546091] apexd: Found "/apex/com.samsung.android.camera.unihal@330661401" backed by file /vendor/apex/com.samsung.android.camera.unihal.signed.apex
[ 32.546802] apexd: Found "/apex/com.android.ondevicepersonalization@351421000" backed by file /data/apex/decompressed/com.android.ondevicepersonalization@351421000.decompressed.apex
[ 32.547048] apexd: Found "/apex/com.samsung.android.biometrics.face@311722300" backed by file /vendor/apex/com.samsung.android.biometrics.face.signed.apex
[ 32.547146] apexd: Found "/apex/com.google.mainline.primary.libs@351165000" backed by file /system/apex/com.google.mainline.primary.libs.apex
[ 32.547241] apexd: Found "/apex/com.samsung.android.authfw.ta@315140900" backed by file /vendor/apex/com.samsung.android.authfw.ta.preload.apex
[ 32.547328] apexd: Found "/apex/com.samsung.android.biometrics.fingerprint@311722300" backed by file /vendor/apex/com.samsung.android.biometrics.fingerprint.signed.apex
[ 32.548052] apexd: Found "/apex/com.android.conscrypt@351412000" backed by file /data/apex/decompressed/com.android.conscrypt@351412000.decompressed.apex
[ 32.549486] apexd: Found "/apex/com.android.devicelock@1" backed by file /system/apex/com.android.devicelock.apex
[ 32.549733] apexd: Found "/apex/com.android.adbd@351010000" backed by file /data/apex/decompressed/com.android.adbd@351010000.decompressed.apex
[ 32.549834] apexd: Found "/apex/com.samsung.android.lifeguard@332017701" backed by file /system/apex/com.samsung.android.lifeguard.signed.apex
[ 32.550055] apexd: Found "/apex/com.android.wifi@352090000" backed by file /data/apex/decompressed/com.android.wifi@352090000.decompressed.apex
[ 32.550351] apexd: Found "/apex/com.android.os.statsd@351416000" backed by file /data/apex/decompressed/com.android.os.statsd@351416000.decompressed.apex
[ 32.550542] apexd: Found "/apex/com.android.mediaprovider@351416160" backed by file /data/apex/decompressed/com.android.mediaprovider@351416160.decompressed.apex
[ 32.550721] apexd: Found "/apex/com.android.media.swcodec@351311120" backed by file /data/apex/decompressed/com.android.media.swcodec@351311120.decompressed.apex
[ 32.550884] apexd: Found "/apex/com.android.appsearch@351412000" backed by file /data/apex/decompressed/com.android.appsearch@351412000.decompressed.apex
[ 32.551052] apexd: Found "/apex/com.android.adservices@351420000" backed by file /data/apex/decompressed/com.android.adservices@351420000.decompressed.apex
[ 32.551209] apexd: Found "/apex/com.android.cellbroadcast@351410000" backed by file /data/apex/decompressed/com.android.cellbroadcast@351410000.decompressed.apex
[ 32.551361] apexd: Found "/apex/com.android.neuralnetworks@351010040" backed by file /data/apex/decompressed/com.android.neuralnetworks@351010040.decompressed.apex
[ 32.551526] apexd: Found "/apex/com.android.media@351311020" backed by file /data/apex/decompressed/com.android.media@351311020.decompressed.apex
[ 32.551688] apexd: Found "/apex/com.android.configinfrastructure@351010000" backed by file /data/apex/decompressed/com.android.configinfrastructure@351010000.decompressed.apex
[ 32.551848] apexd: Found "/apex/com.android.extservices@351423043" backed by file /data/apex/decompressed/com.android.extservices@351423043.decompressed.apex
[ 32.552110] apexd: Found "/apex/com.android.profiling@352090000" backed by file /data/apex/decompressed/com.android.profiling@352090000.decompressed.apex
[ 32.552412] apexd: Found "/apex/com.android.permission@351410020" backed by file /data/apex/decompressed/com.android.permission@351410020.decompressed.apex
[ 32.552580] apexd: Found "/apex/com.android.art@351410020" backed by file /data/apex/decompressed/com.android.art@351410020.decompressed.apex
[ 32.552740] apexd: Found "/apex/com.android.uwb@352090000" backed by file /data/apex/decompressed/com.android.uwb@352090000.decompressed.apex
[ 32.552843] apexd: Found "/apex/com.samsung.android.camera.qciq@311319700" backed by file /vendor/apex/com.samsung.android.camera.qciq.signed.apex
[ 32.553004] apexd: Found "/apex/com.android.ipsec@351410000" backed by file /data/apex/decompressed/com.android.ipsec@351410000.decompressed.apex
[ 32.553161] apexd: Found "/apex/com.android.scheduling@351010000" backed by file /data/apex/decompressed/com.android.scheduling@351010000.decompressed.apex
[ 32.553336] apexd: Found "/apex/com.android.tethering@351415080" backed by file /data/apex/decompressed/com.android.tethering@351415080.decompressed.apex
[ 32.554102] apexd: Found "/apex/com.android.sdkext@351415000" backed by file /data/apex/decompressed/com.android.sdkext@351415000.decompressed.apex
[ 32.554324] apexd: Found "/apex/com.android.resolv@351111040" backed by file /data/apex/decompressed/com.android.resolv@351111040.decompressed.apex
[ 32.554957] apexd: Found "/apex/com.android.healthfitness@351420080" backed by file /data/apex/decompressed/com.android.healthfitness@351420080.decompressed.apex
[ 32.558274] apexd: 42 packages restored.
[ 32.558302] apexd: Scanning /data/apex/active for data ApexFiles
[ 32.558423] AidlLazyServiceRegistrar: Registering service apexservice
[ 32.559371] servicemanager: Notifying apexservice they do (previously: don't) have clients when service is guaranteed to be in use
[ 32.559704] AidlLazyServiceRegistrar: Trying to shut down the service. No clients in use for any service in process.
[ 32.559836] servicemanager: Caller(pid=5313,uid=0,sid=u:r:apexd:s0) Tried to unregister apexservice, but there are clients.
[ 32.559893] AidlLazyServiceRegistrar: Failed to unregister service apexservice (Status(-5, EX_ILLEGAL_STATE): 'Can't unregister, known client.')
[ 32.559996] AidlLazyServiceRegistrar: Process has 1 (of 1 available) client(s) in use after notification apexservice has clients: 1
[ 32.566453] cflm_freq_decision: input: type(0), min(2726400), max(0)
[ 32.566477] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(2496000 ~ 1651200), p(2726400 ~ 2054400)
[ 32.570114] BpBinder: onLastStrongRef automatically unlinking death recipients:
[ 32.570736] apexd: destroyCeSnapshotsNotSpecified() received by ApexService user_id : 0 retain_rollback_ids : []
[ 32.685318] !@Boot_EBS_D: Launcher.onCreate()
[ 32.700802] [SSC_FAC] light_copr_debug_work_func: 3,14,13,4,12,11,3,14,13,3,14,13
[ 32.813615] sec_argos:argos_pm_qos_notify() name:UFS, speed:269Mbps, prev level:0, request level:-1
[ 32.813623] sec_argos:argos_freq_lock() update cpu freq -1
[ 32.813626] set_freq_limit: cflm: id(3) freq(-1)
[ 32.813629] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 32.813641] cflm_update_current_freq: current freq: s(1689600 ~ 1785600), g(2496000 ~ 1766400), p(2726400 ~ 2284800)
[ 32.839390] [SDE_0][mDNIe] scenario_show : [mDNIe] Current APP : Current APP: UI_APP
[ 32.864917] !@Boot_EBS_D: Launcher.onStart()
[ 32.866233] !@Boot_EBS_D: Launcher.onResume()
[ 32.868759] !@ 8,0 r 54217 2362469 w 2139 35536 d 949 34992 f 0 428 iot 18736 0 th 0 0 0 pt 0 inp 0 0 32.838
[ 32.868963] !@ MemInfo(KB): total 7394220 free 1553244 avail 4201524 actv(f) 299360 inactv(f) 2122592 dirty 2212 wb 104 anonpg 1515256 slab 426832
[ 32.869228] !@ Read_top(KB): hbox:interactor(5337) 21952 s.messaging:rcs(5403) 18396 martsuggestions(5325) 17764
[ 32.869256] !@ Write_top(KB): f2fs_ckpt-254:5(1153) 720 system_server(2420) 716 ogle.android.as(5328) 220
[ 32.901420] audit: type=1400 audit(1749960117.691:456): avc: denied { read } for pid=3805 comm="id.app.launcher" name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=536 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0
[ 32.904229] servicemanager: Caller(pid=3805,uid=10153,sid=u:r:platform_app:s0:c512,c768) Could not find android.hardware.graphics.allocator.IAllocator/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 32.909162] servicemanager: Caller(pid=3805,uid=10153,sid=u:r:platform_app:s0:c512,c768) Could not find android.hardware.graphics.allocator.IAllocator/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 32.923923] cflm_freq_decision: input: type(0), min(2726400), max(0)
[ 32.923937] cflm_update_current_freq: current freq: s(1689600 ~ 1785600), g(2496000 ~ 1881600), p(2726400 ~ 2400000)
[ 32.924263] [Hyst QoS] PerfLock ::: Rqst Val(3000000), Type(0), Qos Value(3000000)
[ 32.924285] [Hyst QoS] PerfLock ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 32.924364] [Hyst QoS] PerfLock ::: Rqst Val(3000000), Type(0), Qos Value(3000000)
[ 32.924564] [Hyst QoS] PerfLock ::: Rqst Val(5000000), Type(0), Qos Value(5000000)
[ 32.925180] cflm_freq_decision: input: type(0), min(2726400), max(0)
[ 32.925186] cflm_update_current_freq: current freq: s(1689600 ~ 1785600), g(2496000 ~ 1766400), p(2726400 ~ 2284800)
[ 32.944222] servicemanager: Caller(pid=5591,uid=1000,sid=u:r:system_app:s0) Found vendor.samsung.hardware.hyper.ISehHyPer/default in device VINTF manifest.
[ 33.178896] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 33.195321] [SDE_0][mDNIe] scenario_show : [mDNIe] Current APP : Current APP: UI_APP
[ 33.214084] cs40l26 56-0040: cs40l26_suspend: Enabling hibernation
[ 33.214657] cs40l26 56-0040: cs40l26_pm_state_transition PM state: ALLOW_HIBERNATE
[ 33.217811] QSEECOM: qseecom_load_app: App with id 56 (vaultkeeper) now loaded
[ 33.219101] dev_name = 254:0,total_blks = 377170,skipped_blks = 25279,corrupted_blks = 0,fec_correct_blks = 0
[ 33.224195] vaultkeeper: QSEECom_start_app done
[ 33.225722] CASS: VaultKeeper is not ready. try again Retry cnt(23).
[ 33.226246] cflm_freq_decision: input: type(0), min(2726400), max(0)
[ 33.226259] cflm_update_current_freq: current freq: s(1689600 ~ 1785600), g(2496000 ~ 1881600), p(2726400 ~ 2400000)
[ 33.247904] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 33.260835] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 33.274904] vaultkeeper: QSEECom_send_cmd done(5915/0x0c000c03/VK)
[ 33.280643] QSEECOM: __qseecom_unload_app: App (56) is unloaded
[ 33.280879] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 33.280907] vaultkeeper: Failed cmdProcessing(-10032)
[ 33.280938] vaultkeeper: runCommand error.(-10032)
[ 33.280955] vaultkeeper: There is no VK ID
[ 33.280973] vaultkeeper: VaultKeeper service preparation is failed
[ 33.314331] sec_argos:argos_pm_qos_notify() name:UFS, speed:581Mbps, prev level:-1, request level:0
[ 33.314342] sec_argos:argos_freq_lock() update cpu freq 892800
[ 33.314345] set_freq_limit: cflm: id(3) freq(892800)
[ 33.314347] cflm_freq_decision: input: type(3), min(892800), max(0)
[ 33.314361] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(2496000 ~ 1881600), p(2726400 ~ 2400000)
[ 33.497043] servicemanager: Caller(pid=5591,uid=1000,sid=u:r:system_app:s0) Could not find android.hardware.thermal.IThermal/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 33.567520] cflm_freq_decision: input: type(0), min(-1), max(0)
[ 33.567542] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(633600 ~ 1881600), p(806400 ~ 2400000)
[ 33.636321] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 33.636333] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 33.640250] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 33.640341] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 33.640377] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 33.640394] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 33.640775] [SDE_0] ss_brightness_dcs : tx_time(0.360ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 33.640782] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 33.640793] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 33.642820] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (5846.695987 ms delta, 0/24)
[ 33.646873] dev_name = 254:0,total_blks = 393560,skipped_blks = 27520,corrupted_blks = 0,fec_correct_blks = 0
[ 33.673791] init: processing action (service.dexonpc.running=0) from (/system/etc/init/hw/init.rc:3303)
[ 33.684737] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.892916 ms delta, 23/24)
[ 33.726527] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.761719 ms delta, 23/24)
[ 33.729213] [SSC_FAC] light_copr_debug_work_func: 8,29,27,8,23,21,8,29,27,9,30,27
[ 33.738937] cflm_freq_decision: input: type(0), min(2400000), max(0)
[ 33.738959] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(2400000 ~ 1881600), p(2400000 ~ 2400000)
[ 33.786907] i2c_geni 888000.i2c: i2c error :-107
[ 33.786934] sec_nfc: i2c_write: write failed ret(-107), maybe in standby
[ 33.838229] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 33.846176] adsp_sleepmon: Audio: num_sessions=0,num_lpi_sessions=0,timer_pending=1
[ 33.847802] cs35l41 18-0040: cs35l41_pcm_mute mute=1
[ 33.850416] msm_vidc: err : ffffffff: codec: Entering suspend
[ 33.857523] [USB] guid_show: line = [330]
[ 33.866247] cs35l41 18-0040: IRQ1_STATUS1 = 0x1400000
[ 33.866515] cs35l41 18-0040: MBOX status = 0x0
[ 33.866526] cs35l41 18-0041: cs35l41_pcm_mute mute=1
[ 33.882764] cs35l41 18-0041: IRQ1_STATUS1 = 0x0
[ 33.883029] cs35l41 18-0041: MBOX status = 0x0
[ 33.883044] msm_common_snd_shutdown(): substream = subdevice #0 stream = 0
[ 33.883051] waipio-asoc-snd soc:spf_core_platform:sound: check_userspace_service_state: pcm_id 27 state 0
[ 33.883479] msm_common_snd_shutdown: prm tdm clk cfg set success ret 0
[ 33.883744] msm_common_snd_shutdown:pinctrl set sleep success 0
[ 33.884628] lpass-cdc soc:spf_core_platform:lpass-cdc: cirrus_amp_1_speaker ev: 4
[ 33.886942] cirrus cirrus_bd: Values stored for amp_1:
[ 33.886951] cirrus cirrus_bd: Max Excursion: 0.0142
[ 33.886955] cirrus cirrus_bd: Over Excursion Count: 0
[ 33.886957] cirrus cirrus_bd: Max Temp: 23.0000
[ 33.886960] cirrus cirrus_bd: Over Temp Count: 0
[ 33.886962] cirrus cirrus_bd: Abnormal Mute: 0
[ 33.886964] cirrus cirrus_bd: Timestamp: 33856951080
[ 33.887409] [FACTORY] send_nfc_cover_status: nfc_cover_status=0
[ 33.893462] cs35l41 18-0040: cs35l41_main_amp_event PMD
[ 33.907520] [FACTORY] send_flip_cover_status_to_mag_sensor: nfc_cover_status=0 set in mag sensor
[ 33.907536] [FACTORY] nfc_cover_status_store: status=0
[ 33.908249] fcd_notifier_call_chain - 0
[ 33.909040] cs35l41 18-0040: cs35l41_pcm_vol_put: 0x0
[ 33.954664] [USB] guid_show: line = [330]
[ 33.959395] servicemanager: Caller(pid=5591,uid=1000,sid=u:r:system_app:s0) Could not find android.hardware.thermal.IThermal/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 34.146051] audit: type=1400 audit(1749960118.935:457): avc: denied { read } for pid=5591 comm="c.android.sdhms" name="date" dev="sysfs" ino=83467 scontext=u:r:system_app:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=0
[ 34.148604] audit: type=1400 audit(1749960118.939:458): avc: denied { read } for pid=5591 comm="c.android.sdhms" name="time" dev="sysfs" ino=83468 scontext=u:r:system_app:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=0
[ 34.148768] audit: type=1400 audit(1749960118.939:459): avc: denied { read } for pid=5591 comm="c.android.sdhms" name="since_epoch" dev="sysfs" ino=83469 scontext=u:r:system_app:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=0
[ 34.200814] max77705_fg_read_rawsoc: raw capacity (0.01%) (9248)
[ 34.201360] max77705_fg_read_qh : QH(3055000)
[ 34.216791] servicemanager: selinux_check_access(u:r:system_app:s0,u:object_r:default_android_service:s0,service_manager,find,AuditCallbackData(sctx,vendor.qti.hardware.perf2.IPerf/default))-1
[ 34.226133] CASS: VaultKeeper is not ready. try again Retry cnt(25).
[ 34.291681] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 34.317669] sec_argos:argos_pm_qos_notify() name:UFS, speed:202Mbps, prev level:0, request level:-1
[ 34.317685] sec_argos:argos_freq_lock() update cpu freq -1
[ 34.317691] set_freq_limit: cflm: id(3) freq(-1)
[ 34.317696] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 34.317724] cflm_update_current_freq: current freq: s(960000 ~ 1785600), g(2400000 ~ 1766400), p(2400000 ~ 2284800)
[ 34.327715] QSEECOM: qseecom_load_app: App with id 57 (vaultkeeper) now loaded
[ 34.329337] vaultkeeper: QSEECom_start_app done
[ 34.338530] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 34.343534] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 34.348148] vaultkeeper: QSEECom_send_cmd done(4638/0x0c000c03/VK)
[ 34.350405] QSEECOM: __qseecom_unload_app: App (57) is unloaded
[ 34.350598] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 34.350625] vaultkeeper: Failed cmdProcessing(-10032)
[ 34.350657] vaultkeeper: runCommand error.(-10032)
[ 34.350676] vaultkeeper: There is no VK ID
[ 34.350695] vaultkeeper: VaultKeeper service preparation is failed
[ 34.409395] cflm_freq_decision: input: type(0), min(2400000), max(0)
[ 34.409410] cflm_update_current_freq: current freq: s(960000 ~ 1785600), g(2400000 ~ 1651200), p(2400000 ~ 2054400)
[ 34.444029] [SDE_0] ss_temperature_show : temperature : 20 elvss_interpolation_temperature : -15
[ 34.467309] [SDE_0] vrr_show : 24 2
[ 34.469145] sec_bat_show_attrs: Read Prev Battery Info : 0, 0, 0, 0
[ 34.588149] sec_bat_show_attrs: CHG_TYPE = USB
[ 34.701902] dev_name = 254:2,total_blks = 409946,skipped_blks = 29790,corrupted_blks = 0,fec_correct_blks = 0
[ 34.753261] cflm_freq_decision: input: type(0), min(2400000), max(0)
[ 34.753288] cflm_update_current_freq: current freq: s(960000 ~ 1785600), g(2400000 ~ 1651200), p(2400000 ~ 2054400)
[ 34.818677] sec_argos:argos_pm_qos_notify() name:UFS, speed:423Mbps, prev level:-1, request level:0
[ 34.818686] sec_argos:argos_freq_lock() update cpu freq 892800
[ 34.818690] set_freq_limit: cflm: id(3) freq(892800)
[ 34.818692] cflm_freq_decision: input: type(3), min(892800), max(0)
[ 34.818709] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(2400000 ~ 1651200), p(2400000 ~ 2054400)
[ 34.869724] !@ 8,0 r 60405 2566389 w 2692 39808 d 1182 38672 f 0 524 iot 20672 0 th 0 0 0 pt 0 inp 0 0 34.839
[ 35.226406] CASS: VaultKeeper is not ready. try again Retry cnt(27).
[ 35.264611] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 35.264628] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 35.268496] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 35.268590] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 120HS
[ 35.268626] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 35.268643] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 35.268994] [SDE_0] ss_brightness_dcs : tx_time(0.333ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 35.269001] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 35.269021] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 35.276610] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (1550.55833 ms delta, 0/120)
[ 35.284930] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.295729 ms delta, 120/120)
[ 35.293369] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.409167 ms delta, 118/120)
[ 35.359759] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 35.431425] QSEECOM: qseecom_load_app: App with id 58 (vaultkeeper) now loaded
[ 35.433796] vaultkeeper: QSEECom_start_app done
[ 35.445300] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 35.447716] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 35.455199] vaultkeeper: QSEECom_send_cmd done(9372/0x0c000c03/VK)
[ 35.455987] QSEECOM: __qseecom_unload_app: App (58) is unloaded
[ 35.456109] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 35.456124] vaultkeeper: Failed cmdProcessing(-10032)
[ 35.456142] vaultkeeper: runCommand error.(-10032)
[ 35.456149] vaultkeeper: There is no VK ID
[ 35.456157] vaultkeeper: VaultKeeper service preparation is failed
[ 35.466210] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 35.740781] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 35.740802] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 35.744789] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 35.744918] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 35.744954] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 35.744970] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 35.745897] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (452.505416 ms delta, 2/24)
[ 35.748904] [SDE_0] ss_brightness_dcs : tx_time(3.909ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 35.748921] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 35.748950] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 35.787721] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.801093 ms delta, 23/24)
[ 35.820305] sec_argos:argos_pm_qos_notify() name:UFS, speed:242Mbps, prev level:0, request level:-1
[ 35.820314] sec_argos:argos_freq_lock() update cpu freq -1
[ 35.820317] set_freq_limit: cflm: id(3) freq(-1)
[ 35.820319] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 35.820333] cflm_update_current_freq: current freq: s(960000 ~ 1785600), g(2400000 ~ 1766400), p(2400000 ~ 2284800)
[ 35.829516] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.769896 ms delta, 23/24)
[ 35.837615] audit: type=1400 audit(1749960120.627:460): avc: denied { read } for pid=3805 comm="id.app.launcher" name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=536 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0
[ 35.842213] dev_name = 254:0,total_blks = 426332,skipped_blks = 32077,corrupted_blks = 0,fec_correct_blks = 0
[ 35.864901] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 35.864927] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 35.868874] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 35.869213] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 35.869241] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 120HS
[ 35.869276] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 35.869292] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 35.869582] [SDE_0] ss_brightness_dcs : tx_time(0.272ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 35.869590] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 35.871456] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.917500 ms delta, 23/120)
[ 35.872216] cflm_freq_decision: input: type(0), min(2400000), max(0)
[ 35.872229] cflm_update_current_freq: current freq: s(960000 ~ 1785600), g(2400000 ~ 1766400), p(2400000 ~ 2284800)
[ 35.879654] [SSC_FAC] light_copr_roix_show: 8,29,27,19,32,31,8,29,27,9,30,27
[ 35.879781] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.311250 ms delta, 120/120)
[ 35.888200] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.402344 ms delta, 119/120)
[ 36.070170] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 36.090254] thermal_sys: thermal: cdev[thermal-cluster-1-2:9]
[ 36.090262] PM: Active wake lock:
[ 36.090296] PM: usb_notify: active_count(2), active_time(4903), total_time(7151)
[ 36.090298] PM: a600000.ssusb: active_count(5), active_time(4897), total_time(10922)
[ 36.226635] CASS: VaultKeeper is not ready. try again Retry cnt(29).
[ 36.297644] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 36.297669] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 36.302328] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 36.302528] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 36.302551] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 36.302562] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 36.302949] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 36.302962] [SDE_0] ss_brightness_dcs : tx_time(0.391ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 36.302978] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 36.307179] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (418.955104 ms delta, 2/24)
[ 36.349068] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.864427 ms delta, 23/24)
[ 36.390903] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.810677 ms delta, 23/24)
[ 36.410260] cflm_freq_decision: input: type(0), min(2400000), max(0)
[ 36.410283] cflm_update_current_freq: current freq: s(960000 ~ 1785600), g(2400000 ~ 1766400), p(2400000 ~ 2284800)
[ 36.428275] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 36.428297] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 36.432276] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 36.432346] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 120HS
[ 36.432367] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 36.432376] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 36.432584] [SDE_0] ss_brightness_dcs : tx_time(0.199ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 36.432589] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 36.432846] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.922396 ms delta, 23/120)
[ 36.432943] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 36.432950] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [15]
[ 36.433135] [SDE_0] ss_brightness_dcs : tx_time(0.178ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 36.441252] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.381302 ms delta, 119/120)
[ 36.449551] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.272968 ms delta, 120/120)
[ 36.455072] [SDE_0] ss_temperature_store : temperature : 30
[ 36.455098] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 36.455108] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [15]
[ 36.464117] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 36.471982] [SDE_0] ss_brightness_dcs : tx_time(16.860ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 36.472003] [SDE_0] ss_temperature_store : temperature : 30
[ 36.544475] QSEECOM: qseecom_load_app: App with id 59 (vaultkeeper) now loaded
[ 36.548137] vaultkeeper: QSEECom_start_app done
[ 36.569929] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 36.580643] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 36.589182] vaultkeeper: QSEECom_send_cmd done(2666/0x0c000c03/VK)
[ 36.600639] QSEECOM: __qseecom_unload_app: App (59) is unloaded
[ 36.601029] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 36.601131] vaultkeeper: Failed cmdProcessing(-10032)
[ 36.601228] vaultkeeper: runCommand error.(-10032)
[ 36.601304] vaultkeeper: There is no VK ID
[ 36.601407] vaultkeeper: VaultKeeper service preparation is failed
[ 36.602081] pmon: Pending Wakeup Sources: usb_notify a600000.ssusb
[ 36.604125] ts_print: tsens[0:680][1:797][2:793][3:814][4:810][5:769][6:814][7:787][8:845][9:807][10:831][11:824][12:838][13:790][14:622][15:615][16:684][17:728][18:790][19:783][20:817][21:612][22:557][23:568][24:708][25:674][26:598][27:550][28:564][29:581][30:564][31:588]
[ 36.633708] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 36.858032] fps_qbt2000_work_func_debug: ldo:1,ipc:1,wuhb:0,tz:1,type:QBT2608,int:0,0,rst:0
[ 36.879210] !@ 8,0 r 64980 2696857 w 3078 42196 d 1461 41668 f 0 590 iot 22592 0 th 0 0 0 pt 0 inp 0 0 36.849
[ 36.879327] cfb_target: uid = 10206
[ 36.879759] !@ Read_top(KB): system_server(2420) 50464 id.app.routines(5775) 24452 .gms.persistent(3985) 19332
[ 36.879790] !@ Write_top(KB): system_server(2420) 1972 f2fs_ckpt-254:5(1153) 1756 kworker/u16:6(271) 336
[ 36.934628] cflm_freq_decision: input: type(0), min(-1), max(0)
[ 36.934675] cflm_update_current_freq: current freq: s(614400 ~ 1785600), g(633600 ~ 1651200), p(806400 ~ 2054400)
[ 37.017490] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 37.017515] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 37.021488] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 37.021563] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 37.021587] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 37.021597] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 37.021805] [SDE_0] ss_brightness_dcs : tx_time(0.198ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 37.021811] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 37.022098] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 37.022104] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [15]
[ 37.022324] [SDE_0] ss_brightness_dcs : tx_time(0.214ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 37.027827] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (578.250781 ms delta, 1/24)
[ 37.069766] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.912291 ms delta, 23/24)
[ 37.111535] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.742396 ms delta, 23/24)
[ 37.214101] pca9481_read_adc: adc_ch=5, raw_adc=0x45e, convert_val=1118000
[ 37.218226] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 37.221720] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 37.221788] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 37.223883] max77705_fg_read_avg_current: avg_current=-1130mA
[ 37.224735] max77705_fg_read_avg_current: avg_current=-1130mA
[ 37.225412] init: processing action (vendor.thermal.amb.last=*) from (/vendor/etc/init/vendor.samsung.hardware.thermal@1.0-service.rc:18)
[ 37.227540] CASS: Fatal error : VaultKeeper is not running. Exit
[ 37.227578] CASS: Disconnect ril daemon
[ 37.233853] init: Service 'cass' (pid 4974) exited with status 0
[ 37.233871] init: Sending signal 9 to service 'cass' (pid 4974) process group...
[ 37.234336] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_4974
[ 37.235113] init: starting service 'cass'...
[ 37.239245] init: ... started service 'cass' has pid 6877
[ 37.260883] cs35l41 18-0040: set_cirrus_amp_surface_temperature: Amp0 is not enabled
[ 37.261239] cs35l41 18-0040: set_cirrus_amp_surface_temperature: Amp1 is not enabled
[ 37.261877] cs40l26 56-0040: current_temp_store temperature : 28
[ 37.263629] [SDE_0] vrr_show : 24 2
[ 37.277627] CASS: Start CASS Service for Qualcomm modem. v1.6.7
[ 37.277687] CASS: VaultKeeper is not ready. try again Retry cnt(1).
[ 37.279127] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (167.567604 ms delta, 5/24)
[ 37.321029] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.871979 ms delta, 23/24)
[ 37.329172] dev_name = 254:0,total_blks = 442729,skipped_blks = 34320,corrupted_blks = 0,fec_correct_blks = 0
[ 37.451827] audit: type=1400 audit(1749960122.243:461): avc: denied { read } for pid=5993 comm="binder:5993_3" name="u:object_r:media_plat_prop:s0" dev="tmpfs" ino=349 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:media_plat_prop:s0 tclass=file permissive=0
[ 37.451885] audit: type=1400 audit(1749960122.243:462): avc: denied { read } for pid=5993 comm="binder:5993_3" name="u:object_r:chipname_prop:s0" dev="tmpfs" ino=181 scontext=u:r:priv_app:s0:c512,c768 tcontext=u:object_r:chipname_prop:s0 tclass=file permissive=0
[ 37.607645] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 37.643264] QSEECOM: qseecom_load_app: App with id 60 (vaultkeeper) now loaded
[ 37.645104] vaultkeeper: QSEECom_start_app done
[ 37.650498] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 37.656138] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 37.657623] vaultkeeper: QSEECom_send_cmd done(2913/0x0c000c03/VK)
[ 37.658519] QSEECOM: __qseecom_unload_app: App (60) is unloaded
[ 37.658653] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 37.658667] vaultkeeper: Failed cmdProcessing(-10032)
[ 37.658683] vaultkeeper: runCommand error.(-10032)
[ 37.658690] vaultkeeper: There is no VK ID
[ 37.658697] vaultkeeper: VaultKeeper service preparation is failed
[ 37.729671] init: Untracked pid 6379 exited with status 0
[ 37.729719] init: Untracked pid 6379 did not have an associated service entry and will not be reaped
[ 37.781927] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (460.872917 ms delta, 2/24)
[ 37.827027] sec_argos:argos_pm_qos_notify() name:UFS, speed:455Mbps, prev level:-1, request level:0
[ 37.827044] sec_argos:argos_freq_lock() update cpu freq 892800
[ 37.827051] set_freq_limit: cflm: id(3) freq(892800)
[ 37.827057] cflm_freq_decision: input: type(3), min(892800), max(0)
[ 37.827114] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(633600 ~ 1651200), p(806400 ~ 2054400)
[ 37.857638] audit: type=1400 audit(1749960122.647:463): avc: denied { read } for pid=3183 comm="ndroid.systemui" name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=536 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0
[ 37.899440] max77705_fg_read_current: current=-1301mA
[ 37.900186] max77705_fg_read_vcell: VCELL(4143)mV, data(0xcf32)
[ 37.900195] max77705_fg_read_avg_current: avg_current=-1141mA
[ 37.901144] max77705_fg_read_avg_current: avg_current=-1141mA
[ 37.901790] max77705_fg_read_current: current=-1301mA
[ 37.929928] max77705_fg_write_temp: temperature to (328, 0x20cd)
[ 37.931052] max77705_fg_read_avg_current: avg_current=-1141mA
[ 37.931055] max77705_get_fg_soc: soc(924)
[ 37.931058] max77705_fg_get_scaled_capacity : capacity_max (984) scaled capacity(93.9), raw_soc(92.4)
[ 37.931333] max77705_fg_read_rawsoc: raw capacity (0.01%) (9244)
[ 37.931923] max77705_fg_read_qh : QH(3055000)
[ 37.931931] max77705_fg_check_vempty_recover_time: check vempty time(4, 33)
[ 37.931937] max77705_fg_get_atomic_capacity : NOW(93), OLD(94)
[ 37.931950] sec_bat_get_battery_info:Vnow(4143mV),Vavg(4182mV),Inow(-1301mA),Iavg(-1141mA),Isysavg(1620mA),Imax(475mA),Ichg(550mA),SOC(93%),Tbat(328),Tusb(275),Tchg(477),Twpc(328),Tblkt(0),Tlrp(363),Tdchg(445)
[ 37.931978] sec_calc_ttf: cap: 3195, soc: 939, T: 1476, avg: -1141, cv soc: 1000, i: 16, val: 475
[ 37.932000] sec-battery samsung_mobile_device:battery: sec_bat_calc_time_to_full: T: 1536 sec, passed time: 0, current: 475
[ 37.932021] max77705_chg_set_wdtmr_kick: WDT Kick
[ 37.935831] max77705_get_charging_health: reg_data(0x3)
[ 37.936105] max77705_get_charging_health: details00(0xe0)
[ 37.936672] max77705_get_vbus_state: VBUS is valid. CHGIN < CHGIN_OVLO
[ 37.937816] max77705_get_charging_health: vbus_state: 0x3, chg_dtls: 0x1, iin: 467mA, vbyp: 4708mV, health: 1, abnormal: false
[ 37.946082] max77705 : [0xb1]0x7a, [0xb2]0xdf, [0xb3]0xe0, [0xb4]0x31, [0xb5]0x00, [0xb6]0xff, [0xb7]0x15, [0xb8]0x38, [0xb9]0x4b, [0xba]0x9f, [0xbb]0x1a, [0xbc]0x60, [0xbd]0xec, [0xbe]0x34, [0xbf]0x00, [0xc0]0x92, [0xc1]0x10, [0xc2]0x00, [0xc3]0x68,
[ 37.946640] max77705_chg_monitor_work: [CHG] MODE(0x5), B2SOVRC(0x0), otg_on(0)
[ 37.946653] [PASS-THROUGH]:sb_pt_monitor: end - step = None
[ 37.946695] sec_bat_monitor_work: Status(Charging), mode(Normal), Health(Good), Cable(USB, USB, 1, 0), rp(1), HV(NONE)
[ 37.946702] sec_bat_monitor_work: lcd(1), slate(0), store(0), siop_level(100), sleep_mode(0), Cycle(50)
[ 37.946729] sec-battery samsung_mobile_device:battery: sec_bat_set_polling: Polling time 20/30 sec.
[ 37.947098] max77705_fg_read_current: current=-1042mA
[ 37.947693] max77705_fg_read_avg_current: avg_current=-1141mA
[ 37.948297] max77705_fg_read_current: current=-1042mA
[ 37.949175] max77705_fg_read_avg_current: avg_current=-1141mA
[ 37.950272] pca9481_chg_get_property: CHARGER_STATUS(NO_CHARGING)
[ 37.952316] max77705_fg_read_current: current=-1042mA
[ 37.953622] max77705_fg_read_avg_current: avg_current=-1141mA
[ 37.960047] max77705_fg_read_current: current=-1042mA
[ 37.960405] sec_bat_show_attrs : HV_CHARGER_STATUS(0), max_charger_power(2375), pd_max charge power(0)
[ 37.960725] healthd: efs_buf: 0 8 6 3365 3290 1 0 50 743 0 0 0 0 0 0 1 357 175 517 168 357 174 309 178 353 175 517 168 353 174 294 178 0 0 0 0 0 0 0 95 0 3347 43 1 3290 3290 0 0 3 0 0 0 0 0 0 0 357 302 0 0 485 313 309 273 333 302 0 0 484 313 294 273 0 0 0 0 0 0 0 0 0 0
[ 37.961594] healthd: battery l=93 v=4143 t=32.8 h=2 st=2 c=-1042 fc=3700000 o=4 ca=-1141 ct=1 hv=0 sec=65536 sce=1048580 tx=0 chg=u
[ 37.962096] sec-battery samsung_mobile_device:battery: sec_bat_store_attrs: LRP(367)
[ 37.992145] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 37.992166] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 37.994242] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 37.994380] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 120HS
[ 37.994406] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 37.994417] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 37.995514] [SDE_0] ss_brightness_dcs : tx_time(1.87ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 37.995521] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 37.995794] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 37.995809] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [15]
[ 37.996053] [SDE_0] ss_brightness_dcs : tx_time(0.230ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 37.999837] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (217.884323 ms delta, 4/120)
[ 38.008141] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.274167 ms delta, 120/120)
[ 38.016405] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.237344 ms delta, 121/120)
[ 38.070097] [3][FG] 0080h,ffa0h,7f80h,ff01h,1900h,04c0h,5c71h,6351h,20cdh,cf46h,facah,fa4bh,0042h,5a9ch,5ca3h,04c7h,048fh,0657h,4b00h,5d00h,066ah,0148h,1fefh,003ah,0544h,d123h,2311h,dc9ah,0af0h,0314h,02b0h,0486h,ffffh,6200h,2200h,053bh,1403h,1e05h,1feeh,804ah,2616h,cea4h,023ch,3850h,e3e1h,290eh,0400h,0001h,5699h,35feh,0d80h,ffffh,1d2ch,0524h,0436h,05e0h,002bh,151fh,7d54h,fa4bh,1680h,1008h,3827h,e000h,07fch,0009h,0b00h,0d1ah,d1f1h,0181h,3922h,fe5dh,62cfh,2441h,04ddh,0bb6h,0520h,04c6h,7314h,04d1h,0000h,6506h,0015h,2b29h,7f80h,0005h,0007h,0600h,0000h,006bh,090ch,0055h,1120h,0204h,0007h,0000h,0e9dh,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0010h,0007h,ffffh,5ce2h,04c0h,1c37h,0bb6h,06d6h,0000h,f800h,0008h,fef0h,000bh,4aaeh,0000h,4648h,0000h,4000h,0000h,7d00h,0620h,ffffh,ffffh,ffffh,ffffh,2098h,0000h,0000h,ffb4h,4025h,58d1h,fe66h,d482h,0022h,2917h,cf46h,5c3fh,
[ 38.072446] max77705_fg_read_current: current=-1042mA
[ 38.073318] max77705_fg_read_avg_current: avg_current=-1139mA
[ 38.074632] max77705_fg_read_qh : QH(3055000)
[ 38.074640] [FG power] ISYS(1571mA),ISYSAVG(1619mA),VSYS(4040mV),IIN(467mA),VBYP(4708mV) QH(3055000 uah)
[ 38.075479] max77705_fg_read_rawsoc: raw capacity (0.01%) (9244)
[ 38.077368] !@new_battery_dump : 4143,-1301,475,550,93,328,275,477,328,0,363,445,0,Charging,NO_CHARGING,Normal,Good,USB,1,Normal,0,0,9600,0x100004,0x10000,0x0,0,0,0000,0000,00000000,0,0,0,0,50,4250,9244,984,0,
[ 38.194140] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 38.277889] CASS: VaultKeeper is not ready. try again Retry cnt(3).
[ 38.515187] dev_name = 254:0,total_blks = 459116,skipped_blks = 35992,corrupted_blks = 0,fec_correct_blks = 0
[ 38.533499] servicemanager: Notifying apexservice they don't (previously: do) have clients when we now have no record of a client
[ 38.533680] AidlLazyServiceRegistrar: Process has 0 (of 1 available) client(s) in use after notification apexservice has clients: 0
[ 38.533691] AidlLazyServiceRegistrar: Trying to shut down the service. No clients in use for any service in process.
[ 38.533894] servicemanager: Caller(pid=5313,uid=0,sid=u:r:apexd:s0) Unregistering apexservice
[ 38.533911] BpBinder: onLastStrongRef automatically unlinking death recipients:
[ 38.533962] AidlLazyServiceRegistrar: Unregistered all clients and exiting
[ 38.535996] init: Service 'apexd' (pid 5313) exited with status 0 oneshot service took 7.314000 seconds in background
[ 38.536030] init: Sending signal 9 to service 'apexd' (pid 5313) process group...
[ 38.536443] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_0/pid_5313
[ 38.650192] msm_watchdog_data - pet: 38.650179 / last_pet: 29.178163 (delta: 9.472016)
[ 38.650490] (virq:irq_count)- GICv3:IPI(1):233747 GICv3:IPI(6):92999 GICv3:IPI(2):88046 GICv3:arch_timer(11):86313 GICv3:ufshcd(31):66678 GICv3:i2c_geni(54):14398 GICv3:gpi_dma800000_gpii0(71):11053 GICv3:ipcc_0(28):6916 GICv3:c263000.thermal-sensor(223):5728 GICv3:apps_rsc(34):4133
[ 38.650512] (cpu:irq_count)- 0:190733 1:47660 2:45332 3:39598 4:84730 5:72457 6:77590 7:81509
[ 38.650521] (ipi:irq_count)- 0:233749 1:88046 2:0 3:0 4:0 5:92999 6:0
[ 38.682338] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 38.717748] QSEECOM: qseecom_load_app: App with id 61 (vaultkeeper) now loaded
[ 38.720759] vaultkeeper: QSEECom_start_app done
[ 38.723740] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 38.726089] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 38.727265] vaultkeeper: QSEECom_send_cmd done(7843/0x0c000c03/VK)
[ 38.727964] QSEECOM: __qseecom_unload_app: App (61) is unloaded
[ 38.728060] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 38.728076] vaultkeeper: Failed cmdProcessing(-10032)
[ 38.728096] vaultkeeper: runCommand error.(-10032)
[ 38.728107] vaultkeeper: There is no VK ID
[ 38.728117] vaultkeeper: VaultKeeper service preparation is failed
[ 38.728125] vaultkeeper: Restart VaultKeeper after termination
[ 38.729594] init: Service 'vaultkeeper' (pid 5205) exited with status 255
[ 38.729637] init: Sending signal 9 to service 'vaultkeeper' (pid 5205) process group...
[ 38.730098] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_5205
[ 38.731534] init: starting service 'vaultkeeper'...
[ 38.737485] init: ... started service 'vaultkeeper' has pid 7184
[ 38.751923] PROCA: file path /system/bin/init and cert app name /vendor/bin/vaultkeeperd doesn't match
[ 38.751933] PROCA: Certificate /vendor/bin/vaultkeeperd doesn't relate to task.
[ 38.753530] PROCA: PROCA certificate was found for task 7184
[ 38.753572] PROCA: Task descriptor for task 7184 was created
[ 38.753575] PROCA: Task 7184 has application name /vendor/bin/vaultkeeperd
[ 38.767151] PROCA: Destroying proca task descriptor for task 5205
[ 38.814875] sec_bat_show_attrs: CHG_TYPE = USB
[ 38.831840] sec_argos:argos_pm_qos_notify() name:UFS, speed:379Mbps, prev level:0, request level:-1
[ 38.831858] sec_argos:argos_freq_lock() update cpu freq -1
[ 38.831864] set_freq_limit: cflm: id(3) freq(-1)
[ 38.831869] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 38.831932] cflm_update_current_freq: current freq: s(614400 ~ 1785600), g(633600 ~ 1651200), p(806400 ~ 2054400)
[ 38.880986] !@ 8,0 r 69812 2870841 w 3439 45444 d 1703 51196 f 0 633 iot 24576 0 th 0 0 0 pt 0 inp 0 0 38.850
[ 38.881205] !@ MemInfo(KB): total 7394220 free 952628 avail 3429572 actv(f) 441636 inactv(f) 2124796 dirty 14308 wb 8 anonpg 2219816 slab 444776
[ 38.956224] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 38.956247] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 38.960301] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 38.960668] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 38.960709] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 38.960728] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 38.960737] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 38.960979] [SDE_0] ss_brightness_dcs : tx_time(0.232ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 38.960992] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 38.963323] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (946.894739 ms delta, 1/24)
[ 39.005218] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.871198 ms delta, 23/24)
[ 39.047047] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.799635 ms delta, 23/24)
[ 39.083697] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 39.083719] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 39.087859] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 39.087978] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 120HS
[ 39.088015] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 39.088068] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 39.088481] [SDE_0] ss_brightness_dcs : tx_time(0.392ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 39.088509] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 39.088528] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 39.088537] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [15]
[ 39.088736] [SDE_0] ss_brightness_dcs : tx_time(0.190ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 39.088965] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.896354 ms delta, 23/120)
[ 39.097327] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.344427 ms delta, 119/120)
[ 39.105766] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.414063 ms delta, 118/120)
[ 39.278184] CASS: VaultKeeper is not ready. try again Retry cnt(5).
[ 39.288657] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 39.303289] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 39.303312] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 39.307384] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 39.307738] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 39.307780] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 39.307799] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 39.307808] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 39.308203] [SDE_0] ss_brightness_dcs : tx_time(0.381ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 39.308236] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 39.315211] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (209.417812 ms delta, 4/24)
[ 39.357144] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.904687 ms delta, 23/24)
[ 39.393612] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 39.393635] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 39.398305] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 39.398503] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 120HS
[ 39.398527] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 39.398537] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 39.398963] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.798906 ms delta, 23/120)
[ 39.402935] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 39.403013] [SDE_0] ss_brightness_dcs : tx_time(4.466ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 39.403049] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 39.407336] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.350989 ms delta, 119/120)
[ 39.415683] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.319636 ms delta, 120/120)
[ 39.429497] audit: type=1400 audit(1749960124.219:464): avc: denied { read } for pid=6163 comm="SynthThread" name="u:object_r:media_plat_prop:s0" dev="tmpfs" ino=349 scontext=u:r:untrusted_app:s0:c10,c257,c512,c768 tcontext=u:object_r:media_plat_prop:s0 tclass=file permissive=0
[ 39.603854] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 39.699617] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 39.699638] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 39.704450] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 39.704546] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 39.704569] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 39.704578] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 39.704800] [SDE_0] ss_brightness_dcs : tx_time(0.213ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 39.704805] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 39.705195] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 39.705207] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [15]
[ 39.705444] [SDE_0] ss_brightness_dcs : tx_time(0.225ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 39.709012] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (293.303125 ms delta, 3/24)
[ 39.750890] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.851302 ms delta, 23/24)
[ 39.774887] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 39.792703] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.785260 ms delta, 23/24)
[ 39.816217] dev_name = 254:0,total_blks = 475513,skipped_blks = 37816,corrupted_blks = 0,fec_correct_blks = 0
[ 39.823344] QSEECOM: qseecom_load_app: App with id 62 (vaultkeeper) now loaded
[ 39.825477] vaultkeeper: QSEECom_start_app done
[ 39.827971] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 39.827992] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 39.832134] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 39.832213] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 120HS
[ 39.832233] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 39.832241] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 39.832555] [SDE_0] ss_brightness_dcs : tx_time(0.306ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 39.832560] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 39.832826] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 39.832833] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [15]
[ 39.833014] [SDE_0] ss_brightness_dcs : tx_time(0.174ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 39.834643] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.918073 ms delta, 23/120)
[ 39.835439] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 39.840867] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 39.842990] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.330573 ms delta, 120/120)
[ 39.847875] vaultkeeper: QSEECom_send_cmd done(1588/0x0c000c03/VK)
[ 39.850613] QSEECOM: __qseecom_unload_app: App (62) is unloaded
[ 39.850869] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 39.850897] vaultkeeper: Failed cmdProcessing(-10032)
[ 39.850928] vaultkeeper: runCommand error.(-10032)
[ 39.850946] vaultkeeper: There is no VK ID
[ 39.850966] vaultkeeper: VaultKeeper service preparation is failed
[ 39.851357] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.347344 ms delta, 119/120)
[ 40.030131] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 40.278409] CASS: VaultKeeper is not ready. try again Retry cnt(7).
[ 40.747534] !@Sync: 2 heap(MB): 95 / 113 FD: 1054 [2025-06-15 01:02:05.541] softdog disabled
[ 40.804371] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 40.804403] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 40.809538] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 40.810181] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 40.810198] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 40.810240] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 40.810261] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 40.812159] [SDE_0] ss_brightness_dcs : tx_time(1.869ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 40.812192] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 40.814932] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (963.555417 ms delta, 1/24)
[ 40.856100] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 40.856898] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.939896 ms delta, 23/24)
[ 40.883955] !@ 8,0 r 72706 2968729 w 3954 51032 d 2071 55472 f 0 696 iot 26272 0 th 0 0 0 pt 0 inp 0 0 40.853
[ 40.884942] !@ Read_top(KB): oid.apps.photos(6811) 49520 android.vending(6795) 40920 roid.honeyboard(5383) 26080
[ 40.885058] !@ Write_top(KB): kworker/u16:3(244) 2048 f2fs_ckpt-254:5(1153) 1988 system_server(2420) 1596
[ 40.887229] QSEECOM: qseecom_load_app: App with id 63 (vaultkeeper) now loaded
[ 40.888129] vaultkeeper: QSEECom_start_app done
[ 40.891605] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 40.893782] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 40.895233] vaultkeeper: QSEECom_send_cmd done(9416/0x0c000c03/VK)
[ 40.896021] QSEECOM: __qseecom_unload_app: App (63) is unloaded
[ 40.896119] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 40.896131] vaultkeeper: Failed cmdProcessing(-10032)
[ 40.896146] vaultkeeper: runCommand error.(-10032)
[ 40.896152] vaultkeeper: There is no VK ID
[ 40.896159] vaultkeeper: VaultKeeper service preparation is failed
[ 40.898658] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.730364 ms delta, 23/24)
[ 41.010240] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 41.210021] PM: Active wake lock:
[ 41.210060] PM: usb_notify: active_count(2), active_time(10023), total_time(12271)
[ 41.210063] PM: a600000.ssusb: active_count(5), active_time(10017), total_time(16042)
[ 41.210102] thermal_sys: thermal: cdev[thermal-cluster-1-2:7]
[ 41.237333] binder: undelivered TRANSACTION_COMPLETE
[ 41.237354] binder: undelivered transaction 126829, process died.
[ 41.278632] CASS: VaultKeeper is not ready. try again Retry cnt(9).
[ 41.398942] servicemanager: Notifying vendor.samsung.hardware.tlc.kg.ISehKg/default they do (previously: don't) have clients when service is guaranteed to be in use
[ 41.399890] audit: type=1400 audit(1749960126.191:465): avc: denied { call } for pid=597 comm="binder:597_3" scontext=u:r:servicemanager:s0 tcontext=u:r:hal_kgta_default:s0 tclass=binder permissive=0
[ 41.401716] binder: 597:1132 transaction failed 29201/-1, size 104-8 line 3292
[ 41.412231] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.447619] QSEECOM: qseecom_load_app: App with id 64 (tz_kg) now loaded
[ 41.453362] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.454738] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.458083] QSEECOM: __qseecom_unload_app: App (64) is unloaded
[ 41.461421] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.495639] QSEECOM: qseecom_load_app: App with id 65 (tz_kg) now loaded
[ 41.504876] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.506742] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.511755] QSEECOM: __qseecom_unload_app: App (65) is unloaded
[ 41.521170] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.555122] QSEECOM: qseecom_load_app: App with id 66 (tz_kg) now loaded
[ 41.568858] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 41.568879] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 41.569869] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.570323] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 41.570410] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 120HS
[ 41.570444] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 41.570461] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 41.571481] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.573101] [SDE_0] ss_brightness_dcs : tx_time(2.619ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 41.573112] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 41.573150] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 41.574858] QSEECOM: __qseecom_unload_app: App (66) is unloaded
[ 41.577427] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (678.741771 ms delta, 1/120)
[ 41.579375] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.585678] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.232969 ms delta, 121/120)
[ 41.594089] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.389271 ms delta, 119/120)
[ 41.613860] QSEECOM: qseecom_load_app: App with id 67 (tz_kg) now loaded
[ 41.618671] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.619915] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.623075] QSEECOM: __qseecom_unload_app: App (67) is unloaded
[ 41.631045] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.661004] audit: type=1400 audit(1749960126.451:466): avc: denied { read } for pid=7756 comm="c.facatfunction" name="u:object_r:system_boot_reason_prop:s0" dev="tmpfs" ino=447 scontext=u:r:system_app:s0 tcontext=u:object_r:system_boot_reason_prop:s0 tclass=file permissive=0
[ 41.665170] QSEECOM: qseecom_load_app: App with id 68 (tz_kg) now loaded
[ 41.671797] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.673283] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.677501] QSEECOM: __qseecom_unload_app: App (68) is unloaded
[ 41.681634] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.715242] QSEECOM: qseecom_load_app: App with id 69 (tz_kg) now loaded
[ 41.719840] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.721361] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.722138] ts_print: tsens[0:674][1:759][2:749][3:763][4:766][5:742][6:769][7:725][8:763][9:742][10:749][11:800][12:845][13:790][14:615][15:609][16:680][17:694][18:742][19:742][20:752][21:605][22:557][23:568][24:677][25:667][26:598][27:550][28:564][29:581][30:561][31:581]
[ 41.724935] QSEECOM: __qseecom_unload_app: App (69) is unloaded
[ 41.726112] pmon: Pending Wakeup Sources: usb_notify a600000.ssusb
[ 41.741487] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.775979] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 41.776032] QSEECOM: qseecom_load_app: App with id 70 (tz_kg) now loaded
[ 41.788806] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.790469] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.793857] QSEECOM: __qseecom_unload_app: App (70) is unloaded
[ 41.797398] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.829174] pdic_max77705: muic_lookup_vps_table Last sysmsg = 0xba
[ 41.829198] pdic_max77705: muic_lookup_vps_table (1) vps table match found at i(7), USB
[ 41.831991] QSEECOM: qseecom_load_app: App with id 71 (tz_kg) now loaded
[ 41.839720] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.841250] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.845195] QSEECOM: __qseecom_unload_app: App (71) is unloaded
[ 41.851799] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.862711] dev_name = 254:0,total_blks = 491898,skipped_blks = 39472,corrupted_blks = 0,fec_correct_blks = 0
[ 41.885943] QSEECOM: qseecom_load_app: App with id 72 (tz_kg) now loaded
[ 41.901489] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.902727] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.907153] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 41.940187] QSEECOM: qseecom_load_app: App with id 73 (vaultkeeper) now loaded
[ 41.941143] QSEECOM: __qseecom_unload_app: App (72) is unloaded
[ 41.943101] vaultkeeper: QSEECom_start_app done
[ 41.946689] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 41.949215] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 41.950521] vaultkeeper: QSEECom_send_cmd done(3797/0x0c000c03/VK)
[ 41.951168] QSEECOM: __qseecom_unload_app: App (73) is unloaded
[ 41.951294] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 41.951301] vaultkeeper: Failed cmdProcessing(-10032)
[ 41.951310] vaultkeeper: runCommand error.(-10032)
[ 41.951315] vaultkeeper: There is no VK ID
[ 41.951320] vaultkeeper: VaultKeeper service preparation is failed
[ 41.955199] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 41.991053] QSEECOM: qseecom_load_app: App with id 74 (tz_kg) now loaded
[ 41.996639] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 42.000706] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 42.008404] QSEECOM: __qseecom_unload_app: App (74) is unloaded
[ 42.028742] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 42.063594] QSEECOM: qseecom_load_app: App with id 75 (tz_kg) now loaded
[ 42.070769] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 42.071964] tsp: [sec_input] sec_cmd_store: push cmd: set_grip_data,0,2,454,796
[ 42.071983] tsp: [sec_input] sec_cmd_store_function: cmd = set_grip_data param = 0 2 454 796
[ 42.072012] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: flag: 01 (clr,lan,nor,edg,han)
[ 42.072917] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 42.073177] stm_ts_spi spi0.0: [sec_input] stm_set_grip_data_to_ic: 0x0C 1C,63,1C,02
[ 42.073193] stm_ts_spi spi0.0: [sec_input] set_grip_data: OK
[ 42.073430] stm_ts_spi spi0.0: [sec_input] stm_ts_irq_thread: echo event 43 01 C1 0C 00 00 00 00 1C 63 1C 02 00 00 00 00
[ 42.083304] QSEECOM: __qseecom_unload_app: App (75) is unloaded
[ 42.091797] audit: type=1400 audit(1749960126.879:467): avc: denied { read } for pid=3805 comm="id.app.launcher" name="u:object_r:vendor_display_prop:s0" dev="tmpfs" ino=536 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_display_prop:s0 tclass=file permissive=0
[ 42.097883] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 42.137816] QSEECOM: qseecom_load_app: App with id 76 (tz_kg) now loaded
[ 42.140555] [SDE_0][mDNIe] color_lens_store : [mDNIe] color_lens_store: enable = 0, color = 0, level = 0
[ 42.140570] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 42.144758] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 42.146631] [SDE_0][mDNIe] accessibility_store : [mDNIe] accessibility_store cmd_value : 0 size : 1
[ 42.146642] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 42.151682] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 42.152321] [SDE_0][mDNIe] accessibility_store : [mDNIe] accessibility_store cmd_value : 0 size : 34
[ 42.152332] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 42.153589] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 42.158804] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 42.160246] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 42.163792] QSEECOM: __qseecom_unload_app: App (76) is unloaded
[ 42.171637] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 42.181689] [SDE_0][mDNIe] mode_store : [mDNIe] mode_store mode : 4
[ 42.181714] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 42.183360] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 42.206530] pca9481_read_adc: adc_ch=5, raw_adc=0x466, convert_val=1126000
[ 42.212836] QSEECOM: qseecom_load_app: App with id 77 (tz_kg) now loaded
[ 42.214204] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 42.214252] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 42.217767] max77705_fg_read_avg_current: avg_current=-1119mA
[ 42.218982] max77705_fg_read_avg_current: avg_current=-1119mA
[ 42.220333] init: processing action (vendor.thermal.amb.test=*) from (/vendor/etc/init/vendor.samsung.hardware.thermal@1.0-service.rc:15)
[ 42.221346] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 42.221689] servicemanager: Caller(pid=5492,uid=1000,sid=u:r:vendor_systemhelper_app:s0) Found vendor.qti.hardware.systemhelperaidl.ISystemEvent/default in framework VINTF manifest.
[ 42.222950] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 42.224881] servicemanager: Caller(pid=5492,uid=1000,sid=u:r:vendor_systemhelper_app:s0) Found vendor.qti.hardware.systemhelperaidl.ISystemResource/default in framework VINTF manifest.
[ 42.226451] [SDE_0][mDNIe] night_mode_store : [mDNIe] night_mode_store: enable = 0, idx = 11
[ 42.226460] [SDE_0][mDNIe] send_dsi_tcon_mdnie_register : [mDNIe] hbm: 0 bypass: 0 accessibility: 0 app: 0 mode: 4 hdr: 0 night_mode: 0 whiteRGB: (0 0 0) color_lens: (0 0 0)
[ 42.228022] cs35l41 18-0040: set_cirrus_amp_surface_temperature: Amp0 is not enabled
[ 42.228048] QSEECOM: __qseecom_unload_app: App (77) is unloaded
[ 42.228384] cs35l41 18-0040: set_cirrus_amp_surface_temperature: Amp1 is not enabled
[ 42.229100] cs40l26 56-0040: current_temp_store temperature : 28
[ 42.234512] init: processing action (vendor.thermal.amb.last=*) from (/vendor/etc/init/vendor.samsung.hardware.thermal@1.0-service.rc:18)
[ 42.236186] [SDE_0] vrr_show : 120 1
[ 42.237506] [SDE_0] ss_screen_mode_event_work : screen_mode = 4
[ 42.239162] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (645.48802 ms delta, 1/120)
[ 42.247565] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.378750 ms delta, 119/120)
[ 42.247982] QSEECOM: qseecom_load_app: App (tz_kg) does'nt exist, loading apps for first time
[ 42.255912] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.318281 ms delta, 120/120)
[ 42.276190] !@[RecoverySystem] handleAftermath
[ 42.278918] CASS: VaultKeeper is not ready. try again Retry cnt(11).
[ 42.286573] init: Service 'rdxd' (pid 4244) exited with status 0 oneshot service took 24.066000 seconds in background
[ 42.286615] init: Sending signal 9 to service 'rdxd' (pid 4244) process group...
[ 42.286993] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_0/pid_4244
[ 42.292824] QSEECOM: qseecom_load_app: App with id 78 (tz_kg) now loaded
[ 42.302548] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 42.304999] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 42.306863] [SDE_0][mDNIe] scenario_show : [mDNIe] Current APP : Current APP: UI_APP
[ 42.309483] QSEECOM: __qseecom_unload_app: App (78) is unloaded
[ 42.553213] init: Untracked pid 6646 exited with status 0
[ 42.553247] init: Untracked pid 6646 did not have an associated service entry and will not be reaped
[ 42.647308] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 42.647332] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 42.652254] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 42.652387] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 42.652426] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 42.652444] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 42.652829] [SDE_0] ss_brightness_dcs : tx_time(0.363ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 42.652841] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 42.652849] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 42.658116] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (402.180260 ms delta, 2/24)
[ 42.699940] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.798594 ms delta, 23/24)
[ 42.741813] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.843854 ms delta, 23/24)
[ 42.850281] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 42.886361] !@ 8,0 r 74849 3034889 w 4209 52960 d 2147 56212 f 0 734 iot 27752 0 th 0 0 0 pt 0 inp 0 0 42.856
[ 42.956779] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 42.988289] QSEECOM: qseecom_load_app: App with id 79 (vaultkeeper) now loaded
[ 42.990859] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 42.990888] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x24xcmdPHS(1080x2340@24PHS) -> 1080x2340x60xcmdPHS(1080x2340@60PHS)
[ 42.996874] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=60, clk_rate=1368000000
[ 42.996888] vaultkeeper: QSEECom_start_app done
[ 42.997058] [SDE_0] ss_panel_vrr_switch : +++ VRR: 24PHS -> 60PHS
[ 42.997109] [SDE_0] ss_vrr : VRR: (prev: 24PHS -> cur: 1080x2340@60PHS) brightness_lock (0)
[ 42.997137] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [3] base [0] smooth_frame [0]
[ 42.997639] [SDE_0] ss_brightness_dcs : tx_time(0.470ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 42.997652] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 42.997690] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 42.999312] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 43.000249] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 43.001355] vaultkeeper: QSEECom_send_cmd done(3037/0x0c000c03/VK)
[ 43.001643] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (259.804895 ms delta, 3/60)
[ 43.002106] QSEECOM: __qseecom_unload_app: App (79) is unloaded
[ 43.002235] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 43.002246] vaultkeeper: Failed cmdProcessing(-10032)
[ 43.002259] vaultkeeper: runCommand error.(-10032)
[ 43.002264] vaultkeeper: There is no VK ID
[ 43.002271] vaultkeeper: VaultKeeper service preparation is failed
[ 43.018244] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (16.579375 ms delta, 60/60)
[ 43.030490] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 43.030552] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x60xcmdPHS(1080x2340@60PHS) -> 1080x2340x120xcmdHS(1080x2340@120HS)
[ 43.032062] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=120, clk_rate=1368000000
[ 43.032329] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 43.033754] [SDE_0] ss_panel_vrr_switch : +++ VRR: 60PHS -> 120HS
[ 43.033792] [SDE_0] ss_vrr : VRR: (prev: 60PHS -> cur: 1080x2340@120HS) brightness_lock (0)
[ 43.033809] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [0] base [0] smooth_frame [0]
[ 43.034125] [SDE_0] ss_brightness_dcs : tx_time(0.297ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 43.034147] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 43.035039] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (16.768698 ms delta, 59/120)
[ 43.043385] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.328177 ms delta, 120/120)
[ 43.051731] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (8.318958 ms delta, 120/120)
[ 43.238722] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 43.279166] CASS: VaultKeeper is not ready. try again Retry cnt(13).
[ 43.336315] [drm:ss_set_max_sde_core_clk:1471] set max core clk 500000000 hz
[ 43.336359] [SDE_0] dsi_bridge_mode_fixup : DMS: switch mode 1080x2340x120xcmdHS(1080x2340@120HS) -> 1080x2340x24xcmdPHS(1080x2340@24PHS)
[ 43.346475] [drm:dsi_display_set_mode [msm_drm]] [msm-dsi-info]: mdp_transfer_time=7533, hactive=1080, vactive=2340, fps=24, clk_rate=1368000000
[ 43.346681] [SDE_0] ss_panel_vrr_switch : +++ VRR: 120HS -> 24PHS
[ 43.346772] [SDE_0] ss_vrr : VRR: (prev: 120HS -> cur: 1080x2340@24PHS) brightness_lock (0)
[ 43.346807] [SDE_0] ss_brightness_gamma : NORMAL : cd_idx [12] cur_md [10] base [0] smooth_frame [0]
[ 43.347351] [SDE_0] ss_brightness_dcs : tx_time(0.473ms) level:12 candela:11CD hbm:0 acl:(1|1) itp:TABLE
[ 43.347373] [drm:sde_connector_helper_bridge_enable:1244] [SDE_0] sde_connector_helper_bridge_enable : skip & backup props.brightness = 12 during VRR
[ 43.347415] [SDE_0] ss_panel_vrr_switch : --- VRR
[ 43.353365] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (301.608125 ms delta, 3/24)
[ 43.395311] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.914584 ms delta, 23/24)
[ 43.437211] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.861719 ms delta, 23/24)
[ 43.533189] servicemanager: Notifying vendor.samsung.hardware.tlc.kg.ISehKg/default they don't (previously: do) have clients when we now have no record of a client
[ 43.533366] binder: 597:597 transaction failed 29201/-1, size 104-8 line 3292
[ 43.533395] audit: type=1400 audit(1749960128.323:468): avc: denied { call } for pid=597 comm="servicemanager" scontext=u:r:servicemanager:s0 tcontext=u:r:hal_kgta_default:s0 tclass=binder permissive=0
[ 43.548010] [drm:ss_set_normal_sde_core_clk:1506] set normal core clk 200000000 hz
[ 44.008152] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 44.058678] QSEECOM: qseecom_load_app: App with id 80 (vaultkeeper) now loaded
[ 44.061735] vaultkeeper: QSEECom_start_app done
[ 44.069341] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 44.071310] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 44.072392] vaultkeeper: QSEECom_send_cmd done(1378/0x0c000c03/VK)
[ 44.073134] QSEECOM: __qseecom_unload_app: App (80) is unloaded
[ 44.073256] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 44.073267] vaultkeeper: Failed cmdProcessing(-10032)
[ 44.073280] vaultkeeper: runCommand error.(-10032)
[ 44.073286] vaultkeeper: There is no VK ID
[ 44.073292] vaultkeeper: VaultKeeper service preparation is failed
[ 44.196666] max77705_fg_read_vcell: VCELL(4143)mV, data(0xcf32)
[ 44.196686] max77705_fg_read_avg_current: avg_current=-1077343uA
[ 44.206268] max77705_fg_read_avg_current: avg_current=-1077mA
[ 44.251489] [SDE_0] ss_disp_SVC_OCTA_show : [bb1412292c26e30bec0c8e]
[ 44.251958] [SDE_0] ss_disp_SVC_OCTA_CHIPID_show : [30101faA3AW1S2A085AC055]
[ 44.252251] [SDE_0] ss_disp_SVC_OCTA_DDI_CHIPID_show : [a94047718a]
[ 44.252527] [SDE_0] ss_disp_SVC_OCTA2_show : no cell_id_dsi set to default buf[0000000000]
[ 44.253350] [SDE_0] ss_disp_SVC_OCTA2_CHIPID_show : no octa_id_dsi set to default buf[0000000000]
[ 44.253623] dev_name = 254:2,total_blks = 508296,skipped_blks = 41696,corrupted_blks = 0,fec_correct_blks = 0
[ 44.253870] [SDE_0] ss_disp_SVC_OCTA2_DDI_CHIPID_show : error: no ddi_id_dsi set to default buf[0000000000]
[ 44.260208] cfb_target: uid = 10315
[ 44.279344] CASS: VaultKeeper is not ready. try again Retry cnt(15).
[ 44.887415] !@ 8,0 r 77931 3119189 w 4932 64820 d 2480 59304 f 0 818 iot 29300 0 th 0 0 0 pt 0 inp 0 0 44.857
[ 44.887951] !@ Read_top(KB): chtype.swiftkey(7656) 17260 droid.gallery3d(8097) 14708 earchbox:search(5993) 13448
[ 44.887982] !@ Write_top(KB): kworker/u16:7(272) 7264 f2fs_ckpt-254:5(1153) 1416 binder:1099_2(1099) 704
[ 45.075796] binder_alloc: 8195: pid 3985 spamming oneway? 1 buffers allocated for a total size of 439624
[ 45.081908] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 45.120069] QSEECOM: qseecom_load_app: App with id 81 (vaultkeeper) now loaded
[ 45.124270] vaultkeeper: QSEECom_start_app done
[ 45.126717] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 45.127715] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 45.128709] vaultkeeper: QSEECom_send_cmd done(1180/0x0c000c03/VK)
[ 45.129418] QSEECOM: __qseecom_unload_app: App (81) is unloaded
[ 45.129536] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 45.129550] vaultkeeper: Failed cmdProcessing(-10032)
[ 45.129567] vaultkeeper: runCommand error.(-10032)
[ 45.129575] vaultkeeper: There is no VK ID
[ 45.129584] vaultkeeper: VaultKeeper service preparation is failed
[ 45.279530] CASS: VaultKeeper is not ready. try again Retry cnt(17).
[ 45.393002] audit: type=1400 audit(1749960130.183:469): avc: denied { read } for pid=3985 comm="lowpool[2]" name="u:object_r:bluetooth_prop:s0" dev="tmpfs" ino=152 scontext=u:r:gmscore_app:s0:c512,c768 tcontext=u:object_r:bluetooth_prop:s0 tclass=file permissive=0
[ 46.134738] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 46.176150] QSEECOM: qseecom_load_app: App with id 82 (vaultkeeper) now loaded
[ 46.177401] vaultkeeper: QSEECom_start_app done
[ 46.179928] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 46.181088] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 46.182278] vaultkeeper: QSEECom_send_cmd done(5028/0x0c000c03/VK)
[ 46.182976] QSEECOM: __qseecom_unload_app: App (82) is unloaded
[ 46.183098] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 46.183112] vaultkeeper: Failed cmdProcessing(-10032)
[ 46.183127] vaultkeeper: runCommand error.(-10032)
[ 46.183134] vaultkeeper: There is no VK ID
[ 46.183141] vaultkeeper: VaultKeeper service preparation is failed
[ 46.279725] CASS: VaultKeeper is not ready. try again Retry cnt(19).
[ 46.302899] init: Service 'snap_utility_64' (pid 4331) exited with status 0 oneshot service took 27.826000 seconds in background
[ 46.302947] init: Sending signal 9 to service 'snap_utility_64' (pid 4331) process group...
[ 46.303342] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1047/pid_4331
[ 46.308539] binder_alloc: 8632: binder_alloc_buf size 1056768 failed, too large size
[ 46.308548] binder: [1] from 4641:5994 to 8632:8659 size 368:0
[ 46.308551] binder: 4641:8460 transaction failed 29201/-28, size 1056768-0 line 3475
[ 46.330057] thermal_sys: thermal: cdev[thermal-cluster-1-2:7]
[ 46.330064] PM: Active wake lock:
[ 46.330096] PM: usb_notify: active_count(2), active_time(15143), total_time(17391)
[ 46.330099] PM: a600000.ssusb: active_count(5), active_time(15137), total_time(21162)
[ 46.341152] dev_name = 254:0,total_blks = 524682,skipped_blks = 45239,corrupted_blks = 0,fec_correct_blks = 0
[ 46.476075] audit: type=1400 audit(1749960131.267:470): avc: denied { read } for pid=8632 comm="binder:8632_4" name="u:object_r:system_adbd_prop:s0" dev="tmpfs" ino=445 scontext=u:r:gmscore_app:s0:c512,c768 tcontext=u:object_r:system_adbd_prop:s0 tclass=file permissive=0
[ 46.536093] servicemanager: Caller(pid=1099,uid=1017,sid=u:r:keystore:s0) Could not find android.hardware.security.keymint.IRemotelyProvisionedComponent/default in the VINTF manifest. No alternative instances declared in VINTF.
[ 46.708013] audit: type=1400 audit(1749960131.499:471): avc: denied { read } for pid=8632 comm="binder:8632_3" name="u:object_r:system_adbd_prop:s0" dev="tmpfs" ino=445 scontext=u:r:gmscore_app:s0:c512,c768 tcontext=u:object_r:system_adbd_prop:s0 tclass=file permissive=0
[ 46.842070] pmon: Pending Wakeup Sources: hal_bluetooth_lock usb_notify a600000.ssusb 894000.qcom,qup_uart
[ 46.842134] ts_print: tsens[0:680][1:797][2:800][3:814][4:810][5:776][6:821][7:776][8:821][9:804][10:824][11:821][12:828][13:790][14:622][15:612][16:687][17:732][18:797][19:793][20:810][21:612][22:557][23:571][24:711][25:674][26:598][27:554][28:568][29:585][30:561][31:585]
[ 46.866347] sec_argos:argos_pm_qos_notify() name:UFS, speed:495Mbps, prev level:-1, request level:0
[ 46.866363] sec_argos:argos_freq_lock() update cpu freq 892800
[ 46.866369] set_freq_limit: cflm: id(3) freq(892800)
[ 46.866375] cflm_freq_decision: input: type(3), min(892800), max(0)
[ 46.866534] cflm_update_current_freq: current freq: s(1785600 ~ 1785600), g(633600 ~ 1881600), p(806400 ~ 2400000)
[ 46.926397] !@ 8,0 r 84644 3262469 w 5884 72184 d 2841 69488 f 0 919 iot 31312 0 th 0 0 0 pt 0 inp 0 0 46.896
[ 46.926641] !@ MemInfo(KB): total 7394220 free 725608 avail 3286736 actv(f) 515244 inactv(f) 1985136 dirty 13056 wb 24 anonpg 2319180 slab 470936
[ 47.188785] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 47.203572] pca9481_read_adc: adc_ch=5, raw_adc=0x466, convert_val=1126000
[ 47.221443] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 47.221514] cs35l41 18-0040: get_cirrus_amp_curr_temperature: component is not enabled
[ 47.222773] max77705_fg_read_avg_current: avg_current=-1126mA
[ 47.224175] max77705_fg_read_avg_current: avg_current=-1126mA
[ 47.225172] init: processing action (vendor.thermal.amb.last=*) from (/vendor/etc/init/vendor.samsung.hardware.thermal@1.0-service.rc:18)
[ 47.232840] cs35l41 18-0040: set_cirrus_amp_surface_temperature: Amp0 is not enabled
[ 47.233216] cs35l41 18-0040: set_cirrus_amp_surface_temperature: Amp1 is not enabled
[ 47.233881] cs40l26 56-0040: current_temp_store temperature : 28
[ 47.241694] QSEECOM: qseecom_load_app: App with id 83 (vaultkeeper) now loaded
[ 47.245284] vaultkeeper: QSEECom_start_app done
[ 47.252410] [SDE_0] vrr_show : 24 2
[ 47.252674] cflm_freq_decision: input: type(0), min(0), max(2841600)
[ 47.252708] cflm_update_current_freq: current freq: s(1785600 ~ 1478400), g(633600 ~ 1881600), p(806400 ~ 2400000)
[ 47.263415] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 47.272774] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 47.274020] vaultkeeper: QSEECom_send_cmd done(7121/0x0c000c03/VK)
[ 47.274835] QSEECOM: __qseecom_unload_app: App (83) is unloaded
[ 47.274943] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 47.274956] vaultkeeper: Failed cmdProcessing(-10032)
[ 47.274973] vaultkeeper: runCommand error.(-10032)
[ 47.274981] vaultkeeper: There is no VK ID
[ 47.274988] vaultkeeper: VaultKeeper service preparation is failed
[ 47.279916] CASS: VaultKeeper is not ready. try again Retry cnt(21).
[ 47.369235] sec_argos:argos_pm_qos_notify() name:UFS, speed:361Mbps, prev level:0, request level:-1
[ 47.369261] sec_argos:argos_freq_lock() update cpu freq -1
[ 47.369268] set_freq_limit: cflm: id(3) freq(-1)
[ 47.369274] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 47.369355] cflm_update_current_freq: current freq: s(614400 ~ 1478400), g(633600 ~ 1881600), p(806400 ~ 2400000)
[ 47.383797] dev_name = 254:2,total_blks = 541067,skipped_blks = 50403,corrupted_blks = 0,fec_correct_blks = 0
[ 47.667992] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (4230.746561 ms delta, 0/24)
[ 47.709898] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.870729 ms delta, 23/24)
[ 47.751768] [drm:ss_print_vsync:3526] [SDE_0] ss_print_vsync : Vsync (41.841666 ms delta, 23/24)
[ 47.866047] fps_qbt2000_work_func_debug: ldo:1,ipc:1,wuhb:0,tz:1,type:QBT2608,int:0,0,rst:0
[ 47.870513] sec_argos:argos_pm_qos_notify() name:UFS, speed:615Mbps, prev level:-1, request level:0
[ 47.870522] sec_argos:argos_freq_lock() update cpu freq 892800
[ 47.870526] set_freq_limit: cflm: id(3) freq(892800)
[ 47.870528] cflm_freq_decision: input: type(3), min(892800), max(0)
[ 47.870551] cflm_update_current_freq: current freq: s(1785600 ~ 1478400), g(633600 ~ 1651200), p(806400 ~ 2054400)
[ 47.925110] [Hyst QoS] PerfLock ::: Rqst Val(3000000), Type(0), Qos Value(3000000)
[ 47.950944] max77705_fg_read_current: current=-1108mA
[ 47.951465] max77705_fg_read_avg_current: avg_current=-1133mA
[ 47.952359] max77705_fg_read_avg_current: avg_current=-1133mA
[ 47.952889] max77705_fg_read_current: current=-1108mA
[ 47.983023] max77705_fg_write_temp: temperature to (333, 0x214c)
[ 47.984319] max77705_fg_read_avg_current: avg_current=-1133mA
[ 47.984327] max77705_get_fg_soc: soc(923)
[ 47.984331] max77705_fg_get_scaled_capacity : capacity_max (984) scaled capacity(93.8), raw_soc(92.3)
[ 47.984673] max77705_fg_read_rawsoc: raw capacity (0.01%) (9234)
[ 47.985307] max77705_fg_read_qh : QH(3052500)
[ 47.985317] max77705_fg_check_vempty_recover_time: check vempty time(4, 43)
[ 47.985323] max77705_fg_get_atomic_capacity : NOW(93), OLD(93)
[ 47.985339] sec_bat_get_battery_info:Vnow(4143mV),Vavg(4175mV),Inow(-1108mA),Iavg(-1133mA),Isysavg(1640mA),Imax(475mA),Ichg(550mA),SOC(93%),Tbat(333),Tusb(276),Tchg(486),Twpc(333),Tblkt(0),Tlrp(367),Tdchg(451)
[ 47.985370] sec_calc_ttf: cap: 3195, soc: 938, T: 1501, avg: -1133, cv soc: 1000, i: 16, val: 475
[ 47.985382] sec-battery samsung_mobile_device:battery: sec_bat_calc_time_to_full: T: 1561 sec, passed time: 0, current: 475
[ 47.985403] max77705_chg_set_wdtmr_kick: WDT Kick
[ 47.986869] max77705_get_charging_health: reg_data(0x3)
[ 47.987257] max77705_get_charging_health: details00(0xe0)
[ 47.988187] max77705_get_vbus_state: VBUS is valid. CHGIN < CHGIN_OVLO
[ 47.989603] max77705_get_charging_health: vbus_state: 0x3, chg_dtls: 0x1, iin: 467mA, vbyp: 4718mV, health: 1, abnormal: false
[ 47.994893] max77705 : [0xb1]0x7a, [0xb2]0xdf, [0xb3]0xe0, [0xb4]0x31, [0xb5]0x00, [0xb6]0xff, [0xb7]0x15, [0xb8]0x38, [0xb9]0x4b, [0xba]0x9f, [0xbb]0x1a, [0xbc]0x60, [0xbd]0xec, [0xbe]0x34, [0xbf]0x00, [0xc0]0x92, [0xc1]0x10, [0xc2]0x00, [0xc3]0x68,
[ 47.995909] max77705_chg_monitor_work: [CHG] MODE(0x5), B2SOVRC(0x0), otg_on(0)
[ 47.995919] [PASS-THROUGH]:sb_pt_monitor: end - step = None
[ 47.995963] sec_bat_monitor_work: Status(Charging), mode(Normal), Health(Good), Cable(USB, USB, 1, 0), rp(1), HV(NONE)
[ 47.995965] sec_bat_monitor_work: lcd(1), slate(0), store(0), siop_level(100), sleep_mode(0), Cycle(50)
[ 47.995978] sec-battery samsung_mobile_device:battery: sec_bat_set_polling: Polling time 30/30 sec.
[ 47.996306] max77705_fg_read_current: current=-1108mA
[ 47.997908] max77705_fg_read_avg_current: avg_current=-1133mA
[ 47.998589] max77705_fg_read_current: current=-1108mA
[ 47.998594] max77705_fg_read_isys: isys_current=1691mA
[ 47.999446] max77705_fg_read_vcell: VCELL(4143)mV, data(0xcf2c)
[ 47.999451] max77705_fg_read_avg_current: avg_current=-1133mA
[ 48.000095] pca9481_chg_get_property: CHARGER_STATUS(NO_CHARGING)
[ 48.001096] max77705_fg_read_current: current=-1108mA
[ 48.002590] max77705_fg_read_avg_current: avg_current=-1133mA
[ 48.003886] max77705_fg_read_current: current=-1108mA
[ 48.004017] sec_bat_show_attrs : HV_CHARGER_STATUS(0), max_charger_power(2375), pd_max charge power(0)
[ 48.004182] healthd: efs_buf: 0 8 6 3365 3290 1 0 50 743 0 0 0 0 0 0 1 357 175 517 168 357 174 309 178 353 175 517 168 353 174 294 178 0 0 0 0 0 0 0 95 0 3347 43 1 3290 3290 0 0 3 0 0 0 0 0 0 0 357 302 0 0 485 313 309 273 333 302 0 0 484 313 294 273 0 0 0 0 0 0 0 0 0 0
[ 48.004188] healthd: update cisd_data 0 8 6 3365 3290 1 0 50 743 0 0 0 0 0 0 1 357 175 517 168 357 174 309 178 353 175 517 168 353 174 294 178 0 0 0 0 0 0 0 95 0 3347 43 1 3290 3290 0 0 3 0 0 0 0 0 0 0 357 302 0 0 486 313 309 273 333 302 0 0 486 313 294 273 0 0 0 0 0 0 0 0 0 0
[ 48.007121] healthd: battery l=93 v=4143 t=33.3 h=2 st=2 c=-1108 fc=3700000 o=4 ca=-1133 ct=1 hv=0 sec=65536 sce=1048580 tx=0 chg=u
[ 48.007602] sec-battery samsung_mobile_device:battery: sec_bat_store_attrs: LRP(373)
[ 48.114205] [3][FG] 0080h,ffa0h,7f80h,ff01h,1900h,04bfh,5c55h,6351h,214ch,cf2ch,fa75h,fa55h,0039h,5a83h,5c90h,04c6h,0491h,0666h,4b00h,5d00h,0674h,0148h,2006h,003ah,0544h,d0cch,2311h,dc9ah,0af0h,0314h,02b0h,0488h,ffffh,6200h,2200h,053bh,1403h,1e05h,2006h,803ah,2616h,cea4h,023ch,3850h,e3e1h,290eh,0400h,0001h,5b52h,3898h,0d80h,ffffh,1d3bh,0524h,0436h,05e0h,002bh,151fh,7d54h,fa55h,1680h,1008h,3861h,e000h,07fch,0009h,0b00h,0c2ch,d1f1h,0181h,3922h,fe5fh,62cfh,2441h,04dbh,0c07h,0520h,04c5h,351ah,04d1h,0000h,64fdh,0015h,2b41h,7f80h,0005h,0007h,0600h,0000h,006bh,090ch,0055h,0f51h,0204h,0007h,0000h,0e98h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0000h,0010h,0006h,ffffh,5cd2h,04c0h,05d2h,ffcfh,1a23h,e785h,0008h,0001h,ffffh,0002h,4aaeh,0000h,4648h,0000h,4000h,0000h,ab40h,0620h,ffffh,ffffh,ffffh,ffffh,208ah,0000h,0100h,f9beh,401dh,58a6h,fe20h,d474h,0022h,2910h,cee0h,5c24h,
[ 48.116151] max77705_fg_read_current: current=-1222mA
[ 48.117126] max77705_fg_read_avg_current: avg_current=-1133mA
[ 48.119298] max77705_fg_read_qh : QH(3052500)
[ 48.119305] [FG power] ISYS(1706mA),ISYSAVG(1641mA),VSYS(4029mV),IIN(471mA),VBYP(4730mV) QH(3052500 uah)
[ 48.119600] max77705_fg_read_rawsoc: raw capacity (0.01%) (9233)
[ 48.120356] !@new_battery_dump : 4143,-1108,475,550,93,333,276,486,333,0,367,451,0,Charging,NO_CHARGING,Normal,Good,USB,1,Normal,0,0,9600,0x100004,0x10000,0x0,0,0,0000,0000,00000000,0,0,0,0,50,4249,9233,984,0,
[ 48.122156] msm_watchdog_data - pet: 48.122149 / last_pet: 38.650179 (delta: 9.471970)
[ 48.123794] (virq:irq_count)- GICv3:IPI(1):280616 GICv3:IPI(6):119571 GICv3:IPI(2):108280 GICv3:arch_timer(11):107949 GICv3:ufshcd(31):88169 GICv3:i2c_geni(54):15113 GICv3:gpi_dma800000_gpii0(71):11053 GICv3:ipcc_0(28):7119 GICv3:c263000.thermal-sensor(223):7078 GICv3:apps_rsc(34):5240
[ 48.123842] (cpu:irq_count)- 0:227363 1:59518 2:57297 3:54282 4:102060 5:90268 6:94621 7:95745
[ 48.123866] (ipi:irq_count)- 0:280616 1:108281 2:0 3:0 4:0 5:119572 6:0
[ 48.203622] dev_name = 254:0,total_blks = 557460,skipped_blks = 53828,corrupted_blks = 0,fec_correct_blks = 0
[ 48.280179] CASS: VaultKeeper is not ready. try again Retry cnt(23).
[ 48.284361] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 48.316811] QSEECOM: qseecom_load_app: App with id 84 (vaultkeeper) now loaded
[ 48.318248] vaultkeeper: QSEECom_start_app done
[ 48.321059] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 48.322675] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 48.323801] vaultkeeper: QSEECom_send_cmd done(6620/0x0c000c03/VK)
[ 48.324363] QSEECOM: __qseecom_unload_app: App (84) is unloaded
[ 48.324433] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 48.324442] vaultkeeper: Failed cmdProcessing(-10032)
[ 48.324452] vaultkeeper: runCommand error.(-10032)
[ 48.324456] vaultkeeper: There is no VK ID
[ 48.324461] vaultkeeper: VaultKeeper service preparation is failed
[ 48.516396] cfb_target: uid = 10286
[ 48.894072] adsp_sleepmon: timer_event = 1,suspend_event = 0
[ 48.927423] !@ 8,0 r 92074 3520017 w 7141 82388 d 3108 75840 f 0 1041 iot 33304 0 th 0 0 0 pt 0 inp 0 1 48.897
[ 48.927693] !@ Read_top(KB): ndroid.settings(3500) 119196 id.apps.tachyon(8913) 72660 droid.apps.maps(8712) 45968
[ 48.927709] !@ Write_top(KB): ung.android.scs(8479) 3620 f2fs_ckpt-254:5(1153) 2140 binder:1099_2(1099) 1796
[ 49.059776] dev_name = 254:2,total_blks = 573848,skipped_blks = 55981,corrupted_blks = 0,fec_correct_blks = 0
[ 49.280650] CASS: VaultKeeper is not ready. try again Retry cnt(25).
[ 49.331864] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 49.363590] QSEECOM: qseecom_load_app: App with id 85 (vaultkeeper) now loaded
[ 49.372087] vaultkeeper: QSEECom_start_app done
[ 49.374667] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 49.377210] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 49.377638] sec_argos:argos_pm_qos_notify() name:UFS, speed:336Mbps, prev level:0, request level:-1
[ 49.377648] sec_argos:argos_freq_lock() update cpu freq -1
[ 49.377655] set_freq_limit: cflm: id(3) freq(-1)
[ 49.377662] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 49.377778] cflm_update_current_freq: current freq: s(614400 ~ 1478400), g(633600 ~ 2496000), p(806400 ~ 2841600)
[ 49.378553] vaultkeeper: QSEECom_send_cmd done(8192/0x0c000c03/VK)
[ 49.379174] QSEECOM: __qseecom_unload_app: App (85) is unloaded
[ 49.379261] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 49.379270] vaultkeeper: Failed cmdProcessing(-10032)
[ 49.379280] vaultkeeper: runCommand error.(-10032)
[ 49.379285] vaultkeeper: There is no VK ID
[ 49.379290] vaultkeeper: VaultKeeper service preparation is failed
[ 49.379294] vaultkeeper: Restart VaultKeeper after termination
[ 49.380496] init: Service 'vaultkeeper' (pid 7184) exited with status 255
[ 49.380536] init: Sending signal 9 to service 'vaultkeeper' (pid 7184) process group...
[ 49.380969] libprocessgroup: Removed cgroup /sys/fs/cgroup/uid_1000/pid_7184
[ 49.382791] init: starting service 'vaultkeeper'...
[ 49.398886] init: ... started service 'vaultkeeper' has pid 9171
[ 49.405359] PROCA: PROCA certificate was found for task 9171
[ 49.405483] PROCA: Task descriptor for task 9171 was created
[ 49.405492] PROCA: Task 9171 has application name /vendor/bin/vaultkeeperd
[ 49.414413] PROCA: Destroying proca task descriptor for task 7184
[ 50.280930] CASS: VaultKeeper is not ready. try again Retry cnt(27).
[ 50.423691] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 50.453732] QSEECOM: qseecom_load_app: App with id 86 (vaultkeeper) now loaded
[ 50.462020] vaultkeeper: QSEECom_start_app done
[ 50.465130] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 50.466333] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 50.467387] vaultkeeper: QSEECom_send_cmd done(480/0x0c000c03/VK)
[ 50.468173] QSEECOM: __qseecom_unload_app: App (86) is unloaded
[ 50.468274] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 50.468287] vaultkeeper: Failed cmdProcessing(-10032)
[ 50.468302] vaultkeeper: runCommand error.(-10032)
[ 50.468309] vaultkeeper: There is no VK ID
[ 50.468316] vaultkeeper: VaultKeeper service preparation is failed
[ 50.585413] dev_name = 254:2,total_blks = 590233,skipped_blks = 58049,corrupted_blks = 0,fec_correct_blks = 0
[ 50.928312] !@ 8,0 r 95569 3641769 w 7619 87912 d 3522 80176 f 0 1074 iot 35124 0 th 0 0 0 pt 0 inp 0 0 50.898
[ 51.168075] dev_name = 254:0,total_blks = 606622,skipped_blks = 59944,corrupted_blks = 0,fec_correct_blks = 0
[ 51.281163] CASS: VaultKeeper is not ready. try again Retry cnt(29).
[ 51.319534] audit: type=1400 audit(1749960136.111:472): avc: denied { getopt } for pid=2420 comm="WriteANRInfoThr" scontext=u:r:system_server:s0 tcontext=u:r:priv_app:s0:c512,c768 tclass=unix_stream_socket permissive=0
[ 51.384405] sec_argos:argos_pm_qos_notify() name:UFS, speed:431Mbps, prev level:-1, request level:0
[ 51.384412] sec_argos:argos_freq_lock() update cpu freq 892800
[ 51.384415] set_freq_limit: cflm: id(3) freq(892800)
[ 51.384417] cflm_freq_decision: input: type(3), min(892800), max(0)
[ 51.384432] cflm_update_current_freq: current freq: s(1785600 ~ 1478400), g(633600 ~ 2227200), p(806400 ~ 2841600)
[ 51.454047] PM: Active wake lock:
[ 51.454090] PM: usb_notify: active_count(2), active_time(20267), total_time(22515)
[ 51.454093] PM: a600000.ssusb: active_count(5), active_time(20261), total_time(26286)
[ 51.454133] thermal_sys: thermal: cdev[thermal-cluster-1-2:2]
[ 51.474373] QSEECOM: qseecom_load_app: App (vaultkeeper) does'nt exist, loading apps for first time
[ 51.504547] QSEECOM: qseecom_load_app: App with id 87 (vaultkeeper) now loaded
[ 51.511136] vaultkeeper: QSEECom_start_app done
[ 51.513936] [PA_TZ_DRV] [ERR] [TEES_HandleDriverCommand:175] Config is not initialized in SWD
[ 51.515827] [PA_TZ_DRV] [ERR] [QseeIpcInvoke:166] TEES_HandleDriverCommand return error.
[ 51.516658] vaultkeeper: QSEECom_send_cmd done(5173/0x0c000c03/VK)
[ 51.517235] QSEECOM: __qseecom_unload_app: App (87) is unloaded
[ 51.517305] vaultkeeper: Occured Error into TA side(-10032//vendor/bin/vaultkeeperd/VK)
[ 51.517313] vaultkeeper: Failed cmdProcessing(-10032)
[ 51.517324] vaultkeeper: runCommand error.(-10032)
[ 51.517327] vaultkeeper: There is no VK ID
[ 51.517332] vaultkeeper: VaultKeeper service preparation is failed
[ 51.889078] sec_argos:argos_pm_qos_notify() name:UFS, speed:364Mbps, prev level:0, request level:-1
[ 51.889104] sec_argos:argos_freq_lock() update cpu freq -1
[ 51.889112] set_freq_limit: cflm: id(3) freq(-1)
[ 51.889119] cflm_freq_decision: input: type(3), min(-1), max(0)
[ 51.889199] cflm_update_current_freq: current freq: s(614400 ~ 1478400), g(633600 ~ 2496000), p(806400 ~ 2841600)
[ 51.903519] dev_name = 254:2,total_blks = 623022,skipped_blks = 63319,corrupted_blks = 0,fec_correct_blks = 0
[ 51.962092] pmon: Pending Wakeup Sources: usb_notify a600000.ssusb
[ 51.962141] ts_print: tsens[0:639][1:735][2:725][3:759][4:759][5:739][6:776][7:745][8:783][9:763][10:776][11:773][12:793][13:776][14:598][15:588][16:650][17:670][18:718][19:715][20:749][21:581][22:540][23:550][24:657][25:639][26:574][27:537][28:547][29:561][30:544][31:564]
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-17 18:22 ` Eric Gonçalves
@ 2025-10-20 12:18 ` Konrad Dybcio
2025-10-27 18:32 ` Eric Gonçalves
0 siblings, 1 reply; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-20 12:18 UTC (permalink / raw)
To: Eric Gonçalves
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On 10/17/25 8:22 PM, Eric Gonçalves wrote:
>
>
> On October 17, 2025 5:20:43 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
>> On 10/16/25 10:08 PM, Ghatto wrote:
>>> On Thu, Oct 16, 2025 at 6:06 AM Konrad Dybcio
>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>
>>>>
>>>>
>>>> On 10/14/25 9:04 PM, Ghatto wrote:
>>>>> On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>
>>>>>> On 10/14/25 5:10 PM, Ghatto wrote:
>>>>>>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
>>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>>
>>>>>>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
>>>>>>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
>>>>>>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>>>>>>>>
>>>>>>>> The second sentence doesn't really make sense to be included in
>>>>>>>> the git log
>>>>>>> I'll keep it to the cover letter then
>>>>>>>>
>>>>>>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
>>>>>>>>> connected to) is not working properly right now, so
>>>>>>>>> spi-gpio is used instead.
>>>>>>>>
>>>>>>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
>>>>>>>> on downstream. I'm assuming this isn't the case for r0q.
>>>>>>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
>>>>>>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
>>>>>>> want to take a look.
>>>>>>>>
>>>>>>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
>>>>>>> The driver probes, but it fails to recognize the touchscreen device
>>>>>>
>>>>>> Could you post a complete dmesg and the precise DT diff you used?
>>>>> https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
>>>>
>>>> The link has expired 🙁
>>> https://pastebin.com/s4abJS9M shouldn't expire now!
>>
>> And yet it did!
>>
>> Feel free to just attach it to your message.. the list may bounce
>> it, but it will still reach the To/Cc recipients
> Attached the dmesg.txt file.
I'm interested in what happens early when the SPI hosts are programmed,
whether there's any additional debug messages.
If your log buffer is overrunning, you can add log_buf_len=8M to your
cmdline (which will make the buffer 8MiB long)
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-20 12:18 ` Konrad Dybcio
@ 2025-10-27 18:32 ` Eric Gonçalves
2025-10-29 9:50 ` Konrad Dybcio
0 siblings, 1 reply; 26+ messages in thread
From: Eric Gonçalves @ 2025-10-27 18:32 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On October 20, 2025 9:18:18 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
>On 10/17/25 8:22 PM, Eric Gonçalves wrote:
>>
>>
>> On October 17, 2025 5:20:43 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
>>> On 10/16/25 10:08 PM, Ghatto wrote:
>>>> On Thu, Oct 16, 2025 at 6:06 AM Konrad Dybcio
>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>
>>>>>
>>>>>
>>>>> On 10/14/25 9:04 PM, Ghatto wrote:
>>>>>> On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>
>>>>>>> On 10/14/25 5:10 PM, Ghatto wrote:
>>>>>>>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
>>>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>>>
>>>>>>>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
>>>>>>>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
>>>>>>>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>>>>>>>>>
>>>>>>>>> The second sentence doesn't really make sense to be included in
>>>>>>>>> the git log
>>>>>>>> I'll keep it to the cover letter then
>>>>>>>>>
>>>>>>>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
>>>>>>>>>> connected to) is not working properly right now, so
>>>>>>>>>> spi-gpio is used instead.
>>>>>>>>>
>>>>>>>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
>>>>>>>>> on downstream. I'm assuming this isn't the case for r0q.
>>>>>>>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
>>>>>>>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
>>>>>>>> want to take a look.
>>>>>>>>>
>>>>>>>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
>>>>>>>> The driver probes, but it fails to recognize the touchscreen device
>>>>>>>
>>>>>>> Could you post a complete dmesg and the precise DT diff you used?
>>>>>> https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
>>>>>
>>>>> The link has expired 🙁
>>>> https://pastebin.com/s4abJS9M shouldn't expire now!
>>>
>>> And yet it did!
>>>
>>> Feel free to just attach it to your message.. the list may bounce
>>> it, but it will still reach the To/Cc recipients
>> Attached the dmesg.txt file.
>
>I'm interested in what happens early when the SPI hosts are programmed,
>whether there's any additional debug messages.
>
>If your log buffer is overrunning, you can add log_buf_len=8M to your
>cmdline (which will make the buffer 8MiB long)
Is it that big of a deal though? spi-gpio
works just fine for touchscreen.
>
>Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-27 18:32 ` Eric Gonçalves
@ 2025-10-29 9:50 ` Konrad Dybcio
2025-10-31 21:06 ` Ghatto
0 siblings, 1 reply; 26+ messages in thread
From: Konrad Dybcio @ 2025-10-29 9:50 UTC (permalink / raw)
To: Eric Gonçalves
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On 10/27/25 7:32 PM, Eric Gonçalves wrote:
>
>
> On October 20, 2025 9:18:18 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
>> On 10/17/25 8:22 PM, Eric Gonçalves wrote:
>>>
>>>
>>> On October 17, 2025 5:20:43 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
>>>> On 10/16/25 10:08 PM, Ghatto wrote:
>>>>> On Thu, Oct 16, 2025 at 6:06 AM Konrad Dybcio
>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>
>>>>>>
>>>>>>
>>>>>> On 10/14/25 9:04 PM, Ghatto wrote:
>>>>>>> On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
>>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>>
>>>>>>>> On 10/14/25 5:10 PM, Ghatto wrote:
>>>>>>>>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
>>>>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>>>>
>>>>>>>>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
>>>>>>>>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
>>>>>>>>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>>>>>>>>>>
>>>>>>>>>> The second sentence doesn't really make sense to be included in
>>>>>>>>>> the git log
>>>>>>>>> I'll keep it to the cover letter then
>>>>>>>>>>
>>>>>>>>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
>>>>>>>>>>> connected to) is not working properly right now, so
>>>>>>>>>>> spi-gpio is used instead.
>>>>>>>>>>
>>>>>>>>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
>>>>>>>>>> on downstream. I'm assuming this isn't the case for r0q.
>>>>>>>>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
>>>>>>>>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
>>>>>>>>> want to take a look.
>>>>>>>>>>
>>>>>>>>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
>>>>>>>>> The driver probes, but it fails to recognize the touchscreen device
>>>>>>>>
>>>>>>>> Could you post a complete dmesg and the precise DT diff you used?
>>>>>>> https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
>>>>>>
>>>>>> The link has expired 🙁
>>>>> https://pastebin.com/s4abJS9M shouldn't expire now!
>>>>
>>>> And yet it did!
>>>>
>>>> Feel free to just attach it to your message.. the list may bounce
>>>> it, but it will still reach the To/Cc recipients
>>> Attached the dmesg.txt file.
>>
>> I'm interested in what happens early when the SPI hosts are programmed,
>> whether there's any additional debug messages.
>>
>> If your log buffer is overrunning, you can add log_buf_len=8M to your
>> cmdline (which will make the buffer 8MiB long)
> Is it that big of a deal though? spi-gpio
> works just fine for touchscreen.
It's like using CPU rendering even though your computer has a GPU in it..
Plus we don't expect the upstream driver to have such odd issues, so I'd
really like to get to the bottom of it
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-29 9:50 ` Konrad Dybcio
@ 2025-10-31 21:06 ` Ghatto
2025-11-04 14:53 ` Konrad Dybcio
0 siblings, 1 reply; 26+ messages in thread
From: Ghatto @ 2025-10-31 21:06 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On Wed, Oct 29, 2025 at 6:50 AM Konrad Dybcio
<konrad.dybcio@oss.qualcomm.com> wrote:
>
> On 10/27/25 7:32 PM, Eric Gonçalves wrote:
> >
> >
> > On October 20, 2025 9:18:18 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
> >> On 10/17/25 8:22 PM, Eric Gonçalves wrote:
> >>>
> >>>
> >>> On October 17, 2025 5:20:43 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
> >>>> On 10/16/25 10:08 PM, Ghatto wrote:
> >>>>> On Thu, Oct 16, 2025 at 6:06 AM Konrad Dybcio
> >>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>> On 10/14/25 9:04 PM, Ghatto wrote:
> >>>>>>> On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
> >>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
> >>>>>>>>
> >>>>>>>> On 10/14/25 5:10 PM, Ghatto wrote:
> >>>>>>>>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
> >>>>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
> >>>>>>>>>>
> >>>>>>>>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> >>>>>>>>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
> >>>>>>>>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
> >>>>>>>>>>
> >>>>>>>>>> The second sentence doesn't really make sense to be included in
> >>>>>>>>>> the git log
> >>>>>>>>> I'll keep it to the cover letter then
> >>>>>>>>>>
> >>>>>>>>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
> >>>>>>>>>>> connected to) is not working properly right now, so
> >>>>>>>>>>> spi-gpio is used instead.
> >>>>>>>>>>
> >>>>>>>>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
> >>>>>>>>>> on downstream. I'm assuming this isn't the case for r0q.
> >>>>>>>>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
> >>>>>>>>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
> >>>>>>>>> want to take a look.
> >>>>>>>>>>
> >>>>>>>>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
> >>>>>>>>> The driver probes, but it fails to recognize the touchscreen device
> >>>>>>>>
> >>>>>>>> Could you post a complete dmesg and the precise DT diff you used?
> >>>>>>> https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
> >>>>>>
> >>>>>> The link has expired 🙁
> >>>>> https://pastebin.com/s4abJS9M shouldn't expire now!
> >>>>
> >>>> And yet it did!
> >>>>
> >>>> Feel free to just attach it to your message.. the list may bounce
> >>>> it, but it will still reach the To/Cc recipients
> >>> Attached the dmesg.txt file.
> >>
> >> I'm interested in what happens early when the SPI hosts are programmed,
> >> whether there's any additional debug messages.
> >>
> >> If your log buffer is overrunning, you can add log_buf_len=8M to your
> >> cmdline (which will make the buffer 8MiB long)
> > Is it that big of a deal though? spi-gpio
> > works just fine for touchscreen.
>
> It's like using CPU rendering even though your computer has a GPU in it..
Yeah, but CPU rendering is slow, while the touchscreen
on spi-gpio is just as fast as it is on Android.
>
> Plus we don't expect the upstream driver to have such odd issues, so I'd
> really like to get to the bottom of it
I don't think the log buffer is overrunning, where can I find the SPI host logs?
>
> Konrad
I'm gonna drop this patch so the other ones are able to get merged
while I work on the driver.
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals
2025-10-14 9:58 ` [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Konrad Dybcio
@ 2025-10-31 21:12 ` Ghatto
0 siblings, 0 replies; 26+ messages in thread
From: Ghatto @ 2025-10-31 21:12 UTC (permalink / raw)
To: Konrad Dybcio
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On Tue, Oct 14, 2025 at 6:58 AM Konrad Dybcio
<konrad.dybcio@oss.qualcomm.com> wrote:
>
> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
> > This patchset adds support for multiple devices found on the Galaxy S22,
> > side buttons, touchscreen, max77705 charger/fuelgauge, RTC and UFS. It
> > depends on "Input: add support for the STM FTS2BA61Y touchscreen" for
> > TS to be enabled - and for the fuelgauge/charger to work,
> > "mfd: max77705: support revision 0x2" is needed too.
> >
> > Thanks!
> >
> > Changes in v2:
> > - split the gpio keys patch into 2 for small refactor
> > - rename spi-gpio: spi-gpio@0 to spi8
> > - use tabs instead of spaces on max77705 nodes
> > - added new patch that fixes adsp_mem and video_mem memory regions
> > I couldn't find the clock-frequency for i2c5 bus :(
>
> You can boot downstram and run debugcc to dump the current state
> (incl. rates) of all clocks
>
> https://github.com/linux-msm/debugcc
I can't get a custom build of the downstream kernel running on recent
Android versions...
>
> Or /sys/kernel/debug/clk/gcc_name_of_the_clock/clk_rate
Nothing exists past /sys/kernel/debug
>
> may also give you a good result, although YMMV
>
> Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support
2025-10-31 21:06 ` Ghatto
@ 2025-11-04 14:53 ` Konrad Dybcio
0 siblings, 0 replies; 26+ messages in thread
From: Konrad Dybcio @ 2025-11-04 14:53 UTC (permalink / raw)
To: Ghatto
Cc: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
On 10/31/25 10:06 PM, Ghatto wrote:
> On Wed, Oct 29, 2025 at 6:50 AM Konrad Dybcio
> <konrad.dybcio@oss.qualcomm.com> wrote:
>>
>> On 10/27/25 7:32 PM, Eric Gonçalves wrote:
>>>
>>>
>>> On October 20, 2025 9:18:18 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
>>>> On 10/17/25 8:22 PM, Eric Gonçalves wrote:
>>>>>
>>>>>
>>>>> On October 17, 2025 5:20:43 AM GMT-03:00, Konrad Dybcio <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>> On 10/16/25 10:08 PM, Ghatto wrote:
>>>>>>> On Thu, Oct 16, 2025 at 6:06 AM Konrad Dybcio
>>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> On 10/14/25 9:04 PM, Ghatto wrote:
>>>>>>>>> On Tue, Oct 14, 2025 at 11:18 AM Konrad Dybcio
>>>>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>>>>
>>>>>>>>>> On 10/14/25 5:10 PM, Ghatto wrote:
>>>>>>>>>>> On Tue, Oct 14, 2025 at 7:01 AM Konrad Dybcio
>>>>>>>>>>> <konrad.dybcio@oss.qualcomm.com> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>> On 10/14/25 6:41 AM, Eric Gonçalves wrote:
>>>>>>>>>>>>> Enable the ST-Microelectronics FTS2BA61Y touchscreen. This patch
>>>>>>>>>>>>> depends on "Input: add support for the STM FTS2BA61Y touchscreen".
>>>>>>>>>>>>
>>>>>>>>>>>> The second sentence doesn't really make sense to be included in
>>>>>>>>>>>> the git log
>>>>>>>>>>> I'll keep it to the cover letter then
>>>>>>>>>>>>
>>>>>>>>>>>>> The device has an issue where SPI 8 (the bus which the touchscreen is
>>>>>>>>>>>>> connected to) is not working properly right now, so
>>>>>>>>>>>>> spi-gpio is used instead.
>>>>>>>>>>>>
>>>>>>>>>>>> Some Samsung devices used to use spi/i2c-gpio intentionally, also
>>>>>>>>>>>> on downstream. I'm assuming this isn't the case for r0q.
>>>>>>>>>>> It isn't, the device uses fts2ba61y on the spi8 bus - I hosted the
>>>>>>>>>>> DT at https://github.com/ghatt-o/ss_experiments/blob/main/r0q.dts if you
>>>>>>>>>>> want to take a look.
>>>>>>>>>>>>
>>>>>>>>>>>> Did you enable gpi_dma1, qupv3_id_1 before spi8, when testing
>>>>>>>>>>> The driver probes, but it fails to recognize the touchscreen device
>>>>>>>>>>
>>>>>>>>>> Could you post a complete dmesg and the precise DT diff you used?
>>>>>>>>> https://pastebin.com/QkYa8nMp (android dmesg) mainline dmesg doesn't have
>>>>>>>>
>>>>>>>> The link has expired 🙁
>>>>>>> https://pastebin.com/s4abJS9M shouldn't expire now!
>>>>>>
>>>>>> And yet it did!
>>>>>>
>>>>>> Feel free to just attach it to your message.. the list may bounce
>>>>>> it, but it will still reach the To/Cc recipients
>>>>> Attached the dmesg.txt file.
>>>>
>>>> I'm interested in what happens early when the SPI hosts are programmed,
>>>> whether there's any additional debug messages.
>>>>
>>>> If your log buffer is overrunning, you can add log_buf_len=8M to your
>>>> cmdline (which will make the buffer 8MiB long)
>>> Is it that big of a deal though? spi-gpio
>>> works just fine for touchscreen.
>>
>> It's like using CPU rendering even though your computer has a GPU in it..
> Yeah, but CPU rendering is slow, while the touchscreen
> on spi-gpio is just as fast as it is on Android.
Sure it works, but your battery would like to have a word with you..
>> Plus we don't expect the upstream driver to have such odd issues, so I'd
>> really like to get to the bottom of it
> I don't think the log buffer is overrunning, where can I find the SPI host logs?
It clearly is, since it doesn't start with 0.0000000
Konrad
^ permalink raw reply [flat|nested] 26+ messages in thread
end of thread, other threads:[~2025-11-04 14:53 UTC | newest]
Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-14 4:41 [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 1/6] arm64: dts: qcom: r0q: small refactor Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 2/6] arm64: dts: qcom: r0q: add gpio keys Eric Gonçalves
2025-10-14 9:59 ` Konrad Dybcio
2025-10-14 4:41 ` [PATCH v2 3/6] arm64: dts: qcom: r0q: add touchscreen support Eric Gonçalves
2025-10-14 10:01 ` Konrad Dybcio
2025-10-14 15:10 ` Ghatto
2025-10-14 15:17 ` Konrad Dybcio
2025-10-14 19:04 ` Ghatto
2025-10-16 10:06 ` Konrad Dybcio
2025-10-16 20:08 ` Ghatto
2025-10-17 8:20 ` Konrad Dybcio
2025-10-17 18:22 ` Eric Gonçalves
2025-10-20 12:18 ` Konrad Dybcio
2025-10-27 18:32 ` Eric Gonçalves
2025-10-29 9:50 ` Konrad Dybcio
2025-10-31 21:06 ` Ghatto
2025-11-04 14:53 ` Konrad Dybcio
2025-10-14 4:41 ` [PATCH v2 4/6] arm64: dts: qcom: r0q: enable max77705 fuelgauge Eric Gonçalves
2025-10-14 4:41 ` [PATCH v2 5/6] arm64: dts: qcom: r0q: enable ufs storage Eric Gonçalves
2025-10-14 10:02 ` Konrad Dybcio
2025-10-14 4:41 ` [PATCH v2 6/6] arm64: dts: qcom: r0q: fix reserved memory regions Eric Gonçalves
2025-10-14 10:02 ` Konrad Dybcio
2025-10-14 15:12 ` Ghatto
2025-10-14 9:58 ` [PATCH v2 0/6] arm64: dts: qcom: r0q: enable more peripherals Konrad Dybcio
2025-10-31 21:12 ` Ghatto
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).