Centos-kernel-stream-9/drivers/bcma
Juri Lelli 3fed39eddf bcma: gpio: Use generic_handle_irq_safe()
Bugzilla: https://bugzilla.redhat.com/2171995

commit 94ec234a16cf3acdb319f05917b1efec9642222e
Author:    Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date:      Mon Sep 19 14:46:16 2022 +0200

    bcma: gpio: Use generic_handle_irq_safe()

    On PREEMPT_RT enabled kernels the demultiplex interrupt handler is force
    threaded and runs with interrupts enabled. The invocation of
    generic_handle_irq() with interrupts enabled triggers a lockdep warning due
    to a non-irq safe lock acquisition.

    Instead of disabling interrupts on the driver level, use
    generic_handle_domain_irq_safe().

    [ tglx: Split out from combo patch ]

    Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
    Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
    Link: https://lore.kernel.org/r/YnkfWFzvusFFktSt@linutronix.de

Signed-off-by: Juri Lelli <juri.lelli@redhat.com>
2023-02-27 13:46:07 +01:00
..
Kconfig
Makefile
README
TODO
bcma_private.h
core.c
driver_chipcommon.c
driver_chipcommon_b.c
driver_chipcommon_nflash.c
driver_chipcommon_pflash.c
driver_chipcommon_pmu.c
driver_chipcommon_sflash.c
driver_gmac_cmn.c
driver_gpio.c bcma: gpio: Use generic_handle_irq_safe() 2023-02-27 13:46:07 +01:00
driver_mips.c bcma: remove unused function 2021-04-18 09:36:56 +03:00
driver_pci.c
driver_pci_host.c bcma: use semicolons rather than commas to separate statements 2020-10-01 16:23:50 +03:00
driver_pcie2.c
host_pci.c bcma: simplify reference to driver name 2022-04-12 08:21:47 -06:00
host_soc.c
main.c bus: Make remove callback return void 2022-08-25 10:41:31 -06:00
scan.c drivers: bcma: remove set but not used variable `addrh` and `sizeh` 2020-08-02 18:26:18 +03:00
scan.h
sprom.c

README

Broadcom introduced new bus as replacement for older SSB. It is based on AMBA,
however from programming point of view there is nothing AMBA specific we use.

Standard AMBA drivers are platform specific, have hardcoded addresses and use
AMBA standard fields like CID and PID.

In case of Broadcom's cards every device consists of:
1) Broadcom specific AMBA device. It is put on AMBA bus, but can not be treated
   as standard AMBA device. Reading it's CID or PID can cause machine lockup.
2) AMBA standard devices called ports or wrappers. They have CIDs (AMBA_CID)
   and PIDs (0x103BB369), but we do not use that info for anything. One of that
   devices is used for managing Broadcom specific core.

Addresses of AMBA devices are not hardcoded in driver and have to be read from
EPROM.

In this situation we decided to introduce separated bus. It can contain up to
16 devices identified by Broadcom specific fields: manufacturer, id, revision
and class.