Searched refs:dst_reloc (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | evergreen_cs.c | 2758 struct radeon_bo_list *src_reloc, *dst_reloc, *dst2_reloc; in evergreen_dma_cs_parse() local 2779 r = r600_dma_cs_next_reloc(p, &dst_reloc); in evergreen_dma_cs_parse() 2790 ib[idx+1] += (u32)(dst_reloc->gpu_offset >> 8); in evergreen_dma_cs_parse() 2798 ib[idx+1] += (u32)(dst_reloc->gpu_offset & 0xfffffffc); in evergreen_dma_cs_parse() 2799 ib[idx+2] += upper_32_bits(dst_reloc->gpu_offset) & 0xff; in evergreen_dma_cs_parse() 2806 if ((dst_offset + (count * 4)) > radeon_bo_size(dst_reloc->robj)) { in evergreen_dma_cs_parse() 2808 dst_offset, radeon_bo_size(dst_reloc->robj)); in evergreen_dma_cs_parse() 2818 r = r600_dma_cs_next_reloc(p, &dst_reloc); in evergreen_dma_cs_parse() 2836 if ((dst_offset + (count * 4)) > radeon_bo_size(dst_reloc->robj)) { in evergreen_dma_cs_parse() 2838 dst_offset + (count * 4), radeon_bo_size(dst_reloc->robj)); in evergreen_dma_cs_parse() [all …]
|
D | r600_cs.c | 2476 struct radeon_bo_list *src_reloc, *dst_reloc; in r600_dma_cs_parse() local 2497 r = r600_dma_cs_next_reloc(p, &dst_reloc); in r600_dma_cs_parse() 2506 ib[idx+1] += (u32)(dst_reloc->gpu_offset >> 8); in r600_dma_cs_parse() 2512 ib[idx+1] += (u32)(dst_reloc->gpu_offset & 0xfffffffc); in r600_dma_cs_parse() 2513 ib[idx+2] += upper_32_bits(dst_reloc->gpu_offset) & 0xff; in r600_dma_cs_parse() 2516 if ((dst_offset + (count * 4)) > radeon_bo_size(dst_reloc->robj)) { in r600_dma_cs_parse() 2518 dst_offset + (count * 4), radeon_bo_size(dst_reloc->robj)); in r600_dma_cs_parse() 2528 r = r600_dma_cs_next_reloc(p, &dst_reloc); in r600_dma_cs_parse() 2544 ib[idx+5] += (u32)(dst_reloc->gpu_offset & 0xfffffffc); in r600_dma_cs_parse() 2545 ib[idx+6] += upper_32_bits(dst_reloc->gpu_offset) & 0xff; in r600_dma_cs_parse() [all …]
|