drivers/media/platform/renesas/vsp1/vsp1_clu.h

Source file repositories/reference/linux-study-clean/drivers/media/platform/renesas/vsp1/vsp1_clu.h

File Facts

System
Linux kernel
Corpus path
drivers/media/platform/renesas/vsp1/vsp1_clu.h
Extension
.h
Size
924 bytes
Lines
46
Domain
Driver Families
Bucket
drivers/media
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 vsp1_clu {
	struct vsp1_entity entity;

	struct v4l2_ctrl_handler ctrls;

	bool yuv_mode;
	spinlock_t lock;
	unsigned int mode;
	struct vsp1_dl_body *clu;
	struct vsp1_dl_body_pool *pool;
};

static inline struct vsp1_clu *to_clu(struct v4l2_subdev *subdev)
{
	return container_of(subdev, struct vsp1_clu, entity.subdev);
}

struct vsp1_clu *vsp1_clu_create(struct vsp1_device *vsp1);

#endif /* __VSP1_CLU_H__ */

Annotation

Implementation Notes