Tagged Questions
Direct memory access (DMA) is a feature of modern computers and microprocessors that allows certain hardware subsystems within the computer to access system memory for reading and/or writing independently of the central processing unit.
9
votes
1answer
364 views
How to write kernel space memory (physical address) to a file using O_DIRECT?
I want to write a physical memory to a file. The memory itself will not be touched again, thus I want to use O_DIRECT to gain the best write performance.
My first idea was to open "/dev/mem" and mmap ...
7
votes
0answers
325 views
DMA cache coherence management
My question is this: how can I determine when it is safe to disable cache snooping when I am correctly using [pci_]dma_sync_single_for_{cpu,device} in my device driver?
I'm working on a device driver ...
6
votes
3answers
452 views
DMA transfer RAM-to-RAM
A friend of mine has told me that on x86 architecture DMA controller can't transfer between two different RAM locations. It can only transfer between RAM and peripheral (such as PCI bus).
Is this ...
6
votes
2answers
596 views
What happens after a packet is captured?
I've been reading about what happens after packets are captured by NICs, and the more I read, the more I'm confused.
Firstly, I've read that traditionally, after a packet is captured by the NIC, it ...
4
votes
2answers
66 views
Ensuring that memory cache is properly invalidated
So I have a piece of code that looks like the following:
uint8_t *buffer = <16 MB memory region>
uint32_t count = 1024;
uint32_t position = 0;
uint8_t *get_data() {
uint8_t *region = ...
4
votes
2answers
1k views
Linux kernel device driver to DMA from a device into user-space memory
I'm getting confused with the direction to implement. I want to get data from a DMA enabled, PCIe hardware device into user-space as quickly as possible.
Q: How do I combine "direct I/O to user-space ...
4
votes
3answers
875 views
Where to start learning about linux DMA / device drivers / memory allocation
I'm porting / debugging a device driver (that is used by another kernel module) and facing a dead end because dma_sync_single_for_device() fails with an kernel oops.
I have no clue what that function ...
4
votes
3answers
827 views
asynchronous memcpy in linux?
Is there any asynchronous memcpy function in linux? I want it to work with DMA and notify me when it gets completed.
4
votes
5answers
589 views
Direct memory access to the network card in java
Some modern network cards support Direct Memory Access for improved performance. How can I utilize this feature from Java?
Does the JVM provide this automatically, or do I need to do an ...
3
votes
2answers
1k views
cache - flush and invaildate operation
I have some questions on Cache synchronization operations.
Invalidate - before cpu tries to read a portion of memory updated by a device, the corresponding memory needs to be invalidated.
Flush - ...
3
votes
3answers
1k views
How do I ensure buffer memory is aligned?
I am using a hardware interface to send data that requires me to set up a DMA buffer, which needs to be aligned on 64 bits boundaries.
The DMA engine expects buffers to be aligned on at least 32 bits ...
3
votes
2answers
701 views
Any way to allocate physical memory above 4GB on Vista x64?
I have a Vista x64 machine with 6GB of RAM, and I'm attempting to test that a device driver functions properly when doing DMA to physical addresses above 4GB.
I've found the AllocationPreference ...
2
votes
1answer
71 views
Why splice with sockets cannot improve performance without DMA?
In Wikipedia's introduction to splice, I found:
When using splice() with sockets, the network controller (NIC) must
support DMA.
When the NIC does not support DMA then splice() will not ...
2
votes
1answer
1k views
Receiving SPI data via DMA on PIC32
I know that this topic (DMA & SPI) has already been talked about on numerous threads in the microchip forum, actually i've read all the 15 pages in result of the search with keyword "dma" and read ...
2
votes
4answers
607 views
Direct memory access DMA - how does it work?
I read that if DMA is available, then processor can route long read or write requests of disk blocks to the DMA and concentrate on other work. But, DMA to memory data/control channel is busy during ...
2
votes
3answers
278 views
opengl vbo dma array
I am creating an array of positions to draw and I am stuck when I am using dma for the array
if I declare the size of the array and populate I can get it to work but if I do
float *datac;
...
2
votes
1answer
207 views
Can a Linux device driver wait for a DMA to terminate in the device_remove() function?
I've written a Linux device driver for a PCI device. This device performs DMA operations. An issue arise when the program crashes when a DMA operation is running.
Indeed, when crashing, the ...
2
votes
2answers
216 views
Where can I find information about programming the TI TMS320C64xx DMA controller
I need to do some simple memory transfer using this DSP, but I am unable to find any documentation about the DMA functions. I am using C with code composer 3.3
1
vote
1answer
25 views
VBO doesn't work Dynamic (Memory Allocate)
I try VBO by DMA.
but it doesn't work.
Svertex = new GLdouble**[nSlice+1];
Snormal = new GLdouble**[nSlice+1];
Scolor = new GLdouble**[nSlice+1];
Sindicesup = new GLbyte[3];
for(int i=0; i < ...
1
vote
0answers
94 views
DMA transfer to a slave PCI device in Linux
I am a bit confused regarding DMA transfers with a PCIe device.
Say, for example, I have a slave PCIe device, and I want to transfer a block of data from the device to the RAM, using a DMA ...
1
vote
3answers
146 views
How to use DMA or RDMA in java?
"DMA" here means: Direct memory access, and "RDMA" is: remote direct memory access.
I used Java to created an application to transfer stock data, but I found the latency is bigger than I expected. I ...
1
vote
2answers
39 views
What happens on a DMA controller when it gets selected? [closed]
I'm trying to learn the ins and outs of an 8237A-5 DMA controller. I've been reading about it and now I've started to design it at the gate level in software. The CS pin is active low. If it gets a ...
1
vote
1answer
40 views
Does a DMA controller have its own registers?
I'm trying to understand the ins and outs of how a DMA controller functions.
I'm looking at the 8237 DMA controller. Some information here has some tables with register values.
Are those the DMA's ...
1
vote
2answers
118 views
DMA copy in splice()
I am new to linux kernel. And recently, i've went through the sendfile syscall in kernel 2.6.33. The following is the sequence of my journey:
do_sendfile()
=> do_splice_direct()
=> ...
1
vote
1answer
446 views
Linux kernel device driver to DMA into kernel space
LDD3 (p:453) demos dma_map_single using a buffer passed in as a parameter.
bus_addr = dma_map_single(&dev->pci_dev->dev, buffer, count, dev->dma_dir);
Q1: What/where does this buffer ...
1
vote
4answers
827 views
How to get linux kernel page size programatically
I am working on a Linux module for IA64. My current problem is that the driver uses the PAGE_SIZE and PAGE_SHIFT macros for dma page allocation. The problem I am having is that the machine compiling ...
1
vote
1answer
78 views
embedded system : reading that same memory block with two different DMAs
I am new to embedded devices programing. I have a task that reads a block of data from the DSP memory address and copies it to other addresses (where other peripherals are mapped). the copying ...
1
vote
2answers
100 views
does fread takes processing power / works with DMA?
does fread takes processing power / works with DMA ?
Assume that device on which file is residing has DMA support ?
1
vote
0answers
391 views
In-file data copy using DMA
I need to move some data from one area of a file to another. Currently, I am reading the bytes and writing them back out. But I'm wondering if doing a DMA transfer would be faster, if it is ...
1
vote
2answers
266 views
Direct SPU to SPU DMA requests on the Cell Processor?
Normal DMA requests on the Cell happen between the SPUs and the PPU. However, I have read that it is possible to set up DMA directly between SPUs. Anyone have any idea how this is accomplished?
0
votes
1answer
32 views
Fix Protocol Api Forex Access - Developing An App
Does anyone has any experience with developing applications using Fix Api protocol (using the FIX 4.4 protocol) to trade Forex via this ?
I would like to know how and when to start ?
Where can I get ...
0
votes
0answers
26 views
DMA Transfer Data Rate
I'm trying to learn about DMA transfer rates and I don't understand this questions. I have the answers but don't know how to get there.
This question concerns the use of DMA to handle the input and ...
0
votes
1answer
36 views
Why use a DMA controller if it slows down the system?
I read this in a book:
If the DMA controller in a system functions at a maximum rate of 5 MHz
and we still use 100 ns memory, the maximum transfer rate is 5 MHz
because the DMA controller is ...
0
votes
0answers
13 views
Memory data bus decomposition
Say we have a 32-bit wide memory bus to a shared memory in a network switch. Now I want to make the storing of packets maximize parallel. I put a DMA after each input port, so the switch controller ...
0
votes
0answers
115 views
Between Direct Memory Access and Virtual Memory
what problems could occur when mixing DMA and virtual
memory. Which of the peripherals (Graphics Card, Sound Card) could
introduce such problems? How can they be avoided?
0
votes
1answer
149 views
Reprogramming DMA start address using STM32F103 microcontroller (Cortex-M3)
StackOverflow Wizards:
The below IRQ handler drains the USART3 of incoming 32 byes of data. The first IRQ TC event reads the first 6 bytes, then reprograms the DMA engine to read in the last 24 ...
0
votes
1answer
226 views
dma programming [closed]
I want to write vast amount data to binary file in c++ and I want to do this job using dma(direct memory access) to save my cpu power and time for other processes.
tank you for your help and ...
0
votes
0answers
45 views
Why is dma-mapping streaming api not present for x86_64?
http://lxr.free-electrons.com/ident?i=dma_map_sg link shows there is no implementation for x86_64 architecture.
Also in my installation of Fedora 14 on x86_64, I am unable to use the symbol dma_map_sg ...
0
votes
0answers
290 views
What memcpy uses an DMA transfer
There in comments
Pattern for fast copy in C a user says that some versions of memcpy does use a DMA transfer (memory to memory).
Can anybody name an OS, CPU arch, libc variant, where DMA-enabled ...
0
votes
1answer
118 views
Best way to transfer video data to a device over PCI in linux
I need to transfer video data to and from an FPGA device over PCI in a linux environment. I'm using a third party PCI master core on the FPGA. So far, I've implemented a simple DMA controller on the ...
0
votes
1answer
98 views
udp send from driver
I have a driver that needs to:
receive data from an FPGA
DMA data to another another device (DSP) for encoding
send the encoded data via UDP to an external host
The original plan was to have the ...
0
votes
0answers
77 views
How much time will the processor be blocked by the DMA in the following situation?
A DMA transfers characters to main memory from a DVD reader transmitting at 150000 bits per second. The processor can fetch instructions at 3 million instructions/second. How much time will the ...
0
votes
1answer
528 views
In a linux sk_buff, is skb->data a physical or virtual address?
I'm investigating some memory corruption issues in an ethernet driver for an embedded system.
I suspect a problem between a bus mastering DMA controller and slow SDRAM. So I want to use a bounce ...
0
votes
1answer
815 views
Creating physical memory from user space to use for DMA transfers
I want to create some memory to use for DMA transfers. (Using Linux 2.6.18-128.el5 #1 SMP)
I have a API stack+kernel driver for my H/W that can do this for me, but its very very slow!
If I use the ...
0
votes
7answers
304 views
Should I read file in separate thread in this case?
I am writing an application for embedded linux where 5% of processor time is going in reading a file and 95% on processing it. Can I get some performance improvement if I read file in one thread and ...
-1
votes
0answers
14 views
Calculating Data Rates [closed]
I'm struggling with getting my head around calculating DMA data rates. I have the question and answers but would really appreciate it if someone could explain how they are calculated.
Thanks in ...