From 305b4615d1de058c4283372c22d9e9c04e2f53b2 Mon Sep 17 00:00:00 2001 From: Alexey Min Date: Fri, 14 Feb 2025 15:36:50 +0300 Subject: [PATCH] lookup: add Sensor Manager (SMGR) service IDs On some older SoCs (older than SDM845) downstream userspace starts a Sensor Registry service (271) to provide sensor configuration information to a remote processor (SDSP or ADSP). After receiving registry data, SDSP or ADSP exposes a Sensor Manager service "SMGR" (256), which allows to access sensor readings. Add these services to the known list of services. Signed-off-by: Alexey Minnekhanov --- src/lookup.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lookup.c b/src/lookup.c index 1dce695..0c675d1 100644 --- a/src/lookup.c +++ b/src/lookup.c @@ -86,6 +86,8 @@ static const struct { { 226, 0, "Open Mobile Alliance device management service" }, { 231, 0, "Vendor-specific service" }, { 235, 0, "Modem service" }, + { 256, 0, "Sensor Manager service" }, + { 271, 0, "Sensor Registry service" }, { 312, 0, "QBT1000 Ultrasonic Fingerprint Sensor service" }, { 400, 0, "Snapdragon Sensor Core service" }, { 769, 0, "SLIMbus control service" },