blob: 1a90c7c8e9727687cafe94efa561052d2ad0e560 [file] [log] [blame]
Laurent Pinchart26e0ca22013-06-04 11:22:30 -03001/*
2 * vsp1_rwpf.h -- R-Car VSP1 Read and Write Pixel Formatters
3 *
Laurent Pinchart8a1edc52014-02-06 14:42:31 -03004 * Copyright (C) 2013-2014 Renesas Electronics Corporation
Laurent Pinchart26e0ca22013-06-04 11:22:30 -03005 *
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13#ifndef __VSP1_RWPF_H__
14#define __VSP1_RWPF_H__
15
16#include <media/media-entity.h>
Laurent Pinchart7578c202014-05-21 19:00:05 -030017#include <media/v4l2-ctrls.h>
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030018#include <media/v4l2-subdev.h>
19
20#include "vsp1.h"
21#include "vsp1_entity.h"
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030022
23#define RWPF_PAD_SINK 0
24#define RWPF_PAD_SOURCE 1
25
Laurent Pinchartb6af10c2015-07-28 14:05:56 -030026struct vsp1_rwpf;
Laurent Pinchartfaf26442015-08-02 14:58:43 -030027struct vsp1_video;
Laurent Pinchartb58faa92015-07-28 16:04:47 -030028
29struct vsp1_rwpf_memory {
30 unsigned int num_planes;
31 dma_addr_t addr[3];
32 unsigned int length[3];
33};
Laurent Pinchartb6af10c2015-07-28 14:05:56 -030034
35struct vsp1_rwpf_operations {
Laurent Pinchartb58faa92015-07-28 16:04:47 -030036 void (*set_memory)(struct vsp1_rwpf *rwpf,
37 struct vsp1_rwpf_memory *mem);
Laurent Pinchartb6af10c2015-07-28 14:05:56 -030038};
39
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030040struct vsp1_rwpf {
41 struct vsp1_entity entity;
Laurent Pinchart7578c202014-05-21 19:00:05 -030042 struct v4l2_ctrl_handler ctrls;
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030043
Laurent Pinchartfaf26442015-08-02 14:58:43 -030044 struct vsp1_video *video;
45
Laurent Pinchartb6af10c2015-07-28 14:05:56 -030046 const struct vsp1_rwpf_operations *ops;
47
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030048 unsigned int max_width;
49 unsigned int max_height;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -030050
Laurent Pinchart86960ee2015-07-28 14:00:43 -030051 struct v4l2_pix_format_mplane format;
52 const struct vsp1_format_info *fmtinfo;
Laurent Pinchart629bb6d2013-07-10 18:03:46 -030053 struct {
54 unsigned int left;
55 unsigned int top;
56 } location;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -030057 struct v4l2_rect crop;
58
59 unsigned int offsets[2];
Takanari Hayama857161f2014-11-26 22:25:01 -030060 dma_addr_t buf_addr[3];
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030061};
62
63static inline struct vsp1_rwpf *to_rwpf(struct v4l2_subdev *subdev)
64{
65 return container_of(subdev, struct vsp1_rwpf, entity.subdev);
66}
67
68struct vsp1_rwpf *vsp1_rpf_create(struct vsp1_device *vsp1, unsigned int index);
69struct vsp1_rwpf *vsp1_wpf_create(struct vsp1_device *vsp1, unsigned int index);
70
71int vsp1_rwpf_enum_mbus_code(struct v4l2_subdev *subdev,
Hans Verkuilf7234132015-03-04 01:47:54 -080072 struct v4l2_subdev_pad_config *cfg,
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030073 struct v4l2_subdev_mbus_code_enum *code);
74int vsp1_rwpf_enum_frame_size(struct v4l2_subdev *subdev,
Hans Verkuilf7234132015-03-04 01:47:54 -080075 struct v4l2_subdev_pad_config *cfg,
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030076 struct v4l2_subdev_frame_size_enum *fse);
Hans Verkuilf7234132015-03-04 01:47:54 -080077int vsp1_rwpf_get_format(struct v4l2_subdev *subdev, struct v4l2_subdev_pad_config *cfg,
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030078 struct v4l2_subdev_format *fmt);
Hans Verkuilf7234132015-03-04 01:47:54 -080079int vsp1_rwpf_set_format(struct v4l2_subdev *subdev, struct v4l2_subdev_pad_config *cfg,
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030080 struct v4l2_subdev_format *fmt);
Laurent Pincharte5ad37b2013-08-24 20:49:58 -030081int vsp1_rwpf_get_selection(struct v4l2_subdev *subdev,
Hans Verkuilf7234132015-03-04 01:47:54 -080082 struct v4l2_subdev_pad_config *cfg,
Laurent Pincharte5ad37b2013-08-24 20:49:58 -030083 struct v4l2_subdev_selection *sel);
84int vsp1_rwpf_set_selection(struct v4l2_subdev *subdev,
Hans Verkuilf7234132015-03-04 01:47:54 -080085 struct v4l2_subdev_pad_config *cfg,
Laurent Pincharte5ad37b2013-08-24 20:49:58 -030086 struct v4l2_subdev_selection *sel);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030087
88#endif /* __VSP1_RWPF_H__ */