CHAPTER 16 – CONTROL UNIT OPERATION

53
CHAPTER 16 – CONTROL UNIT OPERATION Andrae Darby Brian McCaul Carlos Estrada Cristina Rodriguez Yuniel Barbon

description

CHAPTER 16 – CONTROL UNIT OPERATION. Andrae Darby Brian McCaul Carlos Estrada Cristina Rodriguez Yuniel Barbon. CONTROL UNIT. - PowerPoint PPT Presentation

Transcript of CHAPTER 16 – CONTROL UNIT OPERATION

Page 1: CHAPTER 16 –  CONTROL UNIT OPERATION

CHAPTER 16 – CONTROL UNIT

OPERATIONAndrae DarbyBrian McCaul

Carlos EstradaCristina Rodriguez

Yuniel Barbon

Page 2: CHAPTER 16 –  CONTROL UNIT OPERATION

CONTROL UNITThe Control Unit can be thought of as the brain of the CPU itself. It controls based on the instructions it decodes, how other parts of the CPU and in turn, rest of the computer systems should work in order that the instruction gets executed in a correct manner.

ADA

Page 3: CHAPTER 16 –  CONTROL UNIT OPERATION

MICRO OPERATION(micro-ops or μops)

A computer executes a program

Instruction cycle: made up of smaller units: fetch, indirect, execute and interrupt with only the fetch & execute cycles always being used.

Each cycle has a number of steps see pipelining

Called micro-operations

Each step is very simple

Accomplishes very little

A

Page 4: CHAPTER 16 –  CONTROL UNIT OPERATION

MICRO OPERATION(micro-ops or μops)

Micro operations are the functional, or atomic

operations of a processor.

A

Page 5: CHAPTER 16 –  CONTROL UNIT OPERATION

MICRO OPERATION(micro-ops or μops)

A

Page 6: CHAPTER 16 –  CONTROL UNIT OPERATION

Fetch cycle The fetch cycle occurs at the beginning of each instruction

cycle and causes an instruction to be fetched from memory. The four registers used are:

Memory Address Register (MAR) Connected to address lines of the system bus Specifies address in memory for read or write ops

Memory Buffer Register (MBR) Connected to data lines of the system bus Contains last value to be stored in

or read from memory

Program Counter (PC) Holds the address of next instruction to be fetched

Instruction Register (IR) Holds the last instruction fetched

A

Page 7: CHAPTER 16 –  CONTROL UNIT OPERATION

Fetch Sequence Address of next instruction is in PC

Address (MAR) is placed on address bus

Control unit issues READ command

Result (data from memory) appears on data bus

Data from data bus copied into MBR

PC incremented by 1 (in parallel with data fetch from memory)

Data (instruction) moved from MBR to IR

MBR is now free for further data fetches

A

Page 8: CHAPTER 16 –  CONTROL UNIT OPERATION

Fetch Sequence t1: MAR <- (PC)

t2: MBR <- (memory)

PC <- (PC) +I

t3: IR <- (MBR)

(tx = time unit/clock cycle) or

t1: MAR <- (PC)

t2: MBR <- (memory)

t3: PC <- (PC) +1

IR <- (MBR)

A

Page 9: CHAPTER 16 –  CONTROL UNIT OPERATION

Rules for Grouping Micro Operations

Proper sequence must be followed MAR <- (PC) must precede MBR <- (memory)

Conflicts must be avoided Must not read & write from the same register in one time

unit.For example: MBR <- (memory) & IR <- (MBR) must not be in same cycle

Also: PC <- (PC) +I involves addition. To avoid duplication of circuitry. Use ALU to perform this addition The use of the ALU may use additional micro-operations

A

Page 10: CHAPTER 16 –  CONTROL UNIT OPERATION

QuestionsWhat is the control unit?Which instruction cycle is always used?

Page 11: CHAPTER 16 –  CONTROL UNIT OPERATION

The Indirect Cycle Happens after the fetch cycle, and fetches source operands Step 1: MAR (IR(Address))

Address field of the instruction to Memory Address Register

• Step 2: MBR Memory

