On Wed, Aug 6, 2025 at 2:00 AM Sangwook Shin <sw617.shin@xxxxxxxxxxx> wrote: > > Fix the issue of max_timeout being calculated larger than actual value. > The calculation result of freq / (S3C2410_WTCON_PRESCALE_MAX + 1) / > S3C2410_WTCON_MAXDIV is smaller than the actual value because the remainder > is discarded during the calculation process. This leads to a larger > calculated value for max_timeout compared to the actual settable value. > To resolve this issue, the order of calculations in the computation process > has been adjusted. > > Signed-off-by: Sangwook Shin <sw617.shin@xxxxxxxxxxx> > --- > drivers/watchdog/s3c2410_wdt.c | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > > diff --git a/drivers/watchdog/s3c2410_wdt.c b/drivers/watchdog/s3c2410_wdt.c > index 95f7207e390a..0a4c0ab2a3d6 100644 > --- a/drivers/watchdog/s3c2410_wdt.c > +++ b/drivers/watchdog/s3c2410_wdt.c > @@ -27,6 +27,7 @@ > #include <linux/mfd/syscon.h> > #include <linux/regmap.h> > #include <linux/delay.h> > +#include <linux/math64.h> > > #define S3C2410_WTCON 0x00 > #define S3C2410_WTDAT 0x04 > @@ -410,9 +411,13 @@ static inline unsigned long s3c2410wdt_get_freq(struct s3c2410_wdt *wdt) > static inline unsigned int s3c2410wdt_max_timeout(struct s3c2410_wdt *wdt) > { > const unsigned long freq = s3c2410wdt_get_freq(wdt); > + //(S3C2410_WTCON_PRESCALE_MAX + 1) * S3C2410_WTCON_MAXDIV = 0x8000 This single-line comment style (//) is usually not used in the kernel code. Prefer multi-line comment style instead (/* */). More importantly, this comment is not needed: using the raw 0x8000 value below is still hard-coding it, and this comment is not the best way to fix that. So declare either a proper constant or a define, and use it further. I'd go with this: const u64 cnt_max = (S3C2410_WTCON_PRESCALE_MAX + 1) * S3C2410_WTCON_MAXDIV * S3C2410_WTCNT_MAXCNT; and then: u64 t_max = div64_ul(cnt_max, freq); Sorry I didn't catch your related comment earlier in v4! With that addressed, feel free to add: Reviewed-by: Sam Protsenko <semen.protsenko@xxxxxxxxxx> > + u64 t_max = div64_ul((u64)S3C2410_WTCNT_MAXCNT * 0x8000, freq); > > - return S3C2410_WTCNT_MAXCNT / (freq / (S3C2410_WTCON_PRESCALE_MAX + 1) > - / S3C2410_WTCON_MAXDIV); > + if (t_max > UINT_MAX) > + t_max = UINT_MAX; > + > + return t_max; > } > > static int s3c2410wdt_disable_wdt_reset(struct s3c2410_wdt *wdt, bool mask) > -- > 2.25.1 >