Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1163730

[PATCH v2 0/3] IRQ/Gic-V3:Support Mbigen interrupt controller

From Ma Jun <majun258@huawei.com>
Newsgroups linux.kernel
Subject [PATCH v2 0/3] IRQ/Gic-V3:Support Mbigen interrupt controller
Date 2015-06-12 05:00 +0200
Message-ID <pAnmh-F3-3@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


This patch set is applied to supprot the mbigen device.

Mbigen means message based interrupt generator.
It locate in ITS or out side of ITS.

In fact, mbigen is a kind of interrupt controller collects
the irq form non-PCI devices and generate msi interrupt.

Hisilicon designed mbigen to reduce the wired interrupt 
number connected to GIC.

In these patches, the interrupts from non-PCI devices are
named as MBI to distiguish between legacy MSI interrupt from
PCI devices.

As a kind of MSI interrupt controller, the mbigen is used as a child 
domain of ITS domain just like PCI devices.

So,in order to support the mbigen interrupt controller, the 
its-gic-v3-its.c and other related files are changed.

Change in v2
---Compared to v1, mbigen domain is used as a child domain of ITS accroding
   to Marc's advice.So, all changed files related with MSI in v1 are removed.
   Now, only its domain related files are changed to support this new interrupt
   controller.



Ma Jun (3):
  Add mbigen driver to support mbigen interrupt controller
  Change arm-gic-its to support the Mbigen interrupt
  dt-binding:Documents the mbigen bindings

 Documentation/devicetree/bindings/arm/mbigen.txt |   59 +++
 drivers/irqchip/Kconfig                          |    7 +
 drivers/irqchip/Makefile                         |    1 +
 drivers/irqchip/irq-gic-v3-its.c                 |   66 +++-
 drivers/irqchip/irq-mbigen.c                     |  579 ++++++++++++++++++++++
 include/linux/irq.h                              |    5 +
 include/linux/mbi.h                              |  114 +++++
 kernel/irq/chip.c                                |   40 ++-
 8 files changed, 866 insertions(+), 5 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/mbigen.txt
 create mode 100644 drivers/irqchip/irq-mbigen.c
 create mode 100644 include/linux/mbi.h


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/3] IRQ/Gic-V3:Support Mbigen interrupt controller Ma Jun <majun258@huawei.com> - 2015-06-12 05:00 +0200
  [PATCH v2 2/3] IRQ/Gic-V3: Change arm-gic-its to support the Mbigen interrupt Ma Jun <majun258@huawei.com> - 2015-06-12 05:00 +0200
    Re: [PATCH v2 2/3] IRQ/Gic-V3: Change arm-gic-its to support the  Mbigen interrupt "majun (F)" <majun258@huawei.com> - 2015-06-15 09:10 +0200
  [PATCH v2 3/3] dt-binding:Documents the mbigen bindings Ma Jun <majun258@huawei.com> - 2015-06-12 05:00 +0200
  [PATCH v2 1/3] IRQ/Gic-V3: Add mbigen driver to support mbigen interrupt controller Ma Jun <majun258@huawei.com> - 2015-06-12 05:00 +0200

csiph-web