]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/media/platform/vsp1/vsp1_bru.c
[media] v4l: vsp1: Implement and use the subdev pad::init_cfg configuration
[karo-tx-linux.git] / drivers / media / platform / vsp1 / vsp1_bru.c
1 /*
2  * vsp1_bru.c  --  R-Car VSP1 Blend ROP Unit
3  *
4  * Copyright (C) 2013 Renesas Corporation
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 <linux/device.h>
15 #include <linux/gfp.h>
16
17 #include <media/v4l2-subdev.h>
18
19 #include "vsp1.h"
20 #include "vsp1_bru.h"
21 #include "vsp1_rwpf.h"
22 #include "vsp1_video.h"
23
24 #define BRU_MIN_SIZE                            1U
25 #define BRU_MAX_SIZE                            8190U
26
27 /* -----------------------------------------------------------------------------
28  * Device Access
29  */
30
31 static inline void vsp1_bru_write(struct vsp1_bru *bru, u32 reg, u32 data)
32 {
33         vsp1_mod_write(&bru->entity, reg, data);
34 }
35
36 /* -----------------------------------------------------------------------------
37  * Controls
38  */
39
40 static int bru_s_ctrl(struct v4l2_ctrl *ctrl)
41 {
42         struct vsp1_bru *bru =
43                 container_of(ctrl->handler, struct vsp1_bru, ctrls);
44
45         switch (ctrl->id) {
46         case V4L2_CID_BG_COLOR:
47                 bru->bgcolor = ctrl->val;
48                 break;
49         }
50
51         return 0;
52 }
53
54 static const struct v4l2_ctrl_ops bru_ctrl_ops = {
55         .s_ctrl = bru_s_ctrl,
56 };
57
58 /* -----------------------------------------------------------------------------
59  * V4L2 Subdevice Core Operations
60  */
61
62 static int bru_s_stream(struct v4l2_subdev *subdev, int enable)
63 {
64         struct vsp1_pipeline *pipe = to_vsp1_pipeline(&subdev->entity);
65         struct vsp1_bru *bru = to_bru(subdev);
66         struct v4l2_mbus_framefmt *format;
67         unsigned int flags;
68         unsigned int i;
69
70         if (!enable)
71                 return 0;
72
73         format = &bru->entity.formats[bru->entity.source_pad];
74
75         /* The hardware is extremely flexible but we have no userspace API to
76          * expose all the parameters, nor is it clear whether we would have use
77          * cases for all the supported modes. Let's just harcode the parameters
78          * to sane default values for now.
79          */
80
81         /* Disable dithering and enable color data normalization unless the
82          * format at the pipeline output is premultiplied.
83          */
84         flags = pipe->output ? pipe->output->format.flags : 0;
85         vsp1_bru_write(bru, VI6_BRU_INCTRL,
86                        flags & V4L2_PIX_FMT_FLAG_PREMUL_ALPHA ?
87                        0 : VI6_BRU_INCTRL_NRM);
88
89         /* Set the background position to cover the whole output image and
90          * configure its color.
91          */
92         vsp1_bru_write(bru, VI6_BRU_VIRRPF_SIZE,
93                        (format->width << VI6_BRU_VIRRPF_SIZE_HSIZE_SHIFT) |
94                        (format->height << VI6_BRU_VIRRPF_SIZE_VSIZE_SHIFT));
95         vsp1_bru_write(bru, VI6_BRU_VIRRPF_LOC, 0);
96
97         vsp1_bru_write(bru, VI6_BRU_VIRRPF_COL, bru->bgcolor |
98                        (0xff << VI6_BRU_VIRRPF_COL_A_SHIFT));
99
100         /* Route BRU input 1 as SRC input to the ROP unit and configure the ROP
101          * unit with a NOP operation to make BRU input 1 available as the
102          * Blend/ROP unit B SRC input.
103          */
104         vsp1_bru_write(bru, VI6_BRU_ROP, VI6_BRU_ROP_DSTSEL_BRUIN(1) |
105                        VI6_BRU_ROP_CROP(VI6_ROP_NOP) |
106                        VI6_BRU_ROP_AROP(VI6_ROP_NOP));
107
108         for (i = 0; i < bru->entity.source_pad; ++i) {
109                 bool premultiplied = false;
110                 u32 ctrl = 0;
111
112                 /* Configure all Blend/ROP units corresponding to an enabled BRU
113                  * input for alpha blending. Blend/ROP units corresponding to
114                  * disabled BRU inputs are used in ROP NOP mode to ignore the
115                  * SRC input.
116                  */
117                 if (bru->inputs[i].rpf) {
118                         ctrl |= VI6_BRU_CTRL_RBC;
119
120                         premultiplied = bru->inputs[i].rpf->format.flags
121                                       & V4L2_PIX_FMT_FLAG_PREMUL_ALPHA;
122                 } else {
123                         ctrl |= VI6_BRU_CTRL_CROP(VI6_ROP_NOP)
124                              |  VI6_BRU_CTRL_AROP(VI6_ROP_NOP);
125                 }
126
127                 /* Select the virtual RPF as the Blend/ROP unit A DST input to
128                  * serve as a background color.
129                  */
130                 if (i == 0)
131                         ctrl |= VI6_BRU_CTRL_DSTSEL_VRPF;
132
133                 /* Route BRU inputs 0 to 3 as SRC inputs to Blend/ROP units A to
134                  * D in that order. The Blend/ROP unit B SRC is hardwired to the
135                  * ROP unit output, the corresponding register bits must be set
136                  * to 0.
137                  */
138                 if (i != 1)
139                         ctrl |= VI6_BRU_CTRL_SRCSEL_BRUIN(i);
140
141                 vsp1_bru_write(bru, VI6_BRU_CTRL(i), ctrl);
142
143                 /* Harcode the blending formula to
144                  *
145                  *      DSTc = DSTc * (1 - SRCa) + SRCc * SRCa
146                  *      DSTa = DSTa * (1 - SRCa) + SRCa
147                  *
148                  * when the SRC input isn't premultiplied, and to
149                  *
150                  *      DSTc = DSTc * (1 - SRCa) + SRCc
151                  *      DSTa = DSTa * (1 - SRCa) + SRCa
152                  *
153                  * otherwise.
154                  */
155                 vsp1_bru_write(bru, VI6_BRU_BLD(i),
156                                VI6_BRU_BLD_CCMDX_255_SRC_A |
157                                (premultiplied ? VI6_BRU_BLD_CCMDY_COEFY :
158                                                 VI6_BRU_BLD_CCMDY_SRC_A) |
159                                VI6_BRU_BLD_ACMDX_255_SRC_A |
160                                VI6_BRU_BLD_ACMDY_COEFY |
161                                (0xff << VI6_BRU_BLD_COEFY_SHIFT));
162         }
163
164         return 0;
165 }
166
167 /* -----------------------------------------------------------------------------
168  * V4L2 Subdevice Pad Operations
169  */
170
171 /*
172  * The BRU can't perform format conversion, all sink and source formats must be
173  * identical. We pick the format on the first sink pad (pad 0) and propagate it
174  * to all other pads.
175  */
176
177 static int bru_enum_mbus_code(struct v4l2_subdev *subdev,
178                               struct v4l2_subdev_pad_config *cfg,
179                               struct v4l2_subdev_mbus_code_enum *code)
180 {
181         static const unsigned int codes[] = {
182                 MEDIA_BUS_FMT_ARGB8888_1X32,
183                 MEDIA_BUS_FMT_AYUV8_1X32,
184         };
185         struct vsp1_bru *bru = to_bru(subdev);
186         struct v4l2_mbus_framefmt *format;
187
188         if (code->pad == BRU_PAD_SINK(0)) {
189                 if (code->index >= ARRAY_SIZE(codes))
190                         return -EINVAL;
191
192                 code->code = codes[code->index];
193         } else {
194                 if (code->index)
195                         return -EINVAL;
196
197                 format = vsp1_entity_get_pad_format(&bru->entity, cfg,
198                                                     BRU_PAD_SINK(0),
199                                                     code->which);
200                 code->code = format->code;
201         }
202
203         return 0;
204 }
205
206 static int bru_enum_frame_size(struct v4l2_subdev *subdev,
207                                struct v4l2_subdev_pad_config *cfg,
208                                struct v4l2_subdev_frame_size_enum *fse)
209 {
210         if (fse->index)
211                 return -EINVAL;
212
213         if (fse->code != MEDIA_BUS_FMT_ARGB8888_1X32 &&
214             fse->code != MEDIA_BUS_FMT_AYUV8_1X32)
215                 return -EINVAL;
216
217         fse->min_width = BRU_MIN_SIZE;
218         fse->max_width = BRU_MAX_SIZE;
219         fse->min_height = BRU_MIN_SIZE;
220         fse->max_height = BRU_MAX_SIZE;
221
222         return 0;
223 }
224
225 static struct v4l2_rect *bru_get_compose(struct vsp1_bru *bru,
226                                          struct v4l2_subdev_pad_config *cfg,
227                                          unsigned int pad, u32 which)
228 {
229         switch (which) {
230         case V4L2_SUBDEV_FORMAT_TRY:
231                 return v4l2_subdev_get_try_compose(&bru->entity.subdev, cfg,
232                                                    pad);
233         case V4L2_SUBDEV_FORMAT_ACTIVE:
234                 return &bru->inputs[pad].compose;
235         default:
236                 return NULL;
237         }
238 }
239
240 static int bru_get_format(struct v4l2_subdev *subdev,
241                           struct v4l2_subdev_pad_config *cfg,
242                           struct v4l2_subdev_format *fmt)
243 {
244         struct vsp1_bru *bru = to_bru(subdev);
245
246         fmt->format = *vsp1_entity_get_pad_format(&bru->entity, cfg, fmt->pad,
247                                                   fmt->which);
248
249         return 0;
250 }
251
252 static void bru_try_format(struct vsp1_bru *bru,
253                            struct v4l2_subdev_pad_config *cfg,
254                            unsigned int pad, struct v4l2_mbus_framefmt *fmt,
255                            enum v4l2_subdev_format_whence which)
256 {
257         struct v4l2_mbus_framefmt *format;
258
259         switch (pad) {
260         case BRU_PAD_SINK(0):
261                 /* Default to YUV if the requested format is not supported. */
262                 if (fmt->code != MEDIA_BUS_FMT_ARGB8888_1X32 &&
263                     fmt->code != MEDIA_BUS_FMT_AYUV8_1X32)
264                         fmt->code = MEDIA_BUS_FMT_AYUV8_1X32;
265                 break;
266
267         default:
268                 /* The BRU can't perform format conversion. */
269                 format = vsp1_entity_get_pad_format(&bru->entity, cfg,
270                                                     BRU_PAD_SINK(0), which);
271                 fmt->code = format->code;
272                 break;
273         }
274
275         fmt->width = clamp(fmt->width, BRU_MIN_SIZE, BRU_MAX_SIZE);
276         fmt->height = clamp(fmt->height, BRU_MIN_SIZE, BRU_MAX_SIZE);
277         fmt->field = V4L2_FIELD_NONE;
278         fmt->colorspace = V4L2_COLORSPACE_SRGB;
279 }
280
281 static int bru_set_format(struct v4l2_subdev *subdev,
282                           struct v4l2_subdev_pad_config *cfg,
283                           struct v4l2_subdev_format *fmt)
284 {
285         struct vsp1_bru *bru = to_bru(subdev);
286         struct v4l2_mbus_framefmt *format;
287
288         bru_try_format(bru, cfg, fmt->pad, &fmt->format, fmt->which);
289
290         format = vsp1_entity_get_pad_format(&bru->entity, cfg, fmt->pad,
291                                             fmt->which);
292         *format = fmt->format;
293
294         /* Reset the compose rectangle */
295         if (fmt->pad != bru->entity.source_pad) {
296                 struct v4l2_rect *compose;
297
298                 compose = bru_get_compose(bru, cfg, fmt->pad, fmt->which);
299                 compose->left = 0;
300                 compose->top = 0;
301                 compose->width = format->width;
302                 compose->height = format->height;
303         }
304
305         /* Propagate the format code to all pads */
306         if (fmt->pad == BRU_PAD_SINK(0)) {
307                 unsigned int i;
308
309                 for (i = 0; i <= bru->entity.source_pad; ++i) {
310                         format = vsp1_entity_get_pad_format(&bru->entity, cfg,
311                                                             i, fmt->which);
312                         format->code = fmt->format.code;
313                 }
314         }
315
316         return 0;
317 }
318
319 static int bru_get_selection(struct v4l2_subdev *subdev,
320                              struct v4l2_subdev_pad_config *cfg,
321                              struct v4l2_subdev_selection *sel)
322 {
323         struct vsp1_bru *bru = to_bru(subdev);
324
325         if (sel->pad == bru->entity.source_pad)
326                 return -EINVAL;
327
328         switch (sel->target) {
329         case V4L2_SEL_TGT_COMPOSE_BOUNDS:
330                 sel->r.left = 0;
331                 sel->r.top = 0;
332                 sel->r.width = BRU_MAX_SIZE;
333                 sel->r.height = BRU_MAX_SIZE;
334                 return 0;
335
336         case V4L2_SEL_TGT_COMPOSE:
337                 sel->r = *bru_get_compose(bru, cfg, sel->pad, sel->which);
338                 return 0;
339
340         default:
341                 return -EINVAL;
342         }
343 }
344
345 static int bru_set_selection(struct v4l2_subdev *subdev,
346                              struct v4l2_subdev_pad_config *cfg,
347                              struct v4l2_subdev_selection *sel)
348 {
349         struct vsp1_bru *bru = to_bru(subdev);
350         struct v4l2_mbus_framefmt *format;
351         struct v4l2_rect *compose;
352
353         if (sel->pad == bru->entity.source_pad)
354                 return -EINVAL;
355
356         if (sel->target != V4L2_SEL_TGT_COMPOSE)
357                 return -EINVAL;
358
359         /* The compose rectangle top left corner must be inside the output
360          * frame.
361          */
362         format = vsp1_entity_get_pad_format(&bru->entity, cfg,
363                                             bru->entity.source_pad, sel->which);
364         sel->r.left = clamp_t(unsigned int, sel->r.left, 0, format->width - 1);
365         sel->r.top = clamp_t(unsigned int, sel->r.top, 0, format->height - 1);
366
367         /* Scaling isn't supported, the compose rectangle size must be identical
368          * to the sink format size.
369          */
370         format = vsp1_entity_get_pad_format(&bru->entity, cfg, sel->pad,
371                                             sel->which);
372         sel->r.width = format->width;
373         sel->r.height = format->height;
374
375         compose = bru_get_compose(bru, cfg, sel->pad, sel->which);
376         *compose = sel->r;
377
378         return 0;
379 }
380
381 /* -----------------------------------------------------------------------------
382  * V4L2 Subdevice Operations
383  */
384
385 static struct v4l2_subdev_video_ops bru_video_ops = {
386         .s_stream = bru_s_stream,
387 };
388
389 static struct v4l2_subdev_pad_ops bru_pad_ops = {
390         .init_cfg = vsp1_entity_init_cfg,
391         .enum_mbus_code = bru_enum_mbus_code,
392         .enum_frame_size = bru_enum_frame_size,
393         .get_fmt = bru_get_format,
394         .set_fmt = bru_set_format,
395         .get_selection = bru_get_selection,
396         .set_selection = bru_set_selection,
397 };
398
399 static struct v4l2_subdev_ops bru_ops = {
400         .video  = &bru_video_ops,
401         .pad    = &bru_pad_ops,
402 };
403
404 /* -----------------------------------------------------------------------------
405  * Initialization and Cleanup
406  */
407
408 struct vsp1_bru *vsp1_bru_create(struct vsp1_device *vsp1)
409 {
410         struct vsp1_bru *bru;
411         int ret;
412
413         bru = devm_kzalloc(vsp1->dev, sizeof(*bru), GFP_KERNEL);
414         if (bru == NULL)
415                 return ERR_PTR(-ENOMEM);
416
417         bru->entity.type = VSP1_ENTITY_BRU;
418
419         ret = vsp1_entity_init(vsp1, &bru->entity, "bru",
420                                vsp1->info->num_bru_inputs + 1, &bru_ops);
421         if (ret < 0)
422                 return ERR_PTR(ret);
423
424         /* Initialize the control handler. */
425         v4l2_ctrl_handler_init(&bru->ctrls, 1);
426         v4l2_ctrl_new_std(&bru->ctrls, &bru_ctrl_ops, V4L2_CID_BG_COLOR,
427                           0, 0xffffff, 1, 0);
428
429         bru->bgcolor = 0;
430
431         bru->entity.subdev.ctrl_handler = &bru->ctrls;
432
433         if (bru->ctrls.error) {
434                 dev_err(vsp1->dev, "bru: failed to initialize controls\n");
435                 ret = bru->ctrls.error;
436                 vsp1_entity_destroy(&bru->entity);
437                 return ERR_PTR(ret);
438         }
439
440         return bru;
441 }