All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: arm@kernel.org
Cc: linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org
Subject: [GIT PULL 4/4] GIC crossbar support for v3.14 merge window
Date: Wed, 8 Jan 2014 17:22:16 -0800	[thread overview]
Message-ID: <20140109012215.GL31323@atomide.com> (raw)
In-Reply-To: <20140109011940.GI31323@atomide.com>

The following changes since commit 413541dd66d51f791a0b169d9b9014e4f56be13c:

  Linux 3.13-rc5 (2013-12-22 13:08:32 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.14/crossbar-signed

for you to fetch changes up to 70d4545544853e2d95909b919d4565ff32c3e3c5:

  ARM: DRA: Enable Crossbar IP support for DRA7XX (2014-01-08 09:21:42 -0800)

----------------------------------------------------------------
Add support for GIC crossbar that routes interrupts on newer omaps.

----------------------------------------------------------------
Sricharan R (4):
      irqchip: irq-gic: Add support for routable irqs
      irqchip: crossbar: Add support for Crossbar IP
      ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
      ARM: DRA: Enable Crossbar IP support for DRA7XX

 Documentation/devicetree/bindings/arm/gic.txt      |   6 +
 .../devicetree/bindings/arm/omap/crossbar.txt      |  27 +++
 arch/arm/mach-omap2/Kconfig                        |   1 +
 arch/arm/mach-omap2/omap-wakeupgen.c               |   4 +-
 arch/arm/mach-omap2/omap4-common.c                 |   4 +
 drivers/irqchip/Kconfig                            |   8 +
 drivers/irqchip/Makefile                           |   1 +
 drivers/irqchip/irq-crossbar.c                     | 208 +++++++++++++++++++++
 drivers/irqchip/irq-gic.c                          |  82 +++++++-
 include/linux/irqchip/arm-gic.h                    |   7 +-
 include/linux/irqchip/irq-crossbar.h               |  11 ++
 11 files changed, 346 insertions(+), 13 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/omap/crossbar.txt
 create mode 100644 drivers/irqchip/irq-crossbar.c
 create mode 100644 include/linux/irqchip/irq-crossbar.h

WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 4/4] GIC crossbar support for v3.14 merge window
Date: Wed, 8 Jan 2014 17:22:16 -0800	[thread overview]
Message-ID: <20140109012215.GL31323@atomide.com> (raw)
In-Reply-To: <20140109011940.GI31323@atomide.com>

The following changes since commit 413541dd66d51f791a0b169d9b9014e4f56be13c:

  Linux 3.13-rc5 (2013-12-22 13:08:32 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.14/crossbar-signed

for you to fetch changes up to 70d4545544853e2d95909b919d4565ff32c3e3c5:

  ARM: DRA: Enable Crossbar IP support for DRA7XX (2014-01-08 09:21:42 -0800)

----------------------------------------------------------------
Add support for GIC crossbar that routes interrupts on newer omaps.

----------------------------------------------------------------
Sricharan R (4):
      irqchip: irq-gic: Add support for routable irqs
      irqchip: crossbar: Add support for Crossbar IP
      ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
      ARM: DRA: Enable Crossbar IP support for DRA7XX

 Documentation/devicetree/bindings/arm/gic.txt      |   6 +
 .../devicetree/bindings/arm/omap/crossbar.txt      |  27 +++
 arch/arm/mach-omap2/Kconfig                        |   1 +
 arch/arm/mach-omap2/omap-wakeupgen.c               |   4 +-
 arch/arm/mach-omap2/omap4-common.c                 |   4 +
 drivers/irqchip/Kconfig                            |   8 +
 drivers/irqchip/Makefile                           |   1 +
 drivers/irqchip/irq-crossbar.c                     | 208 +++++++++++++++++++++
 drivers/irqchip/irq-gic.c                          |  82 +++++++-
 include/linux/irqchip/arm-gic.h                    |   7 +-
 include/linux/irqchip/irq-crossbar.h               |  11 ++
 11 files changed, 346 insertions(+), 13 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/omap/crossbar.txt
 create mode 100644 drivers/irqchip/irq-crossbar.c
 create mode 100644 include/linux/irqchip/irq-crossbar.h

  parent reply	other threads:[~2014-01-09  1:22 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-09  1:19 [GIT PULL 1/4] non-urgent omap fixes for v3.14 merge window Tony Lindgren
2014-01-09  1:19 ` Tony Lindgren
2014-01-09  1:20 ` [GIT PULL 2/4] omap device tree " Tony Lindgren
2014-01-09  1:20   ` Tony Lindgren
2014-01-14 22:30   ` Kevin Hilman
2014-01-14 22:30     ` Kevin Hilman
2014-01-09  1:21 ` [GIT PULL 3/4] trivial omap big endian changes " Tony Lindgren
2014-01-09  1:21   ` Tony Lindgren
2014-01-14 22:31   ` Kevin Hilman
2014-01-14 22:31     ` Kevin Hilman
2014-01-14 22:33     ` Tony Lindgren
2014-01-14 22:33       ` Tony Lindgren
2014-01-09  1:22 ` Tony Lindgren [this message]
2014-01-09  1:22   ` [GIT PULL 4/4] GIC crossbar support " Tony Lindgren
2014-01-14 22:40   ` Kevin Hilman
2014-01-14 22:40     ` Kevin Hilman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140109012215.GL31323@atomide.com \
    --to=tony@atomide.com \
    --cc=arm@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.