2020-02-12 21:48:07 -06:00
|
|
|
#ifndef BUILD_GRID_MODULE_DUPLICATED_PINS_H
|
|
|
|
#define BUILD_GRID_MODULE_DUPLICATED_PINS_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "physical_types.h"
|
|
|
|
#include "module_manager.h"
|
2021-03-13 21:05:18 -06:00
|
|
|
#include "vpr_device_annotation.h"
|
2020-02-12 21:48:07 -06:00
|
|
|
#include "openfpga_side_manager.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
|
|
|
void add_grid_module_duplicated_pb_type_ports(ModuleManager& module_manager,
|
|
|
|
const ModuleId& grid_module,
|
2021-03-13 21:05:18 -06:00
|
|
|
const VprDeviceAnnotation& vpr_device_annotation,
|
2020-02-12 21:48:07 -06:00
|
|
|
t_physical_tile_type_ptr grid_type_descriptor,
|
|
|
|
const e_side& border_side);
|
|
|
|
|
|
|
|
void add_grid_module_nets_connect_duplicated_pb_type_ports(ModuleManager& module_manager,
|
|
|
|
const ModuleId& grid_module,
|
|
|
|
const ModuleId& child_module,
|
|
|
|
const size_t& child_instance,
|
2021-03-13 21:05:18 -06:00
|
|
|
const VprDeviceAnnotation& vpr_device_annotation,
|
2020-02-12 21:48:07 -06:00
|
|
|
t_physical_tile_type_ptr grid_type_descriptor,
|
|
|
|
const e_side& border_side);
|
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|