W7 Flashcards
How does an I/O device communicate with the CPU?
Through hardware registers available in a device controller
What are the five hardware registers in a device controller and what are their functions?
Opcode registers: hold code of operation to be performed, e.g., read or write
Operand registers: hold parameters associated with the operation, e.g., addresses to be red or written at, DMA parameters, etc.
Busy AND Status registers: provide information about availability, readiness, errors
Data Buffer registers: hold bytes transferred to or from the I/O device, e.g., value typed in on the keyboard, or text to be printed
What is Method 1 for accessing the device controller?
What is an advantage of Method 1 (special I/O instructions)?
What is a disadvantage of Method 1 (special I/O instructions)?
The CPU instruction set is extended with special I/O instructions like io_store and io_load.
It avoids interference with virtual memory since no physical address is associated with registers.
Devices cannot be mapped in user space, so users cannot directly access the device as a normal data structure.
What is Method 2 for accessing the device controller?
What is an advantage of Method 2 (physical address space extension)?
What is a disadvantage of Method 2 (physical address space extension)?
Physical address space is extended to directly refer to device registers, giving each register a physical address.
The device can be mapped to the user space, allowing easier interaction via virtual addresses.
It complicates virtual memory management, increasing system complexity.
What is the issue with different I/O device controllers?
Why is the lack of uniformity among I/O controllers a problem?
Each device may have a different set of registers, opcodes, and operands, requiring specific code for each controller.
It limits portability, increases work, and raises the risk of bugs when changing device types or brands.
What is the I/O subsystem in an operating system?
What are the main goals of the I/O subsystem?
How does the I/O subsystem optimize performance?
It is the part of the OS that manages input and output devices
Presenting a logical/abstract view of I/O devices.
Facilitating the sharing of devices.
Providing efficiency and optimizing performance.
Ensures the CPU and multiple I/O devices run in parallel.
Reorders I/O requests to improve throughput.
Uses buffering to hide latency.
What are some design concerns for the I/O subsystem?
Large variety of I/O device types (e.g., keyboards, displays, printers, etc.).
Different speeds and brand-specific approaches for devices.
Supporting the addition of new devices after OS development and installation.
What are the two levels of abstraction in I/O systems?
High-level I/O abstraction
Low-level I/O abstraction
What is the focus of high-level I/O abstraction?
Give examples of tasks handled by high-level I/O abstraction.
Provides generic code for handling classes or families of I/O devices.
High-level operations to read or write data on disk or CD-ROM.
Implementation of network protocols, such as TCP.
What is the role of low-level I/O abstraction?
How does low-level I/O abstraction interact with devices?
Encapsulates brand-specific device issues with well-defined low-level operations (e.g., read, write, open, close).
A device driver implements low-level operations for each specific device.
What is the role of device drivers in low-level I/O abstraction?
Are device drivers software or hardware?
Device drivers implement the specific operations needed for each hardware device.
Software programs
What are three classes of I/O Devices?
Block-oriented/Storage Devices
Stream-oritented Devices
Network Communication Devices
What are the primary uses of block-oriented I/O devices?
Examples
Reading and writing blocks of data in arbitrary order
hard drive, ssd, CD reader, magnetic tape
What are primary uses of stream-oriented I/O Devices?
Examples
input and output data in a SEQUENTIAL way
keyboards, sensors, actuators, mouses
What are the primary uses of network communication devices?
Sending and receiving packets on a network socket interface
providing connection and communication protocols
What to do if I/O devices do not fit any class? Two options
- Let user application directly access driver
- Extend capabilities of OS with new APIs via external libraries
What does the device driver implement?
Examples
A collection of standard operations and functions
read, write, open, close, seek, select
In what three ways does the device driver communicate with the device controller?
Polling
Interrupts
DMA
How does the device controller communicate with the driver through polling?
Main downside?
Driver initiates I/O operations in the device controller and observes completion (I.e., busy waits) or periodically wakes-up to check completion.
I.e., driver polls device controller repeatedly and tests.
WASTING CPU TIME
How does the device controller communicate with the driver through interrupts?
Driver initiates I/O operations in the device controller and then yields the CPU
Device controller uses interrupts to inform the CPU about readiness, errors, operation completion
How does the device controller communicate with the driver through DMA?
Main benefit?
After initialisation, DMA independently moves groups of data between device controller and memory.
Less overheads for CPU, only one interrupt handling when whole transfer is completed instead of one per message
What is I/O buffering?
What are four problems that it solves?
technique used in computer systems to temporarily store data being transferred between the CPU and input/output (I/O) devices
- Speed/latency mismatch: process must wait for relatively slow I/O to complete before it can send new data to write on disk
- Data granularity mismatch: application may expect to receive data in smaller pieces than a block
- Conflict with the swapping decisions made by the OS: pages containing virtual address range must remain in physical memory until I/O completes or driver/DMA may write the data and the wrong physical address or corrupt the address of another process
- Improving efficiency: can perform input transfers before requests through predictions, delay outputs on ppurpose when necessary, and cache data
What is a buffer?
A dedicated kernel memory space or set of hardware registers that holds data of a producer until its consumer is ready to consume
Distinguish between the buffering of inputs and that of outputs
For inputs:
Data is written into buffer first, then moved to user process address space.
For outputs:
Data is moved to the buffer first, then data is output directly from the buffer.
What is single buffering? What type of transfer does it enable?
Refers to the use of a singular buffer.
Asynchronous transfer, where the input device can produce data without waiting for the process to be ready to consume it, and vice versa.
What is double buffering?
What does it reduce?
The use of two distinct, independent buffers
Idle time, as the OS can move the content of one buffer from kernel to user space, while the device controller is filling the other buffer
What is circle buffering?
How does it work?
Technique used to manage data in a buffer organized as a ring (circular) structure, where the end of the buffer wraps around to the beginning
Buffer has fixed size and two pointers (head and tail).
New data is written to location pointed to by head pointer.
Data is read from location pointed to by tail pointer.
Once data is read, tail pointer advances to next slot.
When head pointer reaches the end of buffer, it wraps back to the beginning.
How can buffering performance be evaluated?
What does T represent?
M?
C?
D?
What is the formula for throughput?
By computing the throughput
time to transfer data from the I/O device to the operating system’s buffer
Time to move the data from the OS buffer to the user process’s memory space
Time the process need to operate on one data (computation time)
Minimum time until next data may become available in user space
1/D
What is D in the case of no buffer? Why?
D=T+C since the data needs to be transported from the I/O device to the main memory, with no buffer, and computation time must be accounted for.
What is D in case of a single buffer?
D = max(C,T) + M since C and T can happen in parallel. I.e., the computation on the data can be carried out WHILE it is being moved
What is D in case of a double buffer?
D = max(M+C, T) because the move cannot start before the computation completes, but the move and computation happen in parallel to the data transfer
What is a hard-drive’s structure divided into?
Several platters, or disks
These are further divided in tracks which are circular regions of the disk, from inwards to outwards
Then, the tracks are divided in sectors, which are portions of the tracks
What is a cylinder?
Set of tracks that are at the same arm positions
What is the average time to read/write one block on the disk T_read?
What is r?
What is B?
What is N
bytes per track
T_read = T_seekcylinder + T_movetosector + T_readblock
= t_seekcylinder + 1/2r + B/rN
rotations per second
How is disk schedulnig carried out?
Buffering requests for blocks
Block requests are treated according to a scheduling policy