source: trunk/modules/vci_mem_cache/caba/source/include/vci_mem_cache.h @ 481

Last change on this file since 481 was 481, checked in by devigne, 11 years ago

Fixing deadlock with MULTI_ACK FSM and TGT_RSP FSM, and CLEANUP_FSM and TGT_FSM
TGT_RSP FSM is now a client of UPT and IVT.

File size: 41.3 KB
Line 
1/* -*- c++ -*-
2 * File         : vci_mem_cache.h
3 * Date         : 26/10/2008
4 * Copyright    : UPMC / LIP6
5 * Authors      : Alain Greiner / Eric Guthmuller
6 *
7 * SOCLIB_LGPL_HEADER_BEGIN
8 *
9 * This file is part of SoCLib, GNU LGPLv2.1.
10 *
11 * SoCLib is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU Lesser General Public License as published
13 * by the Free Software Foundation; version 2.1 of the License.
14 *
15 * SoCLib is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with SoCLib; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 * 02110-1301 USA
24 *
25 * SOCLIB_LGPL_HEADER_END
26 *
27 * Maintainers: alain eric.guthmuller@polytechnique.edu
28 *              cesar.fuguet-tortolero@lip6.fr
29 *              alexandre.joannou@lip6.fr
30 */
31
32#ifndef SOCLIB_CABA_MEM_CACHE_H
33#define SOCLIB_CABA_MEM_CACHE_H
34
35#include <inttypes.h>
36#include <systemc>
37#include <list>
38#include <cassert>
39#include "arithmetics.h"
40#include "alloc_elems.h"
41#include "caba_base_module.h"
42#include "vci_target.h"
43#include "vci_initiator.h"
44#include "generic_fifo.h"
45#include "mapping_table.h"
46#include "int_tab.h"
47#include "generic_llsc_global_table.h"
48#include "mem_cache_directory.h"
49#include "xram_transaction.h"
50#include "update_tab.h"
51#include "dspin_interface.h"
52#include "dspin_dhccp_param.h"
53
54#define TRT_ENTRIES      4      // Number of entries in TRT
55#define UPT_ENTRIES      4      // Number of entries in UPT
56#define IVT_ENTRIES      4      // Number of entries in IVT
57#define HEAP_ENTRIES     1024   // Number of entries in HEAP
58
59namespace soclib {  namespace caba {
60
61  using namespace sc_core;
62
63  template<typename vci_param_int, 
64           typename vci_param_ext,
65           size_t   dspin_in_width,
66           size_t   dspin_out_width>
67    class VciMemCache
68    : public soclib::caba::BaseModule
69    {
70      typedef typename vci_param_int::fast_addr_t  addr_t;
71      typedef typename sc_dt::sc_uint<64>          wide_data_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;
76
77      /* States of the TGT_CMD fsm */
78      enum tgt_cmd_fsm_state_e
79      {
80        TGT_CMD_IDLE,
81        TGT_CMD_ERROR,
82        TGT_CMD_READ,
83        TGT_CMD_WRITE,
84        TGT_CMD_CAS,
85        TGT_CMD_CONFIG
86      };
87
88      /* States of the TGT_RSP fsm */
89      enum tgt_rsp_fsm_state_e
90      {
91        TGT_RSP_CONFIG_IDLE,
92        TGT_RSP_TGT_CMD_IDLE,
93        TGT_RSP_READ_IDLE,
94        TGT_RSP_WRITE_IDLE,
95        TGT_RSP_CAS_IDLE,
96        TGT_RSP_XRAM_IDLE,
97        TGT_RSP_MULTI_ACK_IDLE,
98        TGT_RSP_CLEANUP_IDLE,
99        TGT_RSP_CONFIG,
100        TGT_RSP_TGT_CMD,
101        TGT_RSP_READ,
102        TGT_RSP_WRITE,
103        TGT_RSP_CAS,
104        TGT_RSP_XRAM,
105        TGT_RSP_MULTI_ACK,
106        TGT_RSP_CLEANUP,
107        TGT_RSP_UPT_LOCK,
108        TGT_RSP_IVT_LOCK
109      };
110
111      /* States of the DSPIN_TGT fsm */
112      enum cc_receive_fsm_state_e
113      {
114        CC_RECEIVE_IDLE,
115        CC_RECEIVE_CLEANUP,
116        CC_RECEIVE_CLEANUP_EOP,
117        CC_RECEIVE_MULTI_ACK
118      };
119
120      /* States of the CC_SEND fsm */
121      enum cc_send_fsm_state_e
122      {
123        CC_SEND_CONFIG_IDLE,
124        CC_SEND_XRAM_RSP_IDLE,
125        CC_SEND_WRITE_IDLE,
126        CC_SEND_CAS_IDLE,
127        CC_SEND_CONFIG_INVAL_HEADER,
128        CC_SEND_CONFIG_INVAL_NLINE,
129        CC_SEND_CONFIG_BRDCAST_HEADER,
130        CC_SEND_CONFIG_BRDCAST_NLINE,
131        CC_SEND_XRAM_RSP_BRDCAST_HEADER,
132        CC_SEND_XRAM_RSP_BRDCAST_NLINE,
133        CC_SEND_XRAM_RSP_INVAL_HEADER,
134        CC_SEND_XRAM_RSP_INVAL_NLINE,
135        CC_SEND_WRITE_BRDCAST_HEADER,
136        CC_SEND_WRITE_BRDCAST_NLINE,
137        CC_SEND_WRITE_UPDT_HEADER,
138        CC_SEND_WRITE_UPDT_NLINE,
139        CC_SEND_WRITE_UPDT_DATA,
140        CC_SEND_CAS_BRDCAST_HEADER,
141        CC_SEND_CAS_BRDCAST_NLINE,
142        CC_SEND_CAS_UPDT_HEADER,
143        CC_SEND_CAS_UPDT_NLINE,
144        CC_SEND_CAS_UPDT_DATA,
145        CC_SEND_CAS_UPDT_DATA_HIGH
146      };
147
148      /* States of the MULTI_ACK fsm */
149      enum multi_ack_fsm_state_e
150      {
151        MULTI_ACK_IDLE,
152        MULTI_ACK_UPT_LOCK,
153        MULTI_ACK_UPT_CLEAR,
154        MULTI_ACK_WRITE_RSP,
155        MULTI_ACK_CONFIG_ACK
156      };
157
158      /* States of the CONFIG fsm */
159      enum config_fsm_state_e
160      {
161        CONFIG_IDLE,
162        CONFIG_LOOP,
163        CONFIG_RSP,
164        CONFIG_DIR_REQ,
165        CONFIG_DIR_ACCESS,
166        CONFIG_DIR_IVT_LOCK,
167        CONFIG_BC_SEND,
168        CONFIG_BC_WAIT,
169        CONFIG_INV_SEND,
170        CONFIG_HEAP_REQ,
171        CONFIG_HEAP_SCAN,
172        CONFIG_HEAP_LAST,
173        CONFIG_INV_WAIT
174      };
175
176      /* States of the READ fsm */
177      enum read_fsm_state_e
178      {
179        READ_IDLE,
180        READ_DIR_REQ,
181        READ_DIR_LOCK,
182        READ_DIR_HIT,
183        READ_HEAP_REQ,
184        READ_HEAP_LOCK,
185        READ_HEAP_WRITE,
186        READ_HEAP_ERASE,
187        READ_HEAP_LAST,
188        READ_RSP,
189        READ_TRT_LOCK,
190        READ_TRT_SET,
191        READ_TRT_REQ
192      };
193
194      /* States of the WRITE fsm */
195      enum write_fsm_state_e
196      {
197        WRITE_IDLE,
198        WRITE_NEXT,
199        WRITE_DIR_REQ,
200        WRITE_DIR_LOCK,
201        WRITE_DIR_READ,
202        WRITE_DIR_HIT,
203        WRITE_UPT_LOCK,
204        WRITE_UPT_HEAP_LOCK,
205        WRITE_UPT_REQ,
206        WRITE_UPT_NEXT,
207        WRITE_UPT_DEC,
208        WRITE_RSP,
209        WRITE_MISS_TRT_LOCK,
210        WRITE_MISS_TRT_DATA,
211        WRITE_MISS_TRT_SET,
212        WRITE_MISS_XRAM_REQ,
213        WRITE_BC_TRT_LOCK,
214        WRITE_BC_IVT_LOCK,
215        WRITE_BC_DIR_INVAL,
216        WRITE_BC_CC_SEND,
217        WRITE_BC_XRAM_REQ,
218        WRITE_WAIT
219      };
220
221      /* States of the IXR_RSP fsm */
222      enum ixr_rsp_fsm_state_e
223      {
224        IXR_RSP_IDLE,
225        IXR_RSP_ACK,
226        IXR_RSP_TRT_ERASE,
227        IXR_RSP_TRT_READ
228      };
229
230      /* States of the XRAM_RSP fsm */
231      enum xram_rsp_fsm_state_e
232      {
233        XRAM_RSP_IDLE,
234        XRAM_RSP_TRT_COPY,
235        XRAM_RSP_TRT_DIRTY,
236        XRAM_RSP_DIR_LOCK,
237        XRAM_RSP_DIR_UPDT,
238        XRAM_RSP_DIR_RSP,
239        XRAM_RSP_INVAL_LOCK,
240        XRAM_RSP_INVAL_WAIT,
241        XRAM_RSP_INVAL,
242        XRAM_RSP_WRITE_DIRTY,
243        XRAM_RSP_HEAP_REQ,
244        XRAM_RSP_HEAP_ERASE,
245        XRAM_RSP_HEAP_LAST,
246        XRAM_RSP_ERROR_ERASE,
247        XRAM_RSP_ERROR_RSP
248      };
249
250      /* States of the IXR_CMD fsm */
251      enum ixr_cmd_fsm_state_e
252      {
253        IXR_CMD_READ_IDLE,
254        IXR_CMD_WRITE_IDLE,
255        IXR_CMD_CAS_IDLE,
256        IXR_CMD_XRAM_IDLE,
257        IXR_CMD_READ,
258        IXR_CMD_WRITE,
259        IXR_CMD_CAS,
260        IXR_CMD_XRAM
261      };
262
263      /* States of the CAS fsm */
264      enum cas_fsm_state_e
265      {
266        CAS_IDLE,
267        CAS_DIR_REQ,
268        CAS_DIR_LOCK,
269        CAS_DIR_HIT_READ,
270        CAS_DIR_HIT_COMPARE,
271        CAS_DIR_HIT_WRITE,
272        CAS_UPT_LOCK,
273        CAS_UPT_HEAP_LOCK,
274        CAS_UPT_REQ,
275        CAS_UPT_NEXT,
276        CAS_BC_TRT_LOCK,
277        CAS_BC_IVT_LOCK,
278        CAS_BC_DIR_INVAL,
279        CAS_BC_CC_SEND,
280        CAS_BC_XRAM_REQ,
281        CAS_RSP_FAIL,
282        CAS_RSP_SUCCESS,
283        CAS_MISS_TRT_LOCK,
284        CAS_MISS_TRT_SET,
285        CAS_MISS_XRAM_REQ,
286        CAS_WAIT
287      };
288
289      /* States of the CLEANUP fsm */
290      enum cleanup_fsm_state_e
291      {
292        CLEANUP_IDLE,
293        CLEANUP_GET_NLINE,
294        CLEANUP_DIR_REQ,
295        CLEANUP_DIR_LOCK,
296        CLEANUP_DIR_WRITE,
297        CLEANUP_HEAP_REQ,
298        CLEANUP_HEAP_LOCK,
299        CLEANUP_HEAP_SEARCH,
300        CLEANUP_HEAP_CLEAN,
301        CLEANUP_HEAP_FREE,
302        CLEANUP_IVT_LOCK,
303        CLEANUP_IVT_DECREMENT,
304        CLEANUP_IVT_CLEAR,
305        CLEANUP_WRITE_RSP,
306        CLEANUP_CONFIG_ACK,
307        CLEANUP_SEND_CLACK
308      };
309
310      /* States of the ALLOC_DIR fsm */
311      enum alloc_dir_fsm_state_e
312      {
313        ALLOC_DIR_RESET,
314        ALLOC_DIR_CONFIG,
315        ALLOC_DIR_READ,
316        ALLOC_DIR_WRITE,
317        ALLOC_DIR_CAS,
318        ALLOC_DIR_CLEANUP,
319        ALLOC_DIR_XRAM_RSP
320      };
321
322      /* States of the ALLOC_TRT fsm */
323      enum alloc_trt_fsm_state_e
324      {
325        ALLOC_TRT_READ,
326        ALLOC_TRT_WRITE,
327        ALLOC_TRT_CAS,
328        ALLOC_TRT_XRAM_RSP,
329        ALLOC_TRT_IXR_RSP
330      };
331
332      /* States of the ALLOC_UPT fsm */
333      enum alloc_upt_fsm_state_e
334      {
335        ALLOC_UPT_WRITE,
336        ALLOC_UPT_CAS,
337        ALLOC_UPT_MULTI_ACK,
338        ALLOC_UPT_TGT_RSP
339      };
340
341      /* States of the ALLOC_IVT fsm */
342      enum alloc_ivt_fsm_state_e
343      {
344        ALLOC_IVT_WRITE,
345        ALLOC_IVT_XRAM_RSP,
346        ALLOC_IVT_CLEANUP,
347        ALLOC_IVT_CAS,
348        ALLOC_IVT_CONFIG,
349        ALLOC_IVT_TGT_RSP
350      };
351
352      /* States of the ALLOC_HEAP fsm */
353      enum alloc_heap_fsm_state_e
354      {
355        ALLOC_HEAP_RESET,
356        ALLOC_HEAP_READ,
357        ALLOC_HEAP_WRITE,
358        ALLOC_HEAP_CAS,
359        ALLOC_HEAP_CLEANUP,
360        ALLOC_HEAP_XRAM_RSP,
361        ALLOC_HEAP_CONFIG
362      };
363
364      /* transaction type, pktid field */
365      enum transaction_type_e
366      {
367          // b3 unused
368          // b2 READ / NOT READ
369          // Si READ
370          //  b1 DATA / INS
371          //  b0 UNC / MISS
372          // Si NOT READ
373          //  b1 accÚs table llsc type SW / other
374          //  b2 WRITE/CAS/LL/SC
375          TYPE_READ_DATA_UNC          = 0x0,
376          TYPE_READ_DATA_MISS         = 0x1,
377          TYPE_READ_INS_UNC           = 0x2,
378          TYPE_READ_INS_MISS          = 0x3,
379          TYPE_WRITE                  = 0x4,
380          TYPE_CAS                    = 0x5,
381          TYPE_LL                     = 0x6,
382          TYPE_SC                     = 0x7
383      };
384
385      /* SC return values */
386      enum sc_status_type_e
387      {
388          SC_SUCCESS  =   0x00000000,
389          SC_FAIL     =   0x00000001
390      };
391
392      /* Configuration commands */
393      enum cmd_config_type_e
394      {
395          CMD_CONFIG_INVAL = 0,
396          CMD_CONFIG_SYNC  = 1
397      };
398
399      // debug variables (for each FSM)
400      bool                 m_debug;
401      bool                 m_debug_previous_valid;
402      size_t               m_debug_previous_count;
403      bool                 m_debug_previous_dirty;
404      sc_signal<data_t>*   m_debug_previous_data;
405      sc_signal<data_t>*   m_debug_data;
406
407      bool         m_monitor_ok;
408      addr_t       m_monitor_base;
409      addr_t       m_monitor_length;
410
411      // instrumentation counters
412      uint32_t     m_cpt_cycles;        // Counter of cycles
413
414      uint32_t     m_cpt_read;          // Number of READ transactions
415      uint32_t     m_cpt_read_remote;   // number of remote READ transactions
416      uint32_t     m_cpt_read_flits;    // number of flits for READs
417      uint32_t     m_cpt_read_cost;     // Number of (flits * distance) for READs
418
419      uint32_t     m_cpt_read_miss;     // Number of MISS READ
420
421      uint32_t     m_cpt_write;         // Number of WRITE transactions
422      uint32_t     m_cpt_write_remote;  // number of remote WRITE transactions
423      uint32_t     m_cpt_write_flits;   // number of flits for WRITEs
424      uint32_t     m_cpt_write_cost;    // Number of (flits * distance) for WRITEs
425
426      uint32_t     m_cpt_write_miss;    // Number of MISS WRITE
427      uint32_t     m_cpt_write_cells;   // Cumulated length for WRITE transactions
428      uint32_t     m_cpt_write_dirty;   // Cumulated length for WRITE transactions
429      uint32_t     m_cpt_update;        // Number of UPDATE transactions
430      uint32_t     m_cpt_trt_rb;        // Read blocked by a hit in trt
431      uint32_t     m_cpt_trt_full;      // Transaction blocked due to a full trt
432      uint32_t     m_cpt_update_mult;   // Number of targets for UPDATE
433      uint32_t     m_cpt_inval;         // Number of INVAL  transactions
434      uint32_t     m_cpt_inval_mult;    // Number of targets for INVAL
435      uint32_t     m_cpt_inval_brdcast; // Number of BROADCAST INVAL
436      uint32_t     m_cpt_cleanup;       // Number of CLEANUP transactions
437      uint32_t     m_cpt_ll;            // Number of LL transactions
438      uint32_t     m_cpt_sc;            // Number of SC transactions
439      uint32_t     m_cpt_cas;           // Number of CAS transactions
440
441      uint32_t     m_cpt_cleanup_cost;  // Number of (flits * distance) for CLEANUPs
442
443      uint32_t     m_cpt_update_flits;  // Number of flits for UPDATEs
444      uint32_t     m_cpt_update_cost;   // Number of (flits * distance) for UPDATEs
445
446      uint32_t     m_cpt_inval_cost;    // Number of (flits * distance) for INVALs
447
448      uint32_t     m_cpt_get;
449
450      uint32_t     m_cpt_put;
451
452      size_t       m_prev_count;
453
454      protected:
455
456      SC_HAS_PROCESS(VciMemCache);
457
458      public:
459      sc_in<bool>                                 p_clk;
460      sc_in<bool>                                 p_resetn;
461      soclib::caba::VciTarget<vci_param_int>      p_vci_tgt;
462      soclib::caba::VciInitiator<vci_param_ext>   p_vci_ixr;
463      soclib::caba::DspinInput<dspin_in_width>    p_dspin_p2m;
464      soclib::caba::DspinOutput<dspin_out_width>  p_dspin_m2p;
465      soclib::caba::DspinOutput<dspin_out_width>  p_dspin_clack;
466
467      VciMemCache(
468          sc_module_name name,                                // Instance Name
469          const soclib::common::MappingTable &mtp,            // Mapping table INT network
470          const soclib::common::MappingTable &mtx,            // Mapping table RAM network
471          const soclib::common::IntTab       &srcid_x,        // global index RAM network
472          const soclib::common::IntTab       &tgtid_d,        // global index INT network
473          const size_t                       cc_global_id,    // global index CC network
474          const size_t                       nways,           // Number of ways per set
475          const size_t                       nsets,           // Number of sets
476          const size_t                       nwords,          // Number of words per line
477          const size_t                       max_copies,      // max number of copies
478          const size_t                       heap_size=HEAP_ENTRIES,
479          const size_t                       trt_lines=TRT_ENTRIES, 
480          const size_t                       upt_lines=UPT_ENTRIES,     
481          const size_t                       ivt_lines=IVT_ENTRIES,     
482          const size_t                       debug_start_cycle=0,
483          const bool                         debug_ok=false );
484
485      ~VciMemCache();
486
487      void print_stats();
488      void print_trace();
489      void cache_monitor(addr_t addr);
490      void start_monitor(addr_t addr, addr_t length);
491      void stop_monitor();
492
493      private:
494
495      void transition();
496      void genMoore();
497      void check_monitor(addr_t addr, data_t data, bool read);
498      bool hit_cleanup_req(size_t *index);
499      bool hit_multi_ack_req(size_t *index);
500
501      // Component attributes
502      std::list<soclib::common::Segment> m_seglist;          // segments allocated
503      size_t                             m_nseg;             // number of segments
504      soclib::common::Segment            **m_seg;            // array of segments pointers
505      size_t                             m_seg_config;       // config segment index
506      const size_t                       m_srcid_x;          // global index on RAM network
507      const size_t                       m_initiators;       // Number of initiators
508      const size_t                       m_heap_size;        // Size of the heap
509      const size_t                       m_ways;             // Number of ways in a set
510      const size_t                       m_sets;             // Number of cache sets
511      const size_t                       m_words;            // Number of words in a line
512      const size_t                       m_cc_global_id;     // global_index on cc network
513      size_t                             m_debug_start_cycle;
514      bool                               m_debug_ok;
515      uint32_t                           m_trt_lines;
516      TransactionTab                     m_trt;              // xram transaction table
517      uint32_t                           m_upt_lines;
518      uint32_t                           m_ivt_lines;
519      UpdateTab                          m_upt;              // pending update
520      UpdateTab                          m_ivt;              // pending invalidate
521      CacheDirectory                     m_cache_directory;  // data cache directory
522      CacheData                          m_cache_data;       // data array[set][way][word]
523      HeapDirectory                      m_heap;             // heap for copies
524      size_t                             m_max_copies;       // max number of copies in heap
525      GenericLLSCGlobalTable
526      < 32  ,    // number of slots
527        4096,    // number of processors in the system
528        8000,    // registration life (# of LL operations)
529        addr_t >                         m_llsc_table;       // ll/sc registration table
530
531      // adress masks
532      const soclib::common::AddressMaskingTable<addr_t>   m_x;
533      const soclib::common::AddressMaskingTable<addr_t>   m_y;
534      const soclib::common::AddressMaskingTable<addr_t>   m_z;
535      const soclib::common::AddressMaskingTable<addr_t>   m_nline;
536
537      // broadcast address
538      uint32_t                           m_broadcast_boundaries;
539
540      //////////////////////////////////////////////////
541      // Registers controlled by the TGT_CMD fsm
542      //////////////////////////////////////////////////
543
544      sc_signal<int>         r_tgt_cmd_fsm;
545
546      // Fifo between TGT_CMD fsm and READ fsm
547      GenericFifo<addr_t>    m_cmd_read_addr_fifo;
548      GenericFifo<size_t>    m_cmd_read_length_fifo;
549      GenericFifo<size_t>    m_cmd_read_srcid_fifo;
550      GenericFifo<size_t>    m_cmd_read_trdid_fifo;
551      GenericFifo<size_t>    m_cmd_read_pktid_fifo;
552
553      // Fifo between TGT_CMD fsm and WRITE fsm
554      GenericFifo<addr_t>    m_cmd_write_addr_fifo;
555      GenericFifo<bool>      m_cmd_write_eop_fifo;
556      GenericFifo<size_t>    m_cmd_write_srcid_fifo;
557      GenericFifo<size_t>    m_cmd_write_trdid_fifo;
558      GenericFifo<size_t>    m_cmd_write_pktid_fifo;
559      GenericFifo<data_t>    m_cmd_write_data_fifo;
560      GenericFifo<be_t>      m_cmd_write_be_fifo;
561
562      // Fifo between TGT_CMD fsm and CAS fsm
563      GenericFifo<addr_t>    m_cmd_cas_addr_fifo;
564      GenericFifo<bool>      m_cmd_cas_eop_fifo;
565      GenericFifo<size_t>    m_cmd_cas_srcid_fifo;
566      GenericFifo<size_t>    m_cmd_cas_trdid_fifo;
567      GenericFifo<size_t>    m_cmd_cas_pktid_fifo;
568      GenericFifo<data_t>    m_cmd_cas_wdata_fifo;
569
570      // Fifo between CC_RECEIVE fsm and CLEANUP fsm
571      GenericFifo<uint64_t>  m_cc_receive_to_cleanup_fifo;
572     
573      // Fifo between CC_RECEIVE fsm and MULTI_ACK fsm
574      GenericFifo<uint64_t>  m_cc_receive_to_multi_ack_fifo;
575
576      // Buffer between TGT_CMD fsm and TGT_RSP fsm
577      // (segmentation violation response request)
578      sc_signal<bool>     r_tgt_cmd_to_tgt_rsp_req;
579
580      sc_signal<uint32_t> r_tgt_cmd_to_tgt_rsp_rdata;
581      sc_signal<size_t>   r_tgt_cmd_to_tgt_rsp_error;
582      sc_signal<size_t>   r_tgt_cmd_to_tgt_rsp_srcid;
583      sc_signal<size_t>   r_tgt_cmd_to_tgt_rsp_trdid;
584      sc_signal<size_t>   r_tgt_cmd_to_tgt_rsp_pktid;
585
586      sc_signal<addr_t>   r_tgt_cmd_config_addr;
587      sc_signal<size_t>   r_tgt_cmd_config_cmd;
588
589      ///////////////////////////////////////////////////////
590      // Registers controlled by the CONFIG fsm
591      ///////////////////////////////////////////////////////
592
593      sc_signal<int>      r_config_fsm;            // FSM state
594      sc_signal<bool>     r_config_lock;           // lock protecting exclusive access
595      sc_signal<int>      r_config_cmd;            // config request status
596      sc_signal<addr_t>   r_config_address;        // target buffer physical address
597      sc_signal<size_t>   r_config_srcid;          // config request srcid
598      sc_signal<size_t>   r_config_trdid;          // config request trdid
599      sc_signal<size_t>   r_config_pktid;          // config request pktid
600      sc_signal<size_t>   r_config_nlines;         // number of lines covering the buffer
601      sc_signal<size_t>   r_config_dir_way;        // DIR: selected way
602      sc_signal<size_t>   r_config_dir_count;      // DIR: number of copies
603      sc_signal<bool>     r_config_dir_is_cnt;     // DIR: counter mode (broadcast required)
604      sc_signal<size_t>   r_config_dir_copy_srcid; // DIR: first copy SRCID
605      sc_signal<bool>     r_config_dir_copy_inst;  // DIR: first copy L1 type
606      sc_signal<size_t>   r_config_dir_next_ptr;   // DIR: index of next copy in HEAP
607      sc_signal<size_t>   r_config_heap_next;      // current pointer to scan HEAP
608
609      sc_signal<size_t>   r_config_ivt_index;      // IVT index
610
611      // Buffer between CONFIG fsm and TGT_RSP fsm (send a done response to L1 cache)
612      sc_signal<bool>     r_config_to_tgt_rsp_req;    // valid request
613      sc_signal<bool>     r_config_to_tgt_rsp_error;  // error response
614      sc_signal<size_t>   r_config_to_tgt_rsp_srcid;  // Transaction srcid
615      sc_signal<size_t>   r_config_to_tgt_rsp_trdid;  // Transaction trdid
616      sc_signal<size_t>   r_config_to_tgt_rsp_pktid;  // Transaction pktid
617
618      // Buffer between CONFIG fsm and CC_SEND fsm (multi-inval / broadcast-inval)
619      sc_signal<bool>     r_config_to_cc_send_multi_req;    // multi-inval request
620      sc_signal<bool>     r_config_to_cc_send_brdcast_req;  // broadcast-inval request
621      sc_signal<addr_t>   r_config_to_cc_send_nline;        // line index
622      sc_signal<size_t>   r_config_to_cc_send_trdid;        // UPT index
623      GenericFifo<bool>   m_config_to_cc_send_inst_fifo;    // fifo for the L1 type
624      GenericFifo<size_t> m_config_to_cc_send_srcid_fifo;   // fifo for owners srcid
625
626#if L1_MULTI_CACHE
627      GenericFifo<size_t> m_config_to_cc_send_cache_id_fifo; // fifo for cache_id
628#endif
629
630      ///////////////////////////////////////////////////////
631      // Registers controlled by the READ fsm
632      ///////////////////////////////////////////////////////
633
634      sc_signal<int>      r_read_fsm;          // FSM state
635      sc_signal<size_t>   r_read_copy;         // Srcid of the first copy
636      sc_signal<size_t>   r_read_copy_cache;   // Srcid of the first copy
637      sc_signal<bool>     r_read_copy_inst;    // Type of the first copy
638      sc_signal<tag_t>    r_read_tag;          // cache line tag (in directory)
639      sc_signal<bool>     r_read_is_cnt;       // is_cnt bit (in directory)
640      sc_signal<bool>     r_read_lock;         // lock bit (in directory)
641      sc_signal<bool>     r_read_dirty;        // dirty bit (in directory)
642      sc_signal<size_t>   r_read_count;        // number of copies
643      sc_signal<size_t>   r_read_ptr;          // pointer to the heap
644      sc_signal<data_t> * r_read_data;         // data (one cache line)
645      sc_signal<size_t>   r_read_way;          // associative way (in cache)
646      sc_signal<size_t>   r_read_trt_index;    // Transaction Table index
647      sc_signal<size_t>   r_read_next_ptr;     // Next entry to point to
648      sc_signal<bool>     r_read_last_free;    // Last free entry
649      sc_signal<addr_t>   r_read_ll_key;       // LL key from the llsc_global_table
650
651      // Buffer between READ fsm and IXR_CMD fsm (ask a missing cache line to XRAM)
652      sc_signal<bool>     r_read_to_ixr_cmd_req;    // valid request
653      sc_signal<addr_t>   r_read_to_ixr_cmd_nline;  // cache line index
654      sc_signal<size_t>   r_read_to_ixr_cmd_trdid;  // index in Transaction Table
655
656      // Buffer between READ fsm and TGT_RSP fsm (send a hit read response to L1 cache)
657      sc_signal<bool>     r_read_to_tgt_rsp_req;    // valid request
658      sc_signal<size_t>   r_read_to_tgt_rsp_srcid;  // Transaction srcid
659      sc_signal<size_t>   r_read_to_tgt_rsp_trdid;  // Transaction trdid
660      sc_signal<size_t>   r_read_to_tgt_rsp_pktid;  // Transaction pktid
661      sc_signal<data_t> * r_read_to_tgt_rsp_data;   // data (one cache line)
662      sc_signal<size_t>   r_read_to_tgt_rsp_word;   // first word of the response
663      sc_signal<size_t>   r_read_to_tgt_rsp_length; // length of the response
664      sc_signal<addr_t>   r_read_to_tgt_rsp_ll_key; // LL key from the llsc_global_table
665
666      ///////////////////////////////////////////////////////////////
667      // Registers controlled by the WRITE fsm
668      ///////////////////////////////////////////////////////////////
669
670      sc_signal<int>      r_write_fsm;        // FSM state
671      sc_signal<addr_t>   r_write_address;    // first word address
672      sc_signal<size_t>   r_write_word_index; // first word index in line
673      sc_signal<size_t>   r_write_word_count; // number of words in line
674      sc_signal<size_t>   r_write_srcid;      // transaction srcid
675      sc_signal<size_t>   r_write_trdid;      // transaction trdid
676      sc_signal<size_t>   r_write_pktid;      // transaction pktid
677      sc_signal<data_t> * r_write_data;       // data (one cache line)
678      sc_signal<be_t>   * r_write_be;         // one byte enable per word
679      sc_signal<bool>     r_write_byte;       // (BE != 0X0) and (BE != 0xF)
680      sc_signal<bool>     r_write_is_cnt;     // is_cnt bit (in directory)
681      sc_signal<bool>     r_write_lock;       // lock bit (in directory)
682      sc_signal<tag_t>    r_write_tag;        // cache line tag (in directory)
683      sc_signal<size_t>   r_write_copy;       // first owner of the line
684      sc_signal<size_t>   r_write_copy_cache; // first owner of the line
685      sc_signal<bool>     r_write_copy_inst;  // is this owner a ICache ?
686      sc_signal<size_t>   r_write_count;      // number of copies
687      sc_signal<size_t>   r_write_ptr;        // pointer to the heap
688      sc_signal<size_t>   r_write_next_ptr;   // next pointer to the heap
689      sc_signal<bool>     r_write_to_dec;     // need to decrement update counter
690      sc_signal<size_t>   r_write_way;        // way of the line
691      sc_signal<size_t>   r_write_trt_index;  // index in Transaction Table
692      sc_signal<size_t>   r_write_upt_index;  // index in Update Table
693      sc_signal<bool>     r_write_sc_fail;    // sc command failed
694      sc_signal<bool>     r_write_pending_sc; // sc command pending
695
696      // Buffer between WRITE fsm and TGT_RSP fsm (acknowledge a write command from L1)
697      sc_signal<bool>     r_write_to_tgt_rsp_req;     // valid request
698      sc_signal<size_t>   r_write_to_tgt_rsp_srcid;   // transaction srcid
699      sc_signal<size_t>   r_write_to_tgt_rsp_trdid;   // transaction trdid
700      sc_signal<size_t>   r_write_to_tgt_rsp_pktid;   // transaction pktid
701      sc_signal<bool>     r_write_to_tgt_rsp_sc_fail; // sc command failed
702
703      // Buffer between WRITE fsm and IXR_CMD fsm (ask a missing cache line to XRAM)
704      sc_signal<bool>     r_write_to_ixr_cmd_req;   // valid request
705      sc_signal<bool>     r_write_to_ixr_cmd_write; // write request
706      sc_signal<addr_t>   r_write_to_ixr_cmd_nline; // cache line index
707      sc_signal<data_t> * r_write_to_ixr_cmd_data;  // cache line data
708      sc_signal<size_t>   r_write_to_ixr_cmd_trdid; // index in Transaction Table
709
710      // Buffer between WRITE fsm and CC_SEND fsm (Update/Invalidate L1 caches)
711      sc_signal<bool>     r_write_to_cc_send_multi_req;     // valid multicast request
712      sc_signal<bool>     r_write_to_cc_send_brdcast_req;   // valid brdcast request
713      sc_signal<addr_t>   r_write_to_cc_send_nline;         // cache line index
714      sc_signal<size_t>   r_write_to_cc_send_trdid;         // index in Update Table
715      sc_signal<data_t> * r_write_to_cc_send_data;          // data (one cache line)
716      sc_signal<be_t>   * r_write_to_cc_send_be;            // word enable
717      sc_signal<size_t>   r_write_to_cc_send_count;         // number of words in line
718      sc_signal<size_t>   r_write_to_cc_send_index;         // index of first word in line
719      GenericFifo<bool>   m_write_to_cc_send_inst_fifo;     // fifo for the L1 type
720      GenericFifo<size_t> m_write_to_cc_send_srcid_fifo;    // fifo for srcids
721
722#if L1_MULTI_CACHE
723      GenericFifo<size_t> m_write_to_cc_send_cache_id_fifo; // fifo for srcids
724#endif
725
726      // Buffer between WRITE fsm and MULTI_ACK fsm (Decrement UPT entry)
727      sc_signal<bool>     r_write_to_multi_ack_req;       // valid request
728      sc_signal<size_t>   r_write_to_multi_ack_upt_index; // index in update table
729
730      /////////////////////////////////////////////////////////
731      // Registers controlled by MULTI_ACK fsm
732      //////////////////////////////////////////////////////////
733
734      sc_signal<int>      r_multi_ack_fsm;       // FSM state
735      sc_signal<size_t>   r_multi_ack_upt_index; // index in the Update Table
736      sc_signal<size_t>   r_multi_ack_srcid;     // pending write srcid
737      sc_signal<size_t>   r_multi_ack_trdid;     // pending write trdid
738      sc_signal<size_t>   r_multi_ack_pktid;     // pending write pktid
739      sc_signal<addr_t>   r_multi_ack_nline;     // pending write nline
740
741      // signaling completion of multi-inval to CONFIG fsm
742      sc_signal<bool>     r_multi_ack_to_config_ack; 
743
744      // Buffer between MULTI_ACK fsm and TGT_RSP fsm (complete write/update transaction)
745      sc_signal<bool>     *r_multi_ack_to_tgt_rsp_req;  // valid request
746      sc_signal<size_t>   r_multi_ack_to_tgt_rsp_srcid; // Transaction srcid
747      sc_signal<size_t>   r_multi_ack_to_tgt_rsp_trdid; // Transaction trdid
748      sc_signal<size_t>   r_multi_ack_to_tgt_rsp_pktid; // Transaction pktid
749
750      ///////////////////////////////////////////////////////
751      // Registers controlled by CLEANUP fsm
752      ///////////////////////////////////////////////////////
753
754      sc_signal<int>      r_cleanup_fsm;           // FSM state
755      sc_signal<size_t>   r_cleanup_srcid;         // transaction srcid
756      sc_signal<bool>     r_cleanup_inst;          // Instruction or Data ?
757      sc_signal<size_t>   r_cleanup_way_index;     // L1 Cache Way index
758      sc_signal<addr_t>   r_cleanup_nline;         // cache line index
759
760#if L1_MULTI_CACHE
761      sc_signal<size_t>   r_cleanup_pktid;         // transaction pktid
762#endif
763
764      sc_signal<copy_t>   r_cleanup_copy;          // first copy
765      sc_signal<copy_t>   r_cleanup_copy_cache;    // first copy
766      sc_signal<size_t>   r_cleanup_copy_inst;     // type of the first copy
767      sc_signal<copy_t>   r_cleanup_count;         // number of copies
768      sc_signal<size_t>   r_cleanup_ptr;           // pointer to the heap
769      sc_signal<size_t>   r_cleanup_prev_ptr;      // previous pointer to the heap
770      sc_signal<size_t>   r_cleanup_prev_srcid;    // srcid of previous heap entry
771      sc_signal<size_t>   r_cleanup_prev_cache_id; // srcid of previous heap entry
772      sc_signal<bool>     r_cleanup_prev_inst;     // inst bit of previous heap entry
773      sc_signal<size_t>   r_cleanup_next_ptr;      // next pointer to the heap
774      sc_signal<tag_t>    r_cleanup_tag;           // cache line tag (in directory)
775      sc_signal<bool>     r_cleanup_is_cnt;        // inst bit (in directory)
776      sc_signal<bool>     r_cleanup_lock;          // lock bit (in directory)
777      sc_signal<bool>     r_cleanup_dirty;         // dirty bit (in directory)
778      sc_signal<size_t>   r_cleanup_way;           // associative way (in cache)
779
780      sc_signal<size_t>   r_cleanup_write_srcid;   // srcid of write rsp
781      sc_signal<size_t>   r_cleanup_write_trdid;   // trdid of write rsp
782      sc_signal<size_t>   r_cleanup_write_pktid;   // pktid of write rsp
783
784      sc_signal<bool>     r_cleanup_need_rsp;      // write response required
785      sc_signal<bool>     r_cleanup_need_ack;      // config acknowledge required
786
787      sc_signal<size_t>   r_cleanup_index;         // index of the INVAL line (in the UPT)
788
789      // signaling completion of broadcast-inval to CONFIG fsm
790      sc_signal<bool>     r_cleanup_to_config_ack; 
791       
792      // Buffer between CLEANUP fsm and TGT_RSP fsm (acknowledge a write command from L1)
793      sc_signal<bool>     *r_cleanup_to_tgt_rsp_req;   // valid request
794      sc_signal<size_t>   r_cleanup_to_tgt_rsp_srcid; // transaction srcid
795      sc_signal<size_t>   r_cleanup_to_tgt_rsp_trdid; // transaction trdid
796      sc_signal<size_t>   r_cleanup_to_tgt_rsp_pktid; // transaction pktid
797
798      ///////////////////////////////////////////////////////
799      // Registers controlled by CAS fsm
800      ///////////////////////////////////////////////////////
801
802      sc_signal<int>      r_cas_fsm;        // FSM state
803      sc_signal<data_t>   r_cas_wdata;      // write data word
804      sc_signal<data_t> * r_cas_rdata;      // read data word
805      sc_signal<uint32_t> r_cas_lfsr;       // lfsr for random introducing
806      sc_signal<size_t>   r_cas_cpt;        // size of command
807      sc_signal<copy_t>   r_cas_copy;       // Srcid of the first copy
808      sc_signal<copy_t>   r_cas_copy_cache; // Srcid of the first copy
809      sc_signal<bool>     r_cas_copy_inst;  // Type of the first copy
810      sc_signal<size_t>   r_cas_count;      // number of copies
811      sc_signal<size_t>   r_cas_ptr;        // pointer to the heap
812      sc_signal<size_t>   r_cas_next_ptr;   // next pointer to the heap
813      sc_signal<bool>     r_cas_is_cnt;     // is_cnt bit (in directory)
814      sc_signal<bool>     r_cas_dirty;      // dirty bit (in directory)
815      sc_signal<size_t>   r_cas_way;        // way in directory
816      sc_signal<size_t>   r_cas_set;        // set in directory
817      sc_signal<data_t>   r_cas_tag;        // cache line tag (in directory)
818      sc_signal<size_t>   r_cas_trt_index;  // Transaction Table index
819      sc_signal<size_t>   r_cas_upt_index;  // Update Table index
820      sc_signal<data_t> * r_cas_data;       // cache line data
821
822      // Buffer between CAS fsm and IXR_CMD fsm (XRAM write)
823      sc_signal<bool>     r_cas_to_ixr_cmd_req;   // valid request
824      sc_signal<addr_t>   r_cas_to_ixr_cmd_nline; // cache line index
825      sc_signal<size_t>   r_cas_to_ixr_cmd_trdid; // index in Transaction Table
826      sc_signal<bool>     r_cas_to_ixr_cmd_write; // write request
827      sc_signal<data_t> * r_cas_to_ixr_cmd_data;  // cache line data
828
829
830      // Buffer between CAS fsm and TGT_RSP fsm
831      sc_signal<bool>     r_cas_to_tgt_rsp_req;   // valid request
832      sc_signal<data_t>   r_cas_to_tgt_rsp_data;  // read data word
833      sc_signal<size_t>   r_cas_to_tgt_rsp_srcid; // Transaction srcid
834      sc_signal<size_t>   r_cas_to_tgt_rsp_trdid; // Transaction trdid
835      sc_signal<size_t>   r_cas_to_tgt_rsp_pktid; // Transaction pktid
836
837      // Buffer between CAS fsm and CC_SEND fsm (Update/Invalidate L1 caches)
838      sc_signal<bool>     r_cas_to_cc_send_multi_req;     // valid request
839      sc_signal<bool>     r_cas_to_cc_send_brdcast_req;   // brdcast request
840      sc_signal<addr_t>   r_cas_to_cc_send_nline;         // cache line index
841      sc_signal<size_t>   r_cas_to_cc_send_trdid;         // index in Update Table
842      sc_signal<data_t>   r_cas_to_cc_send_wdata;         // data (one word)
843      sc_signal<bool>     r_cas_to_cc_send_is_long;       // it is a 64 bits CAS
844      sc_signal<data_t>   r_cas_to_cc_send_wdata_high;    // data high (one word)
845      sc_signal<size_t>   r_cas_to_cc_send_index;         // index of the word in line
846      GenericFifo<bool>   m_cas_to_cc_send_inst_fifo;     // fifo for the L1 type
847      GenericFifo<size_t> m_cas_to_cc_send_srcid_fifo;    // fifo for srcids
848
849#if L1_MULTI_CACHE
850      GenericFifo<size_t> m_cas_to_cc_send_cache_id_fifo; // fifo for srcids
851#endif
852
853      ////////////////////////////////////////////////////
854      // Registers controlled by the IXR_RSP fsm
855      ////////////////////////////////////////////////////
856
857      sc_signal<int>      r_ixr_rsp_fsm;       // FSM state
858      sc_signal<size_t>   r_ixr_rsp_trt_index; // TRT entry index
859      sc_signal<size_t>   r_ixr_rsp_cpt;       // word counter
860
861      // Buffer between IXR_RSP fsm and XRAM_RSP fsm  (response from the XRAM)
862      sc_signal<bool>   * r_ixr_rsp_to_xram_rsp_rok; // A xram response is ready
863
864      ////////////////////////////////////////////////////
865      // Registers controlled by the XRAM_RSP fsm
866      ////////////////////////////////////////////////////
867
868      sc_signal<int>      r_xram_rsp_fsm;               // FSM state
869      sc_signal<size_t>   r_xram_rsp_trt_index;         // TRT entry index
870      TransactionTabEntry r_xram_rsp_trt_buf;           // TRT entry local buffer
871      sc_signal<bool>     r_xram_rsp_victim_inval;      // victim line invalidate
872      sc_signal<bool>     r_xram_rsp_victim_is_cnt;     // victim line inst bit
873      sc_signal<bool>     r_xram_rsp_victim_dirty;      // victim line dirty bit
874      sc_signal<size_t>   r_xram_rsp_victim_way;        // victim line way
875      sc_signal<size_t>   r_xram_rsp_victim_set;        // victim line set
876      sc_signal<addr_t>   r_xram_rsp_victim_nline;      // victim line index
877      sc_signal<copy_t>   r_xram_rsp_victim_copy;       // victim line first copy
878      sc_signal<copy_t>   r_xram_rsp_victim_copy_cache; // victim line first copy
879      sc_signal<bool>     r_xram_rsp_victim_copy_inst;  // victim line type of first copy
880      sc_signal<size_t>   r_xram_rsp_victim_count;      // victim line number of copies
881      sc_signal<size_t>   r_xram_rsp_victim_ptr;        // victim line pointer to the heap
882      sc_signal<data_t> * r_xram_rsp_victim_data;       // victim line data
883      sc_signal<size_t>   r_xram_rsp_ivt_index;         // IVT entry index
884      sc_signal<size_t>   r_xram_rsp_next_ptr;          // Next pointer to the heap
885
886      // Buffer between XRAM_RSP fsm and TGT_RSP fsm  (response to L1 cache)
887      sc_signal<bool>     r_xram_rsp_to_tgt_rsp_req;    // Valid request
888      sc_signal<size_t>   r_xram_rsp_to_tgt_rsp_srcid;  // Transaction srcid
889      sc_signal<size_t>   r_xram_rsp_to_tgt_rsp_trdid;  // Transaction trdid
890      sc_signal<size_t>   r_xram_rsp_to_tgt_rsp_pktid;  // Transaction pktid
891      sc_signal<data_t> * r_xram_rsp_to_tgt_rsp_data;   // data (one cache line)
892      sc_signal<size_t>   r_xram_rsp_to_tgt_rsp_word;   // first word index
893      sc_signal<size_t>   r_xram_rsp_to_tgt_rsp_length; // length of the response
894      sc_signal<bool>     r_xram_rsp_to_tgt_rsp_rerror; // send error to requester
895      sc_signal<addr_t>   r_xram_rsp_to_tgt_rsp_ll_key; // LL key from llsc_global_table
896
897      // Buffer between XRAM_RSP fsm and CC_SEND fsm (Inval L1 Caches)
898      sc_signal<bool>     r_xram_rsp_to_cc_send_multi_req;     // Valid request
899      sc_signal<bool>     r_xram_rsp_to_cc_send_brdcast_req;   // Broadcast request
900      sc_signal<addr_t>   r_xram_rsp_to_cc_send_nline;         // cache line index;
901      sc_signal<size_t>   r_xram_rsp_to_cc_send_trdid;         // index of UPT entry
902      GenericFifo<bool>   m_xram_rsp_to_cc_send_inst_fifo;     // fifo for the L1 type
903      GenericFifo<size_t> m_xram_rsp_to_cc_send_srcid_fifo;    // fifo for srcids
904
905#if L1_MULTI_CACHE
906      GenericFifo<size_t> m_xram_rsp_to_cc_send_cache_id_fifo; // fifo for srcids
907#endif
908
909      // Buffer between XRAM_RSP fsm and IXR_CMD fsm (XRAM write)
910      sc_signal<bool>     r_xram_rsp_to_ixr_cmd_req;   // Valid request
911      sc_signal<addr_t>   r_xram_rsp_to_ixr_cmd_nline; // cache line index
912      sc_signal<data_t> * r_xram_rsp_to_ixr_cmd_data;  // cache line data
913      sc_signal<size_t>   r_xram_rsp_to_ixr_cmd_trdid; // index in transaction table
914
915      ////////////////////////////////////////////////////
916      // Registers controlled by the IXR_CMD fsm
917      ////////////////////////////////////////////////////
918
919      sc_signal<int>      r_ixr_cmd_fsm;
920      sc_signal<size_t>   r_ixr_cmd_cpt;
921
922      ////////////////////////////////////////////////////
923      // Registers controlled by TGT_RSP fsm
924      ////////////////////////////////////////////////////
925
926      sc_signal<int>      r_tgt_rsp_fsm;
927      sc_signal<size_t>   r_tgt_rsp_cpt;
928      sc_signal<size_t>   r_tgt_rsp_prio_multi_ack;
929      sc_signal<size_t>   r_tgt_rsp_prio_cleanup;
930      sc_signal<bool>     r_tgt_rsp_key_sent;
931
932      ////////////////////////////////////////////////////
933      // Registers controlled by CC_SEND fsm
934      ////////////////////////////////////////////////////
935
936      sc_signal<int>      r_cc_send_fsm;
937      sc_signal<size_t>   r_cc_send_cpt;
938      sc_signal<bool>     r_cc_send_inst;
939
940      ////////////////////////////////////////////////////
941      // Registers controlled by CC_RECEIVE fsm
942      ////////////////////////////////////////////////////
943
944      sc_signal<int>      r_cc_receive_fsm;
945
946      ////////////////////////////////////////////////////
947      // Registers controlled by ALLOC_DIR fsm
948      ////////////////////////////////////////////////////
949
950      sc_signal<int>      r_alloc_dir_fsm;
951      sc_signal<unsigned> r_alloc_dir_reset_cpt;
952
953      ////////////////////////////////////////////////////
954      // Registers controlled by ALLOC_TRT fsm
955      ////////////////////////////////////////////////////
956
957      sc_signal<int>      r_alloc_trt_fsm;
958
959      ////////////////////////////////////////////////////
960      // Registers controlled by ALLOC_UPT fsm
961      ////////////////////////////////////////////////////
962
963      sc_signal<int>      r_alloc_upt_fsm;
964
965      ////////////////////////////////////////////////////
966      // Registers controlled by ALLOC_IVT fsm
967      ////////////////////////////////////////////////////
968
969      sc_signal<int>      r_alloc_ivt_fsm;
970
971      ////////////////////////////////////////////////////
972      // Registers controlled by ALLOC_HEAP fsm
973      ////////////////////////////////////////////////////
974
975      sc_signal<int>      r_alloc_heap_fsm;
976      sc_signal<unsigned> r_alloc_heap_reset_cpt;
977    }; // end class VciMemCache
978
979}}
980
981#endif
982
983// Local Variables:
984// tab-width: 2
985// c-basic-offset: 2
986// c-file-offsets:((innamespace . 0)(inline-open . 0))
987// indent-tabs-mode: nil
988// End:
989
990// vim: filetype=cpp:expandtab:shiftwidth=2:tabstop=2:softtabstop=2
991
Note: See TracBrowser for help on using the repository browser.