public inbox for linux-mediatek@lists.infradead.org
 help / color / mirror / Atom feed
From: Yingjoe Chen <yingjoe.chen@mediatek.com>
To: Hanks Chen <hanks.chen@mediatek.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
	devicetree@vger.kernel.org, wsd_upstream@mediatek.com,
	Andy Teng <andy.teng@mediatek.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	Sean Wang <sean.wang@kernel.org>,
	linux-kernel@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
	linux-mediatek@lists.infradead.org,
	Matthias Brugger <matthias.bgg@gmail.com>,
	Mars Cheng <mars.cheng@mediatek.com>
Subject: Re: [PATCH v4 3/6] pinctrl: mediatek: avoid virtual gpio trying to set reg
Date: Wed, 25 Mar 2020 17:22:23 +0800	[thread overview]
Message-ID: <1585128143.18052.3.camel@mtksdaap41> (raw)
In-Reply-To: <1585123964-10791-4-git-send-email-hanks.chen@mediatek.com>

On Wed, 2020-03-25 at 16:12 +0800, Hanks Chen wrote:
> for virtual gpios, they should not do reg setting and
> should behave as expected for eint function.
> 
> Change-Id: I913501f21c841c2cb981530cd387395648f83984

Please remove Change-Id:


> Signed-off-by: Hanks Chen <hanks.chen@mediatek.com>
> Signed-off-by: Mars Cheng <mars.cheng@mediatek.com>
> ---
>  drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c |   28 ++++++++++++++++++++++
>  drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.h |    1 +
>  drivers/pinctrl/mediatek/pinctrl-paris.c         |    7 ++++++
>  3 files changed, 36 insertions(+)
> 
> diff --git a/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c b/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c
> index 20e1c89..087d233 100644
> --- a/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c
> +++ b/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c
> @@ -226,6 +226,31 @@ static int mtk_xt_find_eint_num(struct mtk_pinctrl *hw, unsigned long eint_n)
>  	return EINT_NA;
>  }
>  
> +/*
> + * Virtual GPIO only used inside SOC and not being exported to outside SOC.
> + * Some modules use virtual GPIO as eint (e.g. pmif or usb).
> + * In MTK platform, external interrupt (EINT) and GPIO is 1-1 mapping
> + * and we can set GPIO as eint.
> + * But some modules use specific eint which doesn't have real GPIO pin.
> + * So we use virtual GPIO to map it.
> + */
> +
> +bool mtk_is_virt_gpio(struct mtk_pinctrl *hw, unsigned int gpio_n)
> +{
> +	const struct mtk_pin_desc *desc;
> +	bool virt_gpio = false;
> +
> +	if (gpio_n >= hw->soc->npins)
> +		return virt_gpio;
> +
> +	desc = (const struct mtk_pin_desc *)&hw->soc->pins[gpio_n];
> +
> +	if (desc->funcs && !desc->funcs[desc->eint.eint_m].name)
> +		virt_gpio = true;

I think removing virt_gpio and just return true/false for this function
will make it easier to read.

Joe.C

> +
> +	return virt_gpio;
> +}


_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

  reply	other threads:[~2020-03-25  9:22 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-25  8:12 [PATCH v4 0/6] Add basic SoC Support for Mediatek MT6779 SoC Hanks Chen
2020-03-25  8:12 ` [PATCH v4 1/6] dt-bindings: pinctrl: add bindings for MediaTek " Hanks Chen
2020-03-25  8:12 ` [PATCH v4 2/6] pinctrl: mediatek: update pinmux definitions for mt6779 Hanks Chen
2020-03-25  8:12 ` [PATCH v4 3/6] pinctrl: mediatek: avoid virtual gpio trying to set reg Hanks Chen
2020-03-25  9:22   ` Yingjoe Chen [this message]
2020-03-25  8:12 ` [PATCH v4 4/6] pinctrl: mediatek: add pinctrl support for MT6779 SoC Hanks Chen
2020-03-25  8:12 ` [PATCH v4 5/6] pinctrl: mediatek: add mt6779 eint support Hanks Chen
2020-03-25  8:12 ` [PATCH v4 6/6] arm64: dts: add dts nodes for MT6779 Hanks Chen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1585128143.18052.3.camel@mtksdaap41 \
    --to=yingjoe.chen@mediatek.com \
    --cc=andy.teng@mediatek.com \
    --cc=devicetree@vger.kernel.org \
    --cc=hanks.chen@mediatek.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=mark.rutland@arm.com \
    --cc=mars.cheng@mediatek.com \
    --cc=matthias.bgg@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=sean.wang@kernel.org \
    --cc=wsd_upstream@mediatek.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox