This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

About TRACE32, DMA, and CACHE

Note: This was originally posted on 17th March 2009 at http://forums.arm.com

Hi ALL:

       i have some questions about the TRACE32, DMA, and CPU CACHE.
       i am now using the OMAP331 MPU, which contains an ARM926ejs core, and also has DMA controller.

       i use DMA to read data from peripheral NAND flash to SDRAM(address from 0x11700000). and the result is as below:

       (1).  use TRACE32 to load program into sdram and run it, call function to start DMA to read data from nand flash to SDRAM, the read data is stored from address 0x11700000. after DMA read finish, i use "d.dump 0x11700000" to see the content of sdram, and everything is ok. the content of 0x11700000 is the real content inside the nand flash.
        (2).  if i first use "d.dump 0x11700000" command to show the content of sdram, and then start DMA transfer, then after DMA finish, the content of sdram does not change, i guess that it is because of the cache of cpu, so i flush the cache, then content is updated immediatly on trace32 .
my question is : when trace32 asks arm9 to give content of address(0x11700000), how does arm9 answer trace32 ?

        (3). first use "d.dump 0x11700000" command to show the content of sdram. and then start DMA transfer. after DMA finish, flush cache, so the content of sdram is updated. then execute printf() instruction in program to print content of address 0x11700000 to hyper terminal, we assume that the content shown on pc is 0x12345678. then i use trace32 to change the value of 0x11700000 from 0x12345678 to 0x0. and then start DMA transfer once again, i means to read the same blocks from nand flash to sdram 0x11700000. after DMA finish, flush cache. but the content of 0x11700000 is not updated, it is still 0x0!!! it should be 0x12345678.   so i think it is because of the instruction "printf()" influences the cache about address 0x11700000, but who can give me more precise explanation about this result?

       (4). first use "d.dump 0x11700000" command to show the content of sdram. and then start DMA transfer. after DMA finish, flush cache, so the content of sdram is updated. then execute printf() instruction in program to print content of address 0x11700000 to hyper terminal, we assume that the content shown on pc is 0x12345678. then flash cache again. then i use trace32 to change the value of 0x11700000 from 0x12345678 to 0x0. and then start DMA transfer once again, i means to read the same blocks from nand flash to sdram 0x11700000. after DMA finish, flush cache. the content of 0x11700000 changed from 0x0 to 0x12345678. it is right.
here i flush cpu cache for three times. between the first two actions is a printf() instruction. so i think that this instruction influences the cache about address 0x11700000,

      at last, many questions in my mide:
     1. does dma transfer using cpu cache?
     2. how does cpu answer trance32 to give content of address?
     3. when using trace32 to change content of address, what does cpu do in the same time? will it updata its cache also?
     4. after dma transfer, the content of some address will be changed, will cpu check these address and update the cache?
0