source: branches/fault_tolerance/platform/tsar_generic_iob/top.desc @ 658

Last change on this file since 658 was 658, checked in by cfuguet, 10 years ago

TSAR FAULT TOLERANCE BRANCH

  • Introducing replicated ROMs in cluster to contain the distributed boot procedure.
  • Erasing ROM in the IO network
File size: 2.2 KB
Line 
1
2# -*- python -*-
3
4# VCI parameters
5vci_cell_size_int   = 4
6vci_cell_size_ext   = 8
7
8vci_plen_size       = 8
9vci_addr_size       = 40
10vci_rerror_size     = 1
11vci_clen_size       = 1
12vci_rflag_size      = 1
13vci_srcid_size      = 14
14vci_pktid_size      = 4
15vci_trdid_size      = 4
16vci_wrplen_size     = 1
17
18# internal DSPIN network parameters
19int_dspin_cmd_flit_size = 39
20int_dspin_rsp_flit_size = 32
21
22# external DSPIN network parameters
23ram_dspin_cmd_flit_size = 64
24ram_dspin_rsp_flit_size = 64
25
26todo = Platform('caba', 'top.cpp',
27
28        uses = [
29            # cluster
30            Uses('caba:tsar_iob_cluster', 
31                  vci_data_width_int  = vci_cell_size_int,
32                  vci_data_width_ext  = vci_cell_size_ext, 
33                  dspin_int_cmd_width = int_dspin_cmd_flit_size,
34                  dspin_int_rsp_width = int_dspin_rsp_flit_size,
35                  dspin_ram_cmd_width = ram_dspin_cmd_flit_size,
36                  dspin_ram_rsp_width = ram_dspin_rsp_flit_size),
37                 
38            # IOX Network
39            Uses('caba:vci_iox_network', 
40                  cell_size = vci_cell_size_ext),
41
42            # Frame Buffer
43            Uses('caba:vci_framebuffer', 
44                  cell_size = vci_cell_size_ext),
45
46            # Block Device
47            Uses('caba:vci_block_device_tsar', 
48                  cell_size = vci_cell_size_ext),
49
50            # NIC
51            Uses('caba:vci_multi_nic', 
52                  cell_size = vci_cell_size_ext),
53
54            # Chained DMA
55            Uses('caba:vci_chbuf_dma', 
56                  cell_size = vci_cell_size_ext),
57
58            # TTY
59            Uses('caba:vci_multi_tty', 
60                  cell_size = vci_cell_size_ext),
61
62                Uses('common:elf_file_loader'),
63            Uses('common:plain_file_loader'),
64           ],
65
66    # default VCI parameters (global variables)
67    cell_size   = vci_cell_size_int, 
68        plen_size   = vci_plen_size,
69        addr_size   = vci_addr_size,
70        rerror_size = vci_rerror_size,
71        clen_size   = vci_clen_size,
72        rflag_size  = vci_rflag_size,
73        srcid_size  = vci_srcid_size,
74        pktid_size  = vci_pktid_size,
75        trdid_size  = vci_trdid_size,
76        wrplen_size = vci_wrplen_size,
77
78)
Note: See TracBrowser for help on using the repository browser.