public inbox for cip-dev@lists.cip-project.org
 help / color / mirror / Atom feed
* [PATCH RESEND 5.10.y-cip 00/13] Add thermal driver and watchdog driver enhancements
@ 2022-07-15  7:39 Biju Das
  2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 01/13] kernel.h: split out mathematical helpers Biju Das
                   ` (13 more replies)
  0 siblings, 14 replies; 25+ messages in thread
From: Biju Das @ 2022-07-15  7:39 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

This patch series aims to add thermal driver support and watchdog driver enhancments
for RZ/G2L platform.

Resending this patch series as patchwork is not showing
patch#2 and #3 of the earlier series.

Andy Shevchenko (2):
  kernel.h: split out mathematical helpers
  units: Add SI metric prefix definitions

Biju Das (10):
  thermal/drivers: Add TSU driver for RZ/G2L
  thermal/drivers/rz2gl: Add error check for reset_control_deassert()
  thermal/drivers/rz2gl: Fix OTP Calibration Register values
  watchdog: rzg2l_wdt: Fix 32bit overflow issue
  watchdog: rzg2l_wdt: Fix Runtime PM usage
  watchdog: rzg2l_wdt: Fix 'BUG: Invalid wait context'
  watchdog: rzg2l_wdt: Fix reset control imbalance
  watchdog: rzg2l_wdt: Add error check for reset_control_deassert
  watchdog: rzg2l_wdt: Use force reset for WDT reset
  watchdog: rzg2l_wdt: Add set_timeout callback

Geert Uytterhoeven (1):
  arm64: defconfig: Enable additional support for Renesas platforms

 arch/arm64/configs/defconfig    |   4 +
 drivers/thermal/Kconfig         |   9 ++
 drivers/thermal/Makefile        |   1 +
 drivers/thermal/rzg2l_thermal.c | 248 ++++++++++++++++++++++++++++++++
 drivers/watchdog/rzg2l_wdt.c    |  83 ++++++-----
 fs/nfs/callback_proc.c          |   5 +
 include/linux/bitops.h          |  11 +-
 include/linux/dcache.h          |   1 +
 include/linux/iommu-helper.h    |   4 +-
 include/linux/kernel.h          | 173 +---------------------
 include/linux/math.h            | 177 +++++++++++++++++++++++
 include/linux/rcu_node_tree.h   |   2 +
 include/linux/units.h           |  22 ++-
 lib/errname.c                   |   1 +
 lib/errseq.c                    |   1 +
 lib/find_bit.c                  |   3 +-
 lib/math/div64.c                |   4 +-
 lib/math/int_pow.c              |   2 +-
 lib/math/int_sqrt.c             |   3 +-
 lib/math/reciprocal_div.c       |   9 +-
 20 files changed, 544 insertions(+), 219 deletions(-)
 create mode 100644 drivers/thermal/rzg2l_thermal.c
 create mode 100644 include/linux/math.h

-- 
2.25.1



^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2022-07-18  9:01 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-15  7:39 [PATCH RESEND 5.10.y-cip 00/13] Add thermal driver and watchdog driver enhancements Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 01/13] kernel.h: split out mathematical helpers Biju Das
2022-07-16  9:08   ` Pavel Machek
2022-07-16 14:16     ` Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 02/13] units: Add SI metric prefix definitions Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 03/13] thermal/drivers: Add TSU driver for RZ/G2L Biju Das
2022-07-16 10:53   ` [cip-dev] " Pavel Machek
2022-07-16 14:36     ` Biju Das
2022-07-18  5:44       ` Biju Das
2022-07-18  8:55         ` Pavel Machek
2022-07-18  9:01           ` Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 04/13] thermal/drivers/rz2gl: Add error check for reset_control_deassert() Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 05/13] thermal/drivers/rz2gl: Fix OTP Calibration Register values Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 06/13] arm64: defconfig: Enable additional support for Renesas platforms Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 07/13] watchdog: rzg2l_wdt: Fix 32bit overflow issue Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 08/13] watchdog: rzg2l_wdt: Fix Runtime PM usage Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 09/13] watchdog: rzg2l_wdt: Fix 'BUG: Invalid wait context' Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 10/13] watchdog: rzg2l_wdt: Fix reset control imbalance Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 11/13] watchdog: rzg2l_wdt: Add error check for reset_control_deassert Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 12/13] watchdog: rzg2l_wdt: Use force reset for WDT reset Biju Das
2022-07-15  7:39 ` [PATCH RESEND 5.10.y-cip 13/13] watchdog: rzg2l_wdt: Add set_timeout callback Biju Das
2022-07-16 11:13   ` Pavel Machek
2022-07-16 14:24     ` Biju Das
2022-07-15  7:46 ` [PATCH RESEND 5.10.y-cip 00/13] Add thermal driver and watchdog driver enhancements Biju Das
2022-07-15  9:28   ` nobuhiro1.iwamatsu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox