2013-06-04 14:22:30 +00:00
|
|
|
/*
|
|
|
|
* vsp1_rwpf.h -- R-Car VSP1 Read and Write Pixel Formatters
|
|
|
|
*
|
2014-02-06 17:42:31 +00:00
|
|
|
* Copyright (C) 2013-2014 Renesas Electronics Corporation
|
2013-06-04 14:22:30 +00:00
|
|
|
*
|
|
|
|
* Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
#ifndef __VSP1_RWPF_H__
|
|
|
|
#define __VSP1_RWPF_H__
|
|
|
|
|
2016-05-26 08:14:22 +00:00
|
|
|
#include <linux/spinlock.h>
|
|
|
|
|
2013-06-04 14:22:30 +00:00
|
|
|
#include <media/media-entity.h>
|
2014-05-21 22:00:05 +00:00
|
|
|
#include <media/v4l2-ctrls.h>
|
2013-06-04 14:22:30 +00:00
|
|
|
#include <media/v4l2-subdev.h>
|
|
|
|
|
|
|
|
#include "vsp1.h"
|
|
|
|
#include "vsp1_entity.h"
|
|
|
|
|
|
|
|
#define RWPF_PAD_SINK 0
|
|
|
|
#define RWPF_PAD_SOURCE 1
|
|
|
|
|
2015-08-05 19:57:35 +00:00
|
|
|
struct v4l2_ctrl;
|
2015-11-15 00:27:52 +00:00
|
|
|
struct vsp1_dl_manager;
|
2016-01-19 21:16:36 +00:00
|
|
|
struct vsp1_pipeline;
|
2015-07-28 17:05:56 +00:00
|
|
|
struct vsp1_rwpf;
|
2015-08-02 17:58:43 +00:00
|
|
|
struct vsp1_video;
|
2015-07-28 19:04:47 +00:00
|
|
|
|
|
|
|
struct vsp1_rwpf_memory {
|
|
|
|
dma_addr_t addr[3];
|
|
|
|
};
|
2015-07-28 17:05:56 +00:00
|
|
|
|
2013-06-04 14:22:30 +00:00
|
|
|
struct vsp1_rwpf {
|
|
|
|
struct vsp1_entity entity;
|
2014-05-21 22:00:05 +00:00
|
|
|
struct v4l2_ctrl_handler ctrls;
|
2013-06-04 14:22:30 +00:00
|
|
|
|
2016-01-19 21:16:36 +00:00
|
|
|
struct vsp1_pipeline *pipe;
|
2015-08-02 17:58:43 +00:00
|
|
|
struct vsp1_video *video;
|
|
|
|
|
2013-06-04 14:22:30 +00:00
|
|
|
unsigned int max_width;
|
|
|
|
unsigned int max_height;
|
2013-08-24 23:49:58 +00:00
|
|
|
|
2015-07-28 17:00:43 +00:00
|
|
|
struct v4l2_pix_format_mplane format;
|
|
|
|
const struct vsp1_format_info *fmtinfo;
|
2015-11-15 21:14:22 +00:00
|
|
|
unsigned int bru_input;
|
2013-08-24 23:49:58 +00:00
|
|
|
|
2015-11-01 14:19:42 +00:00
|
|
|
unsigned int alpha;
|
|
|
|
|
2016-06-20 08:04:38 +00:00
|
|
|
u32 mult_alpha;
|
|
|
|
u32 outfmt;
|
|
|
|
|
2016-05-26 08:14:22 +00:00
|
|
|
struct {
|
|
|
|
spinlock_t lock;
|
|
|
|
struct v4l2_ctrl *ctrls[2];
|
|
|
|
unsigned int pending;
|
|
|
|
unsigned int active;
|
|
|
|
} flip;
|
|
|
|
|
2015-11-01 17:18:56 +00:00
|
|
|
struct vsp1_rwpf_memory mem;
|
2015-11-15 00:27:52 +00:00
|
|
|
|
|
|
|
struct vsp1_dl_manager *dlm;
|
2013-06-04 14:22:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct vsp1_rwpf *to_rwpf(struct v4l2_subdev *subdev)
|
|
|
|
{
|
|
|
|
return container_of(subdev, struct vsp1_rwpf, entity.subdev);
|
|
|
|
}
|
|
|
|
|
2015-11-17 14:23:23 +00:00
|
|
|
static inline struct vsp1_rwpf *entity_to_rwpf(struct vsp1_entity *entity)
|
|
|
|
{
|
|
|
|
return container_of(entity, struct vsp1_rwpf, entity);
|
|
|
|
}
|
|
|
|
|
2013-06-04 14:22:30 +00:00
|
|
|
struct vsp1_rwpf *vsp1_rpf_create(struct vsp1_device *vsp1, unsigned int index);
|
|
|
|
struct vsp1_rwpf *vsp1_wpf_create(struct vsp1_device *vsp1, unsigned int index);
|
|
|
|
|
2016-05-26 08:14:22 +00:00
|
|
|
int vsp1_rwpf_init_ctrls(struct vsp1_rwpf *rwpf, unsigned int ncontrols);
|
2015-11-01 14:19:42 +00:00
|
|
|
|
2015-11-22 15:37:45 +00:00
|
|
|
extern const struct v4l2_subdev_pad_ops vsp1_rwpf_pad_ops;
|
2013-06-04 14:22:30 +00:00
|
|
|
|
2015-11-15 21:14:22 +00:00
|
|
|
struct v4l2_rect *vsp1_rwpf_get_crop(struct vsp1_rwpf *rwpf,
|
|
|
|
struct v4l2_subdev_pad_config *config);
|
2015-11-01 15:48:11 +00:00
|
|
|
|
2013-06-04 14:22:30 +00:00
|
|
|
#endif /* __VSP1_RWPF_H__ */
|