linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] irqchip fixes for 5.9, take #1
@ 2020-08-18 15:14 Marc Zyngier
  2020-08-24  4:45 ` Lokesh Vutla
  0 siblings, 1 reply; 2+ messages in thread
From: Marc Zyngier @ 2020-08-18 15:14 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: John Stultz, Lokesh Vutla, Nishanth Menon, Rob Herring,
	Suman Anna, Jason Cooper, linux-kernel, kernel-team

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] irqchip fixes for 5.9, take #1
  2020-08-18 15:14 [GIT PULL] irqchip fixes for 5.9, take #1 Marc Zyngier
@ 2020-08-24  4:45 ` Lokesh Vutla
  0 siblings, 0 replies; 2+ messages in thread
From: Lokesh Vutla @ 2020-08-24  4:45 UTC (permalink / raw)
  To: Marc Zyngier, Thomas Gleixner
  Cc: John Stultz, Nishanth Menon, Rob Herring, Suman Anna,
	Jason Cooper, linux-kernel, kernel-team

Hi,

On 18/08/20 8:44 pm, Marc Zyngier wrote:
> 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,

I see rc2[0] is already tagged. Any reason why this PR is not merged?

[0] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/log/

Thanks and regards,
Lokesh

> 
> 	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
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-08-24  4:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-18 15:14 [GIT PULL] irqchip fixes for 5.9, take #1 Marc Zyngier
2020-08-24  4:45 ` Lokesh Vutla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).