blob: 04104ef28fb5918cf4e0102ba28c27a1d65f6160 [file] [log] [blame]
Laurent Pinchart26e0ca22013-06-04 11:22:30 -03001/*
2 * vsp1_rwpf.c -- 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
14#include <media/v4l2-subdev.h>
15
16#include "vsp1.h"
17#include "vsp1_rwpf.h"
18#include "vsp1_video.h"
19
20#define RWPF_MIN_WIDTH 1
21#define RWPF_MIN_HEIGHT 1
22
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -020023struct v4l2_rect *vsp1_rwpf_get_crop(struct vsp1_rwpf *rwpf,
24 struct v4l2_subdev_pad_config *config)
25{
26 return v4l2_subdev_get_try_crop(&rwpf->entity.subdev, config,
27 RWPF_PAD_SINK);
28}
29
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030030/* -----------------------------------------------------------------------------
31 * V4L2 Subdevice Pad Operations
32 */
33
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -020034static int vsp1_rwpf_enum_mbus_code(struct v4l2_subdev *subdev,
35 struct v4l2_subdev_pad_config *cfg,
36 struct v4l2_subdev_mbus_code_enum *code)
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030037{
38 static const unsigned int codes[] = {
Boris BREZILLON27ffaeb2014-11-10 14:28:31 -030039 MEDIA_BUS_FMT_ARGB8888_1X32,
Laurent Pinchartbc9b91e2016-09-06 21:04:53 -030040 MEDIA_BUS_FMT_AHSV8888_1X32,
Boris BREZILLON27ffaeb2014-11-10 14:28:31 -030041 MEDIA_BUS_FMT_AYUV8_1X32,
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030042 };
43
44 if (code->index >= ARRAY_SIZE(codes))
45 return -EINVAL;
46
47 code->code = codes[code->index];
48
49 return 0;
50}
51
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -020052static int vsp1_rwpf_enum_frame_size(struct v4l2_subdev *subdev,
53 struct v4l2_subdev_pad_config *cfg,
54 struct v4l2_subdev_frame_size_enum *fse)
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030055{
56 struct vsp1_rwpf *rwpf = to_rwpf(subdev);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030057
Laurent Pinchart076e8342016-02-24 20:25:42 -030058 return vsp1_subdev_enum_frame_size(subdev, cfg, fse, RWPF_MIN_WIDTH,
59 RWPF_MIN_HEIGHT, rwpf->max_width,
60 rwpf->max_height);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030061}
62
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -020063static int vsp1_rwpf_set_format(struct v4l2_subdev *subdev,
64 struct v4l2_subdev_pad_config *cfg,
65 struct v4l2_subdev_format *fmt)
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030066{
67 struct vsp1_rwpf *rwpf = to_rwpf(subdev);
Laurent Pincharte790c3c2015-11-15 19:14:22 -020068 struct v4l2_subdev_pad_config *config;
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030069 struct v4l2_mbus_framefmt *format;
Laurent Pinchart34e77ed2016-06-26 08:09:31 -030070 int ret = 0;
71
72 mutex_lock(&rwpf->entity.lock);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030073
Laurent Pincharte790c3c2015-11-15 19:14:22 -020074 config = vsp1_entity_get_pad_config(&rwpf->entity, cfg, fmt->which);
Laurent Pinchart34e77ed2016-06-26 08:09:31 -030075 if (!config) {
76 ret = -EINVAL;
77 goto done;
78 }
Laurent Pincharte790c3c2015-11-15 19:14:22 -020079
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030080 /* Default to YUV if the requested format is not supported. */
Boris BREZILLON27ffaeb2014-11-10 14:28:31 -030081 if (fmt->format.code != MEDIA_BUS_FMT_ARGB8888_1X32 &&
Laurent Pinchartbc9b91e2016-09-06 21:04:53 -030082 fmt->format.code != MEDIA_BUS_FMT_AHSV8888_1X32 &&
Boris BREZILLON27ffaeb2014-11-10 14:28:31 -030083 fmt->format.code != MEDIA_BUS_FMT_AYUV8_1X32)
84 fmt->format.code = MEDIA_BUS_FMT_AYUV8_1X32;
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030085
Laurent Pincharte790c3c2015-11-15 19:14:22 -020086 format = vsp1_entity_get_pad_format(&rwpf->entity, config, fmt->pad);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030087
88 if (fmt->pad == RWPF_PAD_SOURCE) {
89 /* The RWPF performs format conversion but can't scale, only the
90 * format code can be changed on the source pad.
91 */
92 format->code = fmt->format.code;
93 fmt->format = *format;
Laurent Pinchart34e77ed2016-06-26 08:09:31 -030094 goto done;
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030095 }
96
97 format->code = fmt->format.code;
98 format->width = clamp_t(unsigned int, fmt->format.width,
99 RWPF_MIN_WIDTH, rwpf->max_width);
100 format->height = clamp_t(unsigned int, fmt->format.height,
101 RWPF_MIN_HEIGHT, rwpf->max_height);
102 format->field = V4L2_FIELD_NONE;
103 format->colorspace = V4L2_COLORSPACE_SRGB;
104
105 fmt->format = *format;
106
Laurent Pinchartb61bead2016-09-11 22:41:06 -0300107 if (rwpf->entity.type == VSP1_ENTITY_RPF) {
108 struct v4l2_rect *crop;
109
110 /* Update the sink crop rectangle. */
111 crop = vsp1_rwpf_get_crop(rwpf, config);
112 crop->left = 0;
113 crop->top = 0;
114 crop->width = fmt->format.width;
115 crop->height = fmt->format.height;
116 }
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300117
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300118 /* Propagate the format to the source pad. */
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200119 format = vsp1_entity_get_pad_format(&rwpf->entity, config,
120 RWPF_PAD_SOURCE);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300121 *format = fmt->format;
122
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300123done:
124 mutex_unlock(&rwpf->entity.lock);
125 return ret;
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300126}
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300127
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -0200128static int vsp1_rwpf_get_selection(struct v4l2_subdev *subdev,
129 struct v4l2_subdev_pad_config *cfg,
130 struct v4l2_subdev_selection *sel)
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300131{
132 struct vsp1_rwpf *rwpf = to_rwpf(subdev);
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200133 struct v4l2_subdev_pad_config *config;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300134 struct v4l2_mbus_framefmt *format;
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300135 int ret = 0;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300136
Mauro Carvalho Chehabb6187392016-09-19 15:18:01 -0300137 /*
138 * Cropping is only supported on the RPF and is implemented on the sink
Laurent Pinchartb61bead2016-09-11 22:41:06 -0300139 * pad.
140 */
141 if (rwpf->entity.type == VSP1_ENTITY_WPF || sel->pad != RWPF_PAD_SINK)
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300142 return -EINVAL;
143
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300144 mutex_lock(&rwpf->entity.lock);
145
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200146 config = vsp1_entity_get_pad_config(&rwpf->entity, cfg, sel->which);
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300147 if (!config) {
148 ret = -EINVAL;
149 goto done;
150 }
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200151
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300152 switch (sel->target) {
153 case V4L2_SEL_TGT_CROP:
Laurent Pinchartb7e51072015-11-15 19:14:22 -0200154 sel->r = *vsp1_rwpf_get_crop(rwpf, config);
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300155 break;
156
157 case V4L2_SEL_TGT_CROP_BOUNDS:
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200158 format = vsp1_entity_get_pad_format(&rwpf->entity, config,
159 RWPF_PAD_SINK);
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300160 sel->r.left = 0;
161 sel->r.top = 0;
162 sel->r.width = format->width;
163 sel->r.height = format->height;
164 break;
165
166 default:
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300167 ret = -EINVAL;
168 break;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300169 }
170
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300171done:
172 mutex_unlock(&rwpf->entity.lock);
173 return ret;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300174}
175
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -0200176static int vsp1_rwpf_set_selection(struct v4l2_subdev *subdev,
177 struct v4l2_subdev_pad_config *cfg,
178 struct v4l2_subdev_selection *sel)
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300179{
180 struct vsp1_rwpf *rwpf = to_rwpf(subdev);
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200181 struct v4l2_subdev_pad_config *config;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300182 struct v4l2_mbus_framefmt *format;
183 struct v4l2_rect *crop;
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300184 int ret = 0;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300185
Mauro Carvalho Chehabb6187392016-09-19 15:18:01 -0300186 /*
187 * Cropping is only supported on the RPF and is implemented on the sink
Laurent Pinchartb61bead2016-09-11 22:41:06 -0300188 * pad.
189 */
190 if (rwpf->entity.type == VSP1_ENTITY_WPF || sel->pad != RWPF_PAD_SINK)
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300191 return -EINVAL;
192
193 if (sel->target != V4L2_SEL_TGT_CROP)
194 return -EINVAL;
195
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300196 mutex_lock(&rwpf->entity.lock);
197
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200198 config = vsp1_entity_get_pad_config(&rwpf->entity, cfg, sel->which);
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300199 if (!config) {
200 ret = -EINVAL;
201 goto done;
202 }
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200203
Laurent Pinchartb61bead2016-09-11 22:41:06 -0300204 /* Make sure the crop rectangle is entirely contained in the image. */
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200205 format = vsp1_entity_get_pad_format(&rwpf->entity, config,
206 RWPF_PAD_SINK);
Damian Hobson-Garcia85a06382015-05-28 09:59:39 -0300207
208 /* Restrict the crop rectangle coordinates to multiples of 2 to avoid
209 * shifting the color plane.
210 */
211 if (format->code == MEDIA_BUS_FMT_AYUV8_1X32) {
212 sel->r.left = ALIGN(sel->r.left, 2);
213 sel->r.top = ALIGN(sel->r.top, 2);
214 sel->r.width = round_down(sel->r.width, 2);
215 sel->r.height = round_down(sel->r.height, 2);
216 }
217
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300218 sel->r.left = min_t(unsigned int, sel->r.left, format->width - 2);
219 sel->r.top = min_t(unsigned int, sel->r.top, format->height - 2);
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300220 sel->r.width = min_t(unsigned int, sel->r.width,
221 format->width - sel->r.left);
222 sel->r.height = min_t(unsigned int, sel->r.height,
223 format->height - sel->r.top);
224
Laurent Pinchartb7e51072015-11-15 19:14:22 -0200225 crop = vsp1_rwpf_get_crop(rwpf, config);
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300226 *crop = sel->r;
227
228 /* Propagate the format to the source pad. */
Laurent Pincharte790c3c2015-11-15 19:14:22 -0200229 format = vsp1_entity_get_pad_format(&rwpf->entity, config,
230 RWPF_PAD_SOURCE);
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300231 format->width = crop->width;
232 format->height = crop->height;
233
Laurent Pinchart34e77ed2016-06-26 08:09:31 -0300234done:
235 mutex_unlock(&rwpf->entity.lock);
236 return ret;
Laurent Pincharte5ad37b2013-08-24 20:49:58 -0300237}
Laurent Pinchartbd2fdd52015-11-01 12:19:42 -0200238
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -0200239const struct v4l2_subdev_pad_ops vsp1_rwpf_pad_ops = {
240 .init_cfg = vsp1_entity_init_cfg,
241 .enum_mbus_code = vsp1_rwpf_enum_mbus_code,
242 .enum_frame_size = vsp1_rwpf_enum_frame_size,
Laurent Pinchart3f557222016-02-24 21:10:13 -0300243 .get_fmt = vsp1_subdev_get_pad_format,
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -0200244 .set_fmt = vsp1_rwpf_set_format,
245 .get_selection = vsp1_rwpf_get_selection,
246 .set_selection = vsp1_rwpf_set_selection,
247};
248
Laurent Pinchartbd2fdd52015-11-01 12:19:42 -0200249/* -----------------------------------------------------------------------------
250 * Controls
251 */
252
253static int vsp1_rwpf_s_ctrl(struct v4l2_ctrl *ctrl)
254{
255 struct vsp1_rwpf *rwpf =
256 container_of(ctrl->handler, struct vsp1_rwpf, ctrls);
257
258 switch (ctrl->id) {
259 case V4L2_CID_ALPHA_COMPONENT:
260 rwpf->alpha = ctrl->val;
261 break;
262 }
263
264 return 0;
265}
266
267static const struct v4l2_ctrl_ops vsp1_rwpf_ctrl_ops = {
268 .s_ctrl = vsp1_rwpf_s_ctrl,
269};
270
Laurent Pinchart894dde52016-05-26 05:14:22 -0300271int vsp1_rwpf_init_ctrls(struct vsp1_rwpf *rwpf, unsigned int ncontrols)
Laurent Pinchartbd2fdd52015-11-01 12:19:42 -0200272{
Laurent Pinchart894dde52016-05-26 05:14:22 -0300273 v4l2_ctrl_handler_init(&rwpf->ctrls, ncontrols + 1);
Laurent Pinchartbd2fdd52015-11-01 12:19:42 -0200274 v4l2_ctrl_new_std(&rwpf->ctrls, &vsp1_rwpf_ctrl_ops,
275 V4L2_CID_ALPHA_COMPONENT, 0, 255, 1, 255);
276
277 rwpf->entity.subdev.ctrl_handler = &rwpf->ctrls;
278
279 return rwpf->ctrls.error;
280}