All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marc Zyngier <maz@kernel.org>
To: Thierry Reding <thierry.reding@gmail.com>
Cc: Linus Walleij <linus.walleij@linaro.org>,
	linux-gpio@vger.kernel.org,
	Bartosz Golaszewski <bgolaszewski@baylibre.com>,
	Thierry Reding <treding@nvidia.com>,
	Vidya Sagar <vidyas@nvidia.com>
Subject: Re: [PATCH 2/2] RFT: gpio: tegra186: Set affinity callback to parent
Date: Mon, 16 Nov 2020 09:02:24 +0000	[thread overview]
Message-ID: <08147080c7af44420e0744249df6b26d@kernel.org> (raw)
In-Reply-To: <20201113214448.GA2138577@ulmo>

Linus, Thierry,

On 2020-11-13 21:44, Thierry Reding wrote:
> On Wed, Nov 11, 2020 at 03:06:28PM +0100, Linus Walleij wrote:
>> This assigns the .irq_set_affinity to the parent callback.
>> I assume the Tegra186 is an SMP system so this would be
>> beneficial.
>> 
>> I used the pattern making the hirerarchy tolerant for missing
>> parent as in Marc's earlier patch.
>> 
>> Cc: Thierry Reding <treding@nvidia.com>
>> Cc: Vidya Sagar <vidyas@nvidia.com>
>> Suggested-by: Marc Zyngier <maz@kernel.org>
>> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
>> ---
>>  drivers/gpio/gpio-tegra186.c | 11 +++++++++++
>>  1 file changed, 11 insertions(+)
>> 
>> diff --git a/drivers/gpio/gpio-tegra186.c 
>> b/drivers/gpio/gpio-tegra186.c
>> index 9500074b1f1b..5060e81f5f49 100644
>> --- a/drivers/gpio/gpio-tegra186.c
>> +++ b/drivers/gpio/gpio-tegra186.c
>> @@ -444,6 +444,16 @@ static int tegra186_irq_set_wake(struct irq_data 
>> *data, unsigned int on)
>>  	return 0;
>>  }
>> 
>> +static int tegra186_irq_set_affinity(struct irq_data *data,
>> +				     const struct cpumask *dest,
>> +				     bool force)
>> +{
>> +	if (data->parent_data)
>> +		return irq_chip_set_affinity_parent(data, dest, force);
>> +
>> +	return 0;

Having come to my senses, this should definitely return an error when
there is no parent is present (i.e. we can't claim success when the
affinity hasn't changed).

>> +}
>> +
>>  static void tegra186_gpio_irq(struct irq_desc *desc)
>>  {
>>  	struct tegra_gpio *gpio = irq_desc_get_handler_data(desc);
>> @@ -690,6 +700,7 @@ static int tegra186_gpio_probe(struct 
>> platform_device *pdev)
>>  	gpio->intc.irq_unmask = tegra186_irq_unmask;
>>  	gpio->intc.irq_set_type = tegra186_irq_set_type;
>>  	gpio->intc.irq_set_wake = tegra186_irq_set_wake;
>> +	gpio->intc.irq_set_affinity = tegra186_irq_set_affinity;
>> 
>>  	irq = &gpio->gpio.irq;
>>  	irq->chip = &gpio->intc;
> 
> This does seem to mostly work, but I do get this new warning during
> boot:
> 
>     [    6.406230] genirq: irq_chip gpio did not update eff. affinity
> mask of irq 70
> 
> Any idea what that's supposed to mean? I can probably dig in some more
> early next week to see if I can track down why exactly that happens.

I can't however reproduce this on my Jetson-TX2. Can you post the 
content
of /sys/kernel/debug/irq/irqs/70?

Thanks,

         M.
-- 
Jazz is not dead. It just smells funny...

  reply	other threads:[~2020-11-16  9:33 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-11 14:06 [PATCH 1/2] RFT: gpio: sifive: Set affinity callback to parent Linus Walleij
2020-11-11 14:06 ` [PATCH 2/2] RFT: gpio: tegra186: " Linus Walleij
2020-11-13 21:44   ` Thierry Reding
2020-11-16  9:02     ` Marc Zyngier [this message]
2020-11-16 11:35       ` Thierry Reding
2020-11-16 12:53       ` Thierry Reding

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=08147080c7af44420e0744249df6b26d@kernel.org \
    --to=maz@kernel.org \
    --cc=bgolaszewski@baylibre.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=thierry.reding@gmail.com \
    --cc=treding@nvidia.com \
    --cc=vidyas@nvidia.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.