Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Newbie question for Test-bench.

Status
Not open for further replies.

micktosin

Junior Member level 2
Joined
Oct 13, 2011
Messages
24
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,509
Hello there, I programmed a code to divide my FPGA clock to my required frequency and then invert into two square wave, however I keep getting an error with the testbench stating "the module pulsegentb(file name) is instantiating itself".
And also with the file reports stating "the instantiation depth of pulsegatetb/notgate/notgate....is 51. This might indicate a recursive instantiation, increasing limit to 75".
Below is the code of the square wave generator and the test bench please can someone help me as to why I can't run the testbench?

Test Bench
///////////////////////////////////////////////////////////////////////////////////////////////////

Code Verilog - [expand]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module pulsegentb();
wire igbtclk1, igbtclk2;
reg clock, reset;
 
always begin
      #1 clock =!clock;
end
 
initial begin
clock = 0;
reset = 0;
 
#10
$finish; 
end
 
pulsegentb notgate(clock, igbtclock1, igbtclock2);
 
endmodule



Square wave generator
///////////////////////////////////////////////////////////////////////////////////////////////////

Code Verilog - [expand]
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
module igbt_clock_gen (clock,reset,igbtclock1,igbtclock2);
input clock,reset;
output reg igbtclock1, igbtclock2;
wire temp1;
 
freq_div f1 (clock,reset,temp1);
clock_multiplier c1 (temp1, igbtclock1,igbtclock2);
endmodule
 
module freq_div(clock,rst,clock_out);
input clock,rst;
output reg clock_out;
reg [15:0] counter;
 
