Hardware Basics Flashcards

1
Q

Karnaugh Map

A
Logic Synthesis:
-Boolean results are
transferred from a truth
table to Karnaugh map
- Allowing most often
minimal boolean
expressions
- Useful only up to 4
variables
Design Vulnerabilities
 A 3-input encoder that assigns a 2-bit code to
each of the three different inputs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Realization of Logic Gates : CMOS Transistors

A

A CMOS gate is a system consisting of a pMOS pull-up network connected to the output 1 (or VDD) and nMOS pull-down network, connected to the output 0 (or GND).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Design Stages of Hardware implementations

A
  1. Writing HDL (RTL design)
  2. Functional Verification (e.g. logic simulation)
  3. Logic Synthesis (Combinational and Sequential) ⇒
    Netlist
  4. Placement
  5. Routing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Hardware Description Language (HDL)

A
Schematic Designs: good for
small number of gates and
connections
- HDL can describe complicated
designs, e.g.,
-         Verilog, VHDL
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Difference between HDL and
software programming
language

A
Software language programming
is translated into machine
instruction and executed on
microprocessor
- HDL is a synthetic and semantic
for modeling
- Hardware has temporal behavior
and spatial structure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Functional Verification

A
-Simulating the
behavior of digital
circuits and hardware
description languages
-Debugging before
synthesis of the circuit
-Giving different inputs
to the circuit and
observing the outputs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Logic Synthesis

A
-Creating a netlist out
of gates and
connections from the
HDL code
-Optimising the design
by reducing number of
required gates
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Place and Route

A
-Placement involves
placing the
transistors, gates or
any other element on
the die
-Routing involves
wiring of electrical
elements together
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Application-specific
Integrated Circuit
(ASIC),

A
- Custom ICs for different
purposes
- Microprocessors,
Microcontrollers and GPUs
are also ASICs
Customized IC for
particular use
- System on Chip (SoC):
microprocessors + ROM
\+ RAM + EEPROM +
flash memory
- CPUs and
microcontrollers are
ASICs!
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Programmable Logic

Device (PLD), e.g.,

A
  • Complex Programmable
    Logic Device (CPLD)
  • Field Programmable Gate
    Array (FPGA)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

ASIC

- Gate Array Design

A
  • Transistors (or Gates)
    are predefined on the
    wafer
  • No interconnection (metallitzation) between
    transistors
  • Based on the design,
    interconnections are defined in photolithographic process
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

ASIC

- Full Custom Design

A
Everything has to be
designed and defined
for the
photolithographic
process
- Advantage: reduced
area, performance
improvement
- Disadvantage:
increased
manufacturing and
design costs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

ASIC Pros and Contras

A

Advantages:
- Designing precisely different analog characteristics
(delays, capacitance, resistance, etc)
- Optimization of gate placement and routing between
them
- Improved performance
Disadvantages:
- Static circuits (reconfiguration is not possible!)
- Expensive manufacturing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Programmable Logic - CPLD and FPGA

A
- Reconfigurable logic device
after manufacturing
- Containing Logic Cells to
realize combinational and
sequential logic
- More complex and routing
architectures on FPGAs
- Larger numbers of logic
cells on FPGAs
- All CPLDs have internal
flash memory but most of
the FPGAs have no internal
flash memory
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Field Programmable Gate Arrays

A
-Programmable
and reconfigurable
logic devices
-Containing
programmable
logic cells to realize
combinatorial and sequential logic
functions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Configuring an FPGA

A
Bitstream:
configuration data
for FPGAs
- Programming the
application design
once into the NVM
in a safe
environment
17
Q

FPGA Architecture

A
Multiple Configuration Logic
Blocks (CLBs) are islands
surrounded by a sea of
interconnects.
 Each CLB contains a Lookup
Table (LUT) that is
configured to implement a
primitive logic gate.
 The interconnect is also
configurable, and it connects
CLBs together so that more
complicated circuits can be
composed from the primitive
logic gates.
 The FPGA bitstream specifies
the configuration of both the
1. CLBs and the
2. interconnects
18
Q

Combinatorial Logic is realized by

A

LUTs

19
Q

Sequential Logic is realized by

A

DFFs

20
Q

LUT Architecture

A
- Putting zero and ones
to memory cells
“programs” the
desired combinational
function
-Multiple stages of
multiplexers to realize
a large LUT
Memory cells can be
SRAM, Flash or
AntiFuse cells
21
Q

FPGA Interconnect Architecture

A
-Pass transistors act
as programmable
switches
-Pass transistor gates
are driven by
configuration
memory cells
22
Q

FPGA-based Embedded System

A
 Distinct cores with varying provenance
are on the same chip. Complex tool
chains are used to generate cores.
 An AES core can be the result of
transforming HDL code to a netlist,
then to a bitstream.
 A DSP core can be the result of
transforming a DSP application to
MATLAB algorithms, then to HDL
to a netlist, then to a bitstream.
 Celoxica is a Electronic System
Level (ESL) design flow that
transforms C code to a soft
processor core.
 Finally, a C compiler such as gcc
can transform C code to an
executable, which can run on a
hard-wired processor core