element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
FPGA
  • Technologies
  • More
FPGA
Blog The Art of FPGA Design - Post 3
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join FPGA to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: fpgaguru
  • Date Created: 24 Jul 2018 3:53 PM Date Created
  • Views 2183 views
  • Likes 10 likes
  • Comments 5 comments
  • vhdl
  • fpga_art
Related
Recommended

The Art of FPGA Design - Post 3

fpgaguru
fpgaguru
24 Jul 2018

Two Free VHDL Books

 

If you installed Vivado WebPACK, the free version of Xilinx FPGA design tools, you are ready now to start creating your first hardware design. There are at least three different ways to program a Xilinx FPGA today, using a hardware description language like VHDL or Verilog/SystemVerilog, using Vivado HLS using C/C++ and Vivado SystemGenerator or ModelComposer which requires Matlab and Simulink. Each design flow has advantages and disadvantages and the third one is not free.

 

HDL languages like VHDL and Verilog are mature design languages, FPGA design in the last 20 years has been done more or less entirely using HDL flows. HLS is a much more recent design flow, it provides a higher abstraction level and faster simulation times but lower performance in terms of speed and device utilization.

 

We will start for now by using VHDL. In the 90s we had a fierce HDL language war, hardware designers debating endlessly which one is better, VHDL or Verilog? It turned out that both sides were right and the best tool is the one you know how to use. Today's HDL simulation and synthesis tools let you mix and match the two HDL languages and you can use other people's code in your design even if it is not your favorite HDL dialect.

 

This will not be a VHDL 101 style course, I will assume that you have at least a basic level knowledge of the language. If that's not the case, in the same spirit of free everything I highly recommend Peter Ashenden's 1990 "The VDHL Cookbook" - old but good, it's the book I used to learn VHDL:

https://tams.informatik.uni-hamburg.de/vhdl/doc/cookbook/VHDL-Cookbook.pdf

 

Another good resource is "Free Range VHDL, the no-frills guide to writing powerful code for your digital implementations" by Fabrizio Tappero, Bryan Mealy. You can download a free PDF copy from here:

http://freerangefactory.org/

 

Finally, not a free book but a very useful one if you want to bring your VHDL coding skills into the 21st century "VHDL 2008: Just the New Stuff" by the same Peter Ashenden and Jim Lewis, a well known VHDL expert:

https://www.amazon.com/VHDL-2008-Stuff-Systems-Silicon/dp/0123742498/ref=sr_1_1?ie=UTF8&qid=1531850195&sr=8-1&keywords=VHDL-2008+just+the+new

 

In the next few posts I will talk about VHDL coding styles and how to create efficient and high speed FPGA designs, how to write generic and reusable code, VHDL-93 vs VHDL-2008 and other similar subject matters.

 

Back to the top: The Art of FPGA Design

  • Sign in to reply

Top Comments

  • fpgaguru
    fpgaguru over 7 years ago in reply to johnbeetem +4
    Yes, the HDL language wars are a thing of the past, we have moved along. If you live in Verilog land you should probably start looking into SystemVerilog. If you are trying to learn Verilog right now you…
Parents
  • DAB
    DAB over 7 years ago

    Yes, I remember the wars well.

    The die hard hardware folks were very biased about any "software" like description language for implementing the sacred hardware circuits.

     

    To be fair, their were equal battles among the various software languages and passions ran very high.

     

    As a systems engineer, I readily saw the value of circuit description languages, and as the lines of software and hardware blurred, I found it very useful that everyone was using similar constructs to describe what the entire system was intended to do. The similarities allowed both sides to easily agree to where the logic transitioned between subsystems.

     

    DAB

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Comment
  • DAB
    DAB over 7 years ago

    Yes, I remember the wars well.

    The die hard hardware folks were very biased about any "software" like description language for implementing the sacred hardware circuits.

     

    To be fair, their were equal battles among the various software languages and passions ran very high.

     

    As a systems engineer, I readily saw the value of circuit description languages, and as the lines of software and hardware blurred, I found it very useful that everyone was using similar constructs to describe what the entire system was intended to do. The similarities allowed both sides to easily agree to where the logic transitioned between subsystems.

     

    DAB

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube