Ignore:
Timestamp:
Jan 20, 2011, 5:37:52 PM (13 years ago)
Author:
choichil
Message:

Initiator with only one FSM for responses

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/vci_synthetic_initator/caba/sources/include/vci_synthetic_initiator.h

    r128 r131  
    44 * Copyright    : UPMC / LIP6
    55 * Authors      : Christophe Choichillon
    6  * Version      : 2.0
     6 * Version      : 2.1
    77 *
    88 * SOCLIB_LGPL_HEADER_BEGIN
     
    2626 * SOCLIB_LGPL_HEADER_END
    2727 *
     28 * Versions :
     29 *           - 1.0 Sending only one request at a time
     30 *           - 2.0 Sending multiple transactions and broadcast responses
     31 *                 identified with pktid (deprecated)
     32 *           - 2.1 Broadcast responses identified with the value 0 of trdid
     33 *
    2834 * Maintainers: christophe.choichillon@lip6.fr
    2935 */
     
    3238#define SOCLIB_CABA_SYNTHETIC_INITIATOR_H
    3339
     40#include <cassert>
    3441#include <systemc>
    3542#include <inttypes.h>
     
    6269        VCI_SINGLE_SEND,
    6370        VCI_BC_SEND,
     71        VCI_SINGLE_REGISTER
    6472      };
    6573
     
    140148
    141149      // Broadcast FSM
    142       sc_signal<bool>           r_bc_fsm;       // FSM state
    143       sc_signal<uint64_t>       r_bc_date;      // broadcast transaction requested date
     150      //sc_signal<bool>           r_bc_fsm;     // FSM state
     151      //sc_signal<uint64_t>             r_bc_date;      // broadcast transaction requested date
    144152      sc_signal<uint32_t>       r_bc_nrsp;      // Expected number of responses for a broadcast command
    145153       
Note: See TracChangeset for help on using the changeset viewer.