2 * ARM PrimeCell PL080/PL081 DMA controller
4 * Copyright (c) 2006 CodeSourcery.
5 * Copyright (c) 2018 Linaro Limited
6 * Written by Paul Brook, Peter Maydell
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 or
10 * (at your option) any later version.
14 * This is a model of the Arm PrimeCell PL080/PL081 DMA controller:
16 * https://developer.arm.com/documentation/ddi0196/latest
17 * and the PL081 TRM is:
18 * https://developer.arm.com/documentation/ddi0218/latest
21 * + sysbus IRQ 0: DMACINTR combined interrupt line
22 * + sysbus IRQ 1: DMACINTERR error interrupt request
23 * + sysbus IRQ 2: DMACINTTC count interrupt request
24 * + sysbus MMIO region 0: MemoryRegion for the device's registers
25 * + QOM property "downstream": MemoryRegion defining where DMA
26 * bus master transactions are made
29 #ifndef HW_DMA_PL080_H
30 #define HW_DMA_PL080_H
32 #include "hw/sysbus.h"
33 #include "qom/object.h"
35 #define PL080_MAX_CHANNELS 8
45 #define TYPE_PL080 "pl080"
46 #define TYPE_PL081 "pl081"
47 OBJECT_DECLARE_SIMPLE_TYPE(PL080State
, PL080
)
50 SysBusDevice parent_obj
;
61 pl080_channel chan
[PL080_MAX_CHANNELS
];
63 /* Flag to avoid recursive DMA invocations. */
69 MemoryRegion
*downstream
;
70 AddressSpace downstream_as
;