hamburger

I/O Interface (Interrupt and DMA Mode) Study Notes for Computer Science Exams

By BYJU'S Exam Prep

Updated on: September 25th, 2023

Through Champion Study Plan for GATE Computer Science Engineering(CSE) 2022, we are providing very useful basic notes and other important resources on every topic of each subject. These topic-wise notes are useful for the preparation of various upcoming exams like GATE / IES/ BARC/ ISRO/ VIZAG/ DMRC/ SSC-JE/ State Engineering Services examinations and other important upcoming competitive exams.

Through Champion Study Plan for GATE Computer Science Engineering(CSE) 2022, we are providing very useful basic notes and other important resources on every topic of each subject. These topic-wise notes are useful for the preparation of various upcoming exams like GATE / IES/ BARC/ ISRO/ VIZAG/ DMRC/ SSC-JE/ State Engineering Services examinations and other important upcoming competitive exams.

The article contains fundamental notes on the I/O Interface  in Computer Science Subject

Peripheral Devices

  • The I/O system provides an efficient mode of communication between the central system and the outside environment.
  • Programs and data must be entered into computer memory for processing end results obtained from computations must be displayed for the user. The most familiar means of entering information into a computer is through a typewriter-like keyboard. On the other hand, the central processing unit is an extremely fast device capable of performing operations at very high speed.
  • To use a computer efficiently, a large number of programs and data must be prepared in advance and transmitted into a storage medium such as magnetic tapes or disks. The information in the disk is then transferred into high-speed storage, such as disks.
  • Input or output devices attached to the computer are called the peripheral devices. The most common peripherals are keyboards, display units and printers. Peripherals that provide auxiliary storage for the system are magnetic disks and tapes.

Input-Output Interface

  • Input-Output interface provides a method for transferring information between internal storage and external I/O devices.
  • Peripherals are connected to the central processing unit with a special communication link (I/O bus).
  • The I/O bus from the processor is attached to all peripheral interfaces.

Asynchronous Data Transfer

  • The two units such as CPU and I/O interface, are designed independently of each other. If the registers in the interface does not have a common clock (global clock) with the CPU registers, then the transfer between the two units is said to be asynchronous.
  • The asynchronous data transfer requires the control signals that are being transmitted between the communicating units to indicate the time at which data is being transmitted.

Strobe Control

  • Strobe is a pulse signal supplied by one unit to another unit to indicate the time at which data is being transmitted.
  • Strobe may be activated by either the source or the destination unit.
  • The strobe pulse is controlled by the clock pulses in the CPU. The data bus carries the binary information from the source unit to the destination unit. In source initiated strobe for data transfer, the strobe is a single line that informs the destination unit when a valid data word is available in the bus.
  • But in destination initiated for data transfer, it informs the source to provide the data. Then the source unit places the data on the data bus.

Handshaking

  • The disadvantage of the strobe method is that the source unit has no information about whether the destination unit has actually received the data item if the source unit initiates the transfer. But if the destination unit initiates the transfer it has no way of knowing whether the source unit has actually placed the data on the bus. The handshake method solves this problem.
  • The basic approach of handshaking is as follows. In the handshaking method, there are two control signals, unlike strobe control method. One control signal is in the same direction as the data flow in the bus from the source to the destination. This signal is used to inform the destination unit whether there are valid data in the bus. The second control signal is in the other direction from the destination to the source. It is used to inform the source whether it can accept data.

Synchronous Data Transfer

In synchronous data transfer, a global or shared clock is provided to both sender and receiver. The sender and receiver work simultaneously.

Modes of Transfer

The information from the external device is stored in memory. The information transferred from the central computer into an external device via memory unit. Hence, this data transfer between the central computer and I/O devices is handled in various modes.

  1. Programmed I/O
  2. Interrupt- initiated I/O
  3. Direct Memory Access (DMA)

Programmed I/O: In this mode, each data item is transferred by an instruction in the program. The CPU issues a command then waits for I/O operations to be complete.

