2013-06-04 21:22:30 +07:00
|
|
|
/*
|
|
|
|
* vsp1_rwpf.h -- R-Car VSP1 Read and Write Pixel Formatters
|
|
|
|
*
|
2014-02-07 00:42:31 +07:00
|
|
|
* Copyright (C) 2013-2014 Renesas Electronics Corporation
|
2013-06-04 21:22:30 +07: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 15:14:22 +07:00
|
|
|
#include <linux/spinlock.h>
|
|
|
|
|
2013-06-04 21:22:30 +07:00
|
|
|
#include <media/media-entity.h>
|
2014-05-22 05:00:05 +07:00
|
|
|
#include <media/v4l2-ctrls.h>
|
2013-06-04 21:22:30 +07: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-06 02:57:35 +07:00
|
|
|
struct v4l2_ctrl;
|
2015-11-15 07:27:52 +07:00
|
|
|
struct vsp1_dl_manager;
|
2016-01-20 04:16:36 +07:00
|
|
|
struct vsp1_pipeline;
|
2015-07-29 00:05:56 +07:00
|
|
|
struct vsp1_rwpf;
|
2015-08-03 00:58:43 +07:00
|
|
|
struct vsp1_video;
|
2015-07-29 02:04:47 +07:00
|
|
|
|
|
|
|
struct vsp1_rwpf_memory {
|
|
|
|
dma_addr_t addr[3];
|
|
|
|
};
|
2015-07-29 00:05:56 +07:00
|
|
|
|
2013-06-04 21:22:30 +07:00
|
|
|
struct vsp1_rwpf {
|
|
|
|
struct vsp1_entity entity;
|
2014-05-22 05:00:05 +07:00
|
|
|
struct v4l2_ctrl_handler ctrls;
|
2013-06-04 21:22:30 +07:00
|
|
|
|
2016-01-20 04:16:36 +07:00
|
|
|
struct vsp1_pipeline *pipe;
|
2015-08-03 00:58:43 +07:00
|
|
|
struct vsp1_video *video;
|
|
|
|
|
2013-06-04 21:22:30 +07:00
|
|
|
unsigned int max_width;
|
|
|
|
unsigned int max_height;
|
2013-08-25 06:49:58 +07:00
|
|
|
|
2015-07-29 00:00:43 +07:00
|
|
|
struct v4l2_pix_format_mplane format;
|
|
|
|
const struct vsp1_format_info *fmtinfo;
|
2015-11-16 04:14:22 +07:00
|
|
|
unsigned int bru_input;
|
2013-08-25 06:49:58 +07:00
|
|
|
|
2015-11-01 21:19:42 +07:00
|
|
|
unsigned int alpha;
|
|
|
|
|
2016-06-20 15:04:38 +07:00
|
|
|
u32 mult_alpha;
|
|
|
|
u32 outfmt;
|
|
|
|
|
2016-05-26 15:14:22 +07:00
|
|
|
struct {
|
|
|
|
spinlock_t lock;
|
2016-06-20 16:07:08 +07:00
|
|
|
struct {
|
|
|
|
struct v4l2_ctrl *vflip;
|
|
|
|
struct v4l2_ctrl *hflip;
|
|
|
|
struct v4l2_ctrl *rotate;
|
|
|
|
} ctrls;
|
2016-05-26 15:14:22 +07:00
|
|
|
unsigned int pending;
|
|
|
|
unsigned int active;
|
2016-06-20 16:07:08 +07:00
|
|
|
bool rotate;
|
2016-05-26 15:14:22 +07:00
|
|
|
} flip;
|
|
|
|
|
2015-11-02 00:18:56 +07:00
|
|
|
struct vsp1_rwpf_memory mem;
|
2015-11-15 07:27:52 +07:00
|
|
|
|
|
|
|
struct vsp1_dl_manager *dlm;
|
2013-06-04 21:22:30 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct vsp1_rwpf *to_rwpf(struct v4l2_subdev *subdev)
|
|
|
|
{
|
|
|
|
return container_of(subdev, struct vsp1_rwpf, entity.subdev);
|
|
|
|
}
|
|
|
|
|
2015-11-17 21:23:23 +07:00
|
|
|
static inline struct vsp1_rwpf *entity_to_rwpf(struct vsp1_entity *entity)
|
|
|
|
{
|
|
|
|
return container_of(entity, struct vsp1_rwpf, entity);
|
|
|
|
}
|
|
|
|
|
2013-06-04 21:22:30 +07: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 15:14:22 +07:00
|
|
|
int vsp1_rwpf_init_ctrls(struct vsp1_rwpf *rwpf, unsigned int ncontrols);
|
2015-11-01 21:19:42 +07:00
|
|
|
|
2015-11-22 22:37:45 +07:00
|
|
|
extern const struct v4l2_subdev_pad_ops vsp1_rwpf_pad_ops;
|
2013-06-04 21:22:30 +07:00
|
|
|
|
2015-11-16 04:14:22 +07:00
|
|
|
struct v4l2_rect *vsp1_rwpf_get_crop(struct vsp1_rwpf *rwpf,
|
|
|
|
struct v4l2_subdev_pad_config *config);
|
2015-11-01 22:48:11 +07:00
|
|
|
|
2013-06-04 21:22:30 +07:00
|
|
|
#endif /* __VSP1_RWPF_H__ */
|