[GIT PULL] irqchip fixes for 5.9, take #1

From: Marc Zyngier
Date: Tue Aug 18 2020 - 11:15:23 EST


Hi Thomas,

As -rc1 is out, here's the first batches of fixes for 5.9. The most
important one is a fix for a typo that broke modular irqchips using
the brand new set of macros. Oh hum...

The rest of it is what I was hinting at when I sent the original 5.9
pull request, with a bunch of TI updates that deal with the change of
their firmware interface. The handling of the dependencies was bad
enough that I couldn't send it before -rc1 was out...

Please pull,

M.

The following changes since commit 9123e3a74ec7b934a4a099e98af6a61c2f80bbf5:

Linux 5.9-rc1 (2020-08-16 13:04:57 -0700)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms.git tags/irqchip-fixes-5.9-1

for you to fetch changes up to 7828a3ef8646fb2e69ed45616c8453a037ca7867:

irqchip: Fix probing deferal when using IRQCHIP_PLATFORM_DRIVER helpers (2020-08-17 08:06:11 +0100)

----------------------------------------------------------------
irqchip fixes for Linux 5.9, take #1

- Fix an embarassing typo in the new module helpers, leading
to the probe failing most of the time

- The promised TI firmware rework that couldn't make it into
the merge window due to a very badly managed set of dependency

----------------------------------------------------------------
Lokesh Vutla (13):
firmware: ti_sci: Drop the device id to resource type translation
firmware: ti_sci: Drop unused structure ti_sci_rm_type_map
firmware: ti_sci: Add support for getting resource with subtype
dt-bindings: irqchip: ti, sci-intr: Update bindings to drop the usage of gic as parent
dt-bindings: irqchip: Convert ti, sci-intr bindings to yaml
irqchip/ti-sci-intr: Add support for INTR being a parent to INTR
dt-bindings: irqchip: ti, sci-inta: Update docs to support different parent.
dt-bindings: irqchip: Convert ti, sci-inta bindings to yaml
irqchip/ti-sci-inta: Do not store TISCI device id in platform device id field
irqchip/ti-sci-inta: Add support for INTA directly connecting to GIC
arm64: dts: k3-j721e: ti-sci-inta/intr: Update to latest bindings
arm64: dts: k3-am65: ti-sci-inta/intr: Update to latest bindings
arm64: dts: k3-am65: Update the RM resource types

Marc Zyngier (1):
irqchip: Fix probing deferal when using IRQCHIP_PLATFORM_DRIVER helpers

.../bindings/interrupt-controller/ti,sci-inta.txt | 66 ---------
.../bindings/interrupt-controller/ti,sci-inta.yaml | 98 +++++++++++++
.../bindings/interrupt-controller/ti,sci-intr.txt | 82 -----------
.../bindings/interrupt-controller/ti,sci-intr.yaml | 102 ++++++++++++++
MAINTAINERS | 4 +-
arch/arm64/boot/dts/ti/k3-am65-main.dtsi | 36 +++--
arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi | 12 +-
arch/arm64/boot/dts/ti/k3-am65-wakeup.dtsi | 8 +-
arch/arm64/boot/dts/ti/k3-am654-base-board.dts | 4 +-
.../boot/dts/ti/k3-j721e-common-proc-board.dts | 10 +-
arch/arm64/boot/dts/ti/k3-j721e-main.dtsi | 43 +++---
arch/arm64/boot/dts/ti/k3-j721e-mcu-wakeup.dtsi | 12 +-
drivers/firmware/ti_sci.c | 155 +++++++++------------
drivers/irqchip/irq-ti-sci-inta.c | 95 ++++++++++---
drivers/irqchip/irq-ti-sci-intr.c | 152 ++++++++++++--------
drivers/irqchip/irqchip.c | 2 +-
include/linux/soc/ti/ti_sci_protocol.h | 13 ++
17 files changed, 517 insertions(+), 377 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
create mode 100644 Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
delete mode 100644 Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
create mode 100644 Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml