summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/main.cpp
blob: 11366c74a655c8fdc505175201ddf1c2635e89ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*****************************************************************************

  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
  more contributor license agreements.  See the NOTICE file distributed
  with this work for additional information regarding copyright ownership.
  Accellera licenses this file to you under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with the
  License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  implied.  See the License for the specific language governing
  permissions and limitations under the License.

 *****************************************************************************/

/*****************************************************************************

  main.cpp -- 

  Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15

 *****************************************************************************/

/*****************************************************************************

  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
  changes you are making here.

      Name, Affiliation, Date:
  Description of Modification:

 *****************************************************************************/

//***************************************************************************
// FILE: main.cc
// 
// AUTHOR: Luc Semeria    September, 21, 1998
//
// ABSTRACT: main (instanciates dw8051 cycle-accurate model and 
//           and peripheral on memory bus
//
// MODIFICATION HISTORY:
//         Luc Semeria: 9/21/98 created
//
//***************************************************************************
// 
// DESCRIPTION
//
//   This program tests the communication between the cycle-accurate model
//   and the peripheral on the memory bus
//
//   The peripheral copies the input after a given number of clocks
//
//   Reference: Synopsys DesignWare DW8051 MacroCell Databook
//
//***************************************************************************
#include "cycle_model.h"
#include "peripheral.h"
// #define DEBUG
char *hex_file_name;


void usage() {
  fprintf(stdout,"\nusage: hw_sim.x [-a] filename.hex\n"); 
  exit(-1);
}

void parse_arg(int argc, char *argv[]) {
  extern bool ALL_CYCLES;
  int i = 1;

  ALL_CYCLES = 0;

#if 0
  // parse -a
  if(argc<=i) 
    usage();
    
  if(!strcmp(argv[i],"-a")) {
    ALL_CYCLES = 1;
    i++;
  }	
 
  // parse file name
  if(argc<=i) 
    usage();
  
  hex_file_name=(char *)malloc(strlen(argv[i])*sizeof(char));  
  strcpy(hex_file_name,argv[i]);
  i++;

  // no more param
  if(i<argc)
    usage();
#else
  hex_file_name = (char*)malloc(50*sizeof(char));
  strcpy(hex_file_name,"cycle_dw8051_demo/test.hex");
#endif
  return;
}

//-------------------------------------------------------------------------
// int sc_main(int argc, char **argv)
//
//-------------------------------------------------------------------------
int sc_main(int argc, char *argv[])
{
  // clock -------------------------------------------------------------------
  sc_clock             clock  ("CLOCK", 40, SC_NS, 0.5); // assume 25MHz

    // signals for read/write to External RAM/ROM
  signal_bool_vector16    mem_addr("mem_addr");          // address bus
  signal_bool_vector8     mem_data_out("mem_data_out");  // data out bus
  signal_bool_vector8     mem_data_in("mem_data_in");    // data in bus
  sc_signal<bool>         mem_wr_n("mem_wr_n");          // write strobe
  sc_signal<bool>         mem_rd_n("mem_rd_n");          // read enable sampled
  sc_signal<bool>         mem_pswr_n("mem_pswr_n");      // write enable (ROM)
  sc_signal<bool>         mem_psrd_n("mem_psrd_n");      // read enable (ROM)
  sc_signal<bool>         mem_ale("mem_ale");            // ext latch enable
  sc_signal<bool>         mem_ea_n("mem_ea_n");          // ext prog mem enable
  
  // sc_signal<bool>      port_pin_reg_n(); // select read from ext reg or pin
  sc_signal<bool>         p0_mem_reg_n("p0_mem_reg_n");  // select port reg
  sc_signal<bool>         p0_addr_data_n("p0_addr_data_n");// select data
  sc_signal<bool>         p2_mem_reg_n("p2_mem_reg_n");  // cf p0_mem_reg_n

  parse_arg(argc, argv);
    
  cycle_model CYCLE_MODEL("dw8051",
			  clock,
			  hex_file_name,        // name of the hex file

			  mem_addr,
			  mem_data_out,
			  mem_data_in,
			  mem_wr_n,
			  mem_rd_n,
			  mem_pswr_n,
			  mem_psrd_n,
			  mem_ale,
			  mem_ea_n,
			  
			  // port_pin_reg_n,
			  p0_mem_reg_n,
			  p0_addr_data_n,
			  p2_mem_reg_n);

  peripheral PERIPHERAL("peripheral",
		       clock,
		       mem_addr,
		       mem_data_out,
		       mem_data_in,
		       mem_wr_n,
                       mem_rd_n,
                       mem_pswr_n,
                       mem_psrd_n,
                       mem_ale,
                       mem_ea_n,
                       
                       p0_mem_reg_n,
                       p0_addr_data_n,
                       p2_mem_reg_n);
  


  sc_start();
  return 0;
}