Operating System (2140702)

BE | Semester-4   Winter-2018 | 10-12-2018

Q4) (a)

Write a short note on DMA.

  • Direct memory access (DMA) is a feature of computer systems that allows certain hardware subsystems to access main system memory (random-access memory), independent of the central processing unit (CPU).
  • Without DMA, when the CPU is using programmed input/output, it is typically fully occupied for the entire duration of the read or write operation, and is thus unavailable to perform other work.
  • With DMA, the CPU first initiates the transfer, then it does other operations while the transfer is in progress, and it finally receives an interrupt from the DMA controller when the operation is done.
  • This feature is useful at any time that the CPU cannot keep up with the rate of data transfer, or when the CPU needs to perform work while waiting for a relatively slow I/O data transfer.
  • Many hardware systems use DMA, including disk drive controllers, graphics cards, network cards and sound cards.
  • Computers that have DMA channels can transfer data to and from devices with much less CPU overhead than computers without DMA channels.
  • Similarly, a processing element inside a multi-core processor can transfer data to and from its local memory without occupying its processor time, allowing computation and data transfer to proceed in parallel.