Fetches the address of the operand and places in MBR

• Step 3: IR(Address) (MBR(Address))

Direct address from MBR to Instruction Register

• The IR is now in the same state as if indirect addressing had not been used

BM

Page 12: CHAPTER 16 –  CONTROL UNIT OPERATION

The Interrupt Cycle Happens when a test determines an enabled interrupt has occurred

after the execute cycle.

Step 1: MBR (PC)

Move Program Counter contents to Memory Buffer Register

Step 2: MAR Save_Address PC Routine_Address

Saved address of the stored PC to Memory Address Register and address of new interrupt routine to Program Counter

• Step 3: Memory (MBR)

Move Memory Buffer Register contents to Memory

• This is the minimum and may require additional micro-operations

BM

Page 13: CHAPTER 16 –  CONTROL UNIT OPERATION

The Execute Cycle (ADD)There is a different sequence of micro operations

for each op code. Example: An Add Instruction

ADD R1, X (This adds contents of X to R1)Might proceed like so:• Step 1: MAR (IR(Address))• Step 2: MBR Memory• Step 3: R1 (R1) + (MBR)

BM

Page 14: CHAPTER 16 –  CONTROL UNIT OPERATION

The Execute Cycle (ISZ)ISZ X Increments the location of X by 1 and if the result

if zero then the next instruction is skipped.Step 1: MAR (IR(Address))Step 2: MBR MemoryStep 3: MBR (MBR) + 1Step 4: Memory (MBR)

If ((MBR) = 0 ) then (PC (PC) + I )

BM

Page 15: CHAPTER 16 –  CONTROL UNIT OPERATION

The Execute Cycle (BSA)BSA XBranch and Save address instructionAddress of instruction following BSA instruction is

saved in X and execution continues at location X+1. X will later be used for return

Step 1: MAR (IR(Address)) MBR (PC)

Step 2: PC (IR(Address)) Memory (MBR)

Step 3: PC (PC) + I

BM

Page 16: CHAPTER 16 –  CONTROL UNIT OPERATION

The Instruction CycleEach Phase of the Instruction Cycle can be decomposed

into a sequence of elementary micro-operationsEx: one sequence each for fetch, indirect, interrupt, and

in the execute cycle, one sequence per op code.We need to tie sequences of micro-operations together,

and we so this by assuming a new 2-bit register, the Instruction Cycle Code (ICC). It designates the state of the processor by the cycle it is in as follows: 00:Fetch 01:Indirect 10:Execute 11:Interrupt

BM

Page 17: CHAPTER 16 –  CONTROL UNIT OPERATION

The Instruction Cycle (Cont.) The following flowchart shows the sequence of micro-

operations

BM

Page 18: CHAPTER 16 –  CONTROL UNIT OPERATION

QuestionsHow many bits is the ICC register?Does the sequence of micro-operations on the

execute cycle depend on the opcode?

Page 19: CHAPTER 16 –  CONTROL UNIT OPERATION

Control Of The Processor

Page 20: CHAPTER 16 –  CONTROL UNIT OPERATION

Characterization of the control unitDefine the basic elements of the processor.Describe the micro-operations that the processor

performs.Determines the function that the control unit must

perform to cause the micro-operations to be performed.

CE

Page 21: CHAPTER 16 –  CONTROL UNIT OPERATION

Basic elements of processor:ALU (functional essence of the computer)Registers (Store data internal to the processor. Contain

info needed to manage instruction sequencing. Contain data that go or come from the ALU, memory, and I/O modules)

Internal data paths (move data between registers and between ALU)

Internal data paths (Link registers to memory and I/O modules by means of a bus)

Control unit (Causes operations to happen within the processor)

CE

Page 22: CHAPTER 16 –  CONTROL UNIT OPERATION

Sequence of micro-operationsTransfer data from one register to anotherTransfer data from a register to an external

interfaceTransfer data from an external interface to a

registerPerform an arithmetic or logic operation, using

registers for input and output

CE

Page 23: CHAPTER 16 –  CONTROL UNIT OPERATION

Control Unit Functions

