diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-08-14 19:05:31 +0200 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-09-18 20:40:37 +0200 |
commit | 8158a848fa4d506d46a5193daf13367f3839022a (patch) | |
tree | 3ba3de00f67b6ec4c2c750a027d37e1f3017b3c4 /drivers/timer/rockchip_timer.c | |
parent | 7b87e3bfaf1ef1109da0f749040426c9e665c361 (diff) | |
download | u-boot-8158a848fa4d506d46a5193daf13367f3839022a.tar.gz u-boot-8158a848fa4d506d46a5193daf13367f3839022a.tar.xz u-boot-8158a848fa4d506d46a5193daf13367f3839022a.zip |
rockchip: timer: update for 32/64bit-aware OF_PLATDATA
With dtoc emitting fdt64_t for addresses (and region sizes), the array
indices for accessing the reg[] array needs to be adjusted. This
adjusts the Rockchip DM timer driver to correctly handle OF_PLATDATA
given this new structure layout.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/timer/rockchip_timer.c')
-rw-r--r-- | drivers/timer/rockchip_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/timer/rockchip_timer.c b/drivers/timer/rockchip_timer.c index 460eb82f6c..07d14482d6 100644 --- a/drivers/timer/rockchip_timer.c +++ b/drivers/timer/rockchip_timer.c @@ -140,7 +140,7 @@ static int rockchip_timer_probe(struct udevice *dev) struct rockchip_timer_priv *priv = dev_get_priv(dev); struct rockchip_timer_plat *plat = dev_get_platdata(dev); - priv->timer = map_sysmem(plat->dtd.reg[1], plat->dtd.reg[3]); + priv->timer = map_sysmem(plat->dtd.reg[0], plat->dtd.reg[1]); uc_priv->clock_rate = plat->dtd.clock_frequency; #endif |