Searched refs:next_rptr (Results 1 – 11 of 11) sorted by relevance
/linux-6.1.9/drivers/gpu/drm/radeon/ |
D | evergreen_dma.c | 72 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()
|
D | ni_dma.c | 128 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()
|
D | r600_dma.c | 409 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()
|
D | cik_sdma.c | 139 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()
|
D | r600.c | 3369 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()
|
D | evergreen.c | 2935 u32 next_rptr; in evergreen_ring_ib_execute() local 2942 next_rptr = ring->wptr + 3 + 4; in evergreen_ring_ib_execute() 2946 radeon_ring_write(ring, next_rptr); in evergreen_ring_ib_execute() 2948 next_rptr = ring->wptr + 5 + 4; in evergreen_ring_ib_execute() 2952 radeon_ring_write(ring, next_rptr); in evergreen_ring_ib_execute()
|
D | ni.c | 1424 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()
|
D | si.c | 3412 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()
|
D | cik.c | 3732 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()
|
D | r100.c | 3693 u32 next_rptr = ring->wptr + 2 + 3; in r100_ring_ib_execute() local 3695 radeon_ring_write(ring, next_rptr); in r100_ring_ib_execute()
|
/linux-6.1.9/drivers/gpu/drm/amd/display/dmub/inc/ |
D | dmub_cmd.h | 3532 uint32_t *next_rptr) in dmub_rb_get_rptr_with_offset() argument 3534 *next_rptr = rb->rptr + DMUB_RB_CMD_SIZE * num_cmds; in dmub_rb_get_rptr_with_offset() 3536 if (*next_rptr >= rb->capacity) in dmub_rb_get_rptr_with_offset() 3537 *next_rptr %= rb->capacity; in dmub_rb_get_rptr_with_offset()
|