source: trunk/platforms/tsar_generic_xbar/top.desc @ 389

Last change on this file since 389 was 389, checked in by cfuguet, 11 years ago

Modifying the tsar_generic_xbar:

  • Modifying the metadata and the sources of the tsar_xbar_cluster to support two differents VCI parameters (one for the DIRECT network and another for the EXTERNAL network).

The DIRECT network use 32 bits for VCI_DATA and the EXTERNAL network use
64 bits.

File size: 938 bytes
Line 
1
2# -*- python -*-
3
4todo = Platform('caba', 'top.cpp',
5    uses = [
6            Uses('caba:tsar_xbar_cluster', 
7                 iss_t         = 'common:gdb_iss', 
8                 gdb_iss_t     = 'common:mips32el', 
9                 cmd_width     = 40, 
10                 rsp_width     = 33
11                                ),
12            Uses('common:elf_file_loader'),
13            Uses('common:plain_file_loader'),
14    ],
15    cell_size_bis   = 8,
16    plen_size_bis   = 8,
17    addr_size_bis   = 32,
18    rerror_size_bis = 2,
19    clen_size_bis   = 1,
20    rflag_size_bis  = 1,
21    srcid_size_bis  = 14,
22    pktid_size_bis  = 4,
23    trdid_size_bis  = 4,
24    wrplen_size_bis = 1,
25
26    cell_size       = 4,
27    plen_size       = 8, 
28    addr_size       = 32,
29    rerror_size     = 2,
30    clen_size       = 1,
31    rflag_size      = 1,
32    srcid_size      = 14,
33    pktid_size      = 4,
34    trdid_size      = 4,
35    wrplen_size     = 1,
36)
Note: See TracBrowser for help on using the repository browser.