mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	Fix cells_map for SRL
This commit is contained in:
		
							parent
							
								
									edca2f1163
								
							
						
					
					
						commit
						79b4a275ce
					
				
					 1 changed files with 17 additions and 19 deletions
				
			
		| 
						 | 
				
			
			@ -125,8 +125,7 @@ module \$__SHREG_ (input C, input D, input E, output Q);
 | 
			
		|||
      MUXF7 fpga_mux_1 (.O(T6), .I0(T4), .I1(1'b0 /* unused */), .S(A[5]));
 | 
			
		||||
      MUXF8 fpga_mux_2 (.O(Q), .I0(T5), .I1(T6), .S(A[6]));
 | 
			
		||||
    end else
 | 
			
		||||
    if (DEPTH <= 128) begin
 | 
			
		||||
      if (DEPTH > 97) begin
 | 
			
		||||
    if (DEPTH > 97 && DEPTH <= 128) begin
 | 
			
		||||
      localparam [6:0] A = DEPTH-1;
 | 
			
		||||
      wire T0, T1, T2, T3, T4, T5, T6, T7, T8;
 | 
			
		||||
      SRLC32E #(.INIT(INIT[32-1:0]), .IS_CLK_INVERTED(~CLKPOL[0])) fpga_srl_0 (.A(A[4:0]), .CE(CE), .CLK(C), .D(D), .Q(T0), .Q31(T1));
 | 
			
		||||
| 
						 | 
				
			
			@ -137,19 +136,18 @@ module \$__SHREG_ (input C, input D, input E, output Q);
 | 
			
		|||
      MUXF7 fpga_mux_1 (.O(T8), .I0(T4), .I1(T6), .S(A[5]));
 | 
			
		||||
      MUXF8 fpga_mux_2 (.O(Q), .I0(T7), .I1(T8), .S(A[6]));
 | 
			
		||||
    end
 | 
			
		||||
      // Handle case where depth is just 1 over a convenient value,
 | 
			
		||||
    else if (DEPTH <= 129) begin
 | 
			
		||||
      // Handle cases where depth is just 1 over a convenient value,
 | 
			
		||||
      // in which case use the flop
 | 
			
		||||
      else begin
 | 
			
		||||
      wire T0;
 | 
			
		||||
      \$__SHREG_ #(.DEPTH(DEPTH-1), .INIT(INIT[DEPTH-2:0]), .CLKPOL(CLKPOL), .ENPOL(ENPOL)) fpga_srl_0 (.C(C), .D(D), .E(E), .Q(T0));
 | 
			
		||||
      \$__SHREG_ #(.DEPTH(1), .INIT(INIT[DEPTH-1]), .CLKPOL(CLKPOL), .ENPOL(ENPOL)) fpga_srl_1 (.C(C), .D(T0), .E(E), .Q(Q));
 | 
			
		||||
      end
 | 
			
		||||
    end else
 | 
			
		||||
    begin
 | 
			
		||||
      // UG474 (v1.8, p34) states that:
 | 
			
		||||
      //   "There are no direct connections between slices to form longer shift
 | 
			
		||||
      //    registers, nor is the MC31 output at LUT B/C/D available."
 | 
			
		||||
      wire T0, T1;
 | 
			
		||||
      wire T0;
 | 
			
		||||
      \$__SHREG_ #(.DEPTH(128), .INIT(INIT[128-1:0]), .CLKPOL(CLKPOL), .ENPOL(ENPOL)) fpga_srl_0 (.C(C), .D(D), .E(E), .Q(T0));
 | 
			
		||||
      \$__SHREG_ #(.DEPTH(DEPTH-128), .INIT(INIT[DEPTH-1:128]), .CLKPOL(CLKPOL), .ENPOL(ENPOL)) fpga_srl_1 (.C(C), .D(T0), .E(E), .Q(Q));
 | 
			
		||||
    end
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue