Ignore:
Timestamp:
Oct 21, 2014, 5:16:36 PM (10 years ago)
Author:
cfuguet
Message:

reconf: introducing assert to detect early watchdog timeout.

  • Introducing an assert in the vci_cc_vcache_wrapper component. An early watchdog timeout arises when the timeout threshold is less than the max latency of a read miss transaction.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/reconfiguration/modules/vci_cc_vcache_wrapper/caba/source/include/vci_cc_vcache_wrapper.h

    r846 r853  
    6565
    6666    typedef typename vci_param::fast_addr_t  paddr_t;
     67    typedef typename vci_param::fast_trdid_t trdid_t;
    6768
    6869    enum icache_fsm_state_e
     
    441442    sc_signal<bool>         r_dcache_vci_sc_req;        // atomic write request SC
    442443    sc_signal<uint32_t>     r_dcache_vci_sc_data;       // SC data (command)
     444    sc_signal<trdid_t>      r_dcache_vci_miss_trdid;    // miss dcache trdid (for debug)
    443445
    444446    // register used for XTN inval
     
    457459    sc_signal<uint32_t>     r_dcache_miss_wdt_max;      // wdt triggering value
    458460    sc_signal<uint32_t>     r_dcache_miss_wdt;          // wdt counter
     461    sc_signal<trdid_t>      r_dcache_wdt_timeout;       // timeout counter (for debug)
    459462
    460463    // handling coherence requests
Note: See TracChangeset for help on using the changeset viewer.