Presentation is loading. Please wait.

Presentation is loading. Please wait.

EECC250 - Shaaban #1 lec #22 Winter99 2-16-2000 The Von-Neumann Computer Model Partitioning of the computing engine into components: –Central Processing.

Similar presentations


Presentation on theme: "EECC250 - Shaaban #1 lec #22 Winter99 2-16-2000 The Von-Neumann Computer Model Partitioning of the computing engine into components: –Central Processing."— Presentation transcript:

1 EECC250 - Shaaban #1 lec #22 Winter99 2-16-2000 The Von-Neumann Computer Model Partitioning of the computing engine into components: –Central Processing Unit (CPU): Control Unit (instruction decode, sequencing of operations), Datapath (registers, arithmetic and logic unit, buses). –Memory: Instruction and operand storage. –Input/Output (I/O). –The stored program concept: Instructions from an instruction set are fetched from a common memory and executed one at a time. - Memory (instructions, data) Control Datapath registers ALU, buses CPU Computer System Input Output I/O Devices

2 EECC250 - Shaaban #2 lec #22 Winter99 2-16-2000 Hardware Components of Any Computer Processor (active) Computer Control Unit Datapath Memory (passive) (where programs, data live when running) Devices Input Output Keyboard, Mouse, etc. Display, Printer, etc. Disk Five classic components of all computers: 1. Control Unit; 2. Datapath; 3. Memory; 4. Input; 5. Output 1. Control Unit; 2. Datapath; 3. Memory; 4. Input; 5. Output } Processor

3 EECC250 - Shaaban #3 lec #22 Winter99 2-16-2000 CPU Organization Datapath Design: –Capabilities & performance characteristics of principal Functional Units (FUs): –(e.g., Registers, ALU, Shifters, Logic Units,...) –Ways in which these components are interconnected (buses connections, multiplexors, etc.). –How information flows between components. Control Unit Design: –Logic and means by which such information flow is controlled. –Control and coordination of FUs operation to realize the targeted Instruction Set Architecture to be implemented (can either be implemented using a finite state machine or a microprogram). Hardware description with a suitable language, possibly using Register Transfer Notation (RTN).

4 EECC250 - Shaaban #4 lec #22 Winter99 2-16-2000 Hardware Description Hardware visualization: –Block diagrams (spatial visualization): Two-dimensional representations of functional units and their interconnections. –Timing charts (temporal visualization): Waveforms where events are displayed vs. time. Register Transfer Notation (RTN): –A way to describe microoperations capable of being performed by the data flow (data registers, data buses, functional units) at the register transfer level of design (RT). –Also describes conditional information in the system which cause operations to come about. –A “shorthand” notation for microoperations. Hardware Description Languages: –Examples: VHDL: VHSIC (Very High Speed Integrated Circuits) Hardware Description Language, Verilog.

5 EECC250 - Shaaban #5 lec #22 Winter99 2-16-2000 Register Transfer Notation (RTN) Dependent RTN: When RTN is used after the data flow is assumed to be frozen. No data transfer can take place over a path that does not exist. No statement implies a function the data flow hardware is incapable of performing. Independent RTN: Describe actions on registers without regard to nonexistence of direct paths or intermediate registers. No predefined data flow. The general format of an RTN statement: Conditional information: Action1; Action2 The conditional statement is often an AND of literals (status and control signals) in the system (a p-term). The p-term is said to imply the action. Possible actions include transfer of data to/from registers/memory data shifting, functional unit operations etc.

6 EECC250 - Shaaban #6 lec #22 Winter99 2-16-2000 RTN Statement Examples A  B –A copy of the data in entity B (typically a register) is placed in Register A –If the destination register has fewer bits than the source, the destination accepts only the lowest-order bits. –If the destination has more bits than the source, the value of the source is sign extended to the left. CTL  T0: A = B –The contents of B are presented to the input of combinational circuit A –This action to the right of “:” takes place when control signal CTL is active and signal T0 is active.

7 EECC250 - Shaaban #7 lec #22 Winter99 2-16-2000 RTN Statement Examples MD  M[MA] –Memory locations are indicated by square brackets. –Means the memory data register receives the contents of the main memory (M) as addressed from the Memory Address (MA) register. AC(0), AC(1), AC(2),AC(3) –Register fields are indicated by parenthesis. –The concatenation operation is indicated by a comma. –Bit AC(0) is bit 0 of the accumulator AC –The above expression means AC bits 0, 1, 2, 3 –More commonly represented by AC(0-3) E  T3: CLRWRITE –The control signal CLRWRITE is activated when the condition E  T3 is active.

8 EECC250 - Shaaban #8 lec #22 Winter99 2-16-2000 CPU Design Steps 1. Analyze instruction set operations using independent RTN => datapath requirements. 2. Select set of datapath components & establish clock methodology. 3. Assemble datapath meeting the requirements. 4. Analyze implementation of each instruction to determine setting of control points that effects the register transfer. 5. Assemble the control logic.

