Sign In

Don't have a Xilinx account yet?

  • Choose to receive important news and product information
  • Gain access to special content
  • Personalize your web experience on Xilinx.com

Create Account

Username

Password

Forgot your password?
XClose Panel
Xilinx Home
Reply
Visitor
dansci
Posts: 16
Registered: ‎04-27-2012
0

Two clock frequencies

Hi,

 

I have only basic experience in FPGA and never designed anything with advanced timing. Now I need something like this: I need to have clock which works first on 200 kHz and later it changes on 50 MHz. My input clock is 50MHz. Should I use two DCMs, one for divide 50MHZ by 250 to get 200 kHz and second to use later Clock Switching With Two DCMs module? Or maybe there is other simpler option?

Visitor
dansci
Posts: 16
Registered: ‎04-27-2012
0

Re: Two clock frequencies

Hmmm... I see Clock Switching With Two DCMs has DCMs :) So it could be enough but I also see it is impossible to divide in DCM by more than 16, but I can use dividing process. In this situation both should have CLK0 output?

Regular Visitor
peter.lieber
Posts: 32
Registered: ‎08-10-2010

Re: Two clock frequencies

Have you looked into the BUFGMUX primitive. It allows you to multiplex different clocks and guarantees no glitches.

Also, you may be able to access the DCM coefficients from FPGA logic and change them on the fly.
Expert Contributor
gszakacs
Posts: 5,253
Registered: ‎08-14-2007

Re: Two clock frequencies

Unless you are using the reduced clock speed to save power, I would suggest using

the 50 MHz clock all the time and just use a clock enable signal to switch frequencies.

The clock enable would come on for one cycle of 250 for low frequency operation, but

stay high all the time for high frequency operation.

 

The DCM does not have a long enough divider to generate 200 KHz.  At such a low

frequency, fabric logic is the best way to create a clock.  Another option for clock

generation using DCM + fabric would be to generate a 2x clock (100 MHz) with

a DCM and then use logic to divide that either by 2 or by 500.  The output of the

logic (must be directly from a flip-flop output to avoid glitches) would then drive

a BUFG to clock the system.

 

-- Gabor

-- Gabor
Expert Contributor
avrumw
Posts: 453
Registered: ‎01-23-2009

Re: Two clock frequencies

I would use a BUFGCE. The BUFGCE is a global clock buffer (a BUFG) with a clock enable input, which can be dynamically controlled.

 

You would need to use both a conventional BUFG as well as a BUFGCE, both taking in the 50MHz clock (either directly from a clock capable pin, or via a DCM). The ungated clock (from the BUFG) would control a small state machine/counter, which generates the CE for the BUFGCE. When you want the main clock to run at 200KHz, simply assert the CE on one out of every 200 clocks. When you want the main clock to run at 50MHz, leave the CE enabled all the time.

 

The only potential drawback is that the duty cycle of this generated (or decimated) clock is not 50/50 - at 200KHz, it would have 20ns of high time, and 4980ns of low time. As long as this clock isn't driving any negative edge FFs (which is a bad design practice), or any DDR input or output FFs, this shouldn't be a problem.

Expert Contributor
eteam00
Posts: 7,505
Registered: ‎07-21-2009

CLOCK vs. CLOCK ENABLE

When you want the main clock to run at 200KHz, simply assert the CE on one out of every 200 clocks. When you want the main clock to run at 50MHz, leave the CE enabled all the time.

 

The only potential drawback is that the duty cycle of this generated (or decimated) clock is not 50/50 - at 200KHz, it would have 20ns of high time, and 4980ns of low time. As long as this clock isn't driving any negative edge FFs...

 

Please do not muddy the distinction between CLOCK and CLOCK ENABLE.  A CLOCK ENABLE is not a CLOCK. A CLOCK ENABLE, properly used, is not applied to edge-sensitive or duty-cycle-sensitive register inputs.

 

-- Bob Elkind

SIGNATURE:
README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369

