source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/src/Victim_Pseudo_LRU_allocation.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 15 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1/*
2 * $Id: Victim_Pseudo_LRU_allocation.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Victim_Pseudo_LRU.h"
9#include "Behavioural/include/Allocation.h"
10
11namespace morpheo {
12namespace behavioural {
13namespace generic {
14namespace victim {
15namespace victim_pseudo_lru {
16
17  void Victim_Pseudo_LRU::allocation (void)
18  {
19    _component   = new Component (_usage);
20
21    Entity * entity = _component->set_entity (_name                 
22                                              ,"Select_Priority_Fixed"
23#ifdef POSITION
24                                              ,COMBINATORY           
25#endif
26                                              );
27   
28    _interfaces = entity->set_interfaces();
29
30    // ~~~~~[ Interface : "" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31    {
32      Interface_fifo * interface = _interfaces->set_interface(""
33#ifdef POSITION
34                                                              , IN  ,WEST, "Generalist interface"
35#endif
36                                                              );
37     
38      in_CLOCK        = interface->set_signal_clk              ("clock" ,1);
39      in_NRESET       = interface->set_signal_in  <Tcontrol_t> ("nreset",1);
40    }
41
42    // ~~~~~[ Interface : "access" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
43    {
44      ALLOC1_INTERFACE("access",IN,WEST, "Access", _param->_nb_access);
45
46      ALLOC1_VALACK_IN ( in_ACCESS_VAL    ,VAL);
47      ALLOC1_VALACK_OUT(out_ACCESS_ACK    ,ACK);
48      ALLOC1_SIGNAL_IN ( in_ACCESS_HIT    ,"hit"    ,Tcontrol_t,1);
49      ALLOC1_SIGNAL_IN ( in_ACCESS_ADDRESS,"address",Taddress_t,log2(_param->_size_address));
50      ALLOC1_SIGNAL_IN ( in_ACCESS_ENTITY ,"entity" ,Tentity_t ,log2(_param->_nb_entity   ));
51      ALLOC1_SIGNAL_OUT(out_ACCESS_VICTIM ,"victim" ,Tentity_t ,log2(_param->_nb_entity   ));
52    }
53
54    if (usage_is_set(_usage,USE_SYSTEMC))
55      {
56    // -----[ Register ]---------------------------------------------------
57    reg_TABLE = new entry_t *  [_param->_size_table];
58
59    for (uint32_t i=0; i<_param->_size_table; i++)
60      reg_TABLE [i] = new entry_t (_param->_nb_entity);
61   
62    // -----[ Internal ]---------------------------------------------------
63    internal_ACCESS_ACK    = new Tcontrol_t [_param->_nb_access];
64    internal_ACCESS_VICTIM = new Tentity_t  [_param->_nb_access];
65      }
66
67#ifdef POSITION
68    if (usage_is_set(_usage,USE_POSITION))
69      _component->generate_file();
70#endif
71  };
72
73}; // end namespace victim_pseudo_lru
74}; // end namespace victim
75}; // end namespace generic
76
77}; // end namespace behavioural
78}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.