Presentation is loading. Please wait.

Presentation is loading. Please wait.

Computer Architecture

Similar presentations


Presentation on theme: "Computer Architecture"— Presentation transcript:

1 Computer Architecture
Lecture 2: Processor, program cycle, interrupts, system bus Piotr Bilski

2 von Neumann Machine I/O devices Main memory CPU AC I/O AR ALU MBR
I/O BR Internal bus MAR Main memory PC IR CU

3 Program Program is a set of instructions which, executed is a predefined order, assures processing of the information in a desired way. Instruction is a machine word, containing information about the executed instruction and memory location, where arguments, results and the next instruction are stored.

4 Requirements for the computer system executing program (von Neumann)
Computer system should: Have finite and functionally coherent instruction list; Be able to insert program into the computer system using external devices and store instructions in the memory in the identical way as data; Store data and instructions in the memory in a way that they were equally accessible for the processor (by the addresses in the memory); Be able to process the information by sequential reading of the instructions from the memory and executing them by the processor .

5 Program vs hardware „program”
X1 X2 X3 X4 Y1 Y2 X1 X2 X3 X4 Y1 Y2 control Hard-wired program 0000: move 4 0001: add 5 0010: store 6 0011: stop

6 Computer operation Interrupt execution Instruction fetching
Interrupt cycle Interrupt execution Fetch cycle Execution cycle YES NO Instruction fetching Instruction execution Interrupts valid? START STOP

7 Register transfer language
Symbols of capital letters stand for the content M – memory A, MAR etc. – register  writing ( ) – address 0:7 – range of bits of the memory word or registry, used in the operation For instance: MAR  PC MBR  M(MAR)

8 Instruction fetching cycle
Program counter (PC) stores address of the next instruction to acquire (at the beginning it is so called entry point) Processor fetches instruction from the address pointed by PC Value of the PC is increased by 1 (unless something else is required - jump) Instruction is loaded into the instruction register (IR) Processor decodes instruction and executes operation pointed by it

9 Illustration of the instruction fetching cycle
Entry point AC MBR Address Content Move 104 Add 105 Store 106 Stop 3 5 ALU MAR  PC PC IR CU 100 MAR ADDRESS BUS

10 Illustration of the instruction fetching cycle (cont.)
DATA BUS MBR  M(MAR) Move 104 AC MBR Address Content Move 104 Add 105 Store 106 Stop 3 5 ALU READ PC IR CU CONTROL BUS MAR 101 ADDRESS BUS

11 Illustration of the instruction fetching cycle (cont.)
DATA BUS Move 104 AC MBR Address Content Move 104 Add 105 Store 106 Stop 3 5 ALU PC  PC + 1 READ PC IR CU CONTROL BUS 101 MAR 100 ADDRESS BUS

12 Illustration of the instruction fetching cycle (cont.)
DATA BUS Move 104 AC MBR Address Content Move 104 Add 105 Store 106 Stop 3 5 ALU IR  MBR Move 104 READ PC IR CU CONTROL BUS 101 MAR 100 ADDRESS BUS

13 Illustration of the instruction fetching cycle (cont.)
DATA BUS Move 104 AC MBR Address Content Move 104 Add 105 Store 106 Stop 3 5 ALU CU  IR Move 104 READ PC IR CU CONTROL BUS 101 MAR 100 ADDRESS BUS

14 Instruction execution cycle
Processor-memory data transfer between CPU and memory Processor – input/output data transfer between CPU and input/output module Data processing Arithmetic or logical operations on the data Change of the instruction execution order (for example, jump) Control Combination of the above

15 Illustration of the instruction execution cycle (cont.)
Data BUS MBR  M(104) 3 AC MBR Address Content Move 104 Add 105 Store 106 Stop 3 5 AC  MBR ALU MAR  IR(104) Move 104 READ PC IR CU CONTROL BUS 101 MAR 104 104 ADDRESS BUS

16 Next instruction fetching cycle
DATA BUS MBR  M(101) Add 105 AC MBR Address Content Move 104 Add 105 Store 106 Stop 3 5 ALU MAR  PC READ PC IR CU CONTROL BUS 101 MAR 101 ADDRESS BUS

