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.

[Moved] ERROR:Cpld:837 (xc9572xl) 72 macrocells

Status
Not open for further replies.

Lokesh Waran

Junior Member level 1
Joined
Sep 18, 2013
Messages
16
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
168
While i am implementing the below verilog codings in CPLD -XC9572XL device the following error has been occurred .can anyone suggest me wat can we do for implement the same kind of various processes module codings (like phase locked loop,timer,automation purpose module) in single CPLD device, i know there is not enough space to fuse below coding due to less macrocell (72 macrocell) can any one suggest me which xilinx device is opt for this process either CPLD or FPGA ? I AM USING THIS FRO INDUSTRIAL AUTOMATION PURPOSE.THANK YOU



ERROR:Cpld:837 - Insufficient number of macrocells. The design needs at least 95
but only 72 left after allocating other resources.
ERROR:Cpld:868 - Cannot fit the design into any of the specified devices with
the selected implementation options.



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
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
module pwm_cpld(clk,sw1,sw2,pulse,dc_out,a);
 
//input ports 
input clk;
input sw1,sw2;
 
//output ports
output pulse;
output dc_out;
output [3:0]a;
//............................................
//internal variables 
reg pulse ;
reg[12:0]cnt1=200;
reg[7:0]cnt=10;
reg[12:0]h;
reg[20:0]f;
 
always @(posedge clk)
   begin
      h<=h+1;
 
           if (h<cnt1)
                  pulse <=1'b1;
                  
                     else if ((h>cnt1) && (h < 2000))
                                  pulse <= 1'b0;
                          
                             else if (h>2000)
                                       h<=0;
                                          
   end 
             
always @ (posedge clk)
   begin 
   
           if (sw1==1'b0)
                begin
                   f<=f+1;
                        
                            if(f>1000000)
                                begin 
                                    cnt<=cnt+1;
                                     f  <=0; 
                                 end 
                                 
                                 if(cnt>=90)
                                     cnt<=90;
                    
    end         
//................................................................
 
if (sw2==1'b0)
    begin
           f<=f+1;
            
                  if (f>1000000) 
                       begin 
                          cnt<=cnt-1;
                            f  <= 0;
                        end
                    if (cnt<= 10)
                    
                          cnt<=10;
      end       
 
               cnt1<=cnt*20;
end
 
 
assign a =4'b0111;
assign dc_out =1'b0;
      
endmodule

 
Last edited by a moderator:

While i am implementing the below verilog codings in CPLD -XC9572XL device the following error has been occurred .can anyone suggest me wat can we do for implement the same kind of various processes module codings (like phase locked loop,timer,automation purpose module) in single CPLD device, i know there is not enough space to fuse below coding due to less macrocell (72 macrocell) can any one suggest me which xilinx device is opt for this process either CPLD or FPGA ? I AM USING THIS FRO INDUSTRIAL AUTOMATION PURPOSE.THANK YOU






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
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
module pwm_cpld(clk,sw1,sw2,pulse,dc_out,a);
 
//input ports 
input clk;
input sw1,sw2;
 
//output ports
output pulse;
output dc_out;
output [3:0]a;
//............................................
//internal variables 
reg pulse ;
reg[12:0]cnt1=200;
reg[7:0]cnt=10;
reg[12:0]h;
reg[20:0]f;
 
always @(posedge clk)
   begin
      h<=h+1;
 
           if (h<cnt1)
                  pulse <=1'b1;
                  
                     else if ((h>cnt1) && (h < 2000))
                                  pulse <= 1'b0;
                          
                             else if (h>2000)
                                       h<=0;
                                          
   end 
             
always @ (posedge clk)
   begin 
   
           if (sw1==1'b0)
                begin
                   f<=f+1;
                        
                            if(f>1000000)
                                begin 
                                    cnt<=cnt+1;
                                     f  <=0; 
                                 end 
                                 
                                 if(cnt>=90)
                                     cnt<=90;
                    
    end         
//................................................................
 
if (sw2==1'b0)
    begin
           f<=f+1;
            
                  if (f>1000000) 
                       begin 
                          cnt<=cnt-1;
                            f  <= 0;
                        end
                    if (cnt<= 10)
                    
                          cnt<=10;
      end       
 
               cnt1<=cnt*20;
end
 
 
assign a =4'b0111;
assign dc_out =1'b0;
      
endmodule




i guess it's the multiplection that takes a lot of logic.
are you sure you need to do it ?
 

aruipksni is correct the multiplication will require a lot of logic.

Besides the multiplication, you may end up with multiple compares to f with the value 1000000 with the following code.
Code:
  if (sw1==1'b0) begin
    f<=f+1;
    if (f>1000000) begin 
      cnt<=cnt+1;
      f  <=0; 
    end 
    if(cnt>=90)
      cnt<=90;
    end         
//................................................................
 
  if (sw2==1'b0) begin
    f<=f+1;
    if (f>1000000) begin 
      cnt<=cnt-1;
      f  <= 0;
    end
    if (cnt<= 10)
      cnt<=10;
    end       
    cnt1<=cnt*20;
I would check the synthesis results to see if the f > 1000000 is performed only once and a mux is used to assign the correct cnt+1 or cnt-1 to cnt.

I suggest combining these two if statements into one with sw1/2 used to mux the correct cnt values. This will also alleviate the issue with cnt probably having an indeterminate result due to the assignment of cnt in two different if statements based on the sw1 & sw2 values. If both sw1 & sw2 are 0 then what is cnt supposed to do?

In the following code do you want pulse to not update if h==2000?
Code:
  h<=h+1;
   if (h<cnt1)
    pulse <=1'b1;
  else if ((h>cnt1) && (h < 2000))
    pulse <= 1'b0;
  else if (h>2000)
    h<=0;
I also have problems with this style of coding as it implies that you want h to always increment, but suddenly in a priority encoded (with assignments to the unrelated output pulse) way you later have the comparison of h>2000 reset h to 0.
I think it is much clearer to have assignments to 1 output in an if statement unless all the outputs use the exact same set of if decisions.

Regards
 
Last edited:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top