Difference between revisions of "Direct Memory Access"

From Computer History Wiki
Jump to: navigation, search
m (+cat)
m (+See also - Programmed I/O)
 
Line 4: Line 4:
  
 
{{semi-stub}}
 
{{semi-stub}}
 +
 +
==See also==
 +
 +
* [[Programmed I/O]]
  
 
[[Category: Computer Basics]]
 
[[Category: Computer Basics]]

Latest revision as of 23:08, 20 October 2021

Direct Memory Access, usually abbreviated as DMA, refers to a now-very-common technique used to transfer data between devices and main memory. In DMA transfers, data is not moved by the CPU (e.g. by reading it from the device, and the writing it to the memory); rather, the device transfers the data itself.

There are two main approaches for performing this. In the first, the CPU and devices share a bus which can perform read or write cycles to memory; the device must gain control of the bus, and then performs a memory cycle. In the second, the memory has multiple ports, and the device has direct access to the memory via one of the ports.

See also