All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joerg Roedel <joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>
To: Linus Torvalds
	<torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: [git pull] IOMMU updates for Linux 3.4
Date: Thu, 22 Mar 2012 20:23:36 +0100	[thread overview]
Message-ID: <20120322192334.GA2919@8bytes.org> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 2340 bytes --]

Hi Linus,

The following changes since commit c16fa4f2ad19908a47c63d8fa436a1178438c7e7:

  Linux 3.3 (2012-03-18 16:15:34 -0700)

are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git next

or as a signed tag at:
  git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git iommu-updates-v3.4

Gerard Snitselaar (1):
      iommu/amd: Fix section mismatch

Hiroshi DOYU (2):
      ARM: IOMMU: Tegra20: Add iommu_ops for GART driver
      ARM: IOMMU: Tegra30: Add iommu_ops for SMMU driver

Joerg Roedel (7):
      iommu/amd: Split amd_iommu_init function
      iommu/amd: Fix double free of mem-region in error-path
      iommu/amd: Update git-tree in MAINTAINERS
      iommu/amd: Don't initialize IOMMUv2 resources when not required
      iommu/amd: Make sure IOMMU interrupts are re-enabled on resume
      iommu/amd: Move interrupt setup code into seperate function
      Merge branches 'iommu/fixes', 'arm/tegra' and 'x86/amd' into next

Lucas Stach (1):
      iommu/tegra-gart: fix spin_unlock in map failure path

Steffen Persvold (1):
      iommu/amd: Fix section warning for prealloc_protection_domains

 MAINTAINERS                             |    2 +-
 arch/arm/mach-tegra/include/mach/smmu.h |   63 ++
 drivers/iommu/Kconfig                   |   20 +
 drivers/iommu/Makefile                  |    2 +
 drivers/iommu/amd_iommu.c               |    2 +-
 drivers/iommu/amd_iommu_init.c          |  187 ++++--
 drivers/iommu/amd_iommu_v2.c            |   14 +-
 drivers/iommu/tegra-gart.c              |  451 ++++++++++++++
 drivers/iommu/tegra-smmu.c              | 1034 +++++++++++++++++++++++++++++++
 include/linux/amd-iommu.h               |    2 +-
 10 files changed, 1709 insertions(+), 68 deletions(-)
 create mode 100644 arch/arm/mach-tegra/include/mach/smmu.h
 create mode 100644 drivers/iommu/tegra-gart.c
 create mode 100644 drivers/iommu/tegra-smmu.c

The IOMMU updates for this round are not very large patch-wise. But
they contain two new IOMMU drivers for the ARM Tegra 2 and 3 platforms.
Besides that there are also a few patches for the AMD IOMMU which
prepare the driver for adding intr-remapping support and a couple of
fixes.

The top-commit of the next branch on my local machine is

	7de473066f1512e52ea806e3c9698e5ea325b26c

Please pull.

Thanks,

	Joerg


[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 190 bytes --]

_______________________________________________
iommu mailing list
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

WARNING: multiple messages have this Message-ID (diff)
From: Joerg Roedel <joro@8bytes.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, iommu@lists.linux-foundation.org
Subject: [git pull] IOMMU updates for Linux 3.4
Date: Thu, 22 Mar 2012 20:23:36 +0100	[thread overview]
Message-ID: <20120322192334.GA2919@8bytes.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 2340 bytes --]

Hi Linus,

The following changes since commit c16fa4f2ad19908a47c63d8fa436a1178438c7e7:

  Linux 3.3 (2012-03-18 16:15:34 -0700)

are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git next

or as a signed tag at:
  git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git iommu-updates-v3.4

Gerard Snitselaar (1):
      iommu/amd: Fix section mismatch

Hiroshi DOYU (2):
      ARM: IOMMU: Tegra20: Add iommu_ops for GART driver
      ARM: IOMMU: Tegra30: Add iommu_ops for SMMU driver

Joerg Roedel (7):
      iommu/amd: Split amd_iommu_init function
      iommu/amd: Fix double free of mem-region in error-path
      iommu/amd: Update git-tree in MAINTAINERS
      iommu/amd: Don't initialize IOMMUv2 resources when not required
      iommu/amd: Make sure IOMMU interrupts are re-enabled on resume
      iommu/amd: Move interrupt setup code into seperate function
      Merge branches 'iommu/fixes', 'arm/tegra' and 'x86/amd' into next

Lucas Stach (1):
      iommu/tegra-gart: fix spin_unlock in map failure path

Steffen Persvold (1):
      iommu/amd: Fix section warning for prealloc_protection_domains

 MAINTAINERS                             |    2 +-
 arch/arm/mach-tegra/include/mach/smmu.h |   63 ++
 drivers/iommu/Kconfig                   |   20 +
 drivers/iommu/Makefile                  |    2 +
 drivers/iommu/amd_iommu.c               |    2 +-
 drivers/iommu/amd_iommu_init.c          |  187 ++++--
 drivers/iommu/amd_iommu_v2.c            |   14 +-
 drivers/iommu/tegra-gart.c              |  451 ++++++++++++++
 drivers/iommu/tegra-smmu.c              | 1034 +++++++++++++++++++++++++++++++
 include/linux/amd-iommu.h               |    2 +-
 10 files changed, 1709 insertions(+), 68 deletions(-)
 create mode 100644 arch/arm/mach-tegra/include/mach/smmu.h
 create mode 100644 drivers/iommu/tegra-gart.c
 create mode 100644 drivers/iommu/tegra-smmu.c

The IOMMU updates for this round are not very large patch-wise. But
they contain two new IOMMU drivers for the ARM Tegra 2 and 3 platforms.
Besides that there are also a few patches for the AMD IOMMU which
prepare the driver for adding intr-remapping support and a couple of
fixes.

The top-commit of the next branch on my local machine is

	7de473066f1512e52ea806e3c9698e5ea325b26c

Please pull.

Thanks,

	Joerg


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

             reply	other threads:[~2012-03-22 19:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-22 19:23 Joerg Roedel [this message]
2012-03-22 19:23 ` [git pull] IOMMU updates for Linux 3.4 Joerg Roedel

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=20120322192334.GA2919@8bytes.org \
    --to=joro-zlv9swrftaidnm+yrofe0a@public.gmane.org \
    --cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.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.