crasic
crasic

Reputation: 1928

How do I implement a synthesizable DPLL in Verilog?

Is there any straight forward way to implement an all digital phase lock in synthesizable Verilog? Everything (including the VCO) should be synthesized. The signals I'm looking to lock to are ~0.1-1% of the system clock frequency. I am using one that I've reconstructed from 1980's IEEE papers, but it doesn't behave as well as advertised.

For simplicity, the lock can work on a binary pulse signal.

Upvotes: 2

Views: 1716

Answers (1)

George
George

Reputation: 1132

In FPGA designs I normally use the built in DCMs, or PLLs.

The Cyclone 2 has up to 4 PLLs built in.

Have a look at PLLs in Cyclone 2.

Upvotes: 1

Related Questions