Sequencing: control unit causes the processor to step through a series of micro-operations in sequence, based on the program being executed

Execution: control unit causes each micro-operation to be performed

CE

Page 24: CHAPTER 16 –  CONTROL UNIT OPERATION

Control SignalsControl Unit Block Diagram

CE

Page 25: CHAPTER 16 –  CONTROL UNIT OPERATION

Control Unit InputsClock: control unit causes one micro-operation (or

set of simultaneous micro-operations)Instruction register: opcode of the current

instruction is used to determine which micro-operations to perform during the execute cycle

Flags: needed by the control unit to determine the status of the processor and the outcome of previous ALU operations

Control signals from control bus: Provides signals to the control unit (interrupt, acknowledgement)

CE

Page 26: CHAPTER 16 –  CONTROL UNIT OPERATION

Control Unit OutputsControl signal within the processor: (type 1):

cause data to be moved from one register to another. (type 2): activate ALU function.

Control signals to control bus: (type 1): control signals to memory. (type 2): control signals to the I/O modules.

CE

Page 27: CHAPTER 16 –  CONTROL UNIT OPERATION

Control Unit and the Fetch CycleMAR <- (PC) control unit activates the control signal that opens the gates

between the bits of the PC and the bits of the MAR.

MBR <- (memory) control signal opens gates, allowing MAR contents onto bus

memory read signal to bus

contents of data bus stored in MBR

signal to logic that increment PC and store the result back to PC

CE

Page 28: CHAPTER 16 –  CONTROL UNIT OPERATION

Data Paths and Control Signals

CE

Page 29: CHAPTER 16 –  CONTROL UNIT OPERATION

QuestionsThe control unit performs which 2 basic tasks?What is sequencing and execution?

Page 30: CHAPTER 16 –  CONTROL UNIT OPERATION

Internal Processor OrganizationUsually a single internal busGates control movement of data onto and off the busControl signals control data transfer to and from

external systems busTemporary registers needed for proper operation of

ALU

CR

Page 31: CHAPTER 16 –  CONTROL UNIT OPERATION

CPU withInternalBus

NOTE: A single internal bus connects the ALU and all the processor registers

CR

Page 32: CHAPTER 16 –  CONTROL UNIT OPERATION

Internal Processor Organization

Movement of data onto and off the bus from each is register possible through gates and control signals

New registers: Y and ZAid in operation of ALUSource for additional operands; temporary storage (Y

input storage; Z output storage)

ALU: combinational circuit (output is a pure function of the present input only)

Control signals activate ALU function input is transformed to output (register Z is the temporary output; ALU output is NOT connected directly to BUS)

CR

Page 33: CHAPTER 16 –  CONTROL UNIT OPERATION

Intel 8085Other components in this processor:

Incrementer/decrementer address latch avoids use of ALU for incrementing SP or PC

Interrupt control handles interrupt signalsSerial I/O control interfaces to devices

CR

Page 34: CHAPTER 16 –  CONTROL UNIT OPERATION

Intel 8085 CPU Block Diagram

CR

Page 35: CHAPTER 16 –  CONTROL UNIT OPERATION

Intel 8085 Pin

Configuration

External signals into and out of the 8085 are linked to the external system bus. These signals interface the processor and the rest of the system.

CR

Page 36: CHAPTER 16 –  CONTROL UNIT OPERATION

External SignalsAddress and Data Signals

High Address (A15-A8) Address/Data (AD7-AD0) Serial Input Data (SID) Serial Output Data (SOD)

Timing and Control Signals CLK (OUT) X1, X2 Address Latch Enable

(ALE) Status (S0, S1) IO/M Read Control (RD) Write Control (WR)

Memory and I/O Initiated Symbols Hold Held Acknowledge

(HOLDA) READY

Interrupt-Related Signals TRAP Interrupt Request (INTR) Interrupt Acknowledge

CPU Initialization RESET IN REST OUT

Voltage and Ground

CR

Page 37: CHAPTER 16 –  CONTROL UNIT OPERATION

Intel 8085 OUT Instruction Timing Diagram

CR

