Cpe 252: Computer Organization1 Dr. Lo’ai Tawalbeh Chapter 7: Microprogrammed Control.

Slides:



Advertisements
Similar presentations
Princess Sumaya Univ. Computer Engineering Dept. د. بســام كحـالــه Dr. Bassam Kahhaleh.
Advertisements

Chapter 7: Microprogrammed Control
PART 5: (2/2) Processor Internals CHAPTER 15: CONTROL UNIT OPERATION 1.
ARITHMETIC LOGIC SHIFT UNIT
Chapter 16 Control Unit Operation No HW problems on this chapter. It is important to understand this material on the architecture of computer control units,
Chapter 16 Control Unit Implemntation. A Basic Computer Model.
Chapter 15 IA 64 Architecture Review Predication Predication Registers Speculation Control Data Software Pipelining Prolog, Kernel, & Epilog phases Automatic.
Chapter 7. Basic Processing Unit
Computer Organization and Architecture
Micro-operations Are the functional, or atomic, operations of a processor. A single micro-operation generally involves a transfer between registers, transfer.
Computer System Architecture ESGD2204
Chap 8. Sequencing and Control. 8.1 Introduction Binary information in a digital computer –data manipulated in a datapath with ALUs, registers, multiplexers,
Florida International University Chapter 17 Micro-programmed Control Molina, Francisco Pineiro, Michael Romero, Rubymir.
1 Microprogrammed Control Computer Organization Prof. H. Yoon MICROPROGRAMMED CONTROL Control Memory Sequencing Microinstructions Microprogram Example.
MICROPROGRAMMED CONTROL
CONTROL UNIT OPERATION MICROPROGRAMMED CONTROL. 2.
Computer System Architecture © Korea Univ. of Tech. & Edu. Dept. of Info. & Comm. Chap. 7 Microprogrammed Control 7-1 Chap. 7 Microprogrammed Control (Control.
Microprogrammed Control Unit Control Memory Sequencing Microinstructions Microprogram Example Design of Control Unit Microinstruction Format.
Instructor: Yuzhuang Hu Midterm The midterm is schedule on June 17 th, 17:30-19:30 pm. It covers the following:  VHDL Programming. 
1 Purpose of This Chapter In this chapter we introduce a basic computer and show how its operation can be specified with register transfer statements.
Lec 5 Basic Computer Organization
September 26, 2001Systems Architecture I1 Systems Architecture I (CS ) Lecture 2: Implementation of a Simplified Computer Jeremy R. Johnson Wednesday,
Instruction.
Basic Elements of Processor ALU Registers Internal data pahs External data paths Control Unit.
Control Unit Operations Chapter10:. What is Control Unit (CU)?(1)  Part of a CPU or other device that directs its operation.  Tells the rest of the.
Chapter 10 Control Unit Operation “Controls the operation of the processor”
Jeremy R. Johnson William M. Mongan
Chapter 5 Computer Organization TIT 304/TCS 303. Purpose of This Chapter In this chapter we introduce a basic computer and show how its operation can.
Types of Micro-operation  Transfer data between registers  Transfer data from register to external  Transfer data from external to register  Perform.
Functions of Processor Operation Addressing modes Registers i/o module interface Memory module interface Interrupts.
Basic Computer Organization and Design
CENTRAL PROCESSING UNIT
Chapter 4 The Von Neumann Model
Chap 7. Register Transfers and Datapaths
Lecture on Microcomputer
Micro-Operations A computer executes a program Fetch/execute cycle
Winter 2017 S. Areibi School of Engineering University of Guelph
Chapter 4 The Von Neumann Model
William Stallings Computer Organization and Architecture
William Stallings Computer Organization and Architecture 7th Edition
Computer Organization and Design
BASIC COMPUTER ORGANIZATION AND DESIGN
Processor Organization and Architecture
Overview Control Memory Comparison of Implementations
REGISTER TRANSFER LANGUAGE AND DESIGN OF CONTROL UNIT
Chapter 15 Control Unit Operation
MICROPROGRAMMED CONTROL
INDEX UNIT-III PPT SLIDES
BASIC COMPUTER ORGANIZATION AND DESIGN
BASIC COMPUTER ORGANIZATION AND DESIGN
Basic Processing Unit Unit- 7 Engineered for Tomorrow CSE, MVJCE.
Computer Organization and Design
Control Unit Introduction Types Comparison Control Memory
Systems Architecture I (CS ) Lecture 2: A Simplified Computer
William Stallings Computer Organization and Architecture 7th Edition
MICROPROGRAMMED CONTROL
Chapter 14 Control Unit Operation
William Stallings Computer Organization and Architecture 8th Edition
Computer Architecture
Chapter 4 The Von Neumann Model
Basic Processing Unit UNIT-5.
COMPUTER ORGANIZATION AND ARCHITECTURE
MICROPROGRAMMED CONTROL
MICROPROGRAMMED CONTROL
Computer Architecture
Chapter 7 Microprogrammed Control
UNIT – III Microprogrammed Control
Presentation transcript:

cpe 252: Computer Organization1 Dr. Lo’ai Tawalbeh Chapter 7: Microprogrammed Control

cpe 252: Computer Organization2 Control Unit Implementation Hardwired Microprogrammed Instruction code Combinational Logic Circuits Memory Sequence Counter.... Control signals Control signals Next Address Generator (sequencer) CA R Control Memory CDR Decoding Circuit Memory.... CAR: Control Address Register CDR: Control Data Register Instruction code

cpe 252: Computer Organization3 Microprogrammed Control Unit Control signals –Group of bits used to select paths in multiplexers, decoders, arithmetic logic units Control variables –Binary variables specify microoperations Certain microoperations initiated while others idle Control word –String of 1’s and 0’s represent control variables

cpe 252: Computer Organization4 Microprogrammed Control Unit Control memory –Memory contains control words Microinstructions –Control words stored in control memory –Specify control signals for execution of microoperations Microprogram –Sequence of microinstructions

cpe 252: Computer Organization5 Control Memory Read-only memory (ROM) Content of word in ROM at given address specifies microinstruction Each computer instruction initiates series of microinstructions (microprogram) in control memory These microinstructions generate microoperations to –Fetch instruction from main memory –Evaluate effective address –Execute operation specified by instruction –Return control to fetch phase for next instruction Control memory (ROM) Control word (microinstruction) Address

cpe 252: Computer Organization6 Control memory –Contains microprograms (set of microinstructions) –Microinstruction contains Bits initiate microoperations Bits determine address of next microinstruction Control address register (CAR) –Specifies address of next microinstruction Microprogrammed Control Organization Control word Next Address Generator (sequencer) CA R Control Memory (ROM) CDR External input

cpe 252: Computer Organization7 Microprogrammed Control Organization Next address generator (microprogram sequencer) –Determines address sequence for control memory Microprogram sequencer functions –Increment CAR by one –Transfer external address into CAR –Load initial address into CAR to start control operations

cpe 252: Computer Organization8 Microprogrammed Control Organization Control data register (CDR)- or pipeline register –Holds microinstruction read from control memory –Allows execution of microoperations specified by control word simultaneously with generation of next microinstruction Control unit can operate without CDR Control word Next Address Generator (sequencer) CA R Control Memory (ROM) External input

cpe 252: Computer Organization9 Microprogram Routines Routine –Group of microinstructions stored in control memory Each computer instruction has its own microprogram routine to generate microoperations that execute the instruction

cpe 252: Computer Organization10 Microprogram Routines Subroutine –Sequence of microinstructions used by other routines to accomplish particular task Example –Subroutine to generate effective address of operand for memory reference instruction Subroutine register (SBR) –Stores return address during subroutine call

cpe 252: Computer Organization11 Conditional Branching Branching from one routine to another depends on status bit conditions Status bits provide parameter info such as –Carry-out of adder –Sign bit of number –Mode bits of instruction Info in status bits can be tested and actions initiated based on their conditions: 1 or 0 Unconditional branch –Fix value of status bit to 1

cpe 252: Computer Organization12 Mapping of Instruction Each computer instruction has its own microprogram routine stored in a given location of the control memory Mapping –Transformation from instruction code bits to address in control memory where routine is located

cpe 252: Computer Organization13 Mapping of Instruction Example –Mapping 4-bit operation code to 7-bit address OP-codes of Instructions ADD AND LDA Address Mapping bits 0 xxxx 00 ADD Routine AND Routine LDA Routine Control memory

cpe 252: Computer Organization14 Address Sequencing Address sequencing capabilities required in control unit –Incrementing CAR –Unconditional or conditional branch, depending on status bit conditions –Mapping from bits of instruction to address for control memory –Facility for subroutine call and return

cpe 252: Computer Organization15 Address Sequencing Instruction code Mapping logic Multiplexers Control memory (ROM) Subroutine Register (SBR) Branch logic Status bits Microoperations Control Address Register (CAR) Incrementer MUX select select a status bit Branch address

cpe 252: Computer Organization16 Microprogram Example Computer Configuration MUX AR 100 PC 100 Address Memory 2048 x 16 MUX DR 150 Arithmetic logic and shift unit AC 15 0 SBR 60 CAR 60 Control memory 128 x 20 Control unit

cpe 252: Computer Organization17 Microprogram Example Microinstruction Format EA is the effective address Symbol OP-code Description ADD 0000AC  AC + M[EA] BRANCH 0001 if (AC < 0) then (PC  EA) STORE 0010M[EA]  AC EXCHANGE 0011AC  M[EA], M[EA]  AC Computer instruction format I Opcode Address 0 Four computer instructions F1F2F3CDBRAD F1, F2, F3: Microoperation fields CD: Condition for branching BR: Branch field AD: Address field

cpe 252: Computer Organization18 Microinstruction Fields F1MicrooperationSymbol 000NoneNOP 001AC  AC + DRADD 010AC  0CLRAC 011AC  AC + 1INCAC 100AC  DRDRTAC 101AR  DR(0-10)DRTAR 110AR  PCPCTAR 111M[AR]  DRWRITE F2MicrooperationSymbol 000NoneNOP 001AC  AC - DRSUB 010AC  AC  DROR 011AC  AC  DRAND 100DR  M[AR]READ 101DR  ACACTDR 110DR  DR + 1INCDR 111DR(0-10)  PCPCTDR F3MicrooperationSymbol 000NoneNOP 001AC  AC  DRXOR 010AC  AC’COM 011AC  shl ACSHL 100AC  shr ACSHR 101PC  PC + 1INCPC 110PC  ARARTPC 111Reserved

cpe 252: Computer Organization19 Microinstruction Fields CDCondition Symbol Comments 00Always = 1UUnconditional branch 01DR(15) IIndirect address bit 10AC(15)SSign bit of AC 11AC = 0ZZero value in AC BR Symbol Function 00 JMP CAR  AD if condition = 1 CAR  CAR + 1 if condition = 0 01 CALL CAR  AD, SBR  CAR + 1 if condition = 1 CAR  CAR + 1 if condition = 0 10 RET CAR  SBR (Return from subroutine) 11 MAP CAR(2-5)  DR(11-14), CAR(0,1,6)  0

cpe 252: Computer Organization20 Symbolic Microinstruction  Sample FormatLabel: Micro-ops CD BR AD  Label may be empty or may specify symbolic address terminated with colon  Micro-ops consists of 1, 2, or 3 symbols separated by commas  CD one of {U, I, S, Z} U: Unconditional Branch I: Indirect address bit S: Sign of AC Z: Zero value in AC  BR one of {JMP, CALL, RET, MAP}  ADone of {Symbolic address, NEXT, empty}

cpe 252: Computer Organization21 Fetch Routine  Fetch routine - Read instruction from memory - Decode instruction and update PC AR    PC DR   M[AR], PC  PC + 1 AR  DR(0-10), CAR(2-5)  DR(11-14), CAR(0,1,6)  0 Symbolic microprogram for fetch routine: ORG 64 PCTAR U JMP NEXT READ, INCPC U JMP NEXT DRTAR U MAP FETCH: Binary microporgram for fetch routine: Binary address F1 F2 F3 CD BR AD Microinstructions for fetch routine:

cpe 252: Computer Organization22 Symbolic Microprogram Control memory: bit words First 64 words: Routines for 16 machine instructions Last 64 words: Used for other purpose (e.g., fetch routine and other subroutines) Mapping: OP-code XXXX into 0XXXX00, first address for 16 routines are 0( ), 4( ), 8, 12, 16, 20,..., 60 ORG 0 NOP READ ADD ORG 4 NOP ARTPC ORG 8 NOP ACTDR WRITE ORG 12 NOP READ ACTDR, DRTAC WRITE ORG 64 PCTAR READ, INCPC DRTAR READ DRTAR I U S U I U I U I U CALL JMP CALL JMP CALL JMP CALL JMP MAP JMP RET INDRCT NEXT FETCH OVER FETCH INDRCT FETCH INDRCT NEXT FETCH INDRCT NEXT FETCH NEXT ADD: BRANCH: OVER: STORE: EXCHANGE: FETCH: INDRCT: Label Microops CD BR AD Partial Symbolic Microprogram

cpe 252: Computer Organization23 Binary Microprogram Address Binary Microinstruction Micro Routine Decimal Binary F1 F2 F3 CD BR AD ADD BRANCH STORE EXCHANGE FETCH INDRCT

cpe 252: Computer Organization24 Design of Control Unit

cpe 252: Computer Organization25 Microprogram Sequencer 3210 S1S1 MUX1 External (MAP) SBR Load Incrementer CAR Input logic I0I0 T MUX2 Select 1 I S Z Test Clock Control memory MicroopsCDBRAD L I1I1 S0S0...

cpe 252: Computer Organization26 Input Logic for Microprogram Sequencer Input logic I0I0 I1I1 T MUX2 Select 1 I S Z Test CD Field of CS From CPU BR field of CS L(load SBR with PC) for subroutine Call S0S1S0S1 for next address selection I1I0T Meaning Source of Address S 1 S 0 L 000 In-Line CAR JMP CS(AD) In-Line CAR CALL CS(AD) and SBR <- CAR x RET SBR x MAP DR(11-14) 11 0 L S1 = I1 S 0 = I 0 I 1 + I1’T L = I 1 ’I0T Input Logic