Home
last modified time | relevance | path

Searched refs:next_rptr (Results 1 – 11 of 11) sorted by relevance

/drivers/gpu/drm/radeon/
Devergreen_dma.c72 u32 next_rptr = ring->wptr + 4; in evergreen_dma_ring_ib_execute() local
73 while ((next_rptr & 7) != 5) in evergreen_dma_ring_ib_execute()
74 next_rptr++; in evergreen_dma_ring_ib_execute()
75 next_rptr += 3; in evergreen_dma_ring_ib_execute()
79 radeon_ring_write(ring, next_rptr); in evergreen_dma_ring_ib_execute()
Dr600_dma.c409 u32 next_rptr = ring->wptr + 4; in r600_dma_ring_ib_execute() local
410 while ((next_rptr & 7) != 5) in r600_dma_ring_ib_execute()
411 next_rptr++; in r600_dma_ring_ib_execute()
412 next_rptr += 3; in r600_dma_ring_ib_execute()
416 radeon_ring_write(ring, next_rptr); in r600_dma_ring_ib_execute()
Dni_dma.c128 u32 next_rptr = ring->wptr + 4; in cayman_dma_ring_ib_execute() local
129 while ((next_rptr & 7) != 5) in cayman_dma_ring_ib_execute()
130 next_rptr++; in cayman_dma_ring_ib_execute()
131 next_rptr += 3; in cayman_dma_ring_ib_execute()
135 radeon_ring_write(ring, next_rptr); in cayman_dma_ring_ib_execute()
Dcik_sdma.c139 u32 next_rptr = ring->wptr + 5; in cik_sdma_ring_ib_execute() local
140 while ((next_rptr & 7) != 4) in cik_sdma_ring_ib_execute()
141 next_rptr++; in cik_sdma_ring_ib_execute()
142 next_rptr += 4; in cik_sdma_ring_ib_execute()
147 radeon_ring_write(ring, next_rptr); in cik_sdma_ring_ib_execute()
Dr600.c3369 u32 next_rptr; in r600_ring_ib_execute() local
3372 next_rptr = ring->wptr + 3 + 4; in r600_ring_ib_execute()
3376 radeon_ring_write(ring, next_rptr); in r600_ring_ib_execute()
3378 next_rptr = ring->wptr + 5 + 4; in r600_ring_ib_execute()
3382 radeon_ring_write(ring, next_rptr); in r600_ring_ib_execute()
Devergreen.c2934 u32 next_rptr; in evergreen_ring_ib_execute() local
2941 next_rptr = ring->wptr + 3 + 4; in evergreen_ring_ib_execute()
2945 radeon_ring_write(ring, next_rptr); in evergreen_ring_ib_execute()
2947 next_rptr = ring->wptr + 5 + 4; in evergreen_ring_ib_execute()
2951 radeon_ring_write(ring, next_rptr); in evergreen_ring_ib_execute()
Dni.c1424 uint32_t next_rptr = ring->wptr + 3 + 4 + 8; in cayman_ring_ib_execute() local
1428 radeon_ring_write(ring, next_rptr); in cayman_ring_ib_execute()
Dsi.c3412 u32 next_rptr; in si_ring_ib_execute() local
3414 next_rptr = ring->wptr + 3 + 4 + 8; in si_ring_ib_execute()
3418 radeon_ring_write(ring, next_rptr); in si_ring_ib_execute()
3420 next_rptr = ring->wptr + 5 + 4 + 8; in si_ring_ib_execute()
3425 radeon_ring_write(ring, next_rptr); in si_ring_ib_execute()
Dcik.c3732 u32 next_rptr; in cik_ring_ib_execute() local
3734 next_rptr = ring->wptr + 3 + 4; in cik_ring_ib_execute()
3738 radeon_ring_write(ring, next_rptr); in cik_ring_ib_execute()
3740 next_rptr = ring->wptr + 5 + 4; in cik_ring_ib_execute()
3745 radeon_ring_write(ring, next_rptr); in cik_ring_ib_execute()
Dr100.c3692 u32 next_rptr = ring->wptr + 2 + 3; in r100_ring_ib_execute() local
3694 radeon_ring_write(ring, next_rptr); in r100_ring_ib_execute()
/drivers/gpu/drm/amd/display/dmub/inc/
Ddmub_cmd.h2561 uint32_t *next_rptr) in dmub_rb_get_rptr_with_offset() argument
2563 *next_rptr = rb->rptr + DMUB_RB_CMD_SIZE * num_cmds; in dmub_rb_get_rptr_with_offset()
2565 if (*next_rptr >= rb->capacity) in dmub_rb_get_rptr_with_offset()
2566 *next_rptr %= rb->capacity; in dmub_rb_get_rptr_with_offset()