chapter 6 digital system design 242-208 digital systems and logic designs

48
Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Upload: daphne-craley

Post on 15-Dec-2015

228 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Chapter 6Digital System Design

242-208 Digital Systems and Logic Designs

Page 2: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Content

•Programmable Logic Devices (PLDs)•PLD programming•Combinational PLDs•Sequential PLDs•Field programmable gate arrays (FPGAs)

•Systematic Design•ASM methods and charts•Controller and data processor designs

•References

Page 3: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

PLD: Why we need ?

Design is more economical to implement using a fewLarge chips than many small chips.

Design and fabrication time for VLSI chips are extremely long

PLD can be mage in large volume and PROGRAMMED toimplement large numbers of different low-volume designs

Page 4: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

What is PLD ?An IC that contains large numbers of gates, flip-flops, etc. that can be configured by the user to perform different functions

Two PLD types which are : SPLD (Simple PLD) CPLSs (Complex PLD)

Page 5: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

PLD programming methods: Antifuse technology Two metal layers sandwich a layer of non-conductive, amorphous silicon. When voltage is applied to this middle layer, the amorphous silicon is turned into polysilicon, which is conductive.

After

Page 6: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

PLD programming methods: Floating gate

Used in EPROM device !!

High voltage applied to the Drain, electrons jump to gate 1

Current cannot passed since no channel for carrier charge. Potential energy is still high !!

UV light strikes electrons,causes more enough energy for electrons to jump back to the channel,The transistor starts conducting !!

Page 7: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

PLD programming methods: SRAM

Page 8: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Combinational PLD:PROM Programmable Read Only Memory (PROM) :A memory device that stores data at specific locationsthat can be addressed through a set of address pins. Another view : a large array of AND gates followed by a large array of OR gates

Page 9: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Combinational PLD:PLA Programmable Logic Array (PAL) : Both arrays of logic AND and OR are programmable

Page 10: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Combinational PLD:PAL Programmable Array Logic (PAL) consists of a programmable array of AND gates that connect to a fixedarray of OR gates

The PAL structure allows any SOP expression with a defined number ofvariables to be implemented

Page 11: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Combinational PLD:GAL A PAL that can be reprogrammed.

Page 12: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Sequential PLD: Consists of combinational PLDs with a set of FFs.See the diagram of IC PAL16R8.

Page 13: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Sequential PLD: Implement three-bit Gray code counter using PAL16R8

Page 14: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Complex PLD

•Programmable PLD blocks•Programmable interconnects•Electrically erasable links

Page 15: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Field Programmable Gate ArrayWhy we need FPGA ?

Large complex functions(millions gates)Customised designExpensive to design (in small quantities)Hard to design and long design cyclesNot reprogrammableHigh risks

Limited complexityThousands of gatesCheap and easy to designReprogrammable

Page 16: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Field Programmable Gate ArrayWhy we need FPGA ?

InexpensiveEasy and rapid design PrototypingReprogrammable

Page 17: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Field Programmable Gate Array

Simple programmable Logic blocksMassive of programmable interconnects

FPGA architecture

Page 18: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

FPGA CLB

Look up tableFF, registers, clock storage elementsMUX

CLBFPGA architecture

Page 19: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

FPGA CLB with Look Up Table LUT contains memory cells to implement logic functionEach cell holds ‘0’ or ‘1’Programmed with outputs of truth tableInputs select content of one of the cells as output

Page 20: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

What is in a LUT ?4 input – 16 outputs LUT requires 16 storage elementswith 16 latches.

Page 21: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

FPGA CLBLarger logic functions built by connecting many CLBstogether

Page 22: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Programmable routingConnections routing signals between CLBsDetermined by SRAM cells

Page 23: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Programmable routing

Page 24: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Programmable routing Switch matrix

Page 25: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

FPGA : I/O Blocks

Page 26: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Systematic DesignFor circuit design:

small circuit : gate-level design (truth tables, K maps, etc) large circuit : block-level design (ICs)

