lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Fri, 31 Aug 2018 15:40:42 +0100 From: Kieran Bingham <kieran.bingham+renesas@...asonboard.com> To: Laurent Pinchart <laurent.pinchart@...asonboard.com>, mchehab@...nel.org Cc: linux-media@...r.kernel.org, linux-renesas-soc@...r.kernel.org, linux-kernel@...r.kernel.org, Kieran Bingham <kieran.bingham+renesas@...asonboard.com> Subject: [PATCH 4/6] media: vsp1: Document max_width restriction on SRU 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. Signed-off-by: Kieran Bingham <kieran.bingham+renesas@...asonboard.com> --- drivers/media/platform/vsp1/vsp1_sru.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/media/platform/vsp1/vsp1_sru.c b/drivers/media/platform/vsp1/vsp1_sru.c index f277700e5cc2..2a40e09b9aa7 100644 --- a/drivers/media/platform/vsp1/vsp1_sru.c +++ b/drivers/media/platform/vsp1/vsp1_sru.c @@ -314,6 +314,10 @@ 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 width of the SRU is 288 input pixels, but to support the + * partition algorithm, this is currently kept at 256. + */ if (input->width != output->width) return 512; else -- 2.17.1
Powered by blists - more mailing lists