mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 01:24:12 +08:00
media: vsp1: Fix LIF buffer thresholds
Commitde2bc45c84
("media: vsp1: Update LIF buffer thresholds") updated the LIF buffer thresholds based on the VSP version, but used the wrong model mask. This resulted in all VSP instances to be treated as a Gen3 VSPD, breaking operation on all Gen2 platforms as well as on H3 ES2.0, M3-N, V3M and V3H. Fix it. Fixes:de2bc45c84
("media: vsp1: Update LIF buffer thresholds") Reported-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
a7c3a0d5f8
commit
230bce5511
@ -95,7 +95,7 @@ static void lif_configure_stream(struct vsp1_entity *entity,
|
||||
format = vsp1_entity_get_pad_format(&lif->entity, lif->entity.config,
|
||||
LIF_PAD_SOURCE);
|
||||
|
||||
switch (entity->vsp1->version & VI6_IP_VERSION_SOC_MASK) {
|
||||
switch (entity->vsp1->version & VI6_IP_VERSION_MODEL_MASK) {
|
||||
case VI6_IP_VERSION_MODEL_VSPD_GEN2:
|
||||
case VI6_IP_VERSION_MODEL_VSPD_V2H:
|
||||
hbth = 1536;
|
||||
|
Loading…
Reference in New Issue
Block a user