As the CPU is faster than the I/O module, the problem with programmed I/O is that the CPU has to wait a long time for the I/O module of concern to be ready for either reception or transmission of data.

Programmed I/O basically works in these ways:

  • CPU requests I/O operation
  • I/O module performs an operation
  • I/O module sets status bits
  • CPU checks status bits periodically
  • I/O module does not inform CPU directly
  • I/O module does not interrupt CPU
  • CPU may wait or come back later

The CPU, while waiting, must repeatedly check the status of the I/O module, and this process is known as Polling. As a result, the level of the performance of the entire system is severely degraded.

Interrupt-initiated I/O: This mode removes the drawback of the programmed I/O mode. The CPU issues commands to the I/O module then proceeds with its normal work until interrupted by I/O device on completion of its work.

For input, the device interrupts the CPU when new data has arrived and is ready to be retrieved by the system processor. The actual actions to perform depend on whether the device uses I/O ports, memory mapping.

For output, the device delivers an interrupt either when it is ready to accept new data or to acknowledge a successful data transfer. Memory-mapped and DMA-capable devices usually generate interrupt to tell the system they are done with the buffer.

Although Interrupt relieves the CPU of having to wait for the devices, it is still inefficient in data transfer of large amount because the CPU has to transfer the data word by word between I/O module and memory.

Below are the basic operations of Interrupt:

  • CPU issues read command
  • I/O module gets data from peripheral whilst CPU does other work
  • I/O module interrupts CPU
  • CPU requests data
  • I/O module transfers data

Direct Memory Access (DMA)

Direct Memory Access (DMA) means CPU grants I/O module authority to read from or write to memory without involvement. DMA module controls the exchange of data between the main memory and the I/O device. Because of DMA device can transfer data directly to and from memory, rather than using the CPU as an intermediary, and can thus relieve congestion on the bus. CPU is only involved at the beginning and end of the transfer and interrupted only after the entire block has been transferred.

DMA is efficient for moving large amounts of data between I/O devices and main memory. It is considered efficient because it removes the CPU from being responsible for transferring data. DMA instructs the device controller to move data between the devices and main memory.

The CPU initiates the transfer by supplying the interface with the starting address and the number of words needed to be transferred and then proceeds to execute other tasks. When the transfer is made, the DMA requests memory cycles through the memory bus. When the request is granted by the memory controller, the DMA transfers the data directly into memory.

The Bus Request (BR) input is used by the DMA controller to request the CPU to get the control of buses. When this input is active, the CPU terminates the execution of the current instruction and places the address bus and the data bus. The CPU activates the Bus Grant (BG) output to inform the external DMA that the buses are available. The DMA now takes control of the buses to conduct the memory transfer. When DMA terminates the transfer, it disables the bus request line. The CPU disables the bus grant, takes control of the buses.

Hardware design is complicated because the DMA controller must be integrated into the system, and the system must allow the DMA controller to be a bus master. Cycle stealing may also be necessary to allow the CPU and DMA controller to share the use of the memory bus.

During a block input byte transfer, the following sequence occurs as the data byte is sent from the interface to the memory:

  • The interface sends the DMA controller a request for DMA service.
  • A Bus request is made to the HOLD pin (active High) on the processor and the controller gains control of the bus.
  • A Bus grant is returned to the DMA controller from the Hold Acknowledge (HLDA) pin (active High) on the processor.
  • The DMA controller places contents of the address register onto the address bus.
  • The controller sends the interface a DMA acknowledgement, which tells the interface to put data on the data bus. (For an output it signals the interface to latch the next data placed on the bus.)
  • The data byte is transferred to the memory location indicated by the address bus.
  • The interface latches the data.
  • The Bus request is dropped, the HOLD pin goes Low, and the controller relinquishes the bus.
  • The Bus grant from the processor is dropped and the HLDA pin goes Low.
  • The address register is incremented by 1.
  • The byte count is decremented by 1.
  • If the byte count is non-zero, return to step 1, otherwise, stop.

