Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1505982
| From | Bjorn Helgaas <helgaas@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH V4 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages |
| Date | 2016-10-21 16:10 +0200 |
| Message-ID | <suIGl-6Bt-313@gated-at.bofh.it> (permalink) |
| References | <su7wZ-7rI-5@gated-at.bofh.it> <su7wZ-7rI-7@gated-at.bofh.it> <suwYp-756-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Thu, Oct 20, 2016 at 08:39:30PM -0500, Bjorn Helgaas wrote: > On Wed, Oct 19, 2016 at 06:21:02PM -0400, Sinan Kaya wrote: > > The penalty determination of ISA IRQ goes through 4 paths. > > 1. assign PCI_USING during power up via acpi_irq_penalty_init. > > 2. update the penalty with acpi_penalize_isa_irq function based on the > > active parameter. > > 3. kernel command line penalty update via acpi_irq_penalty_update function. > > 4. increment the penalty as USING right after the IRQ is assign to PCI. > > > > acpi_penalize_isa_irq and acpi_irq_penalty_update functions get called > > before the ACPI subsystem is started. > > > > These API need to bypass the acpi_irq_get_penalty function. > > I don't mind this patch, but the changelog doesn't tell me what's > broken and why we need this fix. Apparently acpi_irq_get_penalty() > doesn't work before ACPI is initialized, but I don't see *why* it > wouldn't work. > > However, I see one bug it *does* fix: we do not store the SCI penalty > in the acpi_isa_irq_penalty[] table because acpi_isa_irq_penalty[] > only holds ISA IRQ penalties, and there's no guarantee that the SCI is > an ISA IRQ. But prior to this patch, we added in the SCI penalty to > the acpi_isa_irq_penalty[] entry when the SCI was an ISA IRQ, which > makes acpi_irq_get_penalty() return the wrong thing. Consider: > > Initially acpi_isa_irq_penalty[9] = 0. > Assume sci_interrupt = 9. > Then acpi_irq_get_penalty(9) returns X. > If we call acpi_penalize_isa_irq(9, 1), > it sets acpi_isa_irq_penalty[9] = X, > and now acpi_irq_get_penalty(9) returns X + X. Oops, I forgot the penalty we *intended* to add with acpi_penalize_isa_irq(). It's really like this, where X is the SCI penalty and Y is the part added by acpi_penalize_isa_irq(): Initially acpi_isa_irq_penalty[9] = 0. Assume sci_interrupt = 9. Then acpi_irq_get_penalty(9) returns X. If we call acpi_penalize_isa_irq(9, 1), it sets acpi_isa_irq_penalty[9] = X + Y, and now acpi_irq_get_penalty(9) returns X + X + Y. At the end, acpi_irq_get_penalty(9) *should* return X + Y, but instead it returns X + X + Y, i.e., the SCI penalty is included twice.
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH V4 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages Sinan Kaya <okaya@codeaurora.org> - 2016-10-20 00:30 +0200
Re: [PATCH V4 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages "Rafael J. Wysocki" <rafael@kernel.org> - 2016-10-20 23:40 +0200
Re: [PATCH V4 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages Sinan Kaya <okaya@codeaurora.org> - 2016-10-24 05:50 +0200
Re: [PATCH V4 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages Bjorn Helgaas <helgaas@kernel.org> - 2016-10-21 03:40 +0200
Re: [PATCH V4 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages Bjorn Helgaas <helgaas@kernel.org> - 2016-10-21 16:10 +0200
Re: [PATCH V4 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages Sinan Kaya <okaya@codeaurora.org> - 2016-10-24 05:30 +0200
Re: [V4, 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages Jonathan Liu <net147@gmail.com> - 2016-10-23 05:50 +0200
Re: [V4, 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages Sinan Kaya <okaya@codeaurora.org> - 2016-10-24 06:20 +0200
Re: [V4, 1/3] ACPI, PCI, IRQ: assign ISA IRQ directly during early boot stages Jonathan Liu <net147@gmail.com> - 2016-10-24 06:30 +0200
csiph-web