Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Posts tagged DMA

Synonyms: direct-memory-access DMA-controller direct-memory-access-controller

Anything about DMA (Direct Memory Access) techniques.

DMA is a set of techniques to access the memory of a digital microprocessor system that doesn't involve the CPU itself. The access is done through a so-called DMA controller, which can take control of the bus and direct the transfer of data from memory to another memory area or to a peripheral connected to that bus.

While the DMA controlle operates, the CPU is free to do other tasks, thus increasing computation efficiency.

The DMA controller is a dedicated processor specially designed to perform data transfers on the bus, bypassing normal CPU control.

Usually the CPU instructs the DMA controller to perform a transfer and then relinquish the bus, letting the DMA controller do its business.

Therefore the CPU is free to do other tasks that don't need bus access while the DMA performs the transfer.

This is a form of hardware parallelism that can increase the performance of a system, sometimes dramatically in applications that require moving huge amounts of data.