• 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 17290
  • 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
Parents
  • 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
Reply
  • 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
Children
No Data

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