summaryrefslogtreecommitdiffstats
path: root/drivers/irqchip
diff options
context:
space:
mode:
authorHerve Codina <herve.codina@bootlin.com>2023-10-24 17:03:35 +0200
committerThomas Gleixner <tglx@linutronix.de>2023-10-27 09:15:44 +0200
commit5e7afb2eb7b2a7c81e9f608cbdf74a07606fd1b5 (patch)
treeeba513a251b1d64347caac3a9bcf66549bcea2d3 /drivers/irqchip
parenta0b0bad10587ae2948a7c36ca4ffc206007fbcf3 (diff)
downloadlinux-stable-5e7afb2eb7b2a7c81e9f608cbdf74a07606fd1b5.tar.gz
linux-stable-5e7afb2eb7b2a7c81e9f608cbdf74a07606fd1b5.tar.bz2
linux-stable-5e7afb2eb7b2a7c81e9f608cbdf74a07606fd1b5.zip
genirq/generic_chip: Make irq_remove_generic_chip() irqdomain aware
irq_remove_generic_chip() calculates the Linux interrupt number for removing the handler and interrupt chip based on gc::irq_base as a linear function of the bit positions of set bits in the @msk argument. When the generic chip is present in an irq domain, i.e. created with a call to irq_alloc_domain_generic_chips(), gc::irq_base contains not the base Linux interrupt number. It contains the base hardware interrupt for this chip. It is set to 0 for the first chip in the domain, 0 + N for the next chip, where $N is the number of hardware interrupts per chip. That means the Linux interrupt number cannot be calculated based on gc::irq_base for irqdomain based chips without a domain map lookup, which is currently missing. Rework the code to take the irqdomain case into account and calculate the Linux interrupt number by a irqdomain lookup of the domain specific hardware interrupt number. [ tglx: Massage changelog. Reshuffle the logic and add a proper comment. ] Fixes: cfefd21e693d ("genirq: Add chip suspend and resume callbacks") Signed-off-by: Herve Codina <herve.codina@bootlin.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20231024150335.322282-1-herve.codina@bootlin.com
Diffstat (limited to 'drivers/irqchip')
0 files changed, 0 insertions, 0 deletions