media: vsp1: Document max_width restriction on SRU
authorKieran Bingham <[email protected]>
Fri, 14 Sep 2018 14:26:51 +0000 (10:26 -0400)
committerMauro Carvalho Chehab <[email protected]>
Mon, 17 Sep 2018 18:54:03 +0000 (14:54 -0400)
The SRU is currently restricted to 256 pixels as part of the current
partition algorithm. Document that the actual capability of this
component is 288 pixels, but don't increase the implementation.

The extended partition algorithm may later choose to utilise a larger
input to support overlapping partitions which will improve the quality
of the output images.

Signed-off-by: Kieran Bingham <[email protected]>
Signed-off-by: Laurent Pinchart <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
drivers/media/platform/vsp1/vsp1_sru.c

index 9919bebf4c549e36411293fdb5d3f96cc8df0067..b1617cb1f2b9d9923538ae505cdae563aa32e3f4 100644 (file)
@@ -312,6 +312,11 @@ static unsigned int sru_max_width(struct vsp1_entity *entity,
        output = vsp1_entity_get_pad_format(&sru->entity, sru->entity.config,
                                            SRU_PAD_SOURCE);
 
+       /*
+        * The maximum input width of the SRU is 288 input pixels, but 32
+        * pixels are reserved to support overlapping partition windows when
+        * scaling.
+        */
        if (input->width != output->width)
                return 512;
        else