Input/Output Data Transfer

( 0 users )

Data from Peripherals have to reach Memory so that the CPU can use it. Similarly, the processed output has to reach peripherals like printer, internet devices, DISK, etc.

Thus, I/O data transfer is about how the three subsystems i.e. CPU, Memory and I/O Controller, are involved in achieving the data exchange with peripherals. The word Data Exchange means successful Data in/Data Out with necessary handshake and coordination.

Data Exchange with a peripheral involves few steps and not straight forward as devices are mostly electromechanical and/or operate at a different speed than CPU and Memory.

  • The device to be initiated and checked for status whether it is ready for Data Exchange.
  • The data transfer has to happen at the acceptable capsule and speed of the device using the applicable protocol.
  • This may happen in more than one sequence, as necessitated.
  • If the device status is an Error status, it is to be suitably handled.

I/O Controller's role is to ensure seamless data exchange by ensuring the following (Please refer to diagram 20.2)

  • Processor/Memory Communication
  • Device Communication
  • Control timing and Status processing – Coordination of the data traffic between CPU, Memory and Io devices
  • Data Buffering – To manage the data transfer speed mismatch
  • Error management ( Transmission errors are corrected other status errors are communicated)

I/O Data Transfer Techniques

CPU can be used very efficiently in Multitasking. Ideally, the involvement CPU in I/O data transfer is expected to be minimal. There are three possibilities for I/O Data exchange.

  • Programmed I/O
  • Interrupt driven I/O
  • Direct Memory Access
I/O Data exchange methods and features
Figure 21.1 I/O Data exchange methods and features

Programmed I/O

A program controls the I/O Operation; hence CPU is fully involved. CPU Monitors the status of the device and the I/O data transfer. This keeps the CPU hooked until the I/O operation is completed for the desired number of bytes. In the case of READ from I/O device, the final destination for Data is Memory. CPU writes the data collected from the device into Memory. It happens vice versa in the case of WRITE onto the device.

Programmed I/O is used for tiny data transfer i.e. few bytes. Before an actual Data transfer to a device, selecting, readying the device and verifying the status are to be done. Ex: Selecting the Printer and initialization before printing. This is shown by the decision box loop in figure 20.2.

In the diagram, at each step, the direction of information flow between the subsystems is marked to reinforce your understanding.

The CPU loop during status check is eliminated in the Interrupt Driven I/O Operation.

Programmed I/O and Interrupt Driven I/O
Figure 21.2 Programmed I/O and Interrupt Driven I/O

Interrupt Driven I/O data transfer

The steps involved in I/O data transfer are the same but for a change in freeing the CPU until the device is ready for data transfer. Refer to figure 20.2.

  • The CPU initiates the command on the device and takes up other tasks.
  • Once the device is ready with data, the I/O controller generates an Interrupt.
  • On recognizing the pending Interrupt signal from I/O controller, the CPU temporarily suspends the ongoing execution, goes in for interrupt service routine and collects the data and stores in memory or vice versa and then resumes the suspended execution. In this mode also, it is the CPU which interacts with memory for storing the device data.

Most of the devices are electromechanical and have high latency. The period for which the CPU is freed is proportional to this. Hence the benefit achieved is reasonable. The interrupt is asynchronous. The I/O controller waits until the interrupt is serviced by CPU. Thus, what we have achieved is the I/O controller is made to wait instead of the CPU. CPU time is more precious. Details of Interrupt servicing will be dealt with in the next chapter.

Interrupt service routine is also a complex and costly matter involving OS. This method is also feasible for a small quantum of data transfer. Direct Memory access can resolve the CPU availability in a hardware environment.

Direct Memory Access (DMA) Data Transfer

Interrupt servicing of the device is still accomplished using the software. This may not be fast enough for a large chunk of data transfer from DISK. Recall that the Virtual memory implementation is supported by Disk. This involves large data exchange to memory. The software routine is replaced with a specialized hardware processor, called the Direct Memory Access Controller (DMAC). DMA technique facilitates I/O data transfer between Main Memory and devices connected to DMAC, Fast data rate devices are connected to DMAC.

As seen in figure 20.3,

  • The CPU passes necessary information to DMA and goes on with any other work.
  • The DMA takes care of data transfer to Memory.
  • On completion, DMA generates an Interrupt to inform the CPU of the job done.

Note that the CPU as a boss gives the work and informed of Job done but not involved for doing the job. It is independently taken care of by DMAC.

DMA mode I/O data transfer

The DMA method improvises the interrupt method with optimal efficiency as the data is not routed via CPU. Thus DMA unburdens CPU. The details of DMAC and operations are dealt with in the next chapter.

To Do

* Note : These actions will be locked once done and hence can not be reverted.

1. Track your progress [Earn 200 points]

2. Provide your ratings to this chapter [Earn 100 points]

0
I/O Communication and I/O Controller
Direct Memory Access controller and I/O Processor
Note : At the end of this chapter, there is a ToDo section where you have to mark this chapter as completed to record your progress.