Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp142439pxb; Wed, 3 Nov 2021 01:25:13 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzZSv6EOphrm6Xw/CbKGTSAGmRSe2KDJewO3aoXtQ4EmiuOsbZLAaEVLf2/xOpfEyyIQYaW X-Received: by 2002:a05:6602:2c09:: with SMTP id w9mr30606152iov.78.1635927913717; Wed, 03 Nov 2021 01:25:13 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1635927913; cv=none; d=google.com; s=arc-20160816; b=upaAGiy4gwYNfD4Ceb54rop/4baO3+y3pevYXs0V4itaIJ/SXMrrdfwHuV3SErYVIJ S/tCewQxuiAhyjOG1wrk/dOEzMmtUaqplV7Sg5yMgvNJejx15+9xrO1/KYp9Vyiqqm8p tWPUL65aVRmou/1WL0De3ZYSXxEIwLvGIxMe6HRwtARAMj0SFZkhzXfbqBWPSDlk8xEw awM+bDyczf0jpDCqErqy+IrLNL1PRs320yonWjGgFkbvCaRE1szXpHbrgM7r2ryqdoLV C1K1aTpy3WHazIFut0M8TxdumRkVI0hk8QWPkI/N5MYih/BcA4jJpBTYS70zt15j1sLv W9RQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=w/iVwhu6Ewwp9n1BKNksJduf81bCYoRdbPQCBguctXE=; b=Z6bYrMdAjZUm2p20hVaXdpGgiRII9dUNIoZdUeL4UvHuPDJg41Up8RqXAzJ20bvQX6 tvtb/dwA0hIkMs+KnRoV/horvFw6K7Y8aVlyf2zcjo9J15RRFxKIFeZsFYJOn4TIfi03 tr1la21UD1JTM5E5rlytB9LWSQAS7Z0Fa5Iwd/niNuT5qux91nAqpZI5e+Zp4Cu8Tkw0 uUE82Lwlxn2n0kXKL4mG5A745CbU6kb/tmSZiS/bPn/mKhZksQC7fXmh1Tjf+OvqSALJ RnCCMxk8ssUhE2jvlWFLB6ItGXhDvQA/uMd5v6UDJJcKwZonswHPGQM6UAFJR5Jga+LT 8fbQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id v33si2493120jal.78.2021.11.03.01.25.01; Wed, 03 Nov 2021 01:25:13 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230463AbhKCI0i (ORCPT + 99 others); Wed, 3 Nov 2021 04:26:38 -0400 Received: from twspam01.aspeedtech.com ([211.20.114.71]:25358 "EHLO twspam01.aspeedtech.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230352AbhKCI0i (ORCPT ); Wed, 3 Nov 2021 04:26:38 -0400 Received: from mail.aspeedtech.com ([192.168.0.24]) by twspam01.aspeedtech.com with ESMTP id 1A3815ve088944; Wed, 3 Nov 2021 16:01:05 +0800 (GMT-8) (envelope-from jammy_huang@aspeedtech.com) Received: from JammyHuang-PC.aspeed.com (192.168.2.115) by TWMBX02.aspeed.com (192.168.0.24) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Wed, 3 Nov 2021 16:23:57 +0800 From: Jammy Huang To: , , , , , , , , CC: Paul Menzel Subject: [Resend PATCH v3] media: aspeed: fix mode-detect always time out at 2nd run Date: Wed, 3 Nov 2021 16:23:54 +0800 Message-ID: <20211103082354.408-1-jammy_huang@aspeedtech.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [192.168.2.115] X-ClientProxiedBy: TWMBX02.aspeed.com (192.168.0.24) To TWMBX02.aspeed.com (192.168.0.24) X-DNSRBL: X-MAIL: twspam01.aspeedtech.com 1A3815ve088944 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org aspeed_video_get_resolution() will try to do res-detect again if the timing got in last try is invalid. But it will always time out because VE_SEQ_CTRL_TRIG_MODE_DET is only cleared after 1st mode-detect. To fix the problem, just clear VE_SEQ_CTRL_TRIG_MODE_DET before setting it in aspeed_video_enable_mode_detect(). Fixes: d2b4387f3bdf ("media: platform: Add Aspeed Video Engine driver") Signed-off-by: Jammy Huang Acked-by: Paul Menzel Reviewed-by: Joel Stanley --- v3: - add tag v2: - update commit message --- drivers/media/platform/aspeed-video.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/platform/aspeed-video.c b/drivers/media/platform/aspeed-video.c index 5ffbabf884eb..fea5e4d0927e 100644 --- a/drivers/media/platform/aspeed-video.c +++ b/drivers/media/platform/aspeed-video.c @@ -518,6 +518,10 @@ static void aspeed_video_enable_mode_detect(struct aspeed_video *video) aspeed_video_update(video, VE_INTERRUPT_CTRL, 0, VE_INTERRUPT_MODE_DETECT); + /* Disable mode detect in order to re-trigger */ + aspeed_video_update(video, VE_SEQ_CTRL, + VE_SEQ_CTRL_TRIG_MODE_DET, 0); + /* Trigger mode detect */ aspeed_video_update(video, VE_SEQ_CTRL, 0, VE_SEQ_CTRL_TRIG_MODE_DET); } @@ -809,10 +813,6 @@ static void aspeed_video_get_resolution(struct aspeed_video *video) return; } - /* Disable mode detect in order to re-trigger */ - aspeed_video_update(video, VE_SEQ_CTRL, - VE_SEQ_CTRL_TRIG_MODE_DET, 0); - aspeed_video_check_and_set_polarity(video); aspeed_video_enable_mode_detect(video); -- 2.25.1