diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2014-06-12 22:07:52 +0200 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2014-06-14 18:06:58 +0200 |
commit | 0e05543576b460afff506a169dfdaa6f02bde5c6 (patch) | |
tree | af1a8f951ff7509d99550bab33ba4a7e3d44eea3 /arch/avr32/lib | |
parent | 0a26e1d6c394aacbf1153977b7348d1dff85db3f (diff) | |
download | u-boot-imx-0e05543576b460afff506a169dfdaa6f02bde5c6.zip u-boot-imx-0e05543576b460afff506a169dfdaa6f02bde5c6.tar.gz u-boot-imx-0e05543576b460afff506a169dfdaa6f02bde5c6.tar.bz2 |
avr32: migrate cache functions
Unfortunately the avr32 cache implementation has another API than the one
described in common.h. Migrate the flush/invalidate dcache functions to the
common API to be usable in device drivers.
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
CC: Josh Wu <josh.wu@atmel.com>
Diffstat (limited to 'arch/avr32/lib')
-rw-r--r-- | arch/avr32/lib/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/avr32/lib/board.c b/arch/avr32/lib/board.c index 7680102..bf0997f 100644 --- a/arch/avr32/lib/board.c +++ b/arch/avr32/lib/board.c @@ -65,8 +65,8 @@ static void dma_alloc_init(void) printf("DMA: Using memory from 0x%08lx to 0x%08lx\n", dma_alloc_start, dma_alloc_end); - dcache_invalidate_range(cached(dma_alloc_start), - dma_alloc_end - dma_alloc_start); + invalidate_dcache_range((unsigned long)cached(dma_alloc_start), + dma_alloc_end); } void *dma_alloc_coherent(size_t len, unsigned long *handle) |