Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2FFBFC433FE for ; Thu, 13 Jan 2022 07:59:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232487AbiAMH7A (ORCPT ); Thu, 13 Jan 2022 02:59:00 -0500 Received: from mailgw02.mediatek.com ([210.61.82.184]:59944 "EHLO mailgw02.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S229991AbiAMH67 (ORCPT ); Thu, 13 Jan 2022 02:58:59 -0500 X-UUID: 7b4a774f1a2b4abb957ef1b2f881ed9f-20220113 X-UUID: 7b4a774f1a2b4abb957ef1b2f881ed9f-20220113 Received: from mtkcas10.mediatek.inc [(172.21.101.39)] by mailgw02.mediatek.com (envelope-from ) (Generic MTA with TLSv1.2 ECDHE-RSA-AES256-SHA384 256/256) with ESMTP id 1854924994; Thu, 13 Jan 2022 15:58:56 +0800 Received: from mtkexhb01.mediatek.inc (172.21.101.102) by mtkmbs10n1.mediatek.inc (172.21.101.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384) id 15.2.792.15; Thu, 13 Jan 2022 15:58:55 +0800 Received: from mtkcas10.mediatek.inc (172.21.101.39) by mtkexhb01.mediatek.inc (172.21.101.102) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Thu, 13 Jan 2022 15:58:55 +0800 Received: from mhfsdcap04 (10.17.3.154) by mtkcas10.mediatek.inc (172.21.101.73) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Thu, 13 Jan 2022 15:58:52 +0800 Message-ID: <83670f12a4eda1d8aecde3c0bf225642106d1267.camel@mediatek.com> Subject: Re: [PATCH v2 3/3] mmc: mediatek: add support for SDIO eint irq From: Axe Yang To: Andy Shevchenko CC: Ulf Hansson , Rob Herring , Chaotian Jing , Matthias Brugger , Adrian Hunter , "Yoshihiro Shimoda" , Satya Tangirala , Wolfram Sang , "Lucas Stach" , Eric Biggers , Andrew Jeffery , Stephen Boyd , Kiwoong Kim , Yue Hu , Tian Tao , , , , , Date: Thu, 13 Jan 2022 15:58:52 +0800 In-Reply-To: References: <20220111014046.5864-1-axe.yang@mediatek.com> <20220111014046.5864-4-axe.yang@mediatek.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.28.5-0ubuntu0.18.04.2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-MTK: N Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Andy, thank you for the review. But for the comment for 'dev_dbg', can you explain more about that? On Tue, 2022-01-11 at 13:46 +0200, Andy Shevchenko wrote: > On Tue, Jan 11, 2022 at 09:40:46AM +0800, Axe Yang wrote: > > Add support for eint irq when MSDC is used as an SDIO host. This > > IRQ > > > feature requires SDIO device support async irq function. With this > > IRQ > > > feature,SDIO host can be awakened by SDIO card in suspend state, > > feature, SDIO > > > without additional pin. > > > > MSDC driver will time-share the SDIO DAT1 pin. During suspend, MSDC > > turn off clock and switch SDIO DAT1 pin to GPIO mode. And during > > resume, switch GPIO function back to DAT1 mode then turn on clock. > > > > Some device tree property should be added or modified in msdc node > > MSDC > > > to support SDIO eint irq. Pinctrls named state_dat1 and state_eint > > IRQ > > > are mandatory. And cap-sdio-async-irq flag is necessary since this > > feature depends on asynchronous interrupt: > > &mmcX { > > ... > > pinctrl-names = "default", "state_uhs", > > "state_eint", > > "state_dat1"; > > ... > > pinctrl-2 = <&mmc2_pins_eint>; > > pinctrl-3 = <&mmc2_pins_dat1>; > > ... > > cap-sdio-async-irq; > > ... > > }; > > ... > > > - * Copyright (c) 2014-2015 MediaTek Inc. > > + * Copyright (c) 2014-2022 MediaTek Inc. > > Shouldn't it be rather like > > * Copyright (c) 2014-2015,2022 MediaTek Inc. > > ? > > ... > > > +static irqreturn_t msdc_sdio_eint_irq(int irq, void *dev_id) > > +{ > > + unsigned long flags; > > + struct msdc_host *host = (struct msdc_host *)dev_id; > > No casting is needed. > > > + struct mmc_host *mmc = mmc_from_priv(host); > > Perhaps reversed xmas tree order > > struct msdc_host *host = dev_id; > struct mmc_host *mmc = mmc_from_priv(host); > unsigned long flags; > > ? > > But hey, why do you need flags? > > > + spin_lock_irqsave(&host->lock, flags); > > + if (likely(host->sdio_irq_cnt > 0)) { > > + disable_irq_nosync(host->eint_irq); > > + disable_irq_wake(host->eint_irq); > > + host->sdio_irq_cnt--; > > + } > > + spin_unlock_irqrestore(&host->lock, flags); > > + > > + sdio_signal_irq(mmc); > > + > > + return IRQ_HANDLED; > > +} > > ... > > > +static int msdc_request_dat1_eint_irq(struct msdc_host *host) > > +{ > > + struct gpio_desc *desc; > > + int irq, ret; > > + > > + desc = devm_gpiod_get(host->dev, "eint", GPIOD_IN); > > + if (IS_ERR(desc)) > > + return PTR_ERR(desc); > > + > > + ret = gpiod_to_irq(desc); > > + if (ret < 0) > > + return ret; > > + > > + irq = ret; > > + ret = devm_request_threaded_irq(host->dev, irq, NULL, > > msdc_sdio_eint_irq, > > + IRQF_TRIGGER_LOW | IRQF_ONESHOT > > | IRQF_NO_AUTOEN, > > + "sdio-eint", host); > > + > > Redundant blank line. > > > + if (!ret) > > + host->eint_irq = irq; > > + > > + return ret; > > I guess I have already commented on this, i.e. use standard pattern > > if (ret) > return ret; > > ... > return 0; > > > +} > > ... > > > + host->pins_eint = pinctrl_lookup_state(host->pinctrl, > > "state_eint"); > > + if (IS_ERR(host->pins_eint)) { > > + dev_dbg(&pdev->dev, "Cannot find pinctrl > > eint!\n"); > > In debug mode of pin control this will bring a duplicate message. Can you explain more about this comment? I don't understand what the 'duplicate message' refers for. > > > + } else { > > + host->pins_dat1 = pinctrl_lookup_state(host- > > >pinctrl, "state_dat1"); > > + if (IS_ERR(host->pins_dat1)) { > > + ret = dev_err_probe(&pdev->dev, > > PTR_ERR(host->pins_dat1), > > + "Cannot find > > pinctrl dat1!\n"); > > + goto host_free; > > + } > > + > > + host->sdio_eint_ready = true; > > + } > > + } > >