Larger digital systems need more abstract and systematic design techniques.Systematic design methodology :

Top-down approachPartitioningDeveloping overall architecture Detailing hardware.

Page 27: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Systematic Design : Top-down approach

Starting from original problem and gradually refine it towards solution.Steps for a top-down design procedure:

Specify the problem clearly (at global/top level without unnecessary details).

Break the problem into smaller sub-problems.Repeat the process until sub-problems are small

enough to be solved directly.

Page 28: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Systematic Design : Top-down approach

Relevant to goal-directed approach

State goal, then find sub-goals to solve main goal.Repeat until sub-goals are directly solvable.

Page 29: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Systematic Design : PartitioningA digital system consists of two components

A control algorithm (Controller)An architecture (Data processor)

Control unit (Controller)

Data Processor (Architecture)

Commands

Input data

External command

Status condition

Output data

Page 30: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

ASM Algorithmic State Machine (ASM) Chart is a high-level flowchart-like notation to specify the hardware algorithms in digital systems to obtain “control” and “data processor” units.Major differences from flowcharts are:

only three box types:- 1) state box (similar to operation box), 2) decision box 3) conditional box

contains exact (or precise) timing information while flowcharts impose a relative timing order for the operations.

Page 31: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Components of ASM chart State box Rectangular shape One entry point and one exit point Used to specify one or more operations which could be simultaneously completed in one clock cycle.

one or more operations

statebinary code

Page 32: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Components of ASM chart Decision box Diamond in shapeOne entry point but multiple exit points Used to specify a number of alternative paths that can be followed.

deciding factors

deciding factors

Page 33: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Components of ASM chart Conditional box Rectangle with rounded cornersAlways follows a decision box and contains one or more conditional operations that are only invoked when the path containing the conditional box is selected by the decision box.

conditional operations

Page 34: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Example of using ASM chartInitial state

S

A 0F 0

A A + 1

A2

E 0 E 1

A3

F 1

0

0

0

1

1

1

T2

T1

T0

Init S=0 if S equal 1 { A = 0 F = 0 } increase A if A2 equal 1 { E =1 if A3 equal 1 { F = 1 } }

Page 35: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Register operationRegisters present in the data processor for storing and processing data. Flip-flops (1-bit registers) and memories (set of registers) are also considered as registers.The register operations are specified in either the state and/or conditional boxes, and are written in the form:

destination register function(other registers)

Page 36: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Timing in ASM chartsInitial state

S

A 0F 0

A A + 1

A2

E 0 E 1

A3

F 1

0

0

0

1

1

1

T2

T1

T0Precise timing is implicitly presented in ASM charts.Each state box, together with its immediately following decision and conditional boxes, occurs within one clock cycle.A group of boxes which occur within a single clock cycle is called an ASM block.

Page 37: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Timing in ASM chartsOperations of ASM can be illustrated through a timing diagram.Two factors which must be considered are

operations in an ASM block occur at the same time in one clock cycledecision boxes are dependent on the status of the previous clock cycle (that is, they do not depend on operations of current block)

Page 38: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Timing in ASM charts

A = A4A3A2A1

Initial state

S

A 0F 0

A A + 1

A2

E 0 E 1

A3

F 1

0

0

0

1

1

1

T2

T1

T0

clock 1 2 3 4 5 6

states T0 T0 T1 T1 T1 T1

input S=0 S=1 S=0

registervalues

A=0F=0

A=1

E=0

A=2

E=0

A=3

E=1

OperationsA0F0

AA+1E0

AA+1E0

AA+1E1

AA+1E1

AA+1E0

AA+1E0

AA+1E1

F1

clock 7 8 9 10 11 12 13

states T1 T1 T1 T2 T0 T0 T0

input

registervalues

A=4

E=1

A=5

E=0

A=6

E=0

A=7

E=1F=1

Operations

Page 39: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Digital system synthesisFrom ASM chart, we can synthesize

Controller logic (via State Table/Diagram)Architecture/Data Processor

