source: trunk/modules/vci_cc_xcache_wrapper/caba/metadata/vci_cc_xcache_wrapper.sd @ 2

Last change on this file since 2 was 2, checked in by nipo, 14 years ago

Import TSAR modules in TSAR's own svn

  • Property svn:eol-style set to native
  • Property svn:keywords set to "Author Date Id Rev URL Revision"
  • Property svn:mime-type set to text/plain
File size: 1.4 KB
Line 
1
2# -*- python -*-
3
4__id__ = "$Id: vci_cc_xcache_wrapper.sd 2 2010-03-26 18:02:36Z nipo $"
5__version__ = "$Revision: 2 $"
6
7Module('caba:vci_cc_xcache_wrapper',
8        classname = 'soclib::caba::VciCcXcacheWrapper',
9        tmpl_parameters = [
10                parameter.Module('vci_param', default = 'caba:vci_param'),
11                parameter.Module('iss_t'),
12                ],
13        header_files = [
14                '../source/include/vci_cc_xcache_wrapper.h',
15                ],
16        implementation_files = [
17                '../source/src/vci_cc_xcache_wrapper.cpp',
18                ],
19        uses = [
20                Uses('caba:base_module'),
21                Uses('common:mapping_table'),
22                Uses('common:iss2'),
23                Uses('caba:write_buffer'),
24                Uses('caba:generic_cache', addr_t = 'uint32_t'),
25                ],
26        ports = [
27                Port('caba:vci_initiator', 'p_vci_ini'),
28                Port('caba:vci_target', 'p_vci_tgt'),
29                Port('caba:bit_in', 'p_irq', parameter.Constant('n_irq')),
30                Port('caba:bit_in', 'p_resetn', auto = 'resetn'),
31                Port('caba:clock_in', 'p_clk', auto = 'clock'),
32                ],
33        instance_parameters = [
34                parameter.Int('proc_id'),
35                parameter.Module('mt', 'common:mapping_table', auto='env:mapping_table'),
36                parameter.IntTab('initiator_index'),
37                parameter.IntTab('target_indext'),
38                parameter.Int('icache_ways'),
39                parameter.Int('icache_sets'),
40                parameter.Int('icache_words'),
41                parameter.Int('dcache_ways'),
42                parameter.Int('dcache_sets'),
43                parameter.Int('dcache_words'),
44                ],
45           extensions = [
46                'dsx:get_ident=initiator_index:p_vci_ini',
47                'dsx:cpu=wrapper:iss_t',
48                'dsx:mapping_type=processor:proc_id',
49                ],
50)
51
52
Note: See TracBrowser for help on using the repository browser.