Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 1 | /* |
| 2 | * vsp1_rwpf.c -- R-Car VSP1 Read and Write Pixel Formatters |
| 3 | * |
Laurent Pinchart | 8a1edc5 | 2014-02-06 14:42:31 -0300 | [diff] [blame] | 4 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 5 | * |
| 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 Pinchart | c6c8efb | 2015-11-22 13:37:45 -0200 | [diff] [blame] | 23 | struct 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 Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 30 | /* ----------------------------------------------------------------------------- |
| 31 | * V4L2 Subdevice Pad Operations |
| 32 | */ |
| 33 | |
Laurent Pinchart | c6c8efb | 2015-11-22 13:37:45 -0200 | [diff] [blame] | 34 | static 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 Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 37 | { |
| 38 | static const unsigned int codes[] = { |
Boris BREZILLON | 27ffaeb | 2014-11-10 14:28:31 -0300 | [diff] [blame] | 39 | MEDIA_BUS_FMT_ARGB8888_1X32, |
Laurent Pinchart | bc9b91e | 2016-09-06 21:04:53 -0300 | [diff] [blame] | 40 | MEDIA_BUS_FMT_AHSV8888_1X32, |
Boris BREZILLON | 27ffaeb | 2014-11-10 14:28:31 -0300 | [diff] [blame] | 41 | MEDIA_BUS_FMT_AYUV8_1X32, |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 42 | }; |
| 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 Pinchart | c6c8efb | 2015-11-22 13:37:45 -0200 | [diff] [blame] | 52 | static 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 Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 55 | { |
| 56 | struct vsp1_rwpf *rwpf = to_rwpf(subdev); |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 57 | |
Laurent Pinchart | 076e834 | 2016-02-24 20:25:42 -0300 | [diff] [blame] | 58 | return vsp1_subdev_enum_frame_size(subdev, cfg, fse, RWPF_MIN_WIDTH, |
| 59 | RWPF_MIN_HEIGHT, rwpf->max_width, |
| 60 | rwpf->max_height); |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 61 | } |
| 62 | |
Laurent Pinchart | c6c8efb | 2015-11-22 13:37:45 -0200 | [diff] [blame] | 63 | static int vsp1_rwpf_set_format(struct v4l2_subdev *subdev, |
| 64 | struct v4l2_subdev_pad_config *cfg, |
| 65 | struct v4l2_subdev_format *fmt) |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 66 | { |
| 67 | struct vsp1_rwpf *rwpf = to_rwpf(subdev); |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 68 | struct v4l2_subdev_pad_config *config; |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 69 | struct v4l2_mbus_framefmt *format; |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 70 | int ret = 0; |
| 71 | |
| 72 | mutex_lock(&rwpf->entity.lock); |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 73 | |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 74 | config = vsp1_entity_get_pad_config(&rwpf->entity, cfg, fmt->which); |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 75 | if (!config) { |
| 76 | ret = -EINVAL; |
| 77 | goto done; |
| 78 | } |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 79 | |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 80 | /* Default to YUV if the requested format is not supported. */ |
Boris BREZILLON | 27ffaeb | 2014-11-10 14:28:31 -0300 | [diff] [blame] | 81 | if (fmt->format.code != MEDIA_BUS_FMT_ARGB8888_1X32 && |
Laurent Pinchart | bc9b91e | 2016-09-06 21:04:53 -0300 | [diff] [blame] | 82 | fmt->format.code != MEDIA_BUS_FMT_AHSV8888_1X32 && |
Boris BREZILLON | 27ffaeb | 2014-11-10 14:28:31 -0300 | [diff] [blame] | 83 | fmt->format.code != MEDIA_BUS_FMT_AYUV8_1X32) |
| 84 | fmt->format.code = MEDIA_BUS_FMT_AYUV8_1X32; |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 85 | |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 86 | format = vsp1_entity_get_pad_format(&rwpf->entity, config, fmt->pad); |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 87 | |
| 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 Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 94 | goto done; |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 95 | } |
| 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 Pinchart | b61bead | 2016-09-11 22:41:06 -0300 | [diff] [blame] | 107 | 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 Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 117 | |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 118 | /* Propagate the format to the source pad. */ |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 119 | format = vsp1_entity_get_pad_format(&rwpf->entity, config, |
| 120 | RWPF_PAD_SOURCE); |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 121 | *format = fmt->format; |
| 122 | |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 123 | done: |
| 124 | mutex_unlock(&rwpf->entity.lock); |
| 125 | return ret; |
Laurent Pinchart | 26e0ca2 | 2013-06-04 11:22:30 -0300 | [diff] [blame] | 126 | } |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 127 | |
Laurent Pinchart | c6c8efb | 2015-11-22 13:37:45 -0200 | [diff] [blame] | 128 | static int vsp1_rwpf_get_selection(struct v4l2_subdev *subdev, |
| 129 | struct v4l2_subdev_pad_config *cfg, |
| 130 | struct v4l2_subdev_selection *sel) |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 131 | { |
| 132 | struct vsp1_rwpf *rwpf = to_rwpf(subdev); |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 133 | struct v4l2_subdev_pad_config *config; |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 134 | struct v4l2_mbus_framefmt *format; |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 135 | int ret = 0; |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 136 | |
Mauro Carvalho Chehab | b618739 | 2016-09-19 15:18:01 -0300 | [diff] [blame] | 137 | /* |
| 138 | * Cropping is only supported on the RPF and is implemented on the sink |
Laurent Pinchart | b61bead | 2016-09-11 22:41:06 -0300 | [diff] [blame] | 139 | * pad. |
| 140 | */ |
| 141 | if (rwpf->entity.type == VSP1_ENTITY_WPF || sel->pad != RWPF_PAD_SINK) |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 142 | return -EINVAL; |
| 143 | |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 144 | mutex_lock(&rwpf->entity.lock); |
| 145 | |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 146 | config = vsp1_entity_get_pad_config(&rwpf->entity, cfg, sel->which); |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 147 | if (!config) { |
| 148 | ret = -EINVAL; |
| 149 | goto done; |
| 150 | } |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 151 | |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 152 | switch (sel->target) { |
| 153 | case V4L2_SEL_TGT_CROP: |
Laurent Pinchart | b7e5107 | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 154 | sel->r = *vsp1_rwpf_get_crop(rwpf, config); |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 155 | break; |
| 156 | |
| 157 | case V4L2_SEL_TGT_CROP_BOUNDS: |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 158 | format = vsp1_entity_get_pad_format(&rwpf->entity, config, |
| 159 | RWPF_PAD_SINK); |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 160 | 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 Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 167 | ret = -EINVAL; |
| 168 | break; |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 169 | } |
| 170 | |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 171 | done: |
| 172 | mutex_unlock(&rwpf->entity.lock); |
| 173 | return ret; |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 174 | } |
| 175 | |
Laurent Pinchart | c6c8efb | 2015-11-22 13:37:45 -0200 | [diff] [blame] | 176 | static int vsp1_rwpf_set_selection(struct v4l2_subdev *subdev, |
| 177 | struct v4l2_subdev_pad_config *cfg, |
| 178 | struct v4l2_subdev_selection *sel) |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 179 | { |
| 180 | struct vsp1_rwpf *rwpf = to_rwpf(subdev); |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 181 | struct v4l2_subdev_pad_config *config; |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 182 | struct v4l2_mbus_framefmt *format; |
| 183 | struct v4l2_rect *crop; |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 184 | int ret = 0; |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 185 | |
Mauro Carvalho Chehab | b618739 | 2016-09-19 15:18:01 -0300 | [diff] [blame] | 186 | /* |
| 187 | * Cropping is only supported on the RPF and is implemented on the sink |
Laurent Pinchart | b61bead | 2016-09-11 22:41:06 -0300 | [diff] [blame] | 188 | * pad. |
| 189 | */ |
| 190 | if (rwpf->entity.type == VSP1_ENTITY_WPF || sel->pad != RWPF_PAD_SINK) |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 191 | return -EINVAL; |
| 192 | |
| 193 | if (sel->target != V4L2_SEL_TGT_CROP) |
| 194 | return -EINVAL; |
| 195 | |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 196 | mutex_lock(&rwpf->entity.lock); |
| 197 | |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 198 | config = vsp1_entity_get_pad_config(&rwpf->entity, cfg, sel->which); |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 199 | if (!config) { |
| 200 | ret = -EINVAL; |
| 201 | goto done; |
| 202 | } |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 203 | |
Laurent Pinchart | b61bead | 2016-09-11 22:41:06 -0300 | [diff] [blame] | 204 | /* Make sure the crop rectangle is entirely contained in the image. */ |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 205 | format = vsp1_entity_get_pad_format(&rwpf->entity, config, |
| 206 | RWPF_PAD_SINK); |
Damian Hobson-Garcia | 85a0638 | 2015-05-28 09:59:39 -0300 | [diff] [blame] | 207 | |
| 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 Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 218 | 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 Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 220 | 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 Pinchart | b7e5107 | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 225 | crop = vsp1_rwpf_get_crop(rwpf, config); |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 226 | *crop = sel->r; |
| 227 | |
| 228 | /* Propagate the format to the source pad. */ |
Laurent Pinchart | e790c3c | 2015-11-15 19:14:22 -0200 | [diff] [blame] | 229 | format = vsp1_entity_get_pad_format(&rwpf->entity, config, |
| 230 | RWPF_PAD_SOURCE); |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 231 | format->width = crop->width; |
| 232 | format->height = crop->height; |
| 233 | |
Laurent Pinchart | 34e77ed | 2016-06-26 08:09:31 -0300 | [diff] [blame] | 234 | done: |
| 235 | mutex_unlock(&rwpf->entity.lock); |
| 236 | return ret; |
Laurent Pinchart | e5ad37b | 2013-08-24 20:49:58 -0300 | [diff] [blame] | 237 | } |
Laurent Pinchart | bd2fdd5 | 2015-11-01 12:19:42 -0200 | [diff] [blame] | 238 | |
Laurent Pinchart | c6c8efb | 2015-11-22 13:37:45 -0200 | [diff] [blame] | 239 | const 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 Pinchart | 3f55722 | 2016-02-24 21:10:13 -0300 | [diff] [blame] | 243 | .get_fmt = vsp1_subdev_get_pad_format, |
Laurent Pinchart | c6c8efb | 2015-11-22 13:37:45 -0200 | [diff] [blame] | 244 | .set_fmt = vsp1_rwpf_set_format, |
| 245 | .get_selection = vsp1_rwpf_get_selection, |
| 246 | .set_selection = vsp1_rwpf_set_selection, |
| 247 | }; |
| 248 | |
Laurent Pinchart | bd2fdd5 | 2015-11-01 12:19:42 -0200 | [diff] [blame] | 249 | /* ----------------------------------------------------------------------------- |
| 250 | * Controls |
| 251 | */ |
| 252 | |
| 253 | static 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 | |
| 267 | static const struct v4l2_ctrl_ops vsp1_rwpf_ctrl_ops = { |
| 268 | .s_ctrl = vsp1_rwpf_s_ctrl, |
| 269 | }; |
| 270 | |
Laurent Pinchart | 894dde5 | 2016-05-26 05:14:22 -0300 | [diff] [blame] | 271 | int vsp1_rwpf_init_ctrls(struct vsp1_rwpf *rwpf, unsigned int ncontrols) |
Laurent Pinchart | bd2fdd5 | 2015-11-01 12:19:42 -0200 | [diff] [blame] | 272 | { |
Laurent Pinchart | 894dde5 | 2016-05-26 05:14:22 -0300 | [diff] [blame] | 273 | v4l2_ctrl_handler_init(&rwpf->ctrls, ncontrols + 1); |
Laurent Pinchart | bd2fdd5 | 2015-11-01 12:19:42 -0200 | [diff] [blame] | 274 | 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 | } |