top | item 7612662

VHDL Verification Course

28 points| nammi | 12 years ago |stefanvhdl.com | reply

11 comments

order
[+] oflordal|12 years ago|reply
This is quite dated from a modern chip development perspective. If you are interested in learning more of where the industry is today on functional verification look at things like SystemVerilog and Contrained random verification. Things are moving to use libraries/methodologies on top of SystemVerilog like UVM (or OVM and VMM before it). Doulous has quite good introductions: https://www.doulos.com/knowhow/sysverilog/uvm/
[+] jwise0|12 years ago|reply
I haven't gotten a chance to learn UVM yet; is it as awful as VMM? VMM is (arguably) better than nothing, but there's a lot about it that's really broken [1], which can be very frustrating if you're trying to build large-scale exercisers.

If you're interested in the subject, I also recommend reading the book "SystemVerilog for Verification" [2]; it is "the book" on the subject, and although it teaches VMM, it's an excellent reference on the concept of verification to begin with. (It suffers some from the same problem that Kent Beck's Test Driven Development book has -- it verifies excessively simple things -- but IMO, the techniques that it teaches scale much better than Beck's techniques inasmuch as they're actually possible to use in real world applications.)

[1] For instance, for some laughs, take a look at the API reference for the channel datastructure, vmm_channel: http://www.vmmcentral.org/uvm_vmm_ik/files2/vmm_channel-sv.h... -- there is just so much bizarrely wrong that I can't even list it all. "Sneak" is a good place to start, though...

[2] http://www.amazon.com/SystemVerilog-Verification-Learning-Te...

[+] tonglil|12 years ago|reply
Oh boy VHDL, got my final on that on Tuesday. Nice to have learned it, but personally I appreciate the abstraction provided, by even C.

What is the applicability of this skill in the modern chip development industry?

[+] jevinskie|12 years ago|reply
Have you checked out the two-process method described in [0]? I used it to implement a dual-core MIPS subset with some relative ease. It was definitely better than dataflow style! Using records and enums also greatly improves ModelSim waveforms.

A project done in dataflow: https://github.com/jevinskie/aes-over-pcie/tree/master/sourc...

The MIPS project in two-process: https://github.com/jevinskie/mips--/tree/master/project4/sou...

[0]: http://www.gaisler.com/doc/vhdl2proc.pdf

[+] oflordal|12 years ago|reply
Verilog is more commonly used especially in the ASIC industry. VHDL is disappearing in Europe as well were it used to have some foothold. That said most chip developers are very conservative only using a subset of already limited languages like Verilog so switching between them should come easy.
[+] Brashman|12 years ago|reply
High level synthesis for C is not quite there yet to be used as a replacement for Verilog or VHDL, especially for high performance hardware. Verilog and VHDL are still commonly used for hardware design.
[+] abfan1127|12 years ago|reply
Its my understanding that VHDL is limited to mostly military contractors. The rest of the world uses SystemVerilog. I think UVM is a far better methodology to learn.