From 6250f405f69ca626cf153a119c98ce6eac2c169d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20Cz=C3=A9m=C3=A1n?= <barnabas.czeman@postmarketos.org> Date: Sun, 16 Mar 2025 19:02:59 +0100 Subject: [PATCH] soc-qcom-msm89x7: Add wireplumber config Add wireplumber config for fix low volume issue. Part-of: https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/6327 [ci:skip-build]: already built successfully in CI --- device/testing/soc-qcom-msm89x7/51-qcom.conf | 26 ++++++++++++++++++++ device/testing/soc-qcom-msm89x7/APKBUILD | 6 ++++- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 device/testing/soc-qcom-msm89x7/51-qcom.conf diff --git a/device/testing/soc-qcom-msm89x7/51-qcom.conf b/device/testing/soc-qcom-msm89x7/51-qcom.conf new file mode 100644 index 00000000000..e92726f64df --- /dev/null +++ b/device/testing/soc-qcom-msm89x7/51-qcom.conf @@ -0,0 +1,26 @@ +monitor.alsa.rules = [ + { + matches = [ + { + # Matches all sources + node.name = "~alsa_input.*" + }, + { + # Matches all sinks + node.name = "~alsa_output.*" + } + ] + actions = { + update-props = { + audio.format = "S16LE" + audio.rate = 48000 + api.alsa.period-size = 4096 + api.alsa.period-num = 6 + api.alsa.headroom = 512, + # session.suspend-timeout-seconds = 0 + # dither.method = "wannamaker3", # add dither of desired shape + # dither.noise = 2, # add additional bits of noise + } + } + } +] diff --git a/device/testing/soc-qcom-msm89x7/APKBUILD b/device/testing/soc-qcom-msm89x7/APKBUILD index 05097d2df33..7f3432cab49 100644 --- a/device/testing/soc-qcom-msm89x7/APKBUILD +++ b/device/testing/soc-qcom-msm89x7/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Barnabas Czeman <barnabas.czeman@postmarketos.org> pkgname=soc-qcom-msm89x7 pkgdesc="Common package for Qualcomm MSM89x7 devices" -pkgver=3 +pkgver=4 pkgrel=0 url="https://postmarketos.org" license="BSD-3-Clause" @@ -21,10 +21,13 @@ _ucm_commit="6078de44affd1023c1ba4f71ef1e21468e3282e9" source=" $pkgname-$_ucm_commit.tar.gz::https://github.com/msm89x7-mainline/alsa-ucm-conf/archive/$_ucm_commit.tar.gz adreno-quirks.sh + 51-qcom.conf " package() { mkdir -p $pkgdir + install -Dm644 "$srcdir"/51-qcom.conf \ + -t "$pkgdir"/usr/share/wireplumber/wireplumber.conf.d } ucm() { @@ -47,4 +50,5 @@ gpu() { sha512sums=" b3cc3ad65cf5d3fd956f4d24f36fc4324e4ee676a0cdda99f213f90c6a854b1eb9d3333402e05e1b861e404f31c72b4d5a219b6bcb6170bacedc938657e9a7c4 soc-qcom-msm89x7-6078de44affd1023c1ba4f71ef1e21468e3282e9.tar.gz 1deebe2d0ecfd1022d3f068faf8412edd6c6cf309c0472788620778a04c274187d01204b0c39c6dd5fddd1d5beaa36f2ca693b7af0a8fb9d2c27ea1f6d696ef1 adreno-quirks.sh +28c14f47eaedec577d152001c51753537c98f267ac4a0acf78a304efebe5f6a1b4dc6d501497da9a0a925806a1d9c80b25e001cf9b1eb21efa22cd6a41ff753b 51-qcom.conf " -- GitLab