Forum Discussion

BDarji's avatar
BDarji
Icon for Occasional Contributor rankOccasional Contributor
5 years ago

Making custom component visible to Platform Designer (Qsys)

Hello all,

Sometimes we have observed that our custom component (having _hw.tcl file) does not appear in Platform Designer (Qsys) IP library even after providing IP core search path via Qsys>Tools>Options>IP Search path option.

There could be other alternative for this. But based on our experience, we have prepared one document which could help you in such a case. We have attached it herewith. We hope this would be useful to someone in future.

One shall also refer Dave's answer provided here regarding IPX file : QSYS Custom component not found - Intel Community

Our approach is similar to that.

Thank you and Have a Great Day!

11 Replies

  • KhaiChein_Y_Intel's avatar
    KhaiChein_Y_Intel
    Icon for Regular Contributor rankRegular Contributor

    Hi,


    May I know the software edition (Pro/Standard) and version you are using? Could you share the design file for investigation?


    Thanks

    Best regards,

    KhaiY


    • BDarji's avatar
      BDarji
      Icon for Occasional Contributor rankOccasional Contributor

      Hello KhaiY,

      Thank you for your response.

      I am facing issue with Quartus 18.1 Standard edition. But, in past, we faced similar type of issue with older Quartus version as well. And, that's what led us to find out some work-around for this!

      Basically we are designing IP cores, mainly USB IP cores. Although other IP cores are in encrypted form, we have I2C master IP core which we are providing free of charge. If you can give me your email ID, I can request our sales team to share that component to you. It will contain RTL files as well as hw.tcl file. I am facing same issue with that as well. Hence, you can check at your end whether same issue is happening with you or not.

      Thank you,

      Bhaumik

  • sstrell's avatar
    sstrell
    Icon for Super Contributor rankSuper Contributor

    You don't mention any error messages or any other info about why your components aren't showing up in the IP Catalog, but my guess is that the connection between the _hw.tcl file and your custom component HDL code is getting lost. This can happen if you use the Platform Designer Component Editor and then move the _hw.tcl file from the project directory and/or the HDL code.

    In recent versions of Platform Designer (probably within the last 3-4 years), the _hw.tcl file from the Component Editor always gets created at the location of the .qsys file, not at the location of the HDL code you point to in the Component Editor, which is what it used to do. As such, if you move either the _hw.tcl or the HDL code, even if you point PD to the location of the _hw.tcl, it won't work.

    What you have to do is edit the _hw.tcl file, wherever you've moved it to and edit the following:

    add_fileset_file <file>.[v|vhd] [VERILOG|VHDL] PATH <file_path> [TOP_LEVEL_FILE]

    If you set the path correctly and then refresh PD (F5 key or menu command), it should work.

    • BDarji's avatar
      BDarji
      Icon for Occasional Contributor rankOccasional Contributor

      Hello @sstrell ,

      Thank you very much for your response and sorry for delay.

      You are right that initially we use Platform Designer Component Editor to create _hw.tcl file and then are moving it to other location. But we are moving RTL files along with _hw.tcl file. And hence, RELATIVE path remains same.

      In our case, we are used to place RTL files in hdl folder and _hw.tcl file remains in same folder in which hdl folder resides. Then, we are using following commands to add files.

      add_fileset_file ./sls_i2c_mstr/i2cc_wrapper.sv       SYSTEM_VERILOG PATH ./hdl/i2cc_wrapper.sv TOP_LEVEL_FILE
      
      add_fileset_file ./sls_i2c_mstr/i2cc_user_define.pkg.sv  SYSTEM_VERILOG PATH ./hdl/i2cc_user_define.pkg.sv
      
      add_fileset_file ./sls_i2c_mstr/i2cc_dp_ram_mf.v  VERILOG PATH ./hdl/i2cc_dp_ram_mf.v

      Do you see any issue in this?

      Thank you and Have a Nice Day!

      Regards,

      Bhaumik

      • sstrell's avatar
        sstrell
        Icon for Super Contributor rankSuper Contributor

        Try an absolute path instead of a relative path. I think the issue may be that the relative path is relative to the .qsys file, not relative to the _hw.tcl file.

  • KhaiChein_Y_Intel's avatar
    KhaiChein_Y_Intel
    Icon for Regular Contributor rankRegular Contributor

    Hi Bhaumik,


    I have sent an email to you, do let me know if you did not receive.


    Thanks

    Best regards,

    Khai Chein


    • BDarji's avatar
      BDarji
      Icon for Occasional Contributor rankOccasional Contributor

      Hello,

      Sorry for delay. I have received your mail and have requested our sales team to share that package to you for further debugging.

      Thank you.