top button
Flag Notify
Site Registration

How I/O controller works for an Operating System?

+2 votes
270 views

Can someone please put some light on this topic ?

posted Oct 14, 2013 by Ganesh Kumar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

I/O processing can be either:
– Memory-mapped
The I/O registers in the device controllers form part of regular address space, and are read and written
using normal LOAD and STORE-type instructions
– Non-memory-mapped
Special instructions (e.g. IN OUT) are used to read and write I/O registers

In various combinations with the above there are four different I/O schemes in general use:
– Programmed I/O with busy waiting
– Interrupt-driven I/O
– DMA I/O
– I/O using data Channels

Interrupt-driven I/O is most common method used for more detail please look at I/O and Interrupts

answer Oct 14, 2013 by Salil Agrawal
Similar Questions
+2 votes

How a background process is treated by operating system ?

+3 votes

Can someone please explain following terms to help me understand ?
Throughput, Turn Around Time, Waiting Time and Response Time.

...