/* * The job scheduler for this ring.
*/ struct drm_gpu_scheduler sched;
/* * List of in-flight submits on this ring. Protected by submit_lock. * * Currently just submits that are already written into the ring, not * submits that are still in drm_gpu_scheduler's queues. At a later * step we could probably move to letting drm_gpu_scheduler manage * hangcheck detection and keep track of submit jobs that are in- * flight.
*/ struct list_head submits;
spinlock_t submit_lock;
/** * hangcheck_progress_retries: * * The number of extra hangcheck duration cycles that we have given * due to it appearing that the GPU is making forward progress. * * For GPU generations which support progress detection (see. * msm_gpu_funcs::progress()), if the GPU appears to be making progress * (ie. the CP has advanced in the command stream, we'll allow up to * DRM_MSM_HANGCHECK_PROGRESS_RETRIES expirations of the hangcheck timer * before killing the job. But to detect progress we need two sample * points, so the duration of the hangcheck timer is halved. In other * words we'll let the submit run for up to: * * (DRM_MSM_HANGCHECK_DEFAULT_PERIOD / 2) * (DRM_MSM_HANGCHECK_PROGRESS_RETRIES + 1)
*/ int hangcheck_progress_retries;
/** * last_cp_state: The state of the CP at the last call to gpu->progress()
*/ struct msm_cp_state last_cp_state;
/* * preempt_lock protects preemption and serializes wptr updates against * preemption. Can be aquired from irq context.
*/
spinlock_t preempt_lock;
/* * Whether we skipped writing wptr and it needs to be updated in the * future when the ring becomes current.
*/ bool restore_wptr;
/** * cur_ctx_seqno: * * The ctx->seqno value of the last context to submit to this ring * Tracked by seqno rather than pointer value to avoid dangling * pointers, and cases where a ctx can be freed and a new one created * with the same address.
*/ int cur_ctx_seqno;
};
/* ringbuffer helpers (the parts that are same for a3xx/a2xx/z180..) */
staticinlinevoid
OUT_RING(struct msm_ringbuffer *ring, uint32_t data)
{ /* * ring->next points to the current command being written - it won't be * committed as ring->cur until the flush
*/ if (ring->next == ring->end)
ring->next = ring->start;
*(ring->next++) = data;
}
#endif/* __MSM_RINGBUFFER_H__ */
Messung V0.5
¤ Dauer der Verarbeitung: 0.9 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.