Skip to content

Commit

Permalink
[media] v4l: vsp1: Add BRU support
Browse files Browse the repository at this point in the history
The Blend ROP Unit performs blending and ROP operations for up to four
sources.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
  • Loading branch information
Laurent Pinchart authored and Mauro Carvalho Chehab committed Apr 23, 2014
1 parent d9b45ed commit 629bb6d
Show file tree
Hide file tree
Showing 13 changed files with 586 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/media/platform/vsp1/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
vsp1-y := vsp1_drv.o vsp1_entity.o vsp1_video.o
vsp1-y += vsp1_rpf.o vsp1_rwpf.o vsp1_wpf.o
vsp1-y += vsp1_hsit.o vsp1_lif.o vsp1_lut.o
vsp1-y += vsp1_sru.o vsp1_uds.o
vsp1-y += vsp1_bru.o vsp1_sru.o vsp1_uds.o

obj-$(CONFIG_VIDEO_RENESAS_VSP1) += vsp1.o
2 changes: 2 additions & 0 deletions drivers/media/platform/vsp1/vsp1.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ struct clk;
struct device;

struct vsp1_platform_data;
struct vsp1_bru;
struct vsp1_hsit;
struct vsp1_lif;
struct vsp1_lut;
Expand All @@ -49,6 +50,7 @@ struct vsp1_device {
struct mutex lock;
int ref_count;

struct vsp1_bru *bru;
struct vsp1_hsit *hsi;
struct vsp1_hsit *hst;
struct vsp1_lif *lif;
Expand Down
Loading

0 comments on commit 629bb6d

Please sign in to comment.