Page 38: CHAPTER 16 –  CONTROL UNIT OPERATION

8085 TimingThe timing of processor operations is synchronized

by the clock and controlled by the control unit with control signals.

Timing diagram shows the value of external control signals. Three machine cycles (3-5 states per machine cycle) are shown.

The Address Latch Enable (ALE) signals the start of each machine cycle from the control unit.

Must give enough time for signal level to stabilize.

CR

Page 39: CHAPTER 16 –  CONTROL UNIT OPERATION

QuestionsWhat are the temporary registers which aid in ALU

operation?What controls data transfer to and from external

bus?

Page 40: CHAPTER 16 –  CONTROL UNIT OPERATION

First Programmable ComputerZ1 began development in 1936 by Germany’s Konrad ZuseConsidered the first electrical binary programmable

computer64-word memory (each word contained 22 bits), a total of

176 bytes memory and a clock speed of 1 HzProgram through punch tape/output through punch tape

YB

Page 41: CHAPTER 16 –  CONTROL UNIT OPERATION

The Z1

Page 42: CHAPTER 16 –  CONTROL UNIT OPERATION

Beginning of Binary Operations

George Boole wanting a rapid development in electrical technology discovered logic functions

At that time all operations were done by opening and closing a switch

He realized that a combination of switches can bring out a new world of logical operations which he called binary logic

Boole also arrived to Boolean Algebra to solve this operations

YB

Page 43: CHAPTER 16 –  CONTROL UNIT OPERATION

AND Switch Circuit

Page 44: CHAPTER 16 –  CONTROL UNIT OPERATION

OR Switch Circuit

Page 45: CHAPTER 16 –  CONTROL UNIT OPERATION

NOT Switch Circuit

Page 46: CHAPTER 16 –  CONTROL UNIT OPERATION

Hardwired Implementation (1)Control Unit Key Inputs are: instruction register, the clock,

flags, and control bus signalFlags and control bus are directly useful to the CU

Each bit means something

Instruction registerProvides Op-code’s that the CU uses for instructions for

actionsCU logic simplified by decoder which takes an encode signal

and produces a single output

YB

Page 47: CHAPTER 16 –  CONTROL UNIT OPERATION

Hardwired Implementation (2)Clock

Repetitive sequence of pulsesUseful for measuring duration of micro-opsMust be long enough to allow signal propagationDifferent control signals at different times within instruction

cycleNeed a counter with different control signals for t1, t2 etc.

YB

Page 48: CHAPTER 16 –  CONTROL UNIT OPERATION

Control Unit with Decoded Inputs

Page 49: CHAPTER 16 –  CONTROL UNIT OPERATION

Control Unit LogicProcessor’s use Boolean equations to define the control

unitControl Unit controls the state of instruction cycleControls the timing generator to reset at the end of each

subcycleSubcycle

Fetch IndirectExecute InterruptYB

Page 50: CHAPTER 16 –  CONTROL UNIT OPERATION

Example of Boolean Equations

Consider the following interpretationPQ = 00 Fetch CyclePQ = 01 Indirect CyclePQ = 10 Execute CyclePQ = 11 Interrupt CycleThen if this expression defines C5:C5 = P*Q*T2 + P*q*T2This means that the control signal C5 will be asserted during

the second time unit of both the fetch and indirect cycles

YB

Page 51: CHAPTER 16 –  CONTROL UNIT OPERATION

Problems With Hard Wired DesignsComplex sequencing & micro-operation logicDifficult to design and testInflexible designDifficult to add new instructions

YB

Page 52: CHAPTER 16 –  CONTROL UNIT OPERATION

QuestionsWhat are the 4 subcycles of a control unit?What are the 4 key inputs of a control unit?

Page 53: CHAPTER 16 –  CONTROL UNIT OPERATION

Additional InformationIntel 8080:http://en.wikipedia.org/wiki/Intel_8080Processor Organization:http://www.cs.trinity.edu/About/The_Courses/

cs301/02.computer.organization/02.comp.org.htmlhttp://dsrg.mff.cuni.cz/~ceres/sch/osy/text/

ch01s03s02.php