Such as memory to memory copy by configuring/starting DMA engine in current X86_64 + PCH system?
Thanks,
-Tao
how can I launch DMA in current X86_64 system
Re: how can I launch DMA in current X86_64 system
Hi,
The old ISA DMA chips were originally able to be used for memory to memory copying, but that ended in the 1980s and more modern legacy DMA chips aren't able to do it.
For some Intel chipsets there's a "QuickData Technology Device" that might (should) also be able to do it; but it's far from standard (only provided on some server motherboards with Intel chipsets) and likely to be quite complex. I don't think anyone here has looked into writing a device driver for these (I know I haven't).
Mostly, it's probably better to just use something like "memcpy()".
Cheers,
Brendan
Which DMA engine?wangt13 wrote:Such as memory to memory copy by configuring/starting DMA engine in current X86_64 + PCH system?
The old ISA DMA chips were originally able to be used for memory to memory copying, but that ended in the 1980s and more modern legacy DMA chips aren't able to do it.
For some Intel chipsets there's a "QuickData Technology Device" that might (should) also be able to do it; but it's far from standard (only provided on some server motherboards with Intel chipsets) and likely to be quite complex. I don't think anyone here has looked into writing a device driver for these (I know I haven't).
Mostly, it's probably better to just use something like "memcpy()".
Cheers,
Brendan
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.