source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/src/Select_Priority_Fixed_allocation.cpp @ 57

Last change on this file since 57 was 57, checked in by rosiere, 17 years ago
  • VHDL - RegisterFile_Multi_Banked (only partial_crossbar)
  • SystemC - modif Component, interface and co -> ajout du type Tusage_T pour instancier un coposant mais ne demander que le VHDL ou le systemC.
  • Séminaire interne
File size: 2.1 KB
Line 
1#ifdef SYSTEMC
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Select_Priority_Fixed.h"
10
11namespace morpheo{
12namespace behavioural {
13namespace generic {
14namespace select {
15namespace select_priority_fixed {
16
17  void Select_Priority_Fixed::allocation (void)
18  {
19    log_printf(FUNC,Select_Priority_Fixed,"allocation","Begin");
20
21    _component   = new Component (_usage);
22
23    Entity * entity = _component->set_entity (_name                 
24                                             ,"Select_Priority_Fixed"
25#ifdef POSITION
26                                             ,COMBINATORY           
27#endif
28                                              );
29   
30    _interfaces = entity->set_interfaces();
31
32    // ~~~~~[ Interface : "" ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33
34    Interface_fifo * interface = _interfaces->set_interface(""
35#ifdef POSITION
36                                                            ,IN 
37                                                            ,WEST
38                                                            ,"Generalist interface"
39#endif
40                                                            );
41
42     in_CLOCK        = interface->set_signal_clk              ("clock" ,1, CLOCK_VHDL_NO);
43     in_NRESET       = interface->set_signal_in  <Tcontrol_t> ("nreset",1, RESET_VHDL_NO);
44
45     in_VAL          = new SC_IN (Tcontrol_t)           * [_param->_nb_entity];
46    if (_param->_encoding_one_hot)
47    out_ACK          = new SC_OUT(Tcontrol_t)           * [_param->_nb_entity];
48
49    for (uint32_t i=0; i<_param->_nb_entity; i++)
50      {
51         in_VAL [i]    = interface->set_signal_in  <Tcontrol_t> ("val_"+toString(i),1);
52        if (_param->_encoding_one_hot)
53        out_ACK [i]    = interface->set_signal_out <Tcontrol_t> ("ack_"+toString(i),1);
54      }
55
56    if (_param->_encoding_compact)
57      {
58        out_ENTITY     = interface->set_signal_out <Tentity_t > ("entity"    , _param->_size_entity);
59        out_ENTITY_ACK = interface->set_signal_out <Tcontrol_t> ("entity_ack", 1);
60      }
61
62    // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
63
64#ifdef POSITION
65    _component->generate_file();
66#endif
67
68    log_printf(FUNC,Select_Priority_Fixed,"allocation","End");
69  };
70
71}; // end namespace select_priority_fixed
72}; // end namespace select
73}; // end namespace generic
74}; // end namespace behavioural
75}; // end namespace morpheo             
76#endif
Note: See TracBrowser for help on using the repository browser.