source: branches/v4/platforms/tsarv4_multi_mmu_ioc/desc.py @ 665

Last change on this file since 665 was 665, checked in by porquet, 10 years ago

create a new v4 multi cpu platform

for now, it's just a copy of a mono cpu platform

File size: 983 bytes
Line 
1
2# -*- python -*-
3
4todo = Platform('caba', 'top.cpp',
5        uses = [
6            Uses('common:mapping_table'),
7            Uses('caba:vci_cc_vcache_wrapper_v4', iss_t = 'common:mips32el'),
8            Uses('caba:vci_cc_vcache_wrapper_v4', iss_t = 'common:gdb_iss',
9                gdb_iss_t = 'common:mips32el'),
10            Uses('caba:vci_simple_ram'),
11            Uses('caba:vci_logger'),
12            Uses('caba:vci_multi_tty'),
13            Uses('caba:vci_icu'),
14            Uses('caba:vci_timer'),
15            Uses('caba:vci_block_device_tsar_v4'),
16            Uses('caba:vci_framebuffer'),
17            Uses('caba:vci_vgmn'),
18            Uses('caba:vci_mem_cache_v4'),
19            Uses('common:elf_file_loader'),
20            ],
21        cell_size = 4,
22        plen_size = 8,
23        addr_size = 32,
24        rerror_size = 2,
25        clen_size = 1,
26        rflag_size = 1,
27        srcid_size = 14,
28        pktid_size = 4,
29        trdid_size = 4,
30        wrplen_size = 1
31        )
32
Note: See TracBrowser for help on using the repository browser.