9 EECC250 - Shaaban #9 lec #22 Winter99 2-16-2000 Instruction Processing Steps Obtain instruction from program storage Determine instruction type Obtain operands from registers Compute result value or status Store result in register/memory if needed (usually called Write Back). Update program counter to address of next instruction } Common steps for all instructions Instruction Fetch Instruction Decode Execute Result Store Next Instruction

10 EECC250 - Shaaban #10 lec #22 Winter99 2-16-2000 A Subset of MIPS Instructions ADD and SUB: addU rd, rs, rt subU rd, rs, rt OR Immediate: ori rt, rs, imm16 LOAD and STORE Word lw rt, rs, imm16 sw rt, rs, imm16 BRANCH: beq rs, rt, imm16 oprsrtrdshamtfunct 061116212631 6 bits 5 bits oprsrtimmediate 016212631 6 bits16 bits5 bits oprsrtimmediate 016212631 6 bits16 bits5 bits oprsrtimmediate 016212631 6 bits16 bits5 bits

11 EECC250 - Shaaban #11 lec #22 Winter99 2-16-2000 Overview of MIPS Instruction Micro-operations All instructions go through these two steps: –Send program counter to instruction memory and fetch the instruction. (fetch) –Read one or two registers, using instruction fields. (decode) Load reads one register only. Additional instruction execution actions (execution) depend on the instruction in question, but similarities exist: –All instruction classes use the ALU after reading the registers: Memory reference instructions use it for address calculation. Arithmetic and logic instructions (R-Type), use it for the specified operation. Branches use it for comparison. Additional execution steps where instruction classes differ: –Memory reference instructions: Access memory for a load or store. –Arithmetic and logic instructions: Write ALU result back in register. –Branch instructions: Change next instruction address based on comparison.

12 EECC250 - Shaaban #12 lec #22 Winter99 2-16-2000 Datapath Components Datapath Components Two state elements needed to store and access instructions: 1 Instruction memory: Only read access. No read control signal. 2 Program counter: 32-bit register. Written at end of every clock cycle: No write control signal. 32-bit Adder: To compute the the next instruction address. Instruction Word

13 EECC250 - Shaaban #13 lec #22 Winter99 2-16-2000 More Datapath Components Register File: Contains all registers. Two read ports and one write port. Register writes by asserting write control signal Writes are edge-triggered. Can read and write to the same register in the same clock cycle. Register File Main ALU

14 EECC250 - Shaaban #14 lec #22 Winter99 2-16-2000 Instruction Word  Mem[PC]Fetch the instruction PC  PC + 4Increment PC R[rd]  R[rs] + R[rt]Add register rs to register rt result in register rd R-Type Example: Micro-Operation Sequence For ADDU OPrs rt rdshamtfunct 6 bits 5 bits 5 bits 5 bits 5 bits 6 bits addU rd, rs, rt

15 EECC250 - Shaaban #15 lec #22 Winter99 2-16-2000 Building The Datapath Portion of the datapath used for fetching instructions and incrementing the program counter. Instruction Fetch & PC Update:

16 EECC250 - Shaaban #16 lec #22 Winter99 2-16-2000 Instruction Word  Mem[PC]Fetch the instruction PC  PC + 4Increment PC R[rt]  R[rs] OR ZeroExt[imm16]OR register rs with immediate field zero extended to 32 bits, result in register rt Example : Micro-Operation Sequence For ORI Logical Operations with Immediate Example : Micro-Operation Sequence For ORI oprsrtimmediate 016212631 6 bits16 bits5 bits ori rt, rs, imm16

17 EECC250 - Shaaban #17 lec #22 Winter99 2-16-2000 Datapath For Logical Instructions With Immediate 32 Result ALUctr Clk busW RegWr 32 busA 32 busB 555 RwRaRb 32 32-bit Registers Rs RtRd RegDst ZeroExt Mux 32 16 imm16 ALUSrc ALU

18 EECC250 - Shaaban #18 lec #22 Winter99 2-16-2000 Instruction Word  Mem[PC]Fetch the instruction PC  PC + 4Increment PC R[rt]  Mem[R[rs] + SignExt[imm16]]Immediate field sign extended to 32 bits and added to register rs to form memory load address, word at load address to register rt Example : Micro-Operation Sequence For LW Load Operations Example : Micro-Operation Sequence For LW oprsrtimmediate 016212631 6 bits16 bits5 bits lw rt, rs, imm16

19 EECC250 - Shaaban #19 lec #22 Winter99 2-16-2000 Additional Datapath Components For Loads & Stores Inputs for address and write (store) data Output for read (load) result 16-bit input sign-extended into a 32-bit value at the output

20 EECC250 - Shaaban #20 lec #22 Winter99 2-16-2000 Datapath For Loads 32 ALUctr Clk busW RegWr 32 busA 32 busB 555 RwRaRb 32 32-bit Registers Rs RtRd RegDst Extender Mux 32 16 imm16 ALUSrc ExtOp Clk Data In WrEn 32 Adr Data Memory 32 ALU MemWr Mu x W_Src

