lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [lwip-users] Recv UDP Problem


From: Robin Iddon
Subject: Re: [lwip-users] Recv UDP Problem
Date: Fri, 25 Nov 2016 21:03:58 +0000

> Surely the cache memory gets invalidated automatically regardless of the 
> source of writing to it?


No, often that is not the case; if the CPU(s) write to the memory (through the 
cache) then the cache is valid when another thread or whatever reads back from 
it; if a DMA peripheral (pretty much any other bus master - look at the bus 
matrix in the docs) writes to RAM then it will bypass the cache.

You can in most CPUs have uncacheable memory regions such that you will always 
get the data direct to/from RAM.  In others you need to invalidate the cache 
before reading the “volatile” memory.  Depending on you performance 
requirements there are trade offs between cache invalidation vs. reading 
uncacheable memory region.

You’ll need to look at the M7 manual (not sure which one you’re using) to see 
how the data cache coherency is managed.

The simplest solution is to map the memory reads/writes to descriptors and 
packet buffers to go via the uncacheable memory space (often a case of ORing in 
a high order address bit; not sure on M7).





reply via email to

[Prev in Thread] Current Thread [Next in Thread]