drivers/gpu/drm/nouveau/include/nvfw/fw.h

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

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/nouveau/include/nvfw/fw.h
Extension
.h
Size
532 bytes
Lines
29
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 nvfw_bin_hdr {
	u32 bin_magic;
	u32 bin_ver;
	u32 bin_size;
	u32 header_offset;
	u32 data_offset;
	u32 data_size;
};

const struct nvfw_bin_hdr *nvfw_bin_hdr(struct nvkm_subdev *, const void *);

struct nvfw_bl_desc {
	u32 start_tag;
	u32 dmem_load_off;
	u32 code_off;
	u32 code_size;
	u32 data_off;
	u32 data_size;
};

const struct nvfw_bl_desc *nvfw_bl_desc(struct nvkm_subdev *, const void *);
#endif

Annotation

Implementation Notes