drivers/gpu/drm/xe/xe_guc_hwconfig.h

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

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/xe/xe_guc_hwconfig.h
Extension
.h
Size
506 bytes
Lines
21
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

#ifndef _XE_GUC_HWCONFIG_H_
#define _XE_GUC_HWCONFIG_H_

#include <linux/types.h>

struct drm_printer;
struct xe_guc;

int xe_guc_hwconfig_init(struct xe_guc *guc);
u32 xe_guc_hwconfig_size(struct xe_guc *guc);
void xe_guc_hwconfig_copy(struct xe_guc *guc, void *dst);
void xe_guc_hwconfig_dump(struct xe_guc *guc, struct drm_printer *p);
int xe_guc_hwconfig_lookup_u32(struct xe_guc *guc, u32 attribute, u32 *val);

#endif

Annotation

Implementation Notes