always @(posedge clock or negedge rst)
begin
    if(!rst)
    begin
        counter<=16'd0;
        clock_out <= 1'b0;
    end
    else
    if(counter==16'd6667)
    begin
        counter <= 16'd0;
        clock_out <= ~clock_out;
    end
    else
    begin
        counter<=counter+1;
    end
end
endmodule
 
module clock_multiplier (clock, clock1, clock2);
input clock;
output clock1, clock2;
 
assign clock1 = clock;
assign clock2 = ~clock1;
endmodule

 
Last edited by a moderator:

"the instantiation depth of pulsegatetb/notgate/notgate....is 51

Code Verilog - [expand]
1
2
3
module pulsegentb();
...
pulsegentb notgate(clock, igbtclock1, igbtclock2);


You are instantiating the pulsegentb testbench in the testbench. The error even shows that: notgate/notgate

Also use named port mapping as opposed to positional mapping.

Instead of:

Code Verilog - [expand]
1
freq_div f1 (clock,reset,temp1);


use this:

Code Verilog - [expand]
1
2
3
4
5
freq_div f1 (
  .clock   (clock),
  .rst      (reset),
  .clock_out (temp1)
);



Makes the code clearer and improves maintainability. All you have to do is have two signals swapped in a module with 50+ ports and the end result is a design that misbehaves and takes days to find the error.
 
You are instantiating the pulsegentb testbench in the testbench. The error even shows that: notgate/notgate

Also use named port mapping as opposed to positional mapping.

Instead of:

Code Verilog - [expand]
1
freq_div f1 (clock,reset,temp1);


use this:

Code Verilog - [expand]
1
2
3
4
5
freq_div f1 (
  .clock   (clock),
  .rst      (reset),
  .clock_out (temp1)
);



Makes the code clearer and improves maintainability. All you have to do is have two signals swapped in a module with 50+ ports and the end result is a design that misbehaves and takes days to find the error.

Thanks, that was helpful. One more question, how can I introduce a dead time to the on and off times of the 'igbt_clock_gen'? For instance 750ns(on time) and 1us(off time) to my code shown below. Appreciate your help.
Test bench
Code:
module igbt_firing_tb;
 
                // Inputs
                reg clock;
                reg reset;
 
                // Outputs
                wire clock1;
                wire clock2;
                wire clock3;
                wire clock4;
 
                // Instantiate the Unit Under Test (UUT)
                igbt_clock_gen uut (
                                .clock(clock),
                                .reset(reset),
                                .clock1(clock1),
                                .clock2(clock2),
                                .clock3(clock3),
                                .clock4(clock4)
                );
 
 
                initial begin
                                // Initialize Inputs
                                clock = 0;
                                reset = 0;
 
                                // Wait 100 ns for global reset to finish
                                #100;
       
                                // Add stimulus here
                                reset = 1;
 
                end
               
                always
                                #2.5 clock = ~clock;
               
 
Endmodule

Igbt control.
Code:
///////////////////////////////////////////////////////////////////////////////////////////////////
// Company: <Name>
//
// File: clk_div.v
// File history:
//      <Revision number>: <Date>: <Comments>
//      <Revision number>: <Date>: <Comments>
//      <Revision number>: <Date>: <Comments>
//
// Description: 
//
// <Description here>
//
// Targeted device: <Family::ProASIC3> <Die::A3P250> <Package::256 FBGA>
// Author: <Name>
//
/////////////////////////////////////////////////////////////////////////////////////////////////// 


module igbt_clock_gen (clock,reset,clock1,clock2,clock3,clock4);
input clock,reset;
output clock1, clock2, clock3, clock4;
wire temp1;

freq_div f1 (clock,reset,temp1);
clock_multiplier c1 (temp1,clock1,clock2,clock3,clock4);
endmodule

module freq_div(clock, rst, clock_out);
input clock,rst;
output reg clock_out;
reg [15:0] counter;

always @(posedge clock or negedge rst)
begin
	if(!rst)
	begin
		counter<=16'd0;
		clock_out <= 1'b0;
	end
	else
	if(counter==16'd6667)
	begin
		counter <= 16'd0;
		clock_out <= ~clock_out;
	end
	else
	begin
		counter<=counter+1;
	end
end

endmodule

module clock_multiplier (clock, clock1, clock2, clock3, clock4);
input clock;
output clock1, clock2, clock3, clock4;

assign clock1 = clock;
assign clock2 = ~clock1;
assign clock3 = clock1;
assign clock4 = ~clock1;

endmodule

[And it will be helpful if you can reccomend a good book on Verlog/vhdl prodramming.]

Thanks.
 
Last edited:

Thanks, that was helpful. One more question, how can I introduce a dead time to the on and off times of the switching? For instance 750ns(on time) and 1us(off time) to my code shown below. Appreciate your help.

Add dead time to what? I'm not sure what you want to shut off and on. Do you mean in the freq_div module?

[And it will be helpful if you can reccomend a good book on Verlog/vhdl prodramming.]
I have the Douglas Perry "VHDL" book and the Samir Palnitkar "Verilog HDL" books, I also have this book at home https://www.amazon.com/Hdl-Chip-Design-Synthesizing-Simulating/dp/0965193438 I have an old copy and the binding was garbage for the early editions so my copy is in about 100 pieces.
 

Add dead time to what? I'm not sure what you want to shut off and on. Do you mean in the freq_div module?


I have the Douglas Perry "VHDL" book and the Samir Palnitkar "Verilog HDL" books, I also have this book at home https://www.amazon.com/Hdl-Chip-Design-Synthesizing-Simulating/dp/0965193438 I have an old copy and the binding was garbage for the early editions so my copy is in about 100 pieces.
I meant 'igbt_clock_gen', sorry for the confusion. Yeah I will check that book out thanks.
 

igby_clock_gen only has instances of other modules. There isn't any sequential code in that module. So that still doesn't answer what you are trying to enable and disable. Is it that you want to turn the clocks on and off?
 

igby_clock_gen only has instances of other modules. There isn't any sequential code in that module. So that still doesn't answer what you are trying to enable and disable. Is it that you want to turn the clocks on and off?
Hi, I am using it to switch 4 IGBTS, with only two transistors on at a time. I just want to include dead timing to avoid cross conduction. So for instance, when IGBT 1 & 3 is on 2 & 4 will be off respectively. After looking at the code again, I think the dead timing will be applied to the output from clock_multiplier as its the ones that leads to ouput.

Kind Regards.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top