add efinix bank config

This commit is contained in:
Nitcloud 2025-03-11 15:06:20 +08:00
parent 1a76d5ee81
commit e62428c38e

View File

@ -15,91 +15,10 @@ import { debounce, getPIDsWithName, killProcess } from '../../global/util';
import { t } from '../../i18n'; import { t } from '../../i18n';
import { HdlFileProjectType } from '../../hdlParser/common'; import { HdlFileProjectType } from '../../hdlParser/common';
import { integer } from 'vscode-languageclient'; import { integer } from 'vscode-languageclient';
import { AnyARecord } from 'dns';
type ChainInfo = [number, number, number, number]; type ChainInfo = [number, number, number, number];
const syn = ` <efx:synthesis tool_name="efx_map">
<efx:param name="work_dir" value="work_syn" value_type="e_string"/>
<efx:param name="write_efx_verilog" value="on" value_type="e_bool"/>
<efx:param name="mode" value="speed" value_type="e_option"/>
<efx:param name="max_ram" value="-1" value_type="e_integer"/>
<efx:param name="max_mult" value="-1" value_type="e_integer"/>
<efx:param name="infer-clk-enable" value="3" value_type="e_option"/>
<efx:param name="infer-sync-set-reset" value="1" value_type="e_option"/>
<efx:param name="min-sr-fanout" value="0" value_type="e_integer"/>
<efx:param name="min-ce-fanout" value="0" value_type="e_integer"/>
<efx:param name="fanout-limit" value="0" value_type="e_integer"/>
<efx:param name="bram_output_regs_packing" value="1" value_type="e_option"/>
<efx:param name="retiming" value="1" value_type="e_option"/>
<efx:param name="seq_opt" value="1" value_type="e_option"/>
<efx:param name="blast_const_operand_adders" value="1" value_type="e_option"/>
<efx:param name="operator-sharing" value="0" value_type="e_option"/>
<efx:param name="optimize-adder-tree" value="0" value_type="e_option"/>
<efx:param name="seq-opt-sync-only" value="0" value_type="e_option"/>
<efx:param name="blackbox-error" value="1" value_type="e_option"/>
<efx:param name="allow-const-ram-index" value="0" value_type="e_option"/>
<efx:param name="hdl-compile-unit" value="1" value_type="e_option"/>
<efx:param name="create-onehot-fsms" value="0" value_type="e_option"/>
<efx:param name="dsp-mac-packing" value="1" value_type="e_option"/>
<efx:param name="dsp-output-regs-packing" value="1" value_type="e_option"/>
<efx:param name="dsp-input-regs-packing" value="1" value_type="e_option"/>
<efx:param name="pack-luts-to-comb4" value="0" value_type="e_option"/>
<efx:param name="mult-auto-pipeline" value="0" value_type="e_option"/>
<efx:param name="mult-decomp-retime" value="0" value_type="e_option"/>
<efx:param name="optimize-zero-init-rom" value="1" value_type="e_option"/>
<efx:param name="use-logic-for-small-mem" value="64" value_type="e_integer"/>
<efx:param name="use-logic-for-small-rom" value="64" value_type="e_integer"/>
<efx:param name="insert-carry-skip" value="0" value_type="e_option"/>
</efx:synthesis>`;
const pnr = ` <efx:place_and_route tool_name="efx_pnr">
<efx:param name="work_dir" value="work_pnr" value_type="e_string"/>
<efx:param name="verbose" value="off" value_type="e_bool"/>
<efx:param name="load_delaym" value="on" value_type="e_bool"/>
<efx:param name="optimization_level" value="NULL" value_type="e_option"/>
<efx:param name="seed" value="1" value_type="e_integer"/>
<efx:param name="placer_effort_level" value="2" value_type="e_option"/>
<efx:param name="max_threads" value="-1" value_type="e_integer"/>
<efx:param name="print_critical_path" value="10" value_type="e_integer"/>
<efx:param name="beneficial_skew" value="on" value_type="e_option"/>
</efx:place_and_route>`;
const bit = ` <efx:bitstream_generation tool_name="efx_pgm">
<efx:param name="mode" value="active" value_type="e_option"/>
<efx:param name="width" value="1" value_type="e_option"/>
<efx:param name="enable_roms" value="smart" value_type="e_option"/>
<efx:param name="spi_low_power_mode" value="on" value_type="e_bool"/>
<efx:param name="io_weak_pullup" value="on" value_type="e_bool"/>
<efx:param name="oscillator_clock_divider" value="DIV8" value_type="e_option"/>
<efx:param name="bitstream_compression" value="on" value_type="e_bool"/>
<efx:param name="enable_external_master_clock" value="off" value_type="e_bool"/>
<efx:param name="active_capture_clk_edge" value="negedge" value_type="e_option"/>
<efx:param name="jtag_usercode" value="0xFFFFFFFF" value_type="e_string"/>
<efx:param name="release_tri_then_reset" value="on" value_type="e_bool"/>
<efx:param name="four_byte_addressing" value="off" value_type="e_bool"/>
<efx:param name="generate_bit" value="on" value_type="e_bool"/>
<efx:param name="generate_bitbin" value="off" value_type="e_bool"/>
<efx:param name="generate_hex" value="on" value_type="e_bool"/>
<efx:param name="generate_hexbin" value="off" value_type="e_bool"/>
<efx:param name="cold_boot" value="off" value_type="e_bool"/>
<efx:param name="cascade" value="off" value_type="e_option"/>
</efx:bitstream_generation>`;
const debug = ` <efx:debugger>
<efx:param name="work_dir" value="work_dbg" value_type="e_string"/>
<efx:param name="auto_instantiation" value="off" value_type="e_bool"/>
<efx:param name="profile" value="NONE" value_type="e_string"/>
</efx:debugger>`;
const security = ` <efx:security>
<efx:param name="randomize_iv_value" value="on" value_type="e_bool"/>
<efx:param name="iv_value" value="" value_type="e_string"/>
<efx:param name="enable_bitstream_encrypt" value="off" value_type="e_bool"/>
<efx:param name="enable_bitstream_auth" value="off" value_type="e_bool"/>
<efx:param name="encryption_key_file" value="NONE" value_type="e_string"/>
<efx:param name="auth_key_file" value="NONE" value_type="e_string"/>
</efx:security>`;
export class EfinityOperation { export class EfinityOperation {
prjScript: string; prjScript: string;
efxPath: string; efxPath: string;
@ -108,58 +27,8 @@ export class EfinityOperation {
this.efxPath = hdlPath.join(opeParam.workspacePath, `${opeParam.prjInfo.prjName.PL}.xml`); this.efxPath = hdlPath.join(opeParam.workspacePath, `${opeParam.prjInfo.prjName.PL}.xml`);
} }
private getDeviceInfo(device: string): string {
const deviceInfo = device.split('-');
let family = 'Trion';
if (device.slice(0, 2).toLowerCase() === 'ti') {
family = 'Titanium';
}
return ` <efx:device_info>
<efx:family name="${family}"/>
<efx:device name="${deviceInfo[0]}"/>
<efx:timing_model name="${deviceInfo[1]}"/>
</efx:device_info>`;
}
private getDesignInfo(): string {
let designFile = ` <efx:top_module name="${opeParam.firstSrcTopModule.name}"/>\n`;
for (const hdlFile of hdlParam.getAllHdlFiles()) {
switch (hdlFile.projectType) {
case HdlFileProjectType.Src:
case HdlFileProjectType.LocalLib:
case HdlFileProjectType.RemoteLib:
case HdlFileProjectType.Sim:
designFile += ` <efx:design_file name="${hdlFile.path}" version="default" library="default"/>\n`;
break;
case HdlFileProjectType.IP:
case HdlFileProjectType.Primitive:
// IP 和 原语不用管
break;
default:
break;
}
}
designFile += ` <efx:top_vhdl_arch name=""/>`
return ` <efx:design_info def_veri_version="verilog_2k" def_vhdl_version="vhdl_2008">\n${designFile}
</efx:design_info>`
};
private getConstraintInfo(): string {
let constraintFile = '';
hdlFile.pickFileRecursive(opeParam.prjInfo.arch.hardware.data, filePath => {
if (filePath.endsWith('.sdc')) {
constraintFile += ` <efx:sdc_file name="${filePath}" />\n`;
}
});
constraintFile += ` <efx:inter_file name="" />\n`;
return ` <efx:constraint_info>\n${constraintFile} </efx:constraint_info>`;
}
public launch() { public launch() {
this.prjScript = `<efx:project xmlns:efx="http://www.efinixinc.com/enf_proj" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="${opeParam.prjInfo.prjName.PL}" description="" last_change="1724639062" sw_version="2023.2.307" last_run_state="pass" last_run_flow="bitstream" config_result_in_sync="sync" design_ood="sync" place_ood="sync" route_ood="sync" xsi:schemaLocation="http://www.efinixinc.com/enf_proj enf_proj.xsd">\n${this.getDeviceInfo(opeParam.prjInfo.device)}\n${this.getDesignInfo()}\n${this.getConstraintInfo()}\n <efx:sim_info />\n <efx:misc_info />\n <efx:ip_info />\n${syn}\n${pnr}\n${bit}\n${debug}\n${security}\n</efx:project>`; this.prjScript = `<efx:project xmlns:efx="http://www.efinixinc.com/enf_proj" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="${opeParam.prjInfo.prjName.PL}" description="" last_change="1724639062" sw_version="2023.2.307" last_run_state="pass" last_run_flow="bitstream" config_result_in_sync="sync" design_ood="sync" place_ood="sync" route_ood="sync" xsi:schemaLocation="http://www.efinixinc.com/enf_proj enf_proj.xsd">\n${this.getDeviceInfo(opeParam.prjInfo.device)}\n${this.getDesignInfo()}\n${this.getConstraintInfo()}\n <efx:sim_info />\n <efx:misc_info />\n <efx:ip_info />\n${this.getSynthInfo()}\n${this.getPnRInfo()}\n${this.getBitstreamInfo()}\n${this.getDebugInfo()}\n${this.getSecurityInfo()}\n</efx:project>`;
fs.writeFileSync(this.efxPath, this.prjScript); fs.writeFileSync(this.efxPath, this.prjScript);
@ -226,6 +95,244 @@ export class EfinityOperation {
} }
private getDeviceInfo(device: string): string {
const deviceInfo = device.split('-');
let family = 'Trion';
if (device.slice(0, 2).toLowerCase() === 'ti') {
family = 'Titanium';
}
return ` <efx:device_info>
<efx:family name="${family}"/>
<efx:device name="${deviceInfo[0]}"/>
<efx:timing_model name="${deviceInfo[1]}"/>
</efx:device_info>`;
}
private getDesignInfo(): string {
let designFile = ` <efx:top_module name="${opeParam.firstSrcTopModule.name}"/>\n`;
for (const hdlFile of hdlParam.getAllHdlFiles()) {
switch (hdlFile.projectType) {
case HdlFileProjectType.Src:
case HdlFileProjectType.LocalLib:
case HdlFileProjectType.RemoteLib:
case HdlFileProjectType.Sim:
designFile += ` <efx:design_file name="${hdlFile.path}" version="default" library="default"/>\n`;
break;
case HdlFileProjectType.IP:
case HdlFileProjectType.Primitive:
// IP 和 原语不用管
break;
default:
break;
}
}
designFile += ` <efx:top_vhdl_arch name=""/>`
return ` <efx:design_info def_veri_version="verilog_2k" def_vhdl_version="vhdl_2008">\n${designFile}
</efx:design_info>`
};
private getConstraintInfo(): string {
let constraintFile = '';
hdlFile.pickFileRecursive(opeParam.prjInfo.arch.hardware.data, filePath => {
if (filePath.endsWith('.sdc')) {
constraintFile += ` <efx:sdc_file name="${filePath}" />\n`;
}
});
constraintFile += ` <efx:inter_file name="" />\n`;
return ` <efx:constraint_info>\n${constraintFile} </efx:constraint_info>`;
}
private getSynthInfo(): string {
return ` <efx:synthesis tool_name="efx_map">
<efx:param name="work_dir" value="work_syn" value_type="e_string"/>
<efx:param name="write_efx_verilog" value="on" value_type="e_bool"/>
<efx:param name="mode" value="speed" value_type="e_option"/>
<efx:param name="max_ram" value="-1" value_type="e_integer"/>
<efx:param name="max_mult" value="-1" value_type="e_integer"/>
<efx:param name="infer-clk-enable" value="3" value_type="e_option"/>
<efx:param name="infer-sync-set-reset" value="1" value_type="e_option"/>
<efx:param name="min-sr-fanout" value="0" value_type="e_integer"/>
<efx:param name="min-ce-fanout" value="0" value_type="e_integer"/>
<efx:param name="fanout-limit" value="0" value_type="e_integer"/>
<efx:param name="bram_output_regs_packing" value="1" value_type="e_option"/>
<efx:param name="retiming" value="1" value_type="e_option"/>
<efx:param name="seq_opt" value="1" value_type="e_option"/>
<efx:param name="blast_const_operand_adders" value="1" value_type="e_option"/>
<efx:param name="operator-sharing" value="0" value_type="e_option"/>
<efx:param name="optimize-adder-tree" value="0" value_type="e_option"/>
<efx:param name="seq-opt-sync-only" value="0" value_type="e_option"/>
<efx:param name="blackbox-error" value="1" value_type="e_option"/>
<efx:param name="allow-const-ram-index" value="0" value_type="e_option"/>
<efx:param name="hdl-compile-unit" value="1" value_type="e_option"/>
<efx:param name="create-onehot-fsms" value="0" value_type="e_option"/>
<efx:param name="dsp-mac-packing" value="1" value_type="e_option"/>
<efx:param name="dsp-output-regs-packing" value="1" value_type="e_option"/>
<efx:param name="dsp-input-regs-packing" value="1" value_type="e_option"/>
<efx:param name="pack-luts-to-comb4" value="0" value_type="e_option"/>
<efx:param name="mult-auto-pipeline" value="0" value_type="e_option"/>
<efx:param name="mult-decomp-retime" value="0" value_type="e_option"/>
<efx:param name="optimize-zero-init-rom" value="1" value_type="e_option"/>
<efx:param name="use-logic-for-small-mem" value="64" value_type="e_integer"/>
<efx:param name="use-logic-for-small-rom" value="64" value_type="e_integer"/>
<efx:param name="insert-carry-skip" value="0" value_type="e_option"/>
</efx:synthesis>`;
}
private getPnRInfo(): string {
return ` <efx:place_and_route tool_name="efx_pnr">
<efx:param name="work_dir" value="work_pnr" value_type="e_string"/>
<efx:param name="verbose" value="off" value_type="e_bool"/>
<efx:param name="load_delaym" value="on" value_type="e_bool"/>
<efx:param name="optimization_level" value="NULL" value_type="e_option"/>
<efx:param name="seed" value="1" value_type="e_integer"/>
<efx:param name="placer_effort_level" value="2" value_type="e_option"/>
<efx:param name="max_threads" value="-1" value_type="e_integer"/>
<efx:param name="print_critical_path" value="10" value_type="e_integer"/>
<efx:param name="beneficial_skew" value="on" value_type="e_option"/>
</efx:place_and_route>`;
}
private getBitstreamInfo(): string {
return ` <efx:bitstream_generation tool_name="efx_pgm">
<efx:param name="mode" value="active" value_type="e_option"/>
<efx:param name="width" value="1" value_type="e_option"/>
<efx:param name="enable_roms" value="smart" value_type="e_option"/>
<efx:param name="spi_low_power_mode" value="on" value_type="e_bool"/>
<efx:param name="io_weak_pullup" value="on" value_type="e_bool"/>
<efx:param name="oscillator_clock_divider" value="DIV8" value_type="e_option"/>
<efx:param name="bitstream_compression" value="on" value_type="e_bool"/>
<efx:param name="enable_external_master_clock" value="off" value_type="e_bool"/>
<efx:param name="active_capture_clk_edge" value="negedge" value_type="e_option"/>
<efx:param name="jtag_usercode" value="0xFFFFFFFF" value_type="e_string"/>
<efx:param name="release_tri_then_reset" value="on" value_type="e_bool"/>
<efx:param name="four_byte_addressing" value="off" value_type="e_bool"/>
<efx:param name="generate_bit" value="on" value_type="e_bool"/>
<efx:param name="generate_bitbin" value="off" value_type="e_bool"/>
<efx:param name="generate_hex" value="on" value_type="e_bool"/>
<efx:param name="generate_hexbin" value="off" value_type="e_bool"/>
<efx:param name="cold_boot" value="off" value_type="e_bool"/>
<efx:param name="cascade" value="off" value_type="e_option"/>
</efx:bitstream_generation>`;
}
private getDebugInfo(): string {
return ` <efx:debugger>
<efx:param name="work_dir" value="work_dbg" value_type="e_string"/>
<efx:param name="auto_instantiation" value="off" value_type="e_bool"/>
<efx:param name="profile" value="NONE" value_type="e_string"/>
</efx:debugger>`;
}
private getSecurityInfo(): string {
return ` <efx:security>
<efx:param name="randomize_iv_value" value="on" value_type="e_bool"/>
<efx:param name="iv_value" value="" value_type="e_string"/>
<efx:param name="enable_bitstream_encrypt" value="off" value_type="e_bool"/>
<efx:param name="enable_bitstream_auth" value="off" value_type="e_bool"/>
<efx:param name="encryption_key_file" value="NONE" value_type="e_string"/>
<efx:param name="auth_key_file" value="NONE" value_type="e_string"/>
</efx:security>`;
}
private getIODeviceConfig(): string {
function getIOBankInfo(params:Record<string, string>): string {
let iobankInfo = '';
for (const [key, value] of Object.entries(params)) {
iobankInfo += ` <efxpt:iobank name="${key}" iostd="${value}" is_dyn_voltage="false" mode_sel_name="${key}_MODE_SEL"/>\n`;
}
return ` <efxpt:iobank_info>\n${iobankInfo} </efxpt:iobank_info>`;
}
function getReconfigInfo(params:Record<string, string>): string {
let ctrlInfo = '';
for (const [key, value] of Object.entries(params)) {
ctrlInfo += ` <efxpt:ctrl name="${key}" ctrl_def="${value}" clock_name="" is_clk_invert="false" cbsel_bus_name="${key}_CBSEL" config_ctrl_name="${key}_CONFIG" ena_capture_name="${key}_ENA" error_status_name="${key}_ERROR" um_signal_status_name="${key}_USR_STATUS" is_remote_update_enable="false" is_user_mode_enable="false"/>\n`;
}
return ` <efxpt:ctrl_info>\n${ctrlInfo} </efxpt:ctrl_info>`;
}
function getSeuInfo(params:Record<string, string>): string {
let seuInfo = '';
for (const [key, value] of Object.entries(params)) {
seuInfo += ` <efxpt:seu name="${key}" block_def="${value}" mode="auto" ena_detect="false" wait_interval="16500000">\n <efxpt:gen_pin>\n <efxpt:pin name="${key}_START" type_name="START" is_bus="false"/>\n <efxpt:pin name="${key}_INJECT_ERROR" type_name="INJECT_ERROR" is_bus="false"/>\n <efxpt:pin name="${key}_RST" type_name="RST" is_bus="false"/>\n <efxpt:pin name="${key}_CONFIG" type_name="CONFIG" is_bus="false"/>\n <efxpt:pin name="${key}_ERROR" type_name="ERROR" is_bus="false"/>\n <efxpt:pin name="${key}_DONE" type_name="DONE" is_bus="false"/>\n </efxpt:gen_pin>\n </efxpt:seu>\n`;
}
return ` <efxpt:seu_info>\n${seuInfo} </efxpt:seu_info>`;
}
function getCLKMUXInfo(params:Record<string, string>): string {
let clkmuxInfo = '';
for (const [key, value] of Object.entries(params)) {
clkmuxInfo += ` <efxpt:clkmux name="${key}" block_def="${value}" is_mux_bot0_dyn="false" is_mux_bot7_dyn="false">\n <efxpt:gen_pin>\n <efxpt:pin name="" type_name="ROUTE0" is_bus="false" is_clk="true" is_clk_invert="false"/>\n <efxpt:pin name="" type_name="ROUTE1" is_bus="false" is_clk="true" is_clk_invert="false"/>\n <efxpt:pin name="" type_name="ROUTE2" is_bus="false" is_clk="true" is_clk_invert="false"/>\n <efxpt:pin name="" type_name="ROUTE3" is_bus="false" is_clk="true" is_clk_invert="false"/>\n <efxpt:pin name="" type_name="DYN_MUX_OUT_0" is_bus="false"/>\n <efxpt:pin name="" type_name="DYN_MUX_OUT_7" is_bus="false"/>\n <efxpt:pin name="" type_name="DYN_MUX_SEL_0" is_bus="true"/>\n <efxpt:pin name="" type_name="DYN_MUX_SEL_7" is_bus="true"/>\n </efxpt:gen_pin>\n </efxpt:clkmux>\n`;
}
return ` <efxpt:clkmux_info>\n${clkmuxInfo} </efxpt:clkmux_info>`;
}
return ` <efxpt:device_info>\n${getIOBankInfo({
"1A_4B" : "1.8 V LVCMOS",
"1B" : "1.8 V LVCMOS",
"2A_2B" : "1.8 V LVCMOS",
"3A" : "1.8 V LVCMOS",
"3B_4A" : "1.8 V LVCMOS",
"BL" : "1.8 V LVCMOS"
})}\n${getReconfigInfo({
"cfg" : "CONFIG_CTRL0"
})}\n${getSeuInfo({
"seu" : "CONFIG_SEU0"
})}\n${getCLKMUXInfo({
"CLKMUX_B" : "CLKMUX_B",
"CLKMUX_L" : "CLKMUX_L",
"CLKMUX_R" : "CLKMUX_R",
"CLKMUX_T" : "CLKMUX_T"
})}
<efxpt:ext_flash_ctrl_info>
<efxpt:ext_flash_ctrl ena_ext_flash_ctrl="false"/>
</efxpt:ext_flash_ctrl_info>
</efxpt:device_info>`
}
private setCompInputGPIO(param:Record<string, string>): string {
return ` <efxpt:comp_gpio_info>
<efxpt:comp_gpio name="comp_gpio_inst1" block_def="COMP_GPIO0">
<efxpt:gen_pin>
<efxpt:pin name="comp_gpio_in" type_name="IN" is_bus="true"/>
<efxpt:pin name="comp_gpio_out" type_name="OUT" is_bus="true"/>
<efxpt:pin name="comp_gpio_oe" type_name="OE" is_bus="true"/>
</efxpt:gen_pin>
</efxpt:comp_gpio>`
}
private getHBRAMConfig(): string {
return ` <efxpt:hyper_ram_info>
<efxpt:hyper_ram name="hyper_ram_inst1" block_def="HYPER_RAM0">
<efxpt:gen_pin>
<efxpt:pin name="" type_name="CLK" is_bus="false" is_clk="true" is_clk_invert="false"/>
<efxpt:pin name="" type_name="CLK90" is_bus="false" is_clk="true" is_clk_invert="false"/>
<efxpt:pin name="" type_name="CLKCAL" is_bus="false" is_clk="true" is_clk_invert="false"/>
<efxpt:pin name="hbc_rst_n" type_name="RST_N" is_bus="false"/>
<efxpt:pin name="hbc_cs_n" type_name="CS_N" is_bus="false"/>
<efxpt:pin name="hbc_ck_p_HI" type_name="CK_P_HI" is_bus="false"/>
<efxpt:pin name="hbc_ck_p_LO" type_name="CK_P_LO" is_bus="false"/>
<efxpt:pin name="hbc_ck_N_HI" type_name="CK_N_HI" is_bus="false"/>
<efxpt:pin name="hbc_ck_N_LO" type_name="CK_N_LO" is_bus="false"/>
<efxpt:pin name="hbc_rwds_OUT_HI" type_name="RWDS_OUT_HI" is_bus="true"/>
<efxpt:pin name="hbc_rwds_OUT_LO" type_name="RWDS_OUT_LO" is_bus="true"/>
<efxpt:pin name="hbc_rwds_IN_HI" type_name="RWDS_IN_HI" is_bus="true"/>
<efxpt:pin name="hbc_rwds_IN_LO" type_name="RWDS_IN_LO" is_bus="true"/>
<efxpt:pin name="hbc_rwds_OE" type_name="RWDS_OE" is_bus="true"/>
<efxpt:pin name="hbc_dq_OUT_HI" type_name="DQ_OUT_HI" is_bus="true"/>
<efxpt:pin name="hbc_dq_OUT_LO" type_name="DQ_OUT_LO" is_bus="true"/>
<efxpt:pin name="hbc_dq_IN_HI" type_name="DQ_IN_HI" is_bus="true"/>
<efxpt:pin name="hbc_dq_IN_LO" type_name="DQ_IN_LO" is_bus="true"/>
<efxpt:pin name="hbc_dq_OE" type_name="DQ_OE" is_bus="true"/>
</efxpt:gen_pin>
</efxpt:hyper_ram>
</efxpt:hyper_ram_info>`
}
private convert_to_SVF_TrionX( private convert_to_SVF_TrionX(
inputFile: string, inputFile: string,
destSVFFile: string, destSVFFile: string,