mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Cc: Angela Czubak <acz@semihalf.com>,
	akpm@linux-foundation.org, john.garry@huawei.com,
	linux-kernel@vger.kernel.org, upstream@semihalf.com,
	dtor@chromium.org, linux-acpi <linux-acpi@intel.com>,
	rafael@kernel.org
Subject: Re: [PATCH] resource: Prevent irqresource_disabled() from erasing flags
Date: Tue, 30 Mar 2021 18:49:57 +0300	[thread overview]
Message-ID: <20210330154957.GU2542@lahna.fi.intel.com> (raw)
In-Reply-To: <1c086b9e-d5c2-6e8d-1d81-748935b0dd64@intel.com>

Hi,

On Tue, Mar 30, 2021 at 05:09:42PM +0200, Rafael J. Wysocki wrote:
> On 3/29/2021 9:52 PM, Angela Czubak wrote:
> > Do not overwrite flags as it leads to erasing triggering and polarity
> > information which might be useful in case of hard-coded interrupts.
> > This way the information can be read later on even though mapping to
> > APIC domain failed.
> > 
> > Signed-off-by: Angela Czubak <acz@semihalf.com>
> > ---
> > Some Chromebooks use hard-coded interrupts in their ACPI tables.
> > This is an excerpt as dumped on Relm:
> > 
> > ...
> >              Name (_HID, "ELAN0001")  // _HID: Hardware ID
> >              Name (_DDN, "Elan Touchscreen ")  // _DDN: DOS Device Name
> >              Name (_UID, 0x05)  // _UID: Unique ID
> >              Name (ISTP, Zero)
> >              Method (_CRS, 0, NotSerialized)  // _CRS: Current Resource Settings
> >              {
> >                  Name (BUF0, ResourceTemplate ()
> >                  {
> >                      I2cSerialBusV2 (0x0010, ControllerInitiated, 0x00061A80,
> >                          AddressingMode7Bit, "\\_SB.I2C1",
> >                          0x00, ResourceConsumer, , Exclusive,
> >                          )
> >                      Interrupt (ResourceConsumer, Edge, ActiveLow, Exclusive, ,, )
> >                      {
> >                          0x000000B8,
> >                      }
> >                  })
> >                  Return (BUF0) /* \_SB_.I2C1.ETSA._CRS.BUF0 */
> >              }
> > ...
> > 
> > This interrupt is hard-coded to 0xB8 = 184 which is too high to be mapped
> > to IO-APIC, so no triggering information is propagated as acpi_register_gsi()
> > fails and irqresource_disabled() is issued, which leads to erasing triggering
> > and polarity information.
> > If that function added its flags instead of overwriting them the correct IRQ
> > type would be set even for the hard-coded interrupts, which allows device driver
> > to retrieve it.
> > Please, let me know if this kind of modification is acceptable.
> 
> From the quick look it should not be problematic, but it needs to be checked
> more carefully.
> 
> Mika, what do you think?

I think it makes sense. We still set IORESOURCE_DISABLED unconditionally
so this should not cause issues. In theory at least :)

> >   include/linux/ioport.h | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/include/linux/ioport.h b/include/linux/ioport.h
> > index 55de385c839cf..647744d8514e0 100644
> > --- a/include/linux/ioport.h
> > +++ b/include/linux/ioport.h
> > @@ -331,7 +331,7 @@ static inline void irqresource_disabled(struct resource *res, u32 irq)
> >   {
> >   	res->start = irq;
> >   	res->end = irq;
> > -	res->flags = IORESOURCE_IRQ | IORESOURCE_DISABLED | IORESOURCE_UNSET;
> > +	res->flags |= IORESOURCE_IRQ | IORESOURCE_DISABLED | IORESOURCE_UNSET;
> >   }
> >   extern struct address_space *iomem_get_mapping(void);
> 

  reply	other threads:[~2021-03-30 15:50 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-29 19:52 Angela Czubak
2021-03-30 15:09 ` Rafael J. Wysocki
2021-03-30 15:49   ` Mika Westerberg [this message]
2021-04-07 11:01     ` Angela Czubak
2021-04-07 12:53       ` Rafael J. Wysocki

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=20210330154957.GU2542@lahna.fi.intel.com \
    --to=mika.westerberg@linux.intel.com \
    --cc=acz@semihalf.com \
    --cc=akpm@linux-foundation.org \
    --cc=dtor@chromium.org \
    --cc=john.garry@huawei.com \
    --cc=linux-acpi@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rafael.j.wysocki@intel.com \
    --cc=rafael@kernel.org \
    --cc=upstream@semihalf.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

all inboxes | Powered by JetHome®