Lines Matching +full:in +full:- +full:flight
1 /* SPDX-License-Identifier: GPL-2.0-only */
14 ((ring)->memptrs_iova + offsetof(struct msm_rbmemptrs, member))
59 * List of in-flight submits on this ring. Protected by submit_lock.
62 * submits that are still in drm_gpu_scheduler's queues. At a later
64 * hangcheck detection and keep track of submit jobs that are in-
65 * flight.
84 * (ie. the CP has advanced in the command stream, we'll allow up to
87 * points, so the duration of the hangcheck timer is halved. In other
95 * last_cp_state: The state of the CP at the last call to gpu->progress()
106 * Whether we skipped writing wptr and it needs to be updated in the
114 * The ctx->seqno value of the last context to submit to this ring
132 * ring->next points to the current command being written - it won't be in OUT_RING()
133 * committed as ring->cur until the flush in OUT_RING()
135 if (ring->next == ring->end) in OUT_RING()
136 ring->next = ring->start; in OUT_RING()
137 *(ring->next++) = data; in OUT_RING()