drivers/gpu/drm/etnaviv/etnaviv_dump.h

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/etnaviv/etnaviv_dump.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/etnaviv/etnaviv_dump.h
Extension
.h
Size
687 bytes
Lines
43
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 etnaviv_dump_object_header {
	__le32 magic;
	__le32 type;
	__le32 file_offset;
	__le32 file_size;
	__le64 iova;
	__le32 data[2];
};

/* Registers object, an array of these */
struct etnaviv_dump_registers {
	__le32 reg;
	__le32 value;
};

#ifdef __KERNEL__
struct etnaviv_gem_submit;
void etnaviv_core_dump(struct etnaviv_gem_submit *submit);
#endif

#endif

Annotation

Implementation Notes