2010-03-15 04:58:45 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Mark D. Hill and David A. Wood
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2009-07-07 00:49:47 +02:00
|
|
|
|
2010-03-23 02:43:53 +01:00
|
|
|
#ifndef __MEM_RUBY_SYSTEM_DMASEQUENCER_HH__
|
|
|
|
#define __MEM_RUBY_SYSTEM_DMASEQUENCER_HH__
|
2009-07-07 00:49:47 +02:00
|
|
|
|
|
|
|
#include <ostream>
|
2010-03-23 02:43:53 +01:00
|
|
|
|
2009-07-07 00:49:47 +02:00
|
|
|
#include "mem/ruby/common/DataBlock.hh"
|
|
|
|
#include "mem/ruby/system/RubyPort.hh"
|
2010-01-30 05:29:17 +01:00
|
|
|
#include "params/DMASequencer.hh"
|
|
|
|
|
2010-03-23 02:43:53 +01:00
|
|
|
struct DMARequest
|
|
|
|
{
|
|
|
|
uint64_t start_paddr;
|
|
|
|
int len;
|
|
|
|
bool write;
|
|
|
|
int bytes_completed;
|
|
|
|
int bytes_issued;
|
|
|
|
uint8* data;
|
|
|
|
PacketPtr pkt;
|
2009-07-07 00:49:47 +02:00
|
|
|
};
|
|
|
|
|
2010-03-23 02:43:53 +01:00
|
|
|
class DMASequencer : public RubyPort
|
|
|
|
{
|
|
|
|
public:
|
2010-01-30 05:29:17 +01:00
|
|
|
typedef DMASequencerParams Params;
|
2010-03-23 02:43:53 +01:00
|
|
|
DMASequencer(const Params *);
|
|
|
|
void init();
|
|
|
|
/* external interface */
|
|
|
|
RequestStatus makeRequest(const RubyRequest & request);
|
|
|
|
bool busy() { return m_is_busy;}
|
2009-07-07 00:49:47 +02:00
|
|
|
|
2010-03-23 02:43:53 +01:00
|
|
|
/* SLICC callback */
|
|
|
|
void dataCallback(const DataBlock & dblk);
|
|
|
|
void ackCallback();
|
2009-07-07 00:49:47 +02:00
|
|
|
|
2010-03-23 02:43:53 +01:00
|
|
|
void printConfig(std::ostream & out);
|
2009-07-07 00:49:47 +02:00
|
|
|
|
2010-03-23 02:43:53 +01:00
|
|
|
private:
|
|
|
|
void issueNext();
|
2009-07-07 00:49:47 +02:00
|
|
|
|
2010-03-23 02:43:53 +01:00
|
|
|
private:
|
|
|
|
bool m_is_busy;
|
|
|
|
uint64_t m_data_block_mask;
|
|
|
|
DMARequest active_request;
|
|
|
|
int num_active_requests;
|
2009-07-07 00:49:47 +02:00
|
|
|
};
|
|
|
|
|
2010-03-23 02:43:53 +01:00
|
|
|
#endif // __MEM_RUBY_SYSTEM_DMASEQUENCER_HH__
|