Device Drivers CPU I/O Interface Device Driver DEVICECONTROL OPERATIONSDATA TRANSFER OPERATIONS Disk Seek to Sector, Track, Cyl. Seek Home Position.

Slides:



Advertisements
Similar presentations
Input and Output CS 215 Lecture #20.
Advertisements

Computer System Overview
CS-334: Computer Architecture
Operating Systems Input/Output Devices (Ch , 12.7; , 13.7)
1 Lecture 2: Review of Computer Organization Operating System Spring 2007.
I/O Hardware n Incredible variety of I/O devices n Common concepts: – Port – connection point to the computer – Bus (daisy chain or shared direct access)
1 Computer System Overview OS-1 Course AA
Chapter 1 and 2 Computer System and Operating System Overview
Computer System Structures memory memory controller disk controller disk controller printer controller printer controller tape-drive controller tape-drive.
Computer-System Structures
Mehmet Can Vuran, Instructor University of Nebraska-Lincoln Acknowledgement: Overheads adapted from those provided by the authors of the textbook.
1 I/O Management in Representative Operating Systems.
Group 7 Jhonathan Briceño Reginal Etienne Christian Kruger Felix Martinez Dane Minott Immer S Rivera Ander Sahonero.
1 Computer System Overview Chapter 1 Review of basic hardware concepts.
Copyright ©: Nahrstedt, Angrave, Abdelzaher
I/O Tanenbaum, ch. 5 p. 329 – 427 Silberschatz, ch. 13 p
Input/Output. Input/Output Problems Wide variety of peripherals —Delivering different amounts of data —At different speeds —In different formats All slower.
Chapter 7 Input/Output Luisa Botero Santiago Del Portillo Ivan Vega.
General System Architecture and I/O.  I/O devices and the CPU can execute concurrently.  Each device controller is in charge of a particular device.
System Calls 1.
Chapter 10: Input / Output Devices Dr Mohamed Menacer Taibah University
OPERATING SYSTEM OVERVIEW. Contents Basic hardware elements.
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.
Chapter 1 Computer System Overview Dave Bremer Otago Polytechnic, N.Z. ©2008, Prentice Hall Operating Systems: Internals and Design Principles, 6/E William.
Hardware Definitions –Port: Point of connection –Bus: Interface Daisy Chain (A=>B=>…=>X) Shared Direct Device Access –Controller: Device Electronics –Registers:
FINAL MPX DELIVERABLE Due when you schedule your interview and presentation.
Windows Operating System Internals - by David A. Solomon and Mark E. Russinovich with Andreas Polze Unit OS6: Device Management 6.1. Principles of I/O.
CHAPTER 2: COMPUTER-SYSTEM STRUCTURES Computer system operation Computer system operation I/O structure I/O structure Storage structure Storage structure.
Contact Information Office: 225 Neville Hall Office Hours: Monday and Wednesday 12:00-1:00 and by appointment.
Silberschatz, Galvin, and Gagne  Applied Operating System Concepts Module 2: Computer-System Structures Computer System Operation I/O Structure.
1 CSE Department MAITSandeep Tayal Computer-System Structures Computer System Operation I/O Structure Storage Structure Storage Hierarchy Hardware Protection.
2: Computer-System Structures
Recall: Three I/O Methods Synchronous: Wait for I/O operation to complete. Asynchronous: Post I/O request and switch to other work. DMA (Direct Memory.
The Functions of Operating Systems Interrupts. Learning Objectives Explain how interrupts are used to obtain processor time. Explain how processing of.
Lecture 3 Process Concepts. What is a Process? A process is the dynamic execution context of an executing program. Several processes may run concurrently,
Time Management.  Time management is concerned with OS facilities and services which measure real time, and is essential to the operation of timesharing.
CE Operating Systems Lecture 2 Low level hardware support for operating systems.
1 CS.217 Operating System By Ajarn..Sutapart Sappajak,METC,MSIT Chapter 2 Computer-System Structures Slide 1 Chapter 2 Computer-System Structures.
Silberschatz, Galvin and Gagne  Applied Operating System Concepts Chapter 2: Computer-System Structures Computer System Architecture and Operation.
I/O, Devices & Device Drivers I/O subsystem It is the responsibility of the I/O subsystem of an OS to schedule, manage, & control the interactions between.
CE Operating Systems Lecture 2 Low level hardware support for operating systems.
Lecture 1: Review of Computer Organization
1 Lecture 1: Computer System Structures We go over the aspects of computer architecture relevant to OS design  overview  input and output (I/O) organization.
Input/Output Problems Wide variety of peripherals —Delivering different amounts of data —At different speeds —In different formats All slower than CPU.
IT3002 Computer Architecture
Input Output Techniques Programmed Interrupt driven Direct Memory Access (DMA)
Time Management.  Time management is concerned with OS facilities and services which measure real time.  These services include:  Keeping track of.
1 Device Controller I/O units typically consist of A mechanical component: the device itself An electronic component: the device controller or adapter.
© Janice Regan, CMPT 300, May CMPT 300 Introduction to Operating Systems Operating Systems Overview: Using Hardware.
Module 12: I/O Systems I/O hardware Application I/O Interface
Chapter 13: I/O Systems Modified by Dr. Neerja Mhaskar for CS 3SH3.
CS 3305 System Calls Lecture 7.
Computer System Overview
Module 2: Computer-System Structures
Operating Systems Chapter 5: Input/Output Management
Operating System Concepts
13: I/O Systems I/O hardwared Application I/O Interface
CS703 - Advanced Operating Systems
Chapter 5: I/O Systems.
Module 2: Computer-System Structures
Chapter 13: I/O Systems I/O Hardware Application I/O Interface
Module 2: Computer-System Structures
Contact Information Office: 225 Neville Hall Office Hours: Monday and Wednesday 12:00-1:00 and by appointment. Phone:
Module 2: Computer-System Structures
Module 12: I/O Systems I/O hardwared Application I/O Interface
Chapter 13: I/O Systems “The two main jobs of a computer are I/O and [CPU] processing. In many cases, the main job is I/O, and the [CPU] processing is.
Presentation transcript:

Device Drivers

CPU I/O Interface Device Driver

DEVICECONTROL OPERATIONSDATA TRANSFER OPERATIONS Disk Seek to Sector, Track, Cyl. Seek Home Position Read Sector Write Sector Magnetic Tape Rewind Forward Space Record Backspace Record Write Mark Read Record Write Record Read Backwards Printer** Print character Load font Initialize Terminal** Read Character Write Character Mouse Read position Read button status ** Control operations are normally invoked by special characters in the data stream Figure 9--1: I/O Operations for Typical Devices

Memory mapped I/O

Figure 10--3: I/O Subsystem as an Integral Part of the OS

Figure 10--4: Device Drivers as Separate Modules

Implementation strategies for handling devices Programmed I/O Block transfer I/O processors

Simple Polling algorithm /* initialize pointer and index */ ix=0; count = BUFLEN; /* begin polling loop */ while ((count > 0) && (no device error)) { /* wait while device is busy */ while (device is busy) {} /* process character if no error */ if (no device error) { write buffer[ix]; /* write next character */ count = count - 1; /* decrement count */ ix = ix + 1; /* increment index */ } }

Polling using Memory mapped i/o /* initialize pointer and index */ ix=0; count = BUFLEN; /* begin polling loop */ while ((count < 0) && (error bit of status register is 0)) { /* wait while device is busy */ while (status bit of status register is BUSY) {} /* process character if no error */ if (error bit of status register is 0) { data register = buffer[ix]; /* write next character */ count = count - 1; /* decrement count */ ix = ix + 1; /* increment index */ }

Using interrupts for device management: –Starting I/O –Returning to the process or OS –Device generates an interrupt signal

Interrupts MAIN PROGRAM: /* initialize index, count, and device flag */ ix = 0; count = BUFLEN; dev_flag = 0;... enable interrupts for device... /* loop until all characters are written */ while (dev_flag == 0) {}... INTERRUPT HANDLER: save registers /* check for errors */ if (error) { dev_flag = -1;/* set flag to error code */ disable interrupts for device restore registers return from interrupt }

Interrupts continued /* check for completion */ if (count==0) { /* operation completed */ dev_flag = 1; /* set flag to completion code */ disable interrupts for device restore registers return from interrupt } /* no error, not complete; process character */ write buffer[ix]; /* write next character */ ix = ix + 1;/* increment index */ count = count - 1; /* decrement count */ restore registers return from interrupt

Buffering Buffering is a technique that can be used to improve device as well as CPU throughput Buffering is the use of temporary storage areas in memory to store data that is read from an input device before it is needed. Process can also use buffering to store data before it is sent to the output device

Buffering with character devices

Ring Buffer

Buffering with DMA devices and blocking

BUFFER1 BUFFER2 DISK1 CPU/PROCESS READ MORE DATA PROCESS Device Driver

BUFFER1 BUFFER2 CPU/PROCESS Read Last logical record from buffer 1 DISK1 Start read from device to fill buffer 2

Copying with a single buffer WHILE NOT END_OF_FILE(TAPE1) READ TAPE1,BUFFER WAIT TAPE1 IF NOT END_OF_FILE(TAPE1) WRITE TAPE2,BUFFER WAIT TAPE2 ENDIF ENDWHILE

Copying with double buffers READ TAPE1,BUFFER1 WHILE NOT END_OF_FILE(TAPE1) WAIT TAPE1 WAIT TAPE2 IF NOT END_OF_FILE(TAPE1) READ TAPE1,BUFFER2 WRITE TAPE2,BUFFER1 ENDIF WAIT TAPE1 WAIT TAPE2 IF NOT END_OF_FILE(TAPE1) READ TAPE1,BUFFER1 WRITE TAPE2,BUFFER2 ENDIF ENDWHILE

Software Caching

Data structures for Device Management I/O operations that are in progress need to be represented by some type of data structure in every operating system This data structure can be called by various names DCB, IOB, IOCB It represents a device, channel or controller, and the activity of the device

Data structures for device management: I/OCB Channel (port ) Number Controller Address Device Name Device Address Interrupt Vector Address Address of Interrupt Handler Device Type Address of Open Procedure Address of Close Procedure Address of Start I/O Procedure Address of Cancel I/O Procedure Buffer Address Buffer Length Current Buffer Pointer Current Data Count Current I/O Operation Address of PCB of Process which requested the Operation Address of I/O Request Parameters Address of ECB for Current Operation Figure : Information Stored in an I/O Control Block

Device table entry Device Name Device Status Device Driver File Name or Disk Address Entry Point in Main Memory, if loaded Device Size Device Driver Size Logical Name(s) Figure : Content of a Typical Device Table Entry

Device driver organization: structure and functions of device drivers Figure : Structure and Functions of Device Drivers

Figure : Flow of Control in a Device Driver

Preparing for I/O Preparation for I/O is the first activity of a device driver when invoked via one of the device system calls. I/O system call parameters must: – specify the type of operation requested (read, write, control), –the address of the data buffer to be used, –the size of the data area, –and other relevant information. –Additionally, device-dependent parameters, such as track and sector numbers for disk operations, may also be required. Preparation of I/O components of a device driver validates device-specific parameters of an I/O request. Appropriate error return codes must be provided to the user for any errors detected in the service request parameters. The preparation for I/O might include: – temporary buffer allocation or initialization, –formatting of data, –placing information in the appropriate location(s) in some I/O control block that is accessible to the device interrupt handler and the operating system. Once the I/O request parameters are validated, the device status must be checked. If the device is busy or not ready, the device driver must take an appropriate system dependent action. –If an error condition or problem such as "device not ready" is detected, the driver might take action causing the application process to terminate, or it might simply provide a return code to be passed back to the process, which then must deal with the problem in a suitable way depending on the application. –In a multiprogramming operating system, the response may include queuing the I/O request for a shared device that is presently busy with another operation.

Starting I/O DEVICEREQUIRED I/O INFORMATION Disk Operation Code Memory Transfer Address Number of Bytes to Transfer Track Address Sector Address Tape Operation Code Memory Transfer Address Number of Bytes to Transfer Printer Terminal Serial Device Operation Code (read/write) Character to Transfer TimerTime interval

Interrupt Servicing The most complicated part of most I/O drivers or I/O supervisor modules is the interrupt handler. Much of the device control is embedded in the interrupt handler, which is given control asynchronously when the device needs service. –This could involve processing the next character for a device in the case of a non-DMA device, –starting a second or third phase of an I/O operation for DMA devices (for example, a read after a seek to sector on some disks). Information needed by the interrupt handler must be provided by the main portion of the device driver. Such information is usually contained in the I/O control blocks that represent the current I/O operation, just as PCBs represent process execution to the dispatcher. –Device interrupt handlers must save all registers and hardware status of the interrupted program. In a stack machine, this merely involves saving information on the stack and restoring it before returning to the interrupted program. –Certainly the most complex part of interrupt handler service is error recovery –Error recovery routines can be either resident or dynamically loaded when needed, depending on operating system design and requirements.

Possible errors for devices DEVICEPOSSIBLE ERRORS Disk Invalid Track, Sector Wrong Density Power Unsafe Data error Tape Data error End of tape Printer Paper out Paper jam Off Line

Sample Error Handler ERROR HANDLER: /* initialize counter and flag */ loop = 0; tape_error = TRUE; /* repeat entire process up to ten times */ while ((loop < 10) && tape_error) { /* backspace and reread up to nine times */ count = 0; while ((count < 9) && tape_error) { backspace record read record again if (read is ok) tape_error = FALSE; else count = count + 1; }

/* if error still present, backup further */ if (tape_error) { /* backspace ten records */ count = 0; while (count < 10) { backspace record count = count + 1; } /* skip forward nine records */ count = 0; while (count < 9) { forward space record count = count + 1; } /* try reading again */ read record if (read is ok) tape_error = FALSE; loop = loop + 1; /* prepare for retry */ } /* repeat if necessary */

Device Driver Components and Responsibilities I/O System Call Interface –Mechanism to invoke device driver –Format of parameter list –Locating parameter list Preparation for I/O –Validate parameters –Save parameters in I/O control block –Pass error codes to process or to OS –Place in I/O queue or invoke start component Starting of I/O –Enable Interrupts –Issue first I/O command to device –Return to calling process or to OS

Interrupt Servicing –Save registers –Determine cause of interrupt –If error, invoke error recovery routine –If operation not done, issue next I/O command –advance pointer(s) –decrement count(s) –restore registers –return from interrupt –If operation complete, set event flag –invoke completion routine Error Detection and Recovery –Invoke error recovery algorithm –If error recovers, resume interrupt handler –If error is permanent, set event flag to error code and –invoke completion routine Completion of I/O (Return to Idle) –Set event flag –Disable interrupts –Move process just finished with device to ReadyQ –Invoke I/O scheduler –Invoke dispatcher Cancellation of I/O –If I/O request in I/O queue, remove it –Return to caller

Scheduling I/O process1process2process3 I/O event 1 I/O event 3 I/O event 2 Device or I/O queue

Multiple I/O queues Figure : A Single I/O Queue Figure : Multiple I/O Queues

PCB 0 Priority 60 Running Process Ready Q IO_Active Q IO_Init Q PCB 9 Priority 32 PCB 8 Priority 40 PCB 5 Disk Read PCB 4 Printer Write PCB 3 Disk Write PCB 2 Disk Read PCB1 Printer Write PRINTER_IOCB PCB7 Address ECB Address DISK_IOCB PCB6 Address ECB Address Modified figure 10-25

IO_COMPLETE: /* Cleanup after disk operation, switch waiting process to ready state */ if (operation is complete) { Save context of current process in PCB Insert PCB in ReadyQ Set Disk ECB for disk I/O just completed Move PCB address in Disk IOCB to ReadyQ Set Disk IOCB to idle state } /* setup next disk operation, if any */ Search IO_WaitQ for another disk request if (disk request found) { Move PCB address of next disk I/O request to Disk IOCB Move DIsk ECB address to Disk IOCB Start requested disk I/O operation } Invoke dispatcher to dispatch next process Figure : Handling an I/O Request Complete Interrupt

Running Process Ready Q IO_Active Q IO_Init Q PCB 8 Priority 40 PCB 6 Priority 42 PCB 5 Disk Read PCB 4 Printer Write PCB 3 Disk Write PCB1 Printer Write PRINTER_IOCB PCB7 Address ECB Address DISK_IOCB PCB2 Address ECB Address PCB 0 Priority 60 PCB 9 Priority32 Modified Figure 1--27

Figure : State Transitions with IO_init and IO_active States