drivers/gpu/drm/sti/sti_vid.h

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/sti/sti_vid.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/sti/sti_vid.h
Extension
.h
Size
709 bytes
Lines
32
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 sti_vid {
	struct device *dev;
	void __iomem *regs;
	int id;
};

void sti_vid_commit(struct sti_vid *vid,
		    struct drm_plane_state *state);
void sti_vid_disable(struct sti_vid *vid);
struct sti_vid *sti_vid_create(struct device *dev, struct drm_device *drm_dev,
			       int id, void __iomem *baseaddr);

void vid_debugfs_init(struct sti_vid *vid, struct drm_minor *minor);

#endif

Annotation

Implementation Notes