linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 0/6] genirq/gpio: Add driver for ThunderX and OCTEON-TX SoCs
@ 2017-04-11 17:21 David Daney
  2017-04-11 17:21 ` [PATCH v6 1/6] genirq: Export more irq_chip_*_parent() functions David Daney
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: David Daney @ 2017-04-11 17:21 UTC (permalink / raw)
  To: Linus Walleij, Alexandre Courbot, Rob Herring, Mark Rutland,
	Marc Zyngier, Thomas Gleixner, linux-gpio, devicetree
  Cc: linux-kernel, David Daney

The ThunderX/OCTEON-TX GPIO hardware looks like a PCIe device, with
the interrupt signal from each GPIO line being routed to a dedicated
MSI-X.  This interrupt routing requires that we add some custom
processing to the beginning of the MSI-X irqdomain hierarchy.

Changes from v5:

 - Added .irq_{request,release}_resources() functions to irq_chip.

 - Quit calling irq_set_irq_type() in the irq_map() function.

 - Added more error condition checking to irq_domain_{push,pop}_irq()

Changes from v4:

 - Rebased to post-v4.10 to support .set_config() function.

 - Added .get_direction() support.

 - Added PIN_CONFIG_INPUT_DEBOUNCE support.

 - Removed some improper use of ENOSYS.

Changes from v3:

 - Add some "depends on" to the driver Kconfig to avoid build errors
   in some architectures when doing COMPILE_TEST builds.

Changes from v2:

 - in 4/6: Added Rob Harring's Acked-by

 - Added three patches to genirq/irqdomain to support interrupt code
   in the driver.

 - Rewrite irq code in driver to use irqdomain hierarchy.

 - Other naming and style changes as recommended by Linus Walleij.

Changes from v1:

 - in 1/3: Addressed Rob Harring's comments.

 - in 2/3: Trivial cleanups found in internal review + add some
   comments.

David Daney (6):
  genirq: Export more irq_chip_*_parent() functions.
  genirq: Add handle_fasteoi_{level,edge}_irq flow handlers.
  irqdomain: Add irq_domain_{push,pop}_irq() functions.
  dt-bindings: gpio: Add binding documentation for gpio-thunderx
  gpio: Add gpio driver support for ThunderX and OCTEON-TX
  MAINTAINERS: Add entry for THUNDERX GPIO Driver.

 .../devicetree/bindings/gpio/gpio-thunderx.txt     |  27 +
 MAINTAINERS                                        |   5 +
 drivers/gpio/Kconfig                               |   8 +
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/gpio-thunderx.c                       | 639 +++++++++++++++++++++
 include/linux/irq.h                                |   2 +
 include/linux/irqdomain.h                          |   3 +
 kernel/irq/chip.c                                  | 105 ++++
 kernel/irq/irqdomain.c                             | 178 ++++++
 9 files changed, 968 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/gpio/gpio-thunderx.txt
 create mode 100644 drivers/gpio/gpio-thunderx.c

-- 
1.8.3.1

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

end of thread, other threads:[~2017-06-07 16:28 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-11 17:21 [PATCH v6 0/6] genirq/gpio: Add driver for ThunderX and OCTEON-TX SoCs David Daney
2017-04-11 17:21 ` [PATCH v6 1/6] genirq: Export more irq_chip_*_parent() functions David Daney
2017-04-11 17:21 ` [PATCH v6 2/6] genirq: Add handle_fasteoi_{level,edge}_irq flow handlers David Daney
2017-04-11 17:21 ` [PATCH v6 3/6] irqdomain: Add irq_domain_{push,pop}_irq() functions David Daney
2017-04-24 13:05   ` Linus Walleij
2017-06-07 16:09     ` Tim Harvey
2017-06-07 16:28       ` Marc Zyngier
2017-04-11 17:21 ` [PATCH v6 4/6] dt-bindings: gpio: Add binding documentation for gpio-thunderx David Daney
2017-04-11 17:21 ` [PATCH v6 5/6] gpio: Add gpio driver support for ThunderX and OCTEON-TX David Daney
2017-04-24 13:08   ` Linus Walleij
2017-04-11 17:21 ` [PATCH v6 6/6] MAINTAINERS: Add entry for THUNDERX GPIO Driver David Daney

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