source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/SelfTest/src/test.cpp @ 67

Last change on this file since 67 was 67, checked in by rosiere, 17 years ago

Ajout d'un nouveau composant : fifo generic (un port lecture et un port ecriture).

File size: 4.0 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 * Test
7 */
8
9#include "Behavioural/@DIRECTORY/SelfTest/include/test.h"
10#include "Common/include/Test.h"
11
12#define NB_ITERATION  1
13#define CYCLE_MAX     (128*NB_ITERATION)
14
15#define LABEL(str)                                                                       \
16{                                                                                        \
17  cout << "{"+toString(static_cast<uint32_t>(sc_simulation_time()))+"} " << str << endl; \
18} while(0)
19
20static uint32_t cycle = 0;
21
22#define SC_START(cycle_offset)                                          \
23do                                                                      \
24{                                                                       \
25/*cout << "SC_START (begin)" << endl;*/                                 \
26                                                                        \
27  uint32_t cycle_current = static_cast<uint32_t>(sc_simulation_time()); \
28  if (cycle_current != cycle)                                           \
29    {                                                                   \
30      cycle = cycle_current;                                            \
31      cout << "##########[ cycle "<< cycle << " ]" << endl;             \
32    }                                                                   \
33                                                                        \
34  if (cycle_current > CYCLE_MAX)                                        \
35    {                                                                   \
36      TEST_KO("Maximal cycles Reached");                                \
37    }                                                                   \
38  sc_start(cycle_offset);                                               \
39/*cout << "SC_START (end  )" << endl;*/                                 \
40} while(0)
41
42void test (string name,
43           morpheo::behavioural::@NAMESPACE_USE::Parameters * _param)
44{
45  cout << "<" << name << "> : Simulation SystemC" << endl;
46
47#ifdef STATISTICS
48  morpheo::behavioural::Parameters_Statistics * _parameters_statistics = new morpheo::behavioural::Parameters_Statistics (5,50);
49#endif
50
51  @COMPONENT * _@COMPONENT = new @COMPONENT (name.c_str(),
52#ifdef STATISTICS
53                                             _parameters_statistics,
54#endif
55                                             _param);
56 
57#ifdef SYSTEMC
58  /*********************************************************************
59   * Déclarations des signaux
60   *********************************************************************/
61  string rename;
62
63  sc_clock              *  in_CLOCK  = new sc_clock ("clock", 1.0, 0.5);         
64  sc_signal<Tcontrol_t> *  in_NRESET = new sc_signal<Tcontrol_t> ("NRESET");
65 
66  /********************************************************
67   * Instanciation
68   ********************************************************/
69 
70  cout << "<" << name << "> Instanciation of _@COMPONENT" << endl;
71 
72  (*(_@COMPONENT->in_CLOCK))        (*(in_CLOCK));
73  (*(_@COMPONENT->in_NRESET))       (*(in_NRESET));
74
75
76  cout << "<" << name << "> Start Simulation ............" << endl;
77  Time * _time = new Time();
78
79  /********************************************************
80   * Simulation - Begin
81   ********************************************************/
82
83  // Initialisation
84
85  const uint32_t seed = 0;
86//const uint32_t seed = static_cast<uint32_t>(time(NULL));
87
88  srand(seed);
89
90  SC_START(0);
91  LABEL("Initialisation");
92
93  LABEL("Reset");
94  in_NRESET->write(0);
95  SC_START(5);
96  in_NRESET->write(1); 
97
98  LABEL("Loop of Test");
99
100  for (uint32_t iteration=0; iteration<NB_ITERATION; iteration ++)
101    {
102      LABEL("Iteration "+toString(iteration));
103
104      SC_START(1);
105    }
106
107  /********************************************************
108   * Simulation - End
109   ********************************************************/
110
111  TEST_OK ("End of Simulation");
112  delete _time;
113  cout << "<" << name << "> ............ Stop Simulation" << endl;
114
115  delete in_CLOCK;
116  delete in_NRESET;
117#endif
118
119  delete _@COMPONENT;
120#ifdef STATISTICS
121  delete _parameters_statistics;
122#endif
123}
Note: See TracBrowser for help on using the repository browser.