Hardware Design with VHDL Course Introduction ECE 443 Hardware - - PowerPoint PPT Presentation

hardware design with vhdl course introduction ece 443
SMART_READER_LITE
LIVE PREVIEW

Hardware Design with VHDL Course Introduction ECE 443 Hardware - - PowerPoint PPT Presentation

Hardware Design with VHDL Course Introduction ECE 443 Hardware Design with VHDL Instructors: ECE: Jim Plusquellic FMAC: Craig Kief and Steve Suddarth Text: FPGA Prototyping By VHDL Examples, Xilinx Spartan-3 Version, Pong P. Chu, ISBN:


slide-1
SLIDE 1

Hardware Design with VHDL Course Introduction ECE 443 ECE UNM 1 (9/2/08) Hardware Design with VHDL Instructors: ECE: Jim Plusquellic FMAC: Craig Kief and Steve Suddarth Text: FPGA Prototyping By VHDL Examples, Xilinx Spartan-3 Version, Pong P. Chu, ISBN: 978-0-470-18531-5 Supplementary texts: The Design Warrior’s Guide to FPGAs, Devices, Tools and Flows, Clive "Max" Maxfield, ISBN: 0-7506-7604-3 Web: http://www.ece.unm.edu/faculty/jimp/443 Web: http://www.ece443.com/

slide-2
SLIDE 2

Hardware Design with VHDL Course Introduction ECE 443 ECE UNM 2 (9/2/08) Course Description This course covers:

  • Programmable device technologies and architectures
  • Hardware description languages: VHDL
  • Design flows
  • Finite state machines (FSM)
  • System design considerations
  • FPGA hardware

Prerequisites: ECE 338: Intermediate Logic Design (C or better) Familiarity with Test & Measurement equipment Familiarity with FSM design

slide-3
SLIDE 3

Hardware Design with VHDL Course Introduction ECE 443 ECE UNM 3 (9/2/08) EDA Electronic design automation (EDA) is the practice of using computer-based software systems to design VLSI circuits. Many tools exist within EDA -- we focus here on the hardware description lan- guages (HDL), in particular VHDL. HDLs enable designers to write computer-based descriptions of the proper- ties, signals and functionality of a circuit. Traditional approach for the designer is to work at the gate or transistor level. Today, designers capture their designs in software, at higher levels of abstrac- tion. This methodology is coupled with synthesis tools to translate and opti- mize the description of the design. Synthesis engines map the design to physical parts such as an ASIC or FPGA.

slide-4
SLIDE 4

Hardware Design with VHDL Course Introduction ECE 443 ECE UNM 4 (9/2/08) EDA Despite the powerful features available in such an approach, HDLs have not been widely accepted because:

  • Many designs are of a size and complexity that allow schematic entry to be

used successfully.

  • Many engineers lack a working familiarity with HDLs.

Design flow Design specifications summarize the functional behavior, timing require- ments, and other relevant attributes including speed, power and area. Design entry is the process of encapsulating a representation of the design, i.e., schematic, state transition diagrams, HDL, etc. Each step in the design flow either:

  • Creates a database supporting the design flow
  • Verifies that the design meets specific criteria
slide-5
SLIDE 5

Hardware Design with VHDL Course Introduction ECE 443 ECE UNM 5 (9/2/08) Design Flow A design flow starts with design entry and ends with photomasks or a pro- gramming file (for FPGAs). A successful design might require multiple, iterative passes through all or part of this flow. Create gate-level desc. Verify/Simulate Verify timing

(consider testability) (generate test patterns)

Create masks DRC/extract parasitics Write VHDL

(consider testability)

Verify/Simulate Synthesize/optimize gate-level netlist First design flow Second design flow

slide-6
SLIDE 6

Hardware Design with VHDL Course Introduction ECE 443 ECE UNM 6 (9/2/08) Design Flow There are several physical realizations of the design in hardware. Each offers trade-offs with respect to time-to-market, cost, and performance. NRE cost, process complexity, density, speed, complexity Market volume to amortize, time to prototype PLDs FPGAs, gate arrays

  • std. cells

full-custom VLSI course This course

slide-7
SLIDE 7

Hardware Design with VHDL Course Introduction ECE 443 ECE UNM 7 (9/2/08) Design Entry As indicated, design entry encapsulates a description of the design in a data- base that serves subsequent steps in the design flow. Schematics and HDLs are the two commonly used modes of entry. Schematic entry focuses on the structural detail of the design. Advantages: Familiarity of the designer with this visual format Disadv: Supports only a low to moderate level of circuit complexity. Almost all CAD tools support this mode of design entry, many with fancy graphical interfaces and verification tools. Divide and conquer through hierarchical decomposition is extensively used. c_out sum a b Schematic Symbol a b sum c_out

slide-8
SLIDE 8

Hardware Design with VHDL Course Introduction ECE 443 ECE UNM 8 (9/2/08) Design Entry A HDL is a programming language with special constructs and semantics to model, represent, and simulate the function and timing of the hardware. Variables are used to represent electrical signals. Their semantics include both a value and time. This allows the temporal relationship of the signals to be described, generated and manipulated. Tools exist that convert the HDL text to schematic automatically. HDLs allow the designer to describe the design as a structural entity (such as that required by schematic). HDLs also allow the designer to describe the design as a behavioral entity, using procedural code. This decouples the description of the design from actual physical hard- ware.