Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

1.024 Mhz Clock Generation

Status
Not open for further replies.

sudhirkv

Advanced Member level 4
Joined
Dec 13, 2005
Messages
106
Helped
8
Reputation
16
Reaction score
1
Trophy points
1,298
Location
Chennai, India
Activity points
1,992
50 mhz pll clock divider

HI,


How to generate a Clock frequency of 1.024 MHZ from a 50 MHZ clock.
 

clock oscillator 1.024mhz

Hi,
You have to use a PLL to do this.
 

lattice fpga pll clock ratio

Using only an FPGA? Which type? How much jitter does the 50 MHz clock have, and how much jitter can you tolerate at 1.024 MHz? Your options vary depending on those factors.

Some FPGAs have DLL or PLL clock synthesizers for generating clock frequency ratios. Your ratio is 64/3125, so you would probably need to cascade two synthesizers, plus a counter. For example, multiply by 8/5, then by 8/5, then divide by 125.

If your application can tolerate 20ns of jitter, you could build a simple ratio counter that outputs 64 pulses for every 3125 input pulses.

For lowest jitter, use an external PLL synthesizer chip.
 

1.024 mhz

Am going to implement it in a FPGA and the design is not so fast so ican manage the jitter. is it possible without using PLL or DLL.


Thanks

Sudhir
 

Hi,

You can show this topic :

Telga
 
Last edited by a moderator:

I want to tell you one thing that i can get a clock frequency of 1.0204Mhz where i divided the 50Mhz clk with 49. 50/1.024 comes around 48.86... so i rounded of to 49 and got that 1.0204Mhz clk. As i am going to use this clk for PCM data transfer will this 1.0204 clk will make any effect or this clk is sufficient.

Can we divide 50 by exact 48.86?. Up to my knowledge its not possible i guess.

If any one can come up with the answer it wud be helpfull
 

can you give some more details like which FPGA u r using whether it supports to the DCM... to generate fractional clock
 

1.0204 MHz does not equal 1.024 MHz. Are you sure the error would be acceptable?

The LFXP6 data sheet says it contains two sysCLOCK PLL frequency synthesizer blocks. How about using them as I suggested earlier?

I don't know what you mean by "manage the jitter", but if your system really can tolerate 20ns of clock jitter, then use a simple 64/3125 ratio counter.
 

    sudhirkv

    Points: 2
    Helpful Answer Positive Rating
Hi Echo Thanks for u r comments. But i may have to use the PLL for to generate higher frequency.

If its not possible with with clock divider i will go for that.

Thanks all. But still i feel there will be an option to generate 1.024Mhz without using PLL.


Please let me know when u get the answer

Thanks Once again
 

A ratio counter (or ratio divider) is digital. No PLL. But it has lots of jitter. You can't avoid the large jitter unless you use an analog technique such as DLL, PLL, DDS, etc.

Here's a jittery ratio divider. The output reads 1.024000 MHz on my frequency counter with one-second gate:
Code:
module top (clk, out);
  input             clk;                             // 50 MHz oscillator
  reg        [12:0] count = 0;
  output reg        out = 0;

  always @ (posedge clk) begin
    count <= count + (count[12] ? 3125-128 : -128);  // ratio = 128/3125
    out <= out + count[12];                          // divide by 2
  end
endmodule
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top