From abc22bbbbe6567823056ff158c05c5e20296270d Mon Sep 17 00:00:00 2001 From: Alessio Balsini Date: Mon, 28 Mar 2022 12:08:34 +0100 Subject: [PATCH 1/5] FUSE-BPF: Disable the feature FUSE-BPF has been identified to be causing issues with the Audible app. Disable the feature to mitigate the breakages while investigating the issue. Bug: 227042065 Test: adb shell getprop ro.fuse.bpf.enabled | grep false Signed-off-by: Alessio Balsini Change-Id: I9edbf4bcbc7c293f541936baf80e318a87eeb2a3 (cherry picked from commit 55b3a32128ed374c975de8cdcd8af67e8c6d48ca) Merged-In: I9edbf4bcbc7c293f541936baf80e318a87eeb2a3 --- device.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device.mk b/device.mk index 6a824e2c..cc3ebc7a 100644 --- a/device.mk +++ b/device.mk @@ -837,7 +837,7 @@ PRODUCT_PRODUCT_PROPERTIES += \ # Use FUSE BPF PRODUCT_PRODUCT_PROPERTIES += \ - ro.fuse.bpf.enabled=true + ro.fuse.bpf.enabled=false # Use /product/etc/fstab.postinstall to mount system_other PRODUCT_PRODUCT_PROPERTIES += \ From a049ff0dd1a87461adb475811847014acb149dc7 Mon Sep 17 00:00:00 2001 From: neoyu Date: Wed, 8 Feb 2023 08:20:05 +0800 Subject: [PATCH 2/5] Support SecureElement HAL for HIDL Bug: 267525940 Test: manual Change-Id: I10334765bf8bda037a952c45f0316ed9e834489a (cherry picked from commit d5cdc0dcd59844bf3b831ec85dbb2ba0d2b5d2aa) Merged-In: I10334765bf8bda037a952c45f0316ed9e834489a --- device.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/device.mk b/device.mk index d5789536..7e0a7b06 100644 --- a/device.mk +++ b/device.mk @@ -917,6 +917,8 @@ SUPPORT_MULTI_SIM := true SUPPORT_NR := true # Using IRadio 1.6 USE_RADIO_HAL_1_6 := true +# Support SecureElement HAL for HIDL +USE_SE_HIDL := true #$(call inherit-product, vendor/google_devices/telephony/common/device-vendor.mk) #$(call inherit-product, vendor/google_devices/gs101/proprietary/device-vendor.mk) From c4f7795fa2f64110f0a13302fd38f390efdbcda4 Mon Sep 17 00:00:00 2001 From: wenchangliu Date: Tue, 4 Jul 2023 07:36:32 +0000 Subject: [PATCH 3/5] Update media_codecs_performance_c2.xml for meet device performance - align hevc/h264 encoder lower bound performance as P22's result Bug: 288859756 Test: run cts -m CtsVideoTestCases -t android.video.cts.VideoEncoderDecoderTest (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:bd23691ee41bced0cc378e51fad33cda55f81c33) Merged-In: I303751fc45a8c58e7d6e501ffde2d29f6d3038ba Change-Id: I303751fc45a8c58e7d6e501ffde2d29f6d3038ba --- media_codecs_performance_c2.xml | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/media_codecs_performance_c2.xml b/media_codecs_performance_c2.xml index e49ef219..358586ea 100644 --- a/media_codecs_performance_c2.xml +++ b/media_codecs_performance_c2.xml @@ -178,22 +178,16 @@ - - - - - - - + + + + - - - - - - - + + + + From 09e693efd9f6fc65238924f7e82eca4174d88b62 Mon Sep 17 00:00:00 2001 From: qinyiyan Date: Thu, 6 Jul 2023 16:55:05 -0700 Subject: [PATCH 4/5] Use version 1 of the DBA service, since version 1 is the only frozen version. bug:289317242 (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:e5e62a21a0c0b02577d6ed0e8f08d7566fc6a384) Merged-In: I770b006b364eb371f4df95f48e2fe5be0c9a9bff Change-Id: I770b006b364eb371f4df95f48e2fe5be0c9a9bff --- device_framework_matrix_product.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device_framework_matrix_product.xml b/device_framework_matrix_product.xml index 172996ad..58fd38d2 100644 --- a/device_framework_matrix_product.xml +++ b/device_framework_matrix_product.xml @@ -78,7 +78,7 @@ com.google.edgetpu.dba - 2 + 1 IDevice default From c6b5b5990a4edb6a6dc55fea851acb114c57bb26 Mon Sep 17 00:00:00 2001 From: Cody Northrop Date: Wed, 12 Jul 2023 12:42:31 -0600 Subject: [PATCH 5/5] EGL: Reduce multifile blobcache limit to 32MB Loading the larger limit is taking too long in the field for apps that are filling the cache. Test: Ran app until it exceeded cache, watched it reset to 50% Bug: 290249239 (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:7b13bc6d5e96b001abf648a3b28d27779874575d) Merged-In: Ib4ec351fd5f2d59d161578440e8c0d36f8b68a6f Change-Id: Ib4ec351fd5f2d59d161578440e8c0d36f8b68a6f --- device.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device.mk b/device.mk index 0ab5fc64..1a4e2afd 100644 --- a/device.mk +++ b/device.mk @@ -245,7 +245,7 @@ endif # Configure EGL blobcache PRODUCT_VENDOR_PROPERTIES += \ ro.egl.blobcache.multifile=true \ - ro.egl.blobcache.multifile_limit=134217728 \ + ro.egl.blobcache.multifile_limit=33554432 \ PRODUCT_VENDOR_PROPERTIES += \ ro.opengles.version=196610 \