17 Next instruction fetching cycle (cont.)
DATA BUS Add 105 AC MBR Address Content Move 104 Add 105 Store 106 Stop 3 5 ALU IR  MBR CU  IR Add 105 READ PC IR CU CONTROL BUS 101 MAR 101 ADDRESS BUS

18 Instruction format instruction argument
Operation code Address Size Sign instruction argument For example Move

19 State graph of the instruction cycle
Calculate argument addr. Fetching argument Fetch instr. Many arguments Many results Instr. decode Calculate instr. address Calculate argument addr. Data operation Saving argument No interrupts Return to data Instruction executed, fetch the next one Check for interrupts Interrupt execution

20 Interrupts Mechanism allowing to disturb the original execution order by the other system components Programmed For example, overflow, divide by zero Clock-generated Generated by the internal processor clock Used for process scheduling Input/Output From the I/O controller Hardware failure Memory parity error

21 Application of the interrupts
User program I/O program User program I/O Program 1 1 4 4 WRITE WRITE I/O instruction I/O instruction 2a @ 2b 2 Interrupt execution program 5 WRITE WRITE Stop 3a @ 3b 5 3 Stop

22 Interrupt cycle Processor checks periodically, if the interrupt ocurred It is shown by the interrupt signal If no interrupt occured, the next instruction is fetched If the interrupt occured: The executed program is suspended Its context is saved Program counter is set to the address of the first instruction of the interrupt execution program Interrupt is processed After that, the previous context is loaded to the CPU and the user program is executed from the point it was suspended

23 Multiple interrupts Two ways of the multiple interrupts execution exist Blocked interrupts Processor ignores other interrupts while the current interrupt is processed Interrupts are queued and after the current interrupt is processed, the next one (if exists) is processed Interrupts are executed in the sequence they occured Priorities Execution of the low priority interrupt can be suspended by the higher priority interrupt After execution of the higher priority interrupt the execution of the low priority interrupt is continued

24 Multiple interrupts execution
Sequential execution Priority execution User program Interrupt nr 1 User program Interrupt nr 1 Interrupt nr 2 Interrupt nr 2

25 Example of the interrupts assignment

26 Data flow in the computer modules
read write MEMORY ADRESS N words DATA DATA read write INPUT / OUTPUT MODULE Internal data ADRESS External data Internal data M ports INT. External data INSTR. ADRESS PROCESSOR DATA DATA INT. INT.

27 BUS The highway to allow communication between the devices
Includes multiple trails of the three types: data, address and control Breadth of the bus is the maximum number of bits, which can be transferred between the modules

28 The main buses ISA (1985) PCI (1993) AGP 1x/2x (1997-1998)
PCI Express (2004) SCSI (1979) Industrial busses (PROFIBUS, IEC-625)

29 Buses bandwidth

30 How does it work? Communication between the two modules Sending data:
1. Accessing the bus 2. transferring the data Receiving data: 3. Accessing the bus 4. Informing about the need to acquire data (using control lines) 5. Awaiting the incoming data

31 „Flat” bus structure (ISA)

32 Hierarchical bus structure

33 Buses categories Application Specialized Multiplexed
Arbitration method Centralized Distributed Time synchronization Synchronous Asynchronous

34 Synchronous coordination

35 Asynchronous coordination
Read

36 Asynchronous coordination
Write

37 PCI bus Proposed by Intel in 1990 Work frequency: 66 MHz
Works in 32 or 64-bit configuration Communication between the processor and the memory using bridges Valid signal lines: system (np. clock, reset) Address and data (32) Interface control Arbitration (individual!) Error information

38 PCI bus read

39 PCI bus arbitrage

40 PCI Express bus Parallel bus architecture Introducing switches
Backward compatibility with PCI Scaleable bandwidth of the bus – from 1x to 32x (depending on the used channels/slots) Speed of 250 MB/s for the single slot (for the graphic card 16x PCIe it is 4 GB/s)

41 PCI Express computer architecture


Download ppt "Computer Architecture"

Similar presentations


Ads by Google