Design of controller is determined from the decision boxes and the required state transitions.Design requirements of data processor can be obtained from the operations specified with the state and conditional boxes.

Page 40: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Controller synthesis procedure

Step 1: Identify all states and assign suitable codes.Step 2: Draw state diagram.Step 3: Formulate state table usingState from state boxesInputs from decision boxesOutputs from operations of state/conditional boxes.Step 4: Obtain state/output equations and draw circuit.

Page 41: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Controller synthesisInitial state

S

A 0F 0

A A + 1

A2

E 0 E 1

A3

F 1

0

0

0

1

1

1

T2

T1

T0 T0

T1

T2

Assign codes to states: T0 = 00 T1 = 01 T2 = 11

Presentstate inputs

Nextstate outputs

G1 G0 S A2 A3 G1+ G0

+ T0 T1 T2

0 0 0 X X 0 0 1 0 0

0 0 1 X X 0 1 1 0 00 1 X 0 X 0 1 0 1 0

0 1 X 1 0 0 1 0 1 0

0 1 X 1 1 1 1 0 1 0

1 1 X X X 0 0 0 0 1

Inputs from conditions in decision boxes. Outputs = present state of controller.

Page 42: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Controller synthesisDecoder + D flip-flops

-suitable for moderately large controllers.- procedure: use decoder to obtain individual states; from the state table, obtain the next-state functions by inspection.

The flip-flop input functions can be obtained directly from the state table by inspection.This is because for the D flip-flops,

the next state = flip-flop D input.Decoder is then used to provide signals to represent different states.

Page 43: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Controller synthesisD Q

D Q

2x4 decoder

T0

T1

T2

unused

G1

G0

?

?

clock

Given the state table:

Presentstate inputs

Nextstate outputs

G1 G0 S A2 A3 G1+ G0

+ T0 T1 T2

0 0 0 X X 0 0 1 0 0

0 0 1 X X 0 1 1 0 00 1 X 0 X 0 1 0 1 0

0 1 X 1 0 0 1 0 1 0

0 1 X 1 1 1 1 0 1 0

1 1 X X X 0 0 0 0 1

The inputs of the D flip-flops for G1 and G0 are

DG1 = T1.A2.A3 DG0 = T0.S + T1

Page 44: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Controller synthesis

D Q

D Q

2x4 decoder

T0

T1

T2

unused

G1

G0

clock

A2

A3

S

Page 45: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Data processor synthesisArchitecture is more difficult to design than controller.Nevertheless, it can be deduced from the ASM chart. In particular, the operations from the ASM chart determine:

What registers to useHow they can be connectedWhat operations to supportHow these operations are activated.

Guidelines:always use high-level unitssimplest architecture possible.

Page 46: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Data processor synthesisInitial state

S

A 0F 0

A A + 1

A2

E 0 E 1

A3

F 1

0

0

0

1

1

1

T2

T1

T0

Various operations are:Counter incremented (A A + 1) when state = T1.Counter cleared (A 0) when state = T0 and S = 1.E is set (E 1) when state = T1 and A2 = 1.E is cleared (E 0) when state = T1 and A2 = 0.F is set (F 1) when state = T2.

Deduce:One 4-bit register A (e.g.: 4-bit synchronous counter with clear/increment).Two flip-flops needed for E and F (e.g.: JK flip-flops).

Page 47: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

Data processor synthesis

Controller

K

J Q

K

J Q

Clk

4-bit syn. counter A

A2

A1A2

A3

A3A4

start S

E

F

clock

CP

count

clear

T2

T1

T0

Page 48: Chapter 6 Digital System Design 242-208 Digital Systems and Logic Designs

References[1] A. T. T. Choy, Lecture notes on CS1104-Computer Organization.[2] M. M. Mano, Digital Design 3rd , Prentice-Hall.[3] John Coughlan, Lecture note on Introduction to Programmable Logic Device.[4] P. Cheung, Lecture note on Programmable Logic Devices.[5] F. Floyd, Digital Fundamentals 9th Edition, Prentice-Hall.