1/1/ / faculty of Electrical Engineering eindhoven university of technology Introduction Part 3: Input/output and co-processors dr.ir. A.C. Verschueren.

Slides:



Advertisements
Similar presentations
Computer Architecture
Advertisements

1/1/ / faculty of Electrical Engineering eindhoven university of technology Memory Management and Protection Part 3:Virtual memory, mode switching,
1/1/ / faculty of Electrical Engineering eindhoven university of technology Architectures of Digital Information Systems Part 1: Interrupts and DMA dr.ir.
1/1/ / faculty of Electrical Engineering eindhoven university of technology Processor support devices Part 1:Interrupts and shared memory dr.ir. A.C. Verschueren.
I/O Unit.
Computer System Overview
CSCI 4717/5717 Computer Architecture
1/1/ / faculty of Electrical Engineering eindhoven university of technology Architectures of Digital Information Systems Part 2: Programmable I/O and Multiprocessors.
1/1/ / faculty of Electrical Engineering eindhoven university of technology Introduction Part 1: Bits, bytes and a simple processor dr.ir. A.C. Verschueren.
1 Lecture 2: Review of Computer Organization Operating System Spring 2007.
6-1 I/O Methods I/O – Transfer of data between memory of the system and the I/O device Most devices operate asynchronously from the CPU Most methods involve.
Architectural Support for Operating Systems. Announcements Most office hours are finalized Assignments up every Wednesday, due next week CS 415 section.
1 Computer System Overview OS-1 Course AA
Chapter 7 Interupts DMA Channels Context Switching.
Basic Input/Output Operations
Chapter 16 Control Unit Implemntation. A Basic Computer Model.
Midterm Tuesday October 23 Covers Chapters 3 through 6 - Buses, Clocks, Timing, Edge Triggering, Level Triggering - Cache Memory Systems - Internal Memory.
TECH CH03 System Buses Computer Components Computer Function
1 Interrupts INPUT/OUTPUT ORGANIZATION: Interrupts CS 147 JOKO SUTOMO.
Computer Organization and Assembly language
INPUT/OUTPUT ORGANIZATION INTERRUPTS CS147 Summer 2001 Professor: Sin-Min Lee Presented by: Jing Chen.
1/1/ / faculty of Electrical Engineering eindhoven university of technology Input/Output devices Part 3: Programmable I/O and DSP's dr.ir. A.C. Verschueren.
What are Exception and Interrupts? MIPS terminology Exception: any unexpected change in the internal control flow – Invoking an operating system service.
CS-334: Computer Architecture
Interrupts. 2 Definition: An electrical signal sent to the CPU (at any time) to alert it to the occurrence of some event that needs its attention Purpose:
3/11/2002CSE Input/Output Input/Output Control Datapath Memory Processor Input Output Memory Input Output Network Control Datapath Processor.
Interrupts. What Are Interrupts? Interrupts alter a program’s flow of control  Behavior is similar to a procedure call »Some significant differences.
1 Computer System Overview Chapter 1. 2 n An Operating System makes the computing power available to users by controlling the hardware n Let us review.
MICROPROCESSOR INPUT/OUTPUT
Contact Information Office: 225 Neville Hall Office Hours: Monday and Wednesday 12:00-1:00 and by appointment.
CHAPTER 3 TOP LEVEL VIEW OF COMPUTER FUNCTION AND INTERCONNECTION
I/O management is a major component of operating system design and operation Important aspect of computer operation I/O devices vary greatly Various methods.
Computer Architecture Lecture 2 System Buses. Program Concept Hardwired systems are inflexible General purpose hardware can do different tasks, given.
EEE440 Computer Architecture
Accessing I/O Devices Processor Memory BUS I/O Device 1 I/O Device 2.
13-Nov-15 (1) CSC Computer Organization Lecture 7: Input/Output Organization.
CSNB374: Microprocessor Systems Chapter 5: Procedures and Interrupts.
ECEG-3202 Computer Architecture and Organization Chapter 3 Top Level View of Computer Function and Interconnection.
Interrupt driven I/O. MIPS RISC Exception Mechanism The processor operates in The processor operates in user mode user mode kernel mode kernel mode Access.
CE Operating Systems Lecture 2 Low level hardware support for operating systems.
CE Operating Systems Lecture 2 Low level hardware support for operating systems.
Chapter 6: Computer Components Dr Mohamed Menacer Taibah University
Dr Mohamed Menacer College of Computer Science and Engineering, Taibah University CE-321: Computer.
Lecture 1: Review of Computer Organization
IT3002 Computer Architecture
Interrupt driven I/O Computer Organization and Assembly Language: Module 12.
Copyright © 2007 by Curt Hill Interrupts How the system responds.
Group 1 chapter 3 Alex Francisco Mario Palomino Mohammed Ur-Rehman Maria Lopez.
بسم الله الرحمن الرحيم MEMORY AND I/O.
9/20/6Lecture 3 - Instruction Set - Al1 Exception Handling.
MICROPROCESSOR DETAILS 1 Updated April 2011 ©Paul R. Godin prgodin gmail.com.
CS-280 Dr. Mark L. Hornick 1 Sequential Execution Normally, CPU sequentially executes instructions in a program Subroutine calls are synchronous to the.
Chapter 3 System Buses.  Hardwired systems are inflexible  General purpose hardware can do different tasks, given correct control signals  Instead.
1 Device Controller I/O units typically consist of A mechanical component: the device itself An electronic component: the device controller or adapter.
Interrupts and Exception Handling. Execution We are quite aware of the Fetch, Execute process of the control unit of the CPU –Fetch and instruction as.
Introduction to Exceptions 1 Introduction to Exceptions ARM Advanced RISC Machines.
Architectures of Digital Information Systems Part 1: Interrupts and DMA dr.ir. A.C. Verschueren Eindhoven University of Technology Section of Digital.
Chapter 3 Top Level View of Computer Function and Interconnection
Computer System Overview
ECEG-3202 Computer Architecture and Organization
Chapter 13: I/O Systems.
Presentation transcript:

