From a9cad92011560fe03c7d6ffde6d679cc84e48816 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Tue, 9 Jun 2015 09:21:12 -0400 Subject: dev, arm: Include PIO size in AmbaDmaDevice constructor Make it possible to specify the size of the PIO space for an AMBA DMA device. Maintain backwards compatibility and default to zero. --- src/dev/arm/amba_device.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dev/arm/amba_device.cc') diff --git a/src/dev/arm/amba_device.cc b/src/dev/arm/amba_device.cc index 0ba20d087..540d09615 100644 --- a/src/dev/arm/amba_device.cc +++ b/src/dev/arm/amba_device.cc @@ -62,9 +62,9 @@ AmbaIntDevice::AmbaIntDevice(const Params *p, Addr pio_size) -AmbaDmaDevice::AmbaDmaDevice(const Params *p) +AmbaDmaDevice::AmbaDmaDevice(const Params *p, Addr pio_size) : DmaDevice(p), ambaId(AmbaVendor | p->amba_id), - pioAddr(p->pio_addr), pioSize(0), + pioAddr(p->pio_addr), pioSize(pio_size), pioDelay(p->pio_latency),intNum(p->int_num), gic(p->gic) { } -- cgit v1.2.3