dma_device.hh revision 9016:18093957a102
12428SN/A/*
22428SN/A * Copyright (c) 2012 ARM Limited
32428SN/A * All rights reserved.
42428SN/A *
52428SN/A * The license below extends only to copyright in the software and shall
62428SN/A * not be construed as granting a license to any other intellectual
72428SN/A * property including but not limited to intellectual property relating
82428SN/A * to a hardware implementation of the functionality of the software
92428SN/A * licensed hereunder.  You may use the software subject to the license
102428SN/A * terms below provided that you ensure that this notice is replicated
112428SN/A * unmodified and in its entirety in all distributions of the software,
122428SN/A * modified or unmodified, in source code or in binary form.
132428SN/A *
142428SN/A * Copyright (c) 2004-2005 The Regents of The University of Michigan
152428SN/A * All rights reserved.
162428SN/A *
172428SN/A * Redistribution and use in source and binary forms, with or without
182428SN/A * modification, are permitted provided that the following conditions are
192428SN/A * met: redistributions of source code must retain the above copyright
202428SN/A * notice, this list of conditions and the following disclaimer;
212428SN/A * redistributions in binary form must reproduce the above copyright
222428SN/A * notice, this list of conditions and the following disclaimer in the
232428SN/A * documentation and/or other materials provided with the distribution;
242428SN/A * neither the name of the copyright holders nor the names of its
252428SN/A * contributors may be used to endorse or promote products derived from
262428SN/A * this software without specific prior written permission.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292665Ssaidi@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302428SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312428SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322428SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
332428SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342428SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352972Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362428SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372428SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382428SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392428SN/A *
402428SN/A * Authors: Ali Saidi
412428SN/A *          Nathan Binkert
422428SN/A */
432428SN/A
442428SN/A#ifndef __DEV_DMA_DEVICE_HH__
454040Ssaidi@eecs.umich.edu#define __DEV_DMA_DEVICE_HH__
462428SN/A
472428SN/A#include "dev/io_device.hh"
482455SN/A#include "params/DmaDevice.hh"
492455SN/A
502428SN/Aclass DmaPort : public MasterPort
512428SN/A{
522428SN/A  protected:
532428SN/A    struct DmaReqState : public Packet::SenderState, public FastAlloc
542428SN/A    {
552428SN/A        /** Event to call on the device when this transaction (all packets)
562428SN/A         * complete. */
572428SN/A        Event *completionEvent;
582428SN/A
592428SN/A        /** Total number of bytes that this transaction involves. */
602972Sgblack@eecs.umich.edu        Addr totBytes;
612972Sgblack@eecs.umich.edu
622972Sgblack@eecs.umich.edu        /** Number of bytes that have been acked for this transaction. */
632972Sgblack@eecs.umich.edu        Addr numBytes;
642972Sgblack@eecs.umich.edu
652972Sgblack@eecs.umich.edu        /** Amount to delay completion of dma by */
662972Sgblack@eecs.umich.edu        Tick delay;
672428SN/A
682428SN/A        DmaReqState(Event *ce, Addr tb, Tick _delay)
692428SN/A            : completionEvent(ce), totBytes(tb), numBytes(0), delay(_delay)
702428SN/A        {}
712428SN/A    };
722428SN/A
735251Sksewell@umich.edu    MemObject *device;
745251Sksewell@umich.edu    std::list<PacketPtr> transmitList;
755251Sksewell@umich.edu
762428SN/A    /** The system that device/port are in. This is used to select which mode
772428SN/A     * we are currently operating in. */
782428SN/A    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
97    /** Minimum time that device should back off for after failed sendTiming */
98    Tick minBackoffDelay;
99
100    /** Maximum time that device should back off for after failed sendTiming */
101    Tick maxBackoffDelay;
102
103    /** If the port is currently waiting for a retry before it can send whatever
104     * it is that it's sending. */
105    bool inRetry;
106
107    virtual bool recvTimingResp(PacketPtr pkt);
108
109    virtual void recvRetry() ;
110
111    void queueDma(PacketPtr pkt, bool front = false);
112    void sendDma();
113
114    /** event to give us a kick every time we backoff time is reached. */
115    EventWrapper<DmaPort, &DmaPort::sendDma> backoffEvent;
116
117  public:
118    DmaPort(MemObject *dev, System *s, Tick min_backoff, Tick max_backoff);
119
120    void dmaAction(Packet::Command cmd, Addr addr, int size, Event *event,
121                   uint8_t *data, Tick delay, Request::Flags flag = 0);
122
123    bool dmaPending() { return pendingCount > 0; }
124
125    unsigned cacheBlockSize() const { return peerBlockSize(); }
126    unsigned int drain(Event *de);
127};
128
129class DmaDevice : public PioDevice
130{
131   protected:
132    DmaPort dmaPort;
133
134  public:
135    typedef DmaDeviceParams Params;
136    DmaDevice(const Params *p);
137    virtual ~DmaDevice();
138
139    const Params *
140    params() const
141    {
142        return dynamic_cast<const Params *>(_params);
143    }
144
145    void dmaWrite(Addr addr, int size, Event *event, uint8_t *data,
146                  Tick delay = 0)
147    {
148        dmaPort.dmaAction(MemCmd::WriteReq, addr, size, event, data, delay);
149    }
150
151    void dmaRead(Addr addr, int size, Event *event, uint8_t *data,
152                 Tick delay = 0)
153    {
154        dmaPort.dmaAction(MemCmd::ReadReq, addr, size, event, data, delay);
155    }
156
157    bool dmaPending() { return dmaPort.dmaPending(); }
158
159    virtual void init();
160
161    virtual unsigned int drain(Event *de);
162
163    unsigned cacheBlockSize() const { return dmaPort.cacheBlockSize(); }
164
165    virtual MasterPort &getMasterPort(const std::string &if_name,
166                                      int idx = -1);
167
168    friend class DmaPort;
169};
170
171#endif // __DEV_DMA_DEVICE_HH__
172