2020-02-15 16:03:00 -06:00
|
|
|
#ifndef VERILOG_API_H
|
|
|
|
#define VERILOG_API_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include "mux_library.h"
|
2020-05-27 15:25:06 -05:00
|
|
|
#include "decoder_library.h"
|
2020-02-15 16:03:00 -06:00
|
|
|
#include "circuit_library.h"
|
2020-09-23 21:27:52 -05:00
|
|
|
#include "config_protocol.h"
|
2020-02-16 17:04:41 -06:00
|
|
|
#include "vpr_context.h"
|
|
|
|
#include "vpr_device_annotation.h"
|
2020-02-15 16:03:00 -06:00
|
|
|
#include "device_rr_gsb.h"
|
2020-04-23 21:42:11 -05:00
|
|
|
#include "netlist_manager.h"
|
2020-02-15 16:03:00 -06:00
|
|
|
#include "module_manager.h"
|
2020-02-27 13:33:09 -06:00
|
|
|
#include "bitstream_manager.h"
|
2020-05-27 16:53:40 -05:00
|
|
|
#include "fabric_bitstream.h"
|
2020-02-27 13:33:09 -06:00
|
|
|
#include "simulation_setting.h"
|
2021-01-19 17:56:30 -06:00
|
|
|
#include "pin_constraints.h"
|
2020-02-27 13:33:09 -06:00
|
|
|
#include "io_location_map.h"
|
2020-11-10 20:07:28 -06:00
|
|
|
#include "fabric_global_port_info.h"
|
2020-02-27 17:37:20 -06:00
|
|
|
#include "vpr_netlist_annotation.h"
|
2020-02-27 13:33:09 -06:00
|
|
|
#include "fabric_verilog_options.h"
|
|
|
|
#include "verilog_testbench_options.h"
|
2020-02-15 16:03:00 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-02-16 14:35:18 -06:00
|
|
|
void fpga_fabric_verilog(ModuleManager& module_manager,
|
2020-04-23 21:42:11 -05:00
|
|
|
NetlistManager& netlist_manager,
|
2020-02-15 21:38:45 -06:00
|
|
|
const CircuitLibrary& circuit_lib,
|
|
|
|
const MuxLibrary& mux_lib,
|
2020-05-27 15:25:06 -05:00
|
|
|
const DecoderLibrary& decoder_lib,
|
2020-02-16 17:04:41 -06:00
|
|
|
const DeviceContext& device_ctx,
|
|
|
|
const VprDeviceAnnotation& device_annotation,
|
2020-02-15 21:38:45 -06:00
|
|
|
const DeviceRRGSB& device_rr_gsb,
|
2020-02-15 22:39:47 -06:00
|
|
|
const FabricVerilogOption& options);
|
2020-02-15 16:03:00 -06:00
|
|
|
|
2021-01-19 17:56:30 -06:00
|
|
|
int fpga_verilog_testbench(const ModuleManager& module_manager,
|
|
|
|
const BitstreamManager& bitstream_manager,
|
|
|
|
const FabricBitstream& fabric_bitstream,
|
|
|
|
const AtomContext& atom_ctx,
|
|
|
|
const PlacementContext& place_ctx,
|
|
|
|
const PinConstraints& pin_constraints,
|
|
|
|
const IoLocationMap& io_location_map,
|
|
|
|
const FabricGlobalPortInfo &fabric_global_port_info,
|
|
|
|
const VprNetlistAnnotation& netlist_annotation,
|
|
|
|
const CircuitLibrary& circuit_lib,
|
|
|
|
const SimulationSetting& simulation_parameters,
|
|
|
|
const ConfigProtocol& config_protocol,
|
|
|
|
const VerilogTestbenchOption& options);
|
2020-02-27 13:33:09 -06:00
|
|
|
|
2021-06-03 16:37:49 -05:00
|
|
|
int fpga_verilog_full_testbench(const ModuleManager& module_manager,
|
|
|
|
const BitstreamManager& bitstream_manager,
|
|
|
|
const FabricBitstream& fabric_bitstream,
|
|
|
|
const AtomContext& atom_ctx,
|
|
|
|
const PlacementContext& place_ctx,
|
|
|
|
const PinConstraints& pin_constraints,
|
|
|
|
const std::string& bitstream_file,
|
|
|
|
const IoLocationMap& io_location_map,
|
|
|
|
const FabricGlobalPortInfo &fabric_global_port_info,
|
|
|
|
const VprNetlistAnnotation& netlist_annotation,
|
|
|
|
const CircuitLibrary& circuit_lib,
|
|
|
|
const SimulationSetting& simulation_parameters,
|
|
|
|
const ConfigProtocol& config_protocol,
|
|
|
|
const VerilogTestbenchOption& options);
|
2020-02-27 13:33:09 -06:00
|
|
|
|
2021-06-08 22:28:16 -05:00
|
|
|
int fpga_verilog_preconfigured_fabric_wrapper(const ModuleManager &module_manager,
|
|
|
|
const BitstreamManager &bitstream_manager,
|
|
|
|
const AtomContext &atom_ctx,
|
|
|
|
const PlacementContext &place_ctx,
|
|
|
|
const PinConstraints& pin_constraints,
|
|
|
|
const IoLocationMap &io_location_map,
|
|
|
|
const FabricGlobalPortInfo &fabric_global_port_info,
|
|
|
|
const VprNetlistAnnotation &netlist_annotation,
|
|
|
|
const CircuitLibrary &circuit_lib,
|
|
|
|
const ConfigProtocol &config_protocol,
|
|
|
|
const VerilogTestbenchOption &options);
|
|
|
|
|
2021-06-08 22:53:51 -05:00
|
|
|
int fpga_verilog_preconfigured_testbench(const ModuleManager &module_manager,
|
|
|
|
const AtomContext &atom_ctx,
|
|
|
|
const PinConstraints& pin_constraints,
|
|
|
|
const FabricGlobalPortInfo &fabric_global_port_info,
|
|
|
|
const VprNetlistAnnotation &netlist_annotation,
|
|
|
|
const SimulationSetting &simulation_setting,
|
|
|
|
const VerilogTestbenchOption &options);
|
2021-06-08 22:28:16 -05:00
|
|
|
|
2020-02-15 16:03:00 -06:00
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|