From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.5 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 65329C433F5 for ; Tue, 21 Sep 2021 20:52:41 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 2388561002 for ; Tue, 21 Sep 2021 20:52:41 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 2388561002 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4F65F6E81B; Tue, 21 Sep 2021 20:52:40 +0000 (UTC) Received: from so254-9.mailgun.net (so254-9.mailgun.net [198.61.254.9]) by gabe.freedesktop.org (Postfix) with ESMTPS id 01CE66E81B for ; Tue, 21 Sep 2021 20:52:35 +0000 (UTC) DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=mg.codeaurora.org; q=dns/txt; s=smtp; t=1632257559; h=Message-ID: References: In-Reply-To: Subject: Cc: To: From: Date: Content-Transfer-Encoding: Content-Type: MIME-Version: Sender; bh=4hzrYlo6qNpsGGd2SNul6VPV1cWIjJEHbydaYkAosQU=; b=MOwB3tJ41tbFFfdUE2EB8q3HtlfEGjv7hp5PyJTJ3v+HBhBAc9oNzyGX4utI3cSrMPjRwpl+ 7UP8AGAf6wNRI/Gb5tqJ2uaWmTuGecn0QkHsCACuP+6h9L9eahJUozHrzAGr7opHkFKtDRx6 23JJkbQ192NPFXQQM0Dy7UDKvhQ= X-Mailgun-Sending-Ip: 198.61.254.9 X-Mailgun-Sid: WyJkOTU5ZSIsICJkcmktZGV2ZWxAbGlzdHMuZnJlZWRlc2t0b3Aub3JnIiwgImJlOWU0YSJd Received: from smtp.codeaurora.org (ec2-35-166-182-171.us-west-2.compute.amazonaws.com [35.166.182.171]) by smtp-out-n03.prod.us-west-2.postgun.com with SMTP id 614a4602b585cc7d24b98732 (version=TLS1.2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256); Tue, 21 Sep 2021 20:52:18 GMT Received: by smtp.codeaurora.org (Postfix, from userid 1001) id B7D94C43619; Tue, 21 Sep 2021 20:52:18 +0000 (UTC) Received: from mail.codeaurora.org (localhost.localdomain [127.0.0.1]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: abhinavk) by smtp.codeaurora.org (Postfix) with ESMTPSA id 93695C4338F; Tue, 21 Sep 2021 20:52:17 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 21 Sep 2021 13:52:17 -0700 From: abhinavk@codeaurora.org To: Dmitry Baryshkov Cc: Bjorn Andersson , Rob Clark , Sean Paul , Jonathan Marek , Stephen Boyd , David Airlie , Daniel Vetter , "open list:DRM DRIVER FOR MSM ADRENO GPU" , "open list:DRM DRIVER FOR MSM ADRENO GPU" , freedreno , David Heidelberg Subject: Re: [Freedreno] [PATCH] drm/msm/dsi: do not install irq handler before power up the host In-Reply-To: References: <20210921162258.1858223-1-dmitry.baryshkov@linaro.org> <0c275df228a1925e43a4dc59ceeab6b7@codeaurora.org> Message-ID: <8c1e44cf44f917d38fa7133b869047b0@codeaurora.org> X-Sender: abhinavk@codeaurora.org User-Agent: Roundcube Webmail/1.3.9 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 2021-09-21 10:47, Dmitry Baryshkov wrote: > Hi, > > On Tue, 21 Sept 2021 at 20:01, wrote: >> >> On 2021-09-21 09:22, Dmitry Baryshkov wrote: >> > The DSI host might be left in some state by the bootloader. If this >> > state generates an IRQ, it might hang the system by holding the >> > interrupt line before the driver sets up the DSI host to the known >> > state. >> > >> > Move the request/free_irq calls into msm_dsi_host_power_on/_off calls, >> > so that we can be sure that the interrupt is delivered when the host is >> > in the known state. >> > >> > Fixes: a689554ba6ed ("drm/msm: Initial add DSI connector support") >> > Signed-off-by: Dmitry Baryshkov >> >> This is a valid change and we have seen interrupt storms in downstream >> happening >> when like you said the bootloader leaves the DSI host in unknown >> state. >> Just one question below. >> >> > --- >> > drivers/gpu/drm/msm/dsi/dsi_host.c | 21 ++++++++++++--------- >> > 1 file changed, 12 insertions(+), 9 deletions(-) >> > >> > diff --git a/drivers/gpu/drm/msm/dsi/dsi_host.c >> > b/drivers/gpu/drm/msm/dsi/dsi_host.c >> > index e269df285136..cd842347a6b1 100644 >> > --- a/drivers/gpu/drm/msm/dsi/dsi_host.c >> > +++ b/drivers/gpu/drm/msm/dsi/dsi_host.c >> > @@ -1951,15 +1951,6 @@ int msm_dsi_host_modeset_init(struct >> > mipi_dsi_host *host, >> > return ret; >> > } >> > >> > - ret = devm_request_irq(&pdev->dev, msm_host->irq, >> > - dsi_host_irq, IRQF_TRIGGER_HIGH | IRQF_ONESHOT, >> > - "dsi_isr", msm_host); >> > - if (ret < 0) { >> > - DRM_DEV_ERROR(&pdev->dev, "failed to request IRQ%u: %d\n", >> > - msm_host->irq, ret); >> > - return ret; >> > - } >> > - >> > msm_host->dev = dev; >> > ret = cfg_hnd->ops->tx_buf_alloc(msm_host, SZ_4K); >> > if (ret) { >> > @@ -2413,6 +2404,16 @@ int msm_dsi_host_power_on(struct mipi_dsi_host >> > *host, >> > if (msm_host->disp_en_gpio) >> > gpiod_set_value(msm_host->disp_en_gpio, 1); >> > >> > + ret = devm_request_irq(&msm_host->pdev->dev, msm_host->irq, >> > + dsi_host_irq, IRQF_TRIGGER_HIGH | IRQF_ONESHOT, >> > + "dsi_isr", msm_host); >> > + if (ret < 0) { >> > + DRM_DEV_ERROR(&msm_host->pdev->dev, "failed to request IRQ%u: %d\n", >> > + msm_host->irq, ret); >> > + return ret; >> > + } >> > + >> > + >> >> Do you want to move this to msm_dsi_host_enable()? >> So without the controller being enabled it is still in unknown state? > > msm_dsi_host_power_on() reconfigures the host registers, so the state > is known at the end of the power_on(). > >> Also do you want to do this after dsi0 and dsi1 are initialized to >> account for >> dual dsi cases? > > I don't think this should matter. The host won't generate 'extra' > interrupts in such case, will it? > We have seen cases where misconfiguration has caused interrupts to storm only on one DSI in some cases. So yes, I would prefer this is done after both are configured. >> >> > msm_host->power_on = true; >> > mutex_unlock(&msm_host->dev_mutex); >> > >> > @@ -2439,6 +2440,8 @@ int msm_dsi_host_power_off(struct mipi_dsi_host >> > *host) >> > goto unlock_ret; >> > } >> > >> > + devm_free_irq(&msm_host->pdev->dev, msm_host->irq, msm_host); >> > + >> > dsi_ctrl_config(msm_host, false, NULL, NULL); >> > >> > if (msm_host->disp_en_gpio)