diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-05-04 09:28:19 +0200 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2020-05-11 11:05:11 +0100 |
| commit | 54595a5731ed7c94491008b0d3835ad3f786dbcc (patch) | |
| tree | 0cda40c3a15b86634e05949c8cafa4f96d1885ca /hw/timer/nrf51_timer.c | |
| parent | f4ab4f8e772700dcef1c99b75b0704bd5ca96b6a (diff) | |
| download | focaccia-qemu-54595a5731ed7c94491008b0d3835ad3f786dbcc.tar.gz focaccia-qemu-54595a5731ed7c94491008b0d3835ad3f786dbcc.zip | |
hw/arm/nrf51: Add NRF51_PERIPHERAL_SIZE definition
On the NRF51 series, all peripherals have a fixed I/O size of 4KiB. Define NRF51_PERIPHERAL_SIZE and use it. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200504072822.18799-2-f4bug@amsat.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/timer/nrf51_timer.c')
| -rw-r--r-- | hw/timer/nrf51_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/timer/nrf51_timer.c b/hw/timer/nrf51_timer.c index e04046eb15..bc82c85a6f 100644 --- a/hw/timer/nrf51_timer.c +++ b/hw/timer/nrf51_timer.c @@ -313,7 +313,7 @@ static void nrf51_timer_init(Object *obj) SysBusDevice *sbd = SYS_BUS_DEVICE(obj); memory_region_init_io(&s->iomem, obj, &rng_ops, s, - TYPE_NRF51_TIMER, NRF51_TIMER_SIZE); + TYPE_NRF51_TIMER, NRF51_PERIPHERAL_SIZE); sysbus_init_mmio(sbd, &s->iomem); sysbus_init_irq(sbd, &s->irq); |