Skip to content

Commit

Permalink
[AVR32] Fix incorrect invalidation of shared cachelines
Browse files Browse the repository at this point in the history
Fix bug in dma_map_single(..., DMA_FROM_DEVICE) caused by incorrect
invalidation of shared cachelines at the beginning and/or end of
the specified buffer.  Those shared cachelines need to be flushed,
since they may hold valid data (which must not be discarded).

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
  • Loading branch information
David Brownell authored and Haavard Skinnemoen committed Feb 9, 2007
1 parent 58febc0 commit 212868d
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions arch/avr32/mm/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,34 @@

void invalidate_dcache_region(void *start, size_t size)
{
unsigned long v, begin, end, linesz;
unsigned long v, begin, end, linesz, mask;
int flush = 0;

linesz = boot_cpu_data.dcache.linesz;
mask = linesz - 1;

/* when first and/or last cachelines are shared, flush them
* instead of invalidating ... never discard valid data!
*/
begin = (unsigned long)start;
end = begin + size - 1;

if (begin & mask) {
flush_dcache_line(start);
begin += linesz;
flush = 1;
}
if ((end & mask) != mask) {
flush_dcache_line((void *)end);
end -= linesz;
flush = 1;
}

//printk("invalidate dcache: %p + %u\n", start, size);

/* You asked for it, you got it */
begin = (unsigned long)start & ~(linesz - 1);
end = ((unsigned long)start + size + linesz - 1) & ~(linesz - 1);

for (v = begin; v < end; v += linesz)
/* remaining cachelines only need invalidation */
for (v = begin; v <= end; v += linesz)
invalidate_dcache_line((void *)v);
if (flush)
flush_write_buffer();
}

void clean_dcache_region(void *start, size_t size)
Expand Down

0 comments on commit 212868d

Please sign in to comment.