The timer memory region is only accessed via aliases that are 0x1000 bytes long, no need to have the timer region larger than that.
Signed-off-by: BALATON Zoltan <bala...@eik.bme.hu> --- hw/timer/sh_timer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/timer/sh_timer.c b/hw/timer/sh_timer.c index f4cc481a90..ee3986edd0 100644 --- a/hw/timer/sh_timer.c +++ b/hw/timer/sh_timer.c @@ -352,8 +352,7 @@ void tmu012_init(MemoryRegion *sysmem, hwaddr base, int feat, uint32_t freq, ch2_irq0); /* ch2_irq1 not supported */ } - memory_region_init_io(&s->iomem, NULL, &tmu012_ops, s, - "timer", 0x100000000ULL); + memory_region_init_io(&s->iomem, NULL, &tmu012_ops, s, "timer", 0x1000); memory_region_init_alias(&s->iomem_p4, NULL, "timer-p4", &s->iomem, 0, 0x1000); -- 2.21.4