DMASequencer.cc (11346:64e862d3758f) DMASequencer.cc (11443:df24b9af42c7)
1/*
2 * Copyright (c) 2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

40{
41}
42
43void
44DMASequencer::init()
45{
46 RubyPort::init();
47 m_is_busy = false;
1/*
2 * Copyright (c) 2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

40{
41}
42
43void
44DMASequencer::init()
45{
46 RubyPort::init();
47 m_is_busy = false;
48 m_data_block_mask = ~ (~0 << RubySystem::getBlockSizeBits());
48 m_data_block_mask = mask(RubySystem::getBlockSizeBits());
49
50 for (const auto &s_port : slave_ports)
51 s_port->sendRangeChange();
52}
53
54RequestStatus
55DMASequencer::makeRequest(PacketPtr pkt)
56{

--- 125 unchanged lines hidden ---
49
50 for (const auto &s_port : slave_ports)
51 s_port->sendRangeChange();
52}
53
54RequestStatus
55DMASequencer::makeRequest(PacketPtr pkt)
56{

--- 125 unchanged lines hidden ---