[PATCH 0/2] thermal: qcom: add support for PMIC5 Gen3 ADC thermal monitoring
From: Jishnu Prakash
Date: Fri May 15 2026 - 05:38:48 EST
Support for the main PMIC5 Gen3 ADC driver has been merged now.
In order to complete adding support for the Gen3 ADC_TM auxiliary
driver, some more changes are needed in the main driver, mainly to
improve its shared interrupt's handling mechanism.
Patch 1 simplifies the interrupt handling in the main ADC driver
by declaring the interrupt as a shared one and dropping the logic
used to call the ADC_TM notifier for handling ADC_TM interrupts on
the first SDAM whose interrupt is shared.
Patch 2 adds the auxiliary thermal driver which supports the ADC_TM
functionality of ADC5 Gen3.
Signed-off-by: Jishnu Prakash <jishnu.prakash@xxxxxxxxxxxxxxxx>
---
Link to previous ADC5 Gen3 patch series:
V10: https://lore.kernel.org/all/20260130115421.2197892-1-jishnu.prakash@xxxxxxxxxxxxxxxx/
Patches 1-3 of the above series have been merged now. Patch 4 received some
later comments which are addressed in this series.
Patch 2 of this present series is derived from patch 4 of the above series,
with some changes.
Changes since V10:
- Added patch 1 of this series to make the SDAM0 IRQ a shared IRQ and
remove ADC_TM notifier, as suggested by Daniel.
- Made following changes to address Daniel's comments on patch 4 in
previous series:
- Added IRQ request call for SDAM0 IRQ, marking it as a shared IRQ.
- Split interrupt handler into main and threaded IRQ functions.
- Removed workqueue used in IRQ handler and its cleanup, instead use threaded
part of handler for same functionality.
- Removed callback function exposed to main ADC driver for TM IRQ handling on first SDAM.
- Removed workaround to capture temperature causing threshold violation inside interrupt
handler and then return this on next get_temp() call.
- Removed all error prints in interrupt handler and updated return value to IRQ_NONE
in case of errors.
- Removed explicit check to disable ADC_TM channel in case of (INT_MAX/-INT_MAX)
high/low thresholds being set in .set_trips callback.
- Also addressed Jonathan's comments on V10 patch 4 related to header file inclusion and for()
loop iterator initialization.
- Dropped Reviewed-by tag from Jonathan on V10 patch 4 due to significant changes made now.
- Added a status clearing register write in adc_tm5_gen3_disable_channel(), missed earlier.
- Moved cleanup action to disable ADC_TM channels in driver probe to just before IRQ requests,
for proper utilization.
To: Jonathan Cameron <jic23@xxxxxxxxxx>
To: David Lechner <dlechner@xxxxxxxxxxxx>
To: Nuno Sá <nuno.sa@xxxxxxxxxx>
To: Andy Shevchenko <andy@xxxxxxxxxx>
To: Amit Kucheria <amitk@xxxxxxxxxx>
To: Thara Gopinath <thara.gopinath@xxxxxxxxx>
To: "Rafael J. Wysocki" <rafael@xxxxxxxxxx>
To: Daniel Lezcano <daniel.lezcano@xxxxxxxxxx>
To: Zhang Rui <rui.zhang@xxxxxxxxx>
To: Lukasz Luba <lukasz.luba@xxxxxxx>
Cc: linux-arm-msm@xxxxxxxxxxxxxxx
Cc: linux-iio@xxxxxxxxxxxxxxx
Cc: linux-kernel@xxxxxxxxxxxxxxx
Cc: linux-pm@xxxxxxxxxxxxxxx
Cc: Kamal Wadhwa <kamal.wadhwa@xxxxxxxxxxxxxxxx>
Cc: David Collins <david.collins@xxxxxxxxxxxxxxxx>
Cc: Anjelique Melendez <anjelique.melendez@xxxxxxxxxxxxxxxx>
Cc: Neil Armstrong <neil.armstrong@xxxxxxxxxx>
Cc: Stephan Gerhold <stephan.gerhold@xxxxxxxxxx>
---
Jishnu Prakash (2):
iio: adc: qcom-spmi-adc5-gen3: Share SDAM0 IRQ with ADC_TM auxiliary driver
thermal: qcom: add support for PMIC5 Gen3 ADC thermal monitoring
drivers/iio/adc/qcom-spmi-adc5-gen3.c | 52 +--
drivers/thermal/qcom/Kconfig | 9 +
drivers/thermal/qcom/Makefile | 1 +
drivers/thermal/qcom/qcom-spmi-adc-tm5-gen3.c | 437 ++++++++++++++++++++++++++
include/linux/iio/adc/qcom-adc5-gen3-common.h | 2 -
5 files changed, 455 insertions(+), 46 deletions(-)
---
base-commit: 7fd2df204f342fc17d1a0bfcd474b24232fb0f32
change-id: 20260514-gen3_adc_tm-410dcb98be62
Best regards,
--
Jishnu Prakash <jishnu.prakash@xxxxxxxxxxxxxxxx>