1/1/ / faculty of Electrical Engineering eindhoven university of technology Introduction Part 3: Input/output and co-processors dr.ir. A.C. Verschueren Eindhoven University of Technology Section of Digital Information Systems

1/1/ / faculty of Electrical Engineering eindhoven university of technology What IS communication? For a computer to do any useful work, it must communicate with its surroundings 'Communication' consists out of two things 1)Information transfer 2)Synchronisation These may be present in variable amounts, from pure (continuous) information transfer to pure synchronisation First, clear a common misconception... no user interface  no communication

1/1/ / faculty of Electrical Engineering eindhoven university of technology address 0 7 decoder addr ‘Memory mapped’ input/output Addresses in memory space are used to access the I/O ports with normal memory read/writes –More ports possible by extra address decoding input port output port 1 memory CPU inputoutput memory 4 'real' data addr read write 4..7 select 0 1

1/1/ / faculty of Electrical Engineering eindhoven university of technology Separate input/output (address) space The CPU uses extra control signals (and special instructions) to access input and output ports –More ports possible by adding control signals or by using the address bus to encode port addresses CPU memory input output data read inread write addr out write

1/1/ / faculty of Electrical Engineering eindhoven university of technology Ports and synchronisation Input ports transfer data to the processor data bus Output ports 'latch' (remember) the data provided by the processor between output accesses Synchronisation of data transfer can be done –Use separate output port bits as synchronisation signal –Use read/write/in/out signals for synchronisation –Receiving synchronisation signals via input port bits is very time consuming: they need continuous checking

1/1/ / faculty of Electrical Engineering eindhoven university of technology Receiving synchronisation signals It is much better to let the synchronisation signal itself inform the CPU that it has become activated ! –Add hardware to the CPU which 'listens' to a synchronisation signal –When activity is detected, this hardware... 1)Stops whatever the CPU was doing 2)Handles the synchronisation signal by calling a subroutine –At return from this subroutine, the program which was running is continued as if nothing has happened This forms the basis of the 'interrupt' mechanism –The subroutine started by the hardware is called 'interrupt routine'

1/1/ / faculty of Electrical Engineering eindhoven university of technology Basic interrupt hardware and operation An input pin on the CPU is checked at the end of handling each instruction –The PC is saved and a JUMP (to a specific address) is performed if this pin is found to be active –At the end of the interrupt routine, the PC must be restored to continue with the interrupted program –The interrupt routine should not modify storage locations (memory AND registers) used by this program …unless they form the communication medium between the interrupt routine and the program !

