pwm: tegra: Avoid potential overflow for short periods
For very short periods, the result of the division might overflow the unsigned long hz variable (on 32-bit architectures). Avoid that by making it an unsigned long long. While at it, also remove an unneeded local variable whose only purpose is to store a temporary computation. Acked-by: Laxman Dewangan <ldewangan@nvidia.com> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
@@ -75,9 +75,8 @@ static int tegra_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
|
|||||||
int duty_ns, int period_ns)
|
int duty_ns, int period_ns)
|
||||||
{
|
{
|
||||||
struct tegra_pwm_chip *pc = to_tegra_pwm_chip(chip);
|
struct tegra_pwm_chip *pc = to_tegra_pwm_chip(chip);
|
||||||
unsigned long long c = duty_ns;
|
unsigned long long c = duty_ns, hz;
|
||||||
unsigned long rate, hz;
|
unsigned long rate;
|
||||||
unsigned long long ns100 = NSEC_PER_SEC;
|
|
||||||
u32 val = 0;
|
u32 val = 0;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
@@ -98,9 +97,8 @@ static int tegra_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
|
|||||||
rate = clk_get_rate(pc->clk) >> PWM_DUTY_WIDTH;
|
rate = clk_get_rate(pc->clk) >> PWM_DUTY_WIDTH;
|
||||||
|
|
||||||
/* Consider precision in PWM_SCALE_WIDTH rate calculation */
|
/* Consider precision in PWM_SCALE_WIDTH rate calculation */
|
||||||
ns100 *= 100;
|
hz = DIV_ROUND_CLOSEST_ULL(100ULL * NSEC_PER_SEC, period_ns);
|
||||||
hz = DIV_ROUND_CLOSEST_ULL(ns100, period_ns);
|
rate = DIV_ROUND_CLOSEST_ULL(100ULL * rate, hz);
|
||||||
rate = DIV_ROUND_CLOSEST(rate * 100, hz);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Since the actual PWM divider is the register's frequency divider
|
* Since the actual PWM divider is the register's frequency divider
|
||||||
|
|||||||
Reference in New Issue
Block a user