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

/linux-master/drivers/gpu/drm/radeon/
H A Devergreen_dma.c72 u32 next_rptr = ring->wptr + 4; local
73 while ((next_rptr & 7) != 5)
74 next_rptr++;
75 next_rptr += 3;
79 radeon_ring_write(ring, next_rptr);
H A Dr600_dma.c409 u32 next_rptr = ring->wptr + 4; local
410 while ((next_rptr & 7) != 5)
411 next_rptr++;
412 next_rptr += 3;
416 radeon_ring_write(ring, next_rptr);
H A Dni_dma.c128 u32 next_rptr = ring->wptr + 4; local
129 while ((next_rptr & 7) != 5)
130 next_rptr++;
131 next_rptr += 3;
135 radeon_ring_write(ring, next_rptr);
H A Dcik_sdma.c139 u32 next_rptr = ring->wptr + 5; local
140 while ((next_rptr & 7) != 4)
141 next_rptr++;
142 next_rptr += 4;
147 radeon_ring_write(ring, next_rptr);
H A Dr600.c3368 u32 next_rptr; local
3371 next_rptr = ring->wptr + 3 + 4;
3375 radeon_ring_write(ring, next_rptr);
3377 next_rptr = ring->wptr + 5 + 4;
3381 radeon_ring_write(ring, next_rptr);
H A Dni.c1411 uint32_t next_rptr = ring->wptr + 3 + 4 + 8; local
1415 radeon_ring_write(ring, next_rptr);
H A Dsi.c3393 u32 next_rptr; local
3395 next_rptr = ring->wptr + 3 + 4 + 8;
3399 radeon_ring_write(ring, next_rptr);
3401 next_rptr = ring->wptr + 5 + 4 + 8;
3406 radeon_ring_write(ring, next_rptr);
H A Devergreen.c2932 u32 next_rptr; local
2939 next_rptr = ring->wptr + 3 + 4;
2943 radeon_ring_write(ring, next_rptr);
2945 next_rptr = ring->wptr + 5 + 4;
2949 radeon_ring_write(ring, next_rptr);
H A Dr100.c3693 u32 next_rptr = ring->wptr + 2 + 3; local
3695 radeon_ring_write(ring, next_rptr);
H A Dcik.c3732 u32 next_rptr; local
3734 next_rptr = ring->wptr + 3 + 4;
3738 radeon_ring_write(ring, next_rptr);
3740 next_rptr = ring->wptr + 5 + 4;
3745 radeon_ring_write(ring, next_rptr);
/linux-master/drivers/gpu/drm/amd/display/dmub/inc/
H A Ddmub_cmd.h4699 * @param next_rptr The next offset in the ringbuffer
4703 uint32_t *next_rptr)
4705 *next_rptr = rb->rptr + DMUB_RB_CMD_SIZE * num_cmds;
4707 if (*next_rptr >= rb->capacity)
4708 *next_rptr %= rb->capacity;
4701 dmub_rb_get_rptr_with_offset(struct dmub_rb *rb, uint32_t num_cmds, uint32_t *next_rptr) argument

Completed in 226 milliseconds