drivers/gpu/drm/xe/xe_dep_job_types.h

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/xe/xe_dep_job_types.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/xe/xe_dep_job_types.h
Extension
.h
Size
708 bytes
Lines
30
Domain
Driver Families
Bucket
drivers/gpu
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

struct xe_dep_job_ops {
	/** @run_job: Run generic Xe dependency job */
	struct dma_fence *(*run_job)(struct xe_dep_job *job);
	/** @free_job: Free generic Xe dependency job */
	void (*free_job)(struct xe_dep_job *job);
};

/** struct xe_dep_job - Generic dependency Xe job */
struct xe_dep_job {
	/** @drm: base DRM scheduler job */
	struct drm_sched_job drm;
	/** @ops: dependency job operations */
	const struct xe_dep_job_ops *ops;
};

#endif

Annotation

Implementation Notes