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

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

File Facts

System
Linux kernel
Corpus path
drivers/media/platform/renesas/vsp1/vsp1_brx.h
Extension
.h
Size
892 bytes
Lines
45
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_brx {
	struct vsp1_entity entity;
	unsigned int base;

	struct v4l2_ctrl_handler ctrls;

	struct {
		struct vsp1_rwpf *rpf;
	} inputs[VSP1_MAX_RPF];

	u32 bgcolor;
};

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

struct vsp1_brx *vsp1_brx_create(struct vsp1_device *vsp1,
				 enum vsp1_entity_type type);

#endif /* __VSP1_BRX_H__ */

Annotation

Implementation Notes