dma_device.hh (9044:904ddeecc653) dma_device.hh (9133:82491f9ed266)
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 69 unchanged lines hidden (view full) ---

78 System *sys;
79
80 /** Id for all requests */
81 MasterID masterId;
82
83 /** Number of outstanding packets the dma port has. */
84 int pendingCount;
85
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 69 unchanged lines hidden (view full) ---

78 System *sys;
79
80 /** Id for all requests */
81 MasterID masterId;
82
83 /** Number of outstanding packets the dma port has. */
84 int pendingCount;
85
86 /** If a dmaAction is in progress. */
87 int actionInProgress;
88
89 /** If we need to drain, keep the drain event around until we're done
90 * here.*/
91 Event *drainEvent;
92
93 /** time to wait between sending another packet, increases as NACKs are
94 * recived, decreases as responses are recived. */
95 Tick backoffTime;
96

--- 75 unchanged lines hidden ---
86 /** If we need to drain, keep the drain event around until we're done
87 * here.*/
88 Event *drainEvent;
89
90 /** time to wait between sending another packet, increases as NACKs are
91 * recived, decreases as responses are recived. */
92 Tick backoffTime;
93

--- 75 unchanged lines hidden ---