Home
last modified time | relevance | path

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

/linux/drivers/gpu/drm/radeon/
H A 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()
H A 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()
H A 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()
H A 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()
H A 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()
H A Devergreen.c2932 u32 next_rptr; in evergreen_ring_ib_execute() local
2939 next_rptr = ring->wptr + 3 + 4; in evergreen_ring_ib_execute()
2943 radeon_ring_write(ring, next_rptr); in evergreen_ring_ib_execute()
2945 next_rptr = ring->wptr + 5 + 4; in evergreen_ring_ib_execute()
2949 radeon_ring_write(ring, next_rptr); in evergreen_ring_ib_execute()
H A Dni.c1411 uint32_t next_rptr = ring->wptr + 3 + 4 + 8; in cayman_ring_ib_execute() local
1415 radeon_ring_write(ring, next_rptr); in cayman_ring_ib_execute()
H A Dsi.c3393 u32 next_rptr; in si_ring_ib_execute() local
3395 next_rptr = ring->wptr + 3 + 4 + 8; in si_ring_ib_execute()
3399 radeon_ring_write(ring, next_rptr); in si_ring_ib_execute()
3401 next_rptr = ring->wptr + 5 + 4 + 8; in si_ring_ib_execute()
3406 radeon_ring_write(ring, next_rptr); in si_ring_ib_execute()
H A 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()
H A Dr100.c3714 u32 next_rptr = ring->wptr + 2 + 3; in r100_ring_ib_execute() local
3716 radeon_ring_write(ring, next_rptr); in r100_ring_ib_execute()
/linux/drivers/gpu/drm/amd/display/dmub/inc/
H A Ddmub_cmd.h5802 uint32_t *next_rptr) in dmub_rb_get_rptr_with_offset() argument
5804 *next_rptr = rb->rptr + DMUB_RB_CMD_SIZE * num_cmds; in dmub_rb_get_rptr_with_offset()
5806 if (*next_rptr >= rb->capacity) in dmub_rb_get_rptr_with_offset()
5807 *next_rptr %= rb->capacity; in dmub_rb_get_rptr_with_offset()