Types of Data transfer: The DMA Controller has several options available for the transfer of data. They are:

  1. Cycle Steal: A read or write signal is generated by the DMAC, and the I/O device either generates or latches the data. The DMAC effectively steals cycles from the processor in order to transfer the byte, so single byte transfer is also known as cycle stealing.
  2. Burst Transfer: To achieve block transfers, some DMAC’s incorporate an automatic sequencing of the value presented on the address bus. A register is used as a byte count, being decremented for each byte transfer, and upon the byte count reaching zero, the DMAC will release the bus. When the DMAC operates in burst mode, the CPU is halted for the duration of the data transfer.
  3. Hidden DMA: It is possible to perform hidden DMA, which is transparent to the normal operation of the CPU. In other words, the bus is grabbed by the DMAC when the processor is not using it. The DMAC monitors the execution of the processor, and when it recognizes the processor executing an instruction which has sufficient empty clock cycles to perform a byte transfer, it waits till the processor is decoding the opcode, then grabs the bus during this time. The processor is not slowed down but continues processing normally. Naturally, the data transfer by the DMAC must be completed before the processor starts.

Hard Disk Structure

  • Hard Disk is an electro-magnetic direct access storage component.
  • It contains a batch of magnetically coated platters and each of the platters contains two surfaces.
  • Each surface is divided into tracks.
  • Each and every track is further divided into sectors. Sectors hold the data in the form of bytes.
  • Each and every surface has its own read-write head to access the data directly from the disk.
  • In the hard disk, sectors, surfaces and tracks are the addressable units to access the data.
  • In the hard disk, Cylinders are formed by connecting the surfaces of the same track number in all the surfaces.
  • No of cylinder per disk=No of tracks per surface
  • Track capacity= No of the sectors in track* Capacity of each sector
  • Cylinder Capacity= No of surfaces in the disk* Track capacity
  • Disk Capacity= No of Cylinders* Cylinder Capacity
  • Disk Capacity= No of platters* No of surfaces* No of sector* No of track* Sector Size

Adjustment While performing disk operations

  • Seek Time: Time required to move the head from its initial position to the desired track on the surface.
  • Rotational Delay: Time required to adjust the head at the beginning of the track. In the beginning, there is no need for adjusting the head since it is already at the starting of the track due to seek time. In worst cases, it is required to move the head again to the initial position by taking the whole rotation of the disk.
  • Transfer Time: Time required to access the data from the disk.
  • Overheads, additional delay in the disk operation.
  • Total Delay= Seek time+ Average rotational delay+ Transfer time+ Overheads

3D Address calculation

When the sector No is present in the three-dimensional address format, then, sector no in hard disk is calculated as

Sector(i, j, k), where

i= Cylinder No

j= Surface No

k= Sector No

Sector No in the disk= k+ s(j+ i*t)

where, s= No of sectors per track

t= No of tracks per cylinder/ No of surfaces

You can follow the detailed champion study plan for GATE CS 2021 from the following link:

Detailed GATE CSE 2021 Champion Study Plan

Candidates can also practice 110+ Mock tests for exams like GATE, NIELIT with BYJU’S Exam Prep Test Series check the following link:

Click Here to Avail GATE CSE Test Series!(100+ Mock Tests)

Get unlimited access to 21+ structured Live Courses all 112+ mock tests with Online Classroom Program for GATE CS & PSU Exams:

Click here to avail Online Classroom Program for Computer Science Engineering

Thanks

The Most Comprehensive Exam Prep App!

 

Our Apps Playstore
POPULAR EXAMS
SSC and Bank
Other Exams
GradeStack Learning Pvt. Ltd.Windsor IT Park, Tower - A, 2nd Floor, Sector 125, Noida, Uttar Pradesh 201303 help@byjusexamprep.com
Home Practice Test Series Premium