#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Copyright (C) 2017-2020 The Project X-Ray Authors. # # Use of this source code is governed by a ISC-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/ISC # # SPDX-License-Identifier: ISC import os, random random.seed(0) from prjxray import util from prjxray import verilog # INCREMENT is the amount of additional CLBN to be instantiated in the design. # This makes the fuzzer compilation more robust against failures. INCREMENT = os.getenv('CLBN', 0) CLBN = 50 + int(INCREMENT) print('//Requested CLBs: %s' % str(CLBN)) def gen_slicems(): for _tile_name, site_name, _site_type in util.get_roi().gen_sites( ['SLICEM']): yield site_name DIN_N = CLBN * 8 DOUT_N = CLBN * 8 verilog.top_harness(DIN_N, DOUT_N) f = open('params.csv', 'w') f.write('module,loc,c31,b31,a31\n') slices = gen_slicems() print( 'module roi(input clk, input [%d:0] din, output [%d:0] dout);' % (DIN_N - 1, DOUT_N - 1)) multis = 0 for clbi in range(CLBN): loc = next(slices) module = 'my_NDI1MUX_NI_NMC31' c31 = random.randint(0, 1) b31 = random.randint(0, 1) a31 = random.randint(0, 1) print(' %s' % module) print( ' #(.LOC("%s"), .C31(%d), .B31(%d), .A31(%d))' % (loc, c31, b31, a31)) print( ' clb_%d (.clk(clk), .din(din[ %d +: 8]), .dout(dout[ %d +: 8]));' % (clbi, 8 * clbi, 8 * clbi)) f.write('%s,%s,%d,%d,%d\n' % (module, loc, c31, b31, a31)) f.close() print( '''endmodule // --------------------------------------------------------------------- ''') print( ''' module my_NDI1MUX_NI_NMC31 (input clk, input [7:0] din, output [7:0] dout); parameter LOC = "SLICE_X6Y100"; parameter C31 = 0; parameter B31 = 0; parameter A31 = 0; wire [3:0] q31; wire [3:0] lutd; assign lutd[3] = din[7]; assign lutd[2] = C31 ? q31[3] : din[7]; assign lutd[1] = B31 ? q31[2] : din[7]; assign lutd[0] = A31 ? q31[1] : din[7]; (* LOC=LOC, BEL="D6LUT" *) SRLC32E #( .INIT(32'h00000000), .IS_CLK_INVERTED(1'b0) ) lutd ( .Q(dout[0]), .Q31(q31[3]), .A(din[4:0]), .CE(din[5]), .CLK(din[6]), .D(lutd[3])); (* LOC=LOC, BEL="C6LUT" *) SRLC32E #( .INIT(32'h00000000), .IS_CLK_INVERTED(1'b0) ) lutc ( .Q(dout[1]), .Q31(q31[2]), .A(din[4:0]), .CE(din[5]), .CLK(din[6]), .D(lutd[2])); (* LOC=LOC, BEL="B6LUT" *) SRLC32E #( .INIT(32'h00000000), .IS_CLK_INVERTED(1'b0) ) lutb ( .Q(dout[2]), .Q31(q31[1]), .A(din[4:0]), .CE(din[5]), .CLK(din[6]), .D(lutd[1])); (* LOC=LOC, BEL="A6LUT" *) SRLC32E #( .INIT(32'h00000000), .IS_CLK_INVERTED(1'b0) ) luta ( .Q(dout[3]), .Q31(q31[0]), .A(din[4:0]), .CE(din[5]), .CLK(din[6]), .D(lutd[0])); endmodule ''')