From: ian Date: Sat, 24 Oct 2015 21:27:09 +0000 (+0000) Subject: Define a couple macros to access cacheline size/mask in an arch-dependent X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3f5c029ee2b51f1b504d5f4a569ee04a78d05f3b;p=people%2Fliuw%2Ffreebsd.git Define a couple macros to access cacheline size/mask in an arch-dependent way. This code should now work for all arm versions v4 thru v7. --- diff --git a/sys/arm/arm/busdma_machdep-v6.c b/sys/arm/arm/busdma_machdep-v6.c index 297b1292ac8..d62522e62c6 100644 --- a/sys/arm/arm/busdma_machdep-v6.c +++ b/sys/arm/arm/busdma_machdep-v6.c @@ -61,6 +61,14 @@ __FBSDID("$FreeBSD$"); #include #include +#if __ARM_ARCH < 6 +#define BUSDMA_DCACHE_ALIGN arm_dcache_align +#define BUSDMA_DCACHE_MASK arm_dcache_align_mask +#else +#define BUSDMA_DCACHE_ALIGN cpuinfo.dcache_line_size +#define BUSDMA_DCACHE_MASK cpuinfo.dcache_line_mask +#endif + #define MAX_BPAGES 64 #define MAX_DMA_SEGMENTS 4096 #define BUS_DMA_EXCL_BOUNCE BUS_DMA_BUS2 @@ -234,7 +242,7 @@ busdma_init(void *dummy) /* Create a cache of buffers in standard (cacheable) memory. */ standard_allocator = busdma_bufalloc_create("buffer", - arm_dcache_align, /* minimum_alignment */ + BUSDMA_DCACHE_ALIGN,/* minimum_alignment */ NULL, /* uma_alloc func */ NULL, /* uma_free func */ uma_flags); /* uma_zcreate_flags */ @@ -253,7 +261,7 @@ busdma_init(void *dummy) * BUS_DMA_COHERENT (and potentially BUS_DMA_NOCACHE) flag. */ coherent_allocator = busdma_bufalloc_create("coherent", - arm_dcache_align, /* minimum_alignment */ + BUSDMA_DCACHE_ALIGN,/* minimum_alignment */ busdma_bufalloc_alloc_uncacheable, busdma_bufalloc_free_uncacheable, uma_flags); /* uma_zcreate_flags */ @@ -1279,9 +1287,9 @@ dma_preread_safe(vm_offset_t va, vm_paddr_t pa, vm_size_t size) * as dcache_wb_poc() will do the rounding for us and works * at cacheline granularity. */ - if (va & cpuinfo.dcache_line_mask) + if (va & BUSDMA_DCACHE_MASK) dcache_wb_poc(va, pa, 1); - if ((va + size) & cpuinfo.dcache_line_mask) + if ((va + size) & BUSDMA_DCACHE_MASK) dcache_wb_poc(va + size, pa + size, 1); dcache_inv_poc_dma(va, pa, size);