drivers/gpu/drm/xe/abi/xe_sysctrl_abi.h

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

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/xe/abi/xe_sysctrl_abi.h
Extension
.h
Size
1897 bytes
Lines
66
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_sysctrl_app_msg_hdr {
	u32 data;
} __packed;

#define SYSCTRL_HDR_GROUP_ID_MASK	GENMASK(7, 0)
#define SYSCTRL_HDR_COMMAND_MASK	GENMASK(14, 8)
#define SYSCTRL_HDR_COMMAND_MAX		0x7f
#define SYSCTRL_HDR_IS_RESPONSE		BIT(15)
#define SYSCTRL_HDR_RESERVED_MASK	GENMASK(23, 16)
#define SYSCTRL_HDR_RESULT_MASK		GENMASK(31, 24)

#define APP_HDR_GROUP_ID_MASK		GENMASK(7, 0)
#define APP_HDR_COMMAND_MASK		GENMASK(15, 8)
#define APP_HDR_VERSION_MASK		GENMASK(23, 16)
#define APP_HDR_RESERVED_MASK		GENMASK(31, 24)

#endif

Annotation

Implementation Notes