Prev: 2010 FIFA World Cup Manchester United Football Club football jersey
Next: Anticausal filter implementation
From: crasic on 13 Jun 2010 00:50 Hi all. We are using a DPLL synthesized in an FPGA as a tracking bandpass filter. The PLL design is based on some older IEEE papers (late 70's) and uses a binary phase detector and a sequential loop filter (a "Variable Reset Random Walk Filter" or "VR-RMF" in dsp jargon), essentially we reimplemented this open cores project : http://opencores.org/project,dpll_rwf (Boy would it have saved me time to have known about his core!) The paper which this design is based on (reference 3 on that open cores page) experimentally predicts frequency jitter reduction of ~5-10 fold over input jitter on a relatively noisy signal. We are getting approximately 2 fold reduction, but even if we got the ideal jitter filtering, it would not be enough for us. Ideally we want 50-100 fold jitter reduction, but we will take anything over 2 fold for now. When we feed the dpll a essentially jitter free signal (~0.5mHz jitter at 700KHz from a very expensive Stanford Research Systems function generator) or if we let the dpll run as an open loop we find that the dpll has an intrinsic jitter of approximately 2 mHz at 700KHz with a 100MHz clock. My question is, is there anyway to reduce the output jitter of our DPLL, either through some kind of filtering afterwards in the design or perhaps something more substantial when it comes to clock choice or output routing on the physical board itself.
From: Tim Wescott on 13 Jun 2010 01:29 On 06/12/2010 09:50 PM, crasic wrote: > Hi all. > > We are using a DPLL synthesized in an FPGA as a tracking bandpass filter. > The PLL design is based on some older IEEE papers (late 70's) and uses a > binary phase detector and a sequential loop filter (a "Variable Reset > Random Walk Filter" or "VR-RMF" in dsp jargon), essentially we > reimplemented this open cores project : > http://opencores.org/project,dpll_rwf (Boy would it have saved me time to > have known about his core!) > > The paper which this design is based on (reference 3 on that open cores > page) experimentally predicts frequency jitter reduction of ~5-10 fold over > input jitter on a relatively noisy signal. We are getting approximately 2 > fold reduction, but even if we got the ideal jitter filtering, it would not > be enough for us. Ideally we want 50-100 fold jitter reduction, but we will > take anything over 2 fold for now. > > When we feed the dpll a essentially jitter free signal (~0.5mHz jitter at > 700KHz from a very expensive Stanford Research Systems function generator) > or if we let the dpll run as an open loop we find that the dpll has an > intrinsic jitter of approximately 2 mHz at 700KHz with a 100MHz clock. > > My question is, is there anyway to reduce the output jitter of our DPLL, > either through some kind of filtering afterwards in the design or perhaps > something more substantial when it comes to clock choice or output routing > on the physical board itself. "Or let the DPLL run as open loop" Do you mean if you feed a constant to your NCO, whatever that may be? If that's the case, then your problem is your reference clock. This is backed up by your results with that Stanford Research Systems function generator -- your DPLL will see it's reference clock as "truth" even if it's jittery. Give it a jittery reference clock and feed it the World's Cleanest Signal as input and it'll see jitter in that input and "clean" it right up. What are you clocking your chip with? Are you sure it's clean? Are you sure it's clean after your FPGA gets done with it? -- Tim Wescott Control system and signal processing consulting www.wescottdesign.com
From: Vladimir Vassilevsky on 13 Jun 2010 11:54 To begin with: FPGA doesn't mate with low jitter. No matter what filtering is, you can expect jitter in ~100ps range, due to coupling on the crystal. This is rather poor performance. If you need better then that, do a specialized analog circuit. Vladimir Vassilevsky DSP and Mixed Signal Design Consultant http://www.abvolt.com crasic wrote: > Hi all. > > We are using a DPLL synthesized in an FPGA as a tracking bandpass filter. > The PLL design is based on some older IEEE papers (late 70's) and uses a > binary phase detector and a sequential loop filter (a "Variable Reset > Random Walk Filter" or "VR-RMF" in dsp jargon), essentially we > reimplemented this open cores project : > http://opencores.org/project,dpll_rwf (Boy would it have saved me time to > have known about his core!) > > The paper which this design is based on (reference 3 on that open cores > page) experimentally predicts frequency jitter reduction of ~5-10 fold over > input jitter on a relatively noisy signal. We are getting approximately 2 > fold reduction, but even if we got the ideal jitter filtering, it would not > be enough for us. Ideally we want 50-100 fold jitter reduction, but we will > take anything over 2 fold for now. > > When we feed the dpll a essentially jitter free signal (~0.5mHz jitter at > 700KHz from a very expensive Stanford Research Systems function generator) > or if we let the dpll run as an open loop we find that the dpll has an > intrinsic jitter of approximately 2 mHz at 700KHz with a 100MHz clock. > > My question is, is there anyway to reduce the output jitter of our DPLL, > either through some kind of filtering afterwards in the design or perhaps > something more substantial when it comes to clock choice or output routing > on the physical board itself. > > > >
From: Tim Wescott on 13 Jun 2010 14:14 On 06/13/2010 08:54 AM, Vladimir Vassilevsky wrote: (top posting fixed) > crasic wrote: >> Hi all. >> >> We are using a DPLL synthesized in an FPGA as a tracking bandpass filter. >> The PLL design is based on some older IEEE papers (late 70's) and uses a >> binary phase detector and a sequential loop filter (a "Variable Reset >> Random Walk Filter" or "VR-RMF" in dsp jargon), essentially we >> reimplemented this open cores project : >> http://opencores.org/project,dpll_rwf (Boy would it have saved me time to >> have known about his core!) >> The paper which this design is based on (reference 3 on that open cores >> page) experimentally predicts frequency jitter reduction of ~5-10 fold >> over >> input jitter on a relatively noisy signal. We are getting approximately 2 >> fold reduction, but even if we got the ideal jitter filtering, it >> would not >> be enough for us. Ideally we want 50-100 fold jitter reduction, but we >> will >> take anything over 2 fold for now. >> >> When we feed the dpll a essentially jitter free signal (~0.5mHz jitter at >> 700KHz from a very expensive Stanford Research Systems function >> generator) >> or if we let the dpll run as an open loop we find that the dpll has an >> intrinsic jitter of approximately 2 mHz at 700KHz with a 100MHz clock. >> My question is, is there anyway to reduce the output jitter of our DPLL, >> either through some kind of filtering afterwards in the design or >> perhaps something more substantial when it comes to clock choice or >> output routing >> on the physical board itself. > > To begin with: FPGA doesn't mate with low jitter. No matter what > filtering is, you can expect jitter in ~100ps range, due to coupling on > the crystal. This is rather poor performance. If you need better then > that, do a specialized analog circuit. You you mean coupling on the semiconductor substrate? FPGA's make jitter, but I've always assumed it was random noise at the gates, rather than noise getting coupled in. In either case, there is a limit to how well you can do with an FPGA, beyond which you have to use more clever circuitry. -- Tim Wescott Control system and signal processing consulting www.wescottdesign.com
From: Vladimir Vassilevsky on 13 Jun 2010 14:38 Tim Wescott wrote: > On 06/13/2010 08:54 AM, Vladimir Vassilevsky wrote: > (top posting fixed) > > > To begin with: FPGA doesn't mate with low jitter. No matter what > > filtering is, you can expect jitter in ~100ps range, due to coupling on > > the crystal. This is rather poor performance. If you need better then > > that, do a specialized analog circuit. > > You you mean coupling on the semiconductor substrate? Yes. The coupling inside is substantial, and it dominates over other sources of disturbance. It is evident if you look at the spectrum. > FPGA's make jitter, but I've always assumed it was random noise at the > gates, rather than noise getting coupled in. > > In either case, there is a limit to how well you can do with an FPGA, > beyond which you have to use more clever circuitry. Signals generated by general purpose digital parts such as CPUs and FPGAs have rather poor jitter; I was surprised to see that parts advertized as "low jitter clock generators" are usually no better. Vladimir Vassilevsky DSP and Mixed Signal Design Consultant http://www.abvolt.com
|
Next
|
Last
Pages: 1 2 3 4 Prev: 2010 FIFA World Cup Manchester United Football Club football jersey Next: Anticausal filter implementation |