drivers/gpu/drm/nouveau/include/nvif/head.h

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/nouveau/include/nvif/head.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/nouveau/include/nvif/head.h
Extension
.h
Size
550 bytes
Lines
24
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 nvif_head {
	struct nvif_object object;
};

int nvif_head_ctor(struct nvif_disp *, const char *name, int id, struct nvif_head *);
void nvif_head_dtor(struct nvif_head *);

static inline int
nvif_head_id(struct nvif_head *head)
{
	return head->object.handle;
}

int nvif_head_vblank_event_ctor(struct nvif_head *, const char *name, nvif_event_func, bool wait,
				struct nvif_event *);
#endif

Annotation

Implementation Notes