Summary:
1. Read the manual or user guide. Have you read the manual? Can you find the manual?
2. Search the forums (and search the web) for similar topics.
3. Do not post the same question on multiple forums.
4. Do not post a new topic or question on someone else's thread, start a new thread!
5. Students: Copying code is not the same as learning to design.
6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please).
7. You are not charged extra fees for comments in your code.
8. I am not paid for forum posts. If I write a good post, then I have been good for nothing.
Expert Contributor
avrumw
Posts: 453
Registered: ‎01-23-2009
0

Re: CLOCK vs. CLOCK ENABLE

Please do not muddy the distinction between CLOCK and CLOCK ENABLE.  A CLOCK ENABLE is not a CLOCK. A CLOCK ENABLE, properly used, is not applied to edge-sensitive or duty-cycle-sensitive register inputs.

 

The output of the BUFGCE described above is a decimated clock; it is available on the global clock network and can directly drive the clock pins of clocked elements. If the CE to the BUFGCE is generated correctly, then the resulting clock has all the characteristics of the desired clock (50MHz or 200KHz frequencies), with the caveat of the duty cycle noted above, which does not matter to internal cells as long as only the rising edge is used (i.e. no negative edge FFs, and no DDR FFs).

 

Avrum

Expert Contributor
eteam00
Posts: 7,505
Registered: ‎07-21-2009
0

Re: CLOCK vs. CLOCK ENABLE

Avrum,

 

If you are suggesting that a clock enable should be generated with a BUFGCE, and such a clock enable can easily be used (also) as a clock, you are giving extraordinarily bad advice to inexperienced user dansci and anyone else reading this thread.

 

The entire point of generating a low-rate clock enable is to avoid the power cost, complexities, and timing hasards of multi-clock design.

 

If you want to recommend a multi-clock design, then do so in plain terms with due consideration to the clock-domain crossing complexities, design verification practices, etc. for the benefit of the inexperienced users and readers.

 

-- Bob Elkind

SIGNATURE:
README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369

Summary:
1. Read the manual or user guide. Have you read the manual? Can you find the manual?
2. Search the forums (and search the web) for similar topics.
3. Do not post the same question on multiple forums.
4. Do not post a new topic or question on someone else's thread, start a new thread!
5. Students: Copying code is not the same as learning to design.
6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please).
7. You are not charged extra fees for comments in your code.
8. I am not paid for forum posts. If I write a good post, then I have been good for nothing.
Expert Contributor
avrumw
Posts: 453
Registered: ‎01-23-2009
0

Re: CLOCK vs. CLOCK ENABLE

Bob,

 

I am suggesting using a BUFGE for its intended purpose - generating a gated clock. When implemented as described above, the output of the BUFGE is a proper decimated clock, and can be used as a clock. This is a legal, documented, and properly implemented clocking structure for this problem.

 

The output of the BUFGE is NOT a clock enable; the CE input to the BUFGCE is a clock enable that generates a gated clock. The gated clock is distributed on the global clock network and is in phase (i.e. has no skew) with the non-decimated clock available on the regular BUFG. Since is only transitions at 200KHz, it has all the power savings of any other clock at this frequency.

 

Please refer to the Xilinx user's guide for the proper use of the BUFGE.

 

Avrum

Expert Contributor
eteam00
Posts: 7,505
Registered: ‎07-21-2009
0

Re: CLOCK vs. CLOCK ENABLE

Avrum,

 

Thank you for the clarification.  You are entirely correct in your description of the BUFGCE.  I misunderstood the intent of your suggestions (in post #5).

 

For the benefits of the original poster and other readers, what do you see as the advantages and disadvantages of your design approach compared to Gabor's approach (see post #4 in this thread)?

 

In both design approaches, a 200KHz-rate single-cycle pulse is generated from the 50MHz system clock.  From there, the two approaches diverge.

 

-- Bob Elkind

SIGNATURE:
README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369

Summary:
1. Read the manual or user guide. Have you read the manual? Can you find the manual?
2. Search the forums (and search the web) for similar topics.
3. Do not post the same question on multiple forums.
4. Do not post a new topic or question on someone else's thread, start a new thread!
5. Students: Copying code is not the same as learning to design.
6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please).
7. You are not charged extra fees for comments in your code.
8. I am not paid for forum posts. If I write a good post, then I have been good for nothing.