1/1/ / faculty of Electrical Engineering eindhoven university of technology Saving & restoring PC and other registers Use separate register sets for the main program and the interrupt routines – Limited number of interrupts, no recursion possible + Extremely fast switching, interrupt 'tasks' possible Save register set in fixed memory locations – Much slower switching, no recursion possible + Simple hardware if most of work done in software Save register set on the stack – Still slow in switching + Recursion possible, can use existing hardware (for CALL, RET, PUSH, POP)

1/1/ / faculty of Electrical Engineering eindhoven university of technology Where to start the interrupt routine ? At hardware-fixed locations in program memory – Very inflexible, number of interrupts limited + Relatively simple hardware External logic provides start address (input port) – Complex hardware outside the CPU + Can be very flexible, simple hardware in CPU Use a table in memory indexed by interrupt nr. – Special hardware in CPU (moderate complexity) + Reasonable flexibility, efficiency and speed

1/1/ / faculty of Electrical Engineering eindhoven university of technology Importance of interrupts Not all interrupts are equally important 1)Interrupt routines may not be interrupted by less important ones –If a less important interrupt occurs, this must be remembered so that its routine can be started a.s.a.p. 2)Interrupt routines must be interruptable by more important ones Most CPU’s automatically disable ALL interrupts when an interrupt routine is started We need much ‘finer’ control than that !

1/1/ / faculty of Electrical Engineering eindhoven university of technology Remembering, masking & prioritising Hardware should remember an interrupt’s occurrence until it is actually handled –May be part of I/O synchronisation hardware Must be possible to 'mask' (disable) interrupts individually –Software controlled mask bits via an output port –Mask bits can be controlled completely by hardware Hardware should 'prioritise' interrupts to select the most important non-masked one Possible, but very slow in software !

1/1/ / faculty of Electrical Engineering eindhoven university of technology ‘Traps’: interrupts from within the CPU Generated when instructions encounter an error –Arithmetic errors, f.i.:overflow, divide by zero These traps can be seen as the hardware basis for 'exceptions' –Hardware errors, f.i.: memory fault, accessed device does not respond Traps and interrupts have some small differences –During trap handling, most interrupts remain enabled –A trap handler is an extension of the running program –The trapped instruction will in general be re-started following the trap handling routine This is sometimes very difficult !

1/1/ / faculty of Electrical Engineering eindhoven university of technology request grant CPU I/O HW Reducing I/O handling time even further Interrupts still require a lot of software (= time!) to move data between memory and a port –Save time by allowing I/O hardware to access memory directly, without assistance of the CPU This is called 'Direct Memory Access' (DMA) CPU has bus memory DMArequest DMAgrant read write data address CPU releases I/O HW has bus CPU takes bus back

1/1/ / faculty of Electrical Engineering eindhoven university of technology The ‘intelligence’ of DMA DMA can be used to create and/or read complex data structures without bothering the CPU –This requires a lot of 'intelligence' in the I/O hardware –Still requires an interrupt to signal the main program Concurrent I/O needs multiple DMA 'channels’ –Same functionality needed as for handling multiple interrupts (remembering, masking and prioritising) But this time, it has to be all in hardware !

1/1/ / faculty of Electrical Engineering eindhoven university of technology Co-processors: divide and conquer A ’co-processor' is hardware which takes over (software) functions from the main CPU This increases the speed of the system as a whole –The CPU has fewer functions to perform –Co-processors can use customised (fast) hardware instead of standard hardware running software Co-processors should not bother the CPU –Use DMA to transfer data, commands and results –Use interrupts to signal important things only interrupts may run in both directions !

1/1/ / faculty of Electrical Engineering eindhoven university of technology ’Loosely coupled' co-processors Have no connection with main CPU instructions –May even execute their own programs ! –Commanded by explicit I/O actions from the CPU or command blocks in memory (with an ‘attention’ signal) –Returns results through memory or explicit I/O actions after interrupting the main CPU Used to off-load complete I/O related tasks from the main CPU (for instance the device drivers in an O.S.) Also used to speed complex data processing tasks if the co-processor contains better hardware than the CPU

1/1/ / faculty of Electrical Engineering eindhoven university of technology ’Closely coupled' co-processors Keep track of instructions executed by main CPU –Are actually controlled by these instructions Some instructions are treated as 'no-operation' by main CPU These trigger the co-processor to start a specific operation –Data transfer is done with DMA The address may be provided by main CPU using a 'dummy' read cycle during execution of the 'no-operation' instruction –Result codes transferred with DMA or special I/O ports –Synchronisation is absent or uses special hardware Used to extend the main CPU instruction set (f.i. floating point)