source: branches/reconfiguration/platforms/tsar_generic_iob/top.desc @ 751

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

reconfiguration: tsar_generic_iob distributed boot

  • Introducing optional distributed boot in the tsar_generic_iob platform.
  • To support this, a distributed boot ROM is instantiated in each cluster.
  • Physical address extension register for instructions and data of L1 caches is initialized with local cluster index when distributed boot is activated.
File size: 2.4 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:reconfiguration: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            # ROM
43            Uses('caba:vci_simple_rom', 
44                  cell_size   = vci_cell_size_ext),
45
46            # Frame Buffer
47            Uses('caba:vci_framebuffer', 
48                  cell_size = vci_cell_size_ext),
49
50            # Block Device
51            Uses('caba:vci_block_device_tsar', 
52                  cell_size = vci_cell_size_ext),
53
54            # NIC
55            Uses('caba:vci_multi_nic', 
56                  cell_size = vci_cell_size_ext),
57
58            # Chained DMA
59            Uses('caba:vci_chbuf_dma', 
60                  cell_size = vci_cell_size_ext),
61
62            # TTY
63            Uses('caba:vci_multi_tty', 
64                  cell_size = vci_cell_size_ext),
65
66            # IOPIC
67            Uses('caba:vci_iopic', 
68                  cell_size = vci_cell_size_ext),
69
70                Uses('common:elf_file_loader'),
71            Uses('common:plain_file_loader'),
72           ],
73
74    # default VCI parameters (global variables)
75    cell_size   = vci_cell_size_int, 
76        plen_size   = vci_plen_size,
77        addr_size   = vci_addr_size,
78        rerror_size = vci_rerror_size,
79        clen_size   = vci_clen_size,
80        rflag_size  = vci_rflag_size,
81        srcid_size  = vci_srcid_size,
82        pktid_size  = vci_pktid_size,
83        trdid_size  = vci_trdid_size,
84        wrplen_size = vci_wrplen_size,
85
86)
Note: See TracBrowser for help on using the repository browser.