summary refs log tree commit diff
path: root/drivers/watchdog/at91sam9_wdt.h
diff options
context:
space:
mode:
authorJisheng Zhang <jszhang@marvell.com>2015-12-15 22:25:27 +0800
committerWim Van Sebroeck <wim@iguana.be>2015-12-27 21:04:50 +0100
commit3024e0d13b0f34536f94bf0d7cc11443beeee9c5 (patch)
treeac821866889cf44a9e06917322331995c9af775b /drivers/watchdog/at91sam9_wdt.h
parent5889f06bd31d542766046faa6b17d957c08e1484 (diff)
downloadlinux-3024e0d13b0f34536f94bf0d7cc11443beeee9c5.tar.gz
watchdog: dw_wdt: fix signedness bug in dw_wdt_top_in_seconds()
On 64bit platforms, "(1 << (16 + top)) / clk_get_rate(dw_wdt.clk)" is
sign-extended to 64bit then converted to unsigned 64bit, finally divide
the clk rate. If the top is the maximum TOP i.e 15, "(1 << (16 +15))"
will be sign-extended to 0xffffffff80000000, then converted to unsigned
0xffffffff80000000, which is a huge number, thus the final result is
wrong.

We fix this issue by giving usigned value(1U in this case) at first.

Let's assume clk rate is 25MHZ,
Before the patch:
dw_wdt_top_in_seconds(15) = -864612050

After the patch:
dw_wdt_top_in_seconds(15) = 85

Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/at91sam9_wdt.h')
0 files changed, 0 insertions, 0 deletions