drivers/gpu/drm/xe/xe_drm_ras_types.h

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

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/xe/xe_drm_ras_types.h
Extension
.h
Size
949 bytes
Lines
49
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_drm_ras_counter {
	/** @name: error component name */
	const char *name;

	/** @counter: count of error */
	atomic_t counter;
};

/**
 * struct xe_drm_ras - XE DRM RAS structure
 *
 * This structure has details of error counters
 */
struct xe_drm_ras {
	/** @node: DRM RAS node */
	struct drm_ras_node *node;

	/** @info: info array for all types of errors */
	struct xe_drm_ras_counter *info[DRM_XE_RAS_ERR_SEV_MAX];
};

#endif

Annotation

Implementation Notes