Ignore:
Timestamp:
Jul 19, 2013, 10:16:17 AM (11 years ago)
Author:
cfuguet
Message:

Merged

/trunk/modules/vci_mem_cache:449 with
/branches/v5/modules/vci_mem_cache:446.

This merge introduces into the branch the last modifications concerning
the VCI memory cache configuration interface

Location:
branches/v5/modules/vci_mem_cache
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/v5/modules/vci_mem_cache

  • branches/v5/modules/vci_mem_cache/caba/source/include/vci_mem_cache.h

    r442 r455  
    6969    {
    7070      typedef typename vci_param_int::fast_addr_t  addr_t;
    71 
    7271      typedef typename sc_dt::sc_uint<64>          wide_data_t;
    73 
    74       typedef uint32_t data_t;
    75       typedef uint32_t tag_t;
    76       typedef uint32_t be_t;
    77       typedef uint32_t copy_t;
     72      typedef uint32_t                             data_t;
     73      typedef uint32_t                             tag_t;
     74      typedef uint32_t                             be_t;
     75      typedef uint32_t                             copy_t;
    7876
    7977      /* States of the TGT_CMD fsm */
     
    396394
    397395      // debug variables (for each FSM)
    398       bool         m_debug;
    399       bool         m_debug_previous_hit;
    400       size_t       m_debug_previous_count;
     396      bool                 m_debug;
     397      bool                 m_debug_previous_valid;
     398      size_t               m_debug_previous_count;
     399      bool                 m_debug_previous_dirty;
     400      sc_signal<data_t>*   m_debug_previous_data;
     401      sc_signal<data_t>*   m_debug_data;
    401402
    402403      bool         m_monitor_ok;
     
    482483      void print_stats();
    483484      void print_trace();
    484       void copies_monitor(addr_t addr);
     485      void cache_monitor(addr_t addr);
    485486      void start_monitor(addr_t addr, addr_t length);
    486487      void stop_monitor();
     
    490491      void transition();
    491492      void genMoore();
    492       void check_monitor( const char *buf, addr_t addr, data_t data, bool read);
     493      void check_monitor(addr_t addr, data_t data, bool read);
    493494
    494495      // Component attributes
Note: See TracChangeset for help on using the changeset viewer.