• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Logic Design
  3. Warnings when synthesis using RTL compiler

Stats

  • Locked Locked
  • Replies 5
  • Subscribers 63
  • Views 17289
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Warnings when synthesis using RTL compiler

Greatrebel
Greatrebel over 15 years ago

 Hi All,

 

When I use RTL compiler to synthesis my design, I found there were a lot of warnings like

"The following sequential clock pins have no clock waveform driving them" and

"Referenced signal not in sensitivity list.  This may cause simulation mismatches between the original and synthesized designs." during elaboration.

 I am wondering whether these warnings are serious, can I ignore them.

 Thanks in advance

 

 

 

  • Cancel
  • grasshopper
    grasshopper over 15 years ago

     Hi Greatrebel,

     I hope you realize that if the warnings were not meaningful, they probably would not be there. seq. clock pins is pretty bad since why would you have flops without clocks? Incomplete sensitivity list has minimal impact for synthesis but could lead to all sorts of issues for simulation. 

    good luck,

    gh-

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Greatrebel
    Greatrebel over 15 years ago

     hi grasshopper,

     I guess the warning "sequential clock pins have no clock waveform driving them" is caused by missing assignment to some registers in some case branches and using another signal for posedge. My code is something like below

     

    assign clk_spi = cpol ^ cpha ^ sclk; //sclk is synchronise clk not system clk

       
    always @ (posedge clk_spi or negedge rst)

    if (!rst)
                begin
                    bit_cnt <= #1 3'b0;
                    byte_cnt <= #1 3'b0;
                    state <= #1 `IDLE;
                    spi_instr <= #1 8'b0;
                    read_mem <= #1 `INST_WIDTH'b0;
                end

            else
                begin
                    bit_cnt <= #1 next_bit_cnt;
                    byte_cnt <= #1 next_byte_cnt;
                    state <= #1 next_state;   
                    spi_instr <= #1 next_spi_instr;
                    read_mem <= next_read_mem;
                end

    If I use system clk instead of clk_spi, it seems like the warnins gone.But I need that signal for those registers. So I can not have clockconstraint on those registers.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • grasshopper
    grasshopper over 15 years ago

    Hi Greatrebel,

    the RTL without the timing constraints is not terribly helpful since I people cannot tell what or how you defined the clocks. Also note that for clock propagation purposes most synthesis tools do not use the logic function but instead the unateness of the cells as defined in the libraries.

     gh-

     

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • mohammad083
    mohammad083 over 8 years ago

    Hello Greatrebel,

    I am facing the same "Sequential clock pins without clock waveform

    The following sequential clock pins have no clock waveform driving them. No
    timing constraints will be derived for paths leading to or from these pins" problem while synthesizing my RTL code.

    Did you ever get around to fixing it?

    Thanks
    Azhar

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • grasshopper
    grasshopper over 8 years ago
    If you care about simulation mismatches or sequentials without a clock, they are indeed serious and should be taken care of

    gh-
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information