21 EECC250 - Shaaban #21 lec #22 Winter99 2-16-2000 Instruction Word  Mem[PC]Fetch the instruction PC  PC + 4Increment PC Mem[R[rs] + SignExt[imm16]]  R[rt] Immediate field sign extended to 32 bits and added to register rs to form memory store address, register rt written to memory at store address. Example : Micro-Operation Sequence For SW Store Operations Example : Micro-Operation Sequence For SW oprsrtimmediate 016212631 6 bits16 bits5 bits sw rt, rs, imm16

22 EECC250 - Shaaban #22 lec #22 Winter99 2-16-2000 Datapath For Stores ALUSrc ExtOp 32 ALUctr Clk busW RegWr 32 busA 32 busB 555 RwRaRb 32 32-bit Registers Rs Rt Rd RegDst Extender Mux 32 16 imm16 Clk Data In WrEn 32 Adr Data Memory MemWr ALU 32 Mu x W_Src

23 EECC250 - Shaaban #23 lec #22 Winter99 2-16-2000 Instruction Word  Mem[PC]Fetch the instruction PC  PC + 4Increment PC Equal  R[rs] == R[rt]Calculate the branch condition if (COND eq 0) PC  PC + 4 + ( SignExt(imm16) x 4 ) Calculate the next instruction’s PC else address PC  PC + 4 Example : Micro-Operation Sequence For BEQ Conditional Branch Example : Micro-Operation Sequence For BEQ oprsrtimmediate 016212631 6 bits16 bits5 bits beqrs, rt, imm16

24 EECC250 - Shaaban #24 lec #22 Winter99 2-16-2000 Datapath For Branch Instructions ALU to evaluate branch condition Adder to compute branch target: Sum of incremented PC and the sign-extended lower 16-bits on the instruction.

25 EECC250 - Shaaban #25 lec #22 Winter99 2-16-2000 Combining The Datapaths For Memory Instructions and R-Type Instructions Highlighted muliplexors and connections added to combine the datapaths of memory and R-Type instructions into one datapath

26 EECC250 - Shaaban #26 lec #22 Winter99 2-16-2000 Instruction Fetch Datapath Added to ALU R-Type and Memory Instructions Datapath

27 EECC250 - Shaaban #27 lec #22 Winter99 2-16-2000 A Simple Datapath For The MIPS Architecture Datapath of branches and a program counter multiplexor are added. Resulting datapath can execute in a single cycle the basic MIPS instruction: - load/store word - ALU operations - Branches

28 EECC250 - Shaaban #28 lec #22 Winter99 2-16-2000 Single Cycle MIPS Datapath Necessary multiplexors and control lines are identified here:

29 EECC250 - Shaaban #29 lec #22 Winter99 2-16-2000 Instruction Word  Mem[PC]Fetch the instruction PC  PC + 4Increment PC PC  PC(31-28),jump_target,00 Update PC with jump address : Micro-Operation Sequence For Jump: J Adding Support For Jump : Micro-Operation Sequence For Jump: J OP Jump_target 6 bits 26 bits j jump_target

30 EECC250 - Shaaban #30 lec #22 Winter99 2-16-2000 Datapath For Jump 32 PC Clk 00 Mux nPC_sel imm16 Adder 4 PC Ext Next Instruction Address Mux JUMP Shift left 2 jump_target Instruction(15-0) Instruction(25-0) 32 26 PC+4(31-28) 28 32 4

31 EECC250 - Shaaban #31 lec #22 Winter99 2-16-2000 RegDst ALUctr ALUSrc MemtoReg Equal Instruction Imm16RdRsRt Adr Instruction Memory DATA PATH ExtOp MemWr Control Unit Op Fun nPC_sel RegWr Jump_target Jump

32 EECC250 - Shaaban #32 lec #22 Winter99 2-16-2000 Single Cycle MIPS Datapath Extended To Handle Jump with Control Unit Added

33 EECC250 - Shaaban #33 lec #22 Winter99 2-16-2000 Control Signal Generation addsuborilwswbeqjump RegDst ALUSrc MemtoReg RegWrite MemWrite nPCsel Jump ExtOp ALUctr 1 0 0 1 0 0 0 x Add 1 0 0 1 0 0 0 x Subtract 0 1 0 1 0 0 0 0 Or 0 1 1 1 0 0 0 1 Add x 1 x 0 1 0 0 1 x 0 x 0 0 1 0 x Subtract x x x 0 0 0 1 x xxx func op00 0000 00 110110 001110 101100 010000 0010 10 000010 0010Don’t Care

34 EECC250 - Shaaban #34 lec #22 Winter99 2-16-2000 PLA Implementation of the Main Control op.... op.. op.. op.. op.. R-typeorilwswbeqjump RegWrite ALUSrc MemtoReg MemWrite Branch Jump RegDst ExtOp ALUop


Download ppt "EECC250 - Shaaban #1 lec #22 Winter99 2-16-2000 The Von-Neumann Computer Model Partitioning of the computing engine into components: –Central Processing."

Similar presentations


Ads by Google