Re: [PATCH v2 0/4] drivers/iommu/ relocations

2011-06-22 Thread Joerg Roedel
Okay, I applied the patches to move forward with them. On-top I also put
two additional patches which are sent as a follow-up to this mail.

These changes are at 

git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git

in the core branch.

Thanks,

Joerg


--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 0/4] drivers/iommu/ relocations

2011-06-14 Thread Roedel, Joerg
On Fri, Jun 10, 2011 at 05:55:43PM -0400, Ohad Ben-Cohen wrote:
 Ohad Ben-Cohen (4):
   drivers: iommu: move to a dedicated folder
   msm: iommu: move to drivers/iommu/
   x86: amd_iommu: move to drivers/iommu/
   x86/ia64: intel-iommu: move to drivers/iommu/

Btw, what tree do these patches apply against? I tried to apply them to
v3.0-rc3 and got conflicts. Can you rebase them against -rc3?

Joerg

-- 
AMD Operating System Research Center

Advanced Micro Devices GmbH Einsteinring 24 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Landkr. Muenchen; Registerger. Muenchen, HRB Nr. 43632

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 0/4] drivers/iommu/ relocations

2011-06-14 Thread Ohad Ben-Cohen
On Tue, Jun 14, 2011 at 1:29 PM, Roedel, Joerg joerg.roe...@amd.com wrote:
 Btw, what tree do these patches apply against?

v3.0-rc2

 I tried to apply them to v3.0-rc3 and got conflicts.

What kind of conflicts ? I just tried rc3 and it applied cleanly.

Just in case, I'm attaching the patches too.

Tell me if you still see any issue, thanks !


iommu-patches.tar.bz2
Description: BZip2 compressed data


Re: [PATCH v2 0/4] drivers/iommu/ relocations

2011-06-14 Thread Roedel, Joerg
On Tue, Jun 14, 2011 at 06:44:56AM -0400, Ohad Ben-Cohen wrote:
 On Tue, Jun 14, 2011 at 1:29 PM, Roedel, Joerg joerg.roe...@amd.com wrote:
  Btw, what tree do these patches apply against?
 
 v3.0-rc2
 
  I tried to apply them to v3.0-rc3 and got conflicts.
 
 What kind of conflicts ? I just tried rc3 and it applied cleanly.
 
 Just in case, I'm attaching the patches too.
 
 Tell me if you still see any issue, thanks !

The patches from your archive applied fine. Probably the ones I got were
screwed up by exchange :/

I go forward an test them now.

Thanks,

Joerg

-- 
AMD Operating System Research Center

Advanced Micro Devices GmbH Einsteinring 24 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Landkr. Muenchen; Registerger. Muenchen, HRB Nr. 43632

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2 0/4] drivers/iommu/ relocations

2011-06-10 Thread Ohad Ben-Cohen
Create a dedicated iommu drivers folder, put the base iommu code there,
and move the existing IOMMU API users as well (msm-iommu, amd_iommu and
intel-iommu).

Putting all iommu drivers together will ease finding similarities
between different platforms, with the intention of solving problems once,
in a generic framework, which everyone can use.

OMAP's iommu will be moved too as soon as it's migrated.

For previous discussions on this, please see:
https://lkml.org/lkml/2011/6/2/369

v1-v2

* move intel's iova, intr_remapping and dmar too (David Woodhouse)
* move msm's iommu_dev as well (David Brown)
* dmar: depend on x86/ia64, fix ia64 Kconfig, drop EXPERIMENTAL (Chris Wright)

Ohad Ben-Cohen (4):
  drivers: iommu: move to a dedicated folder
  msm: iommu: move to drivers/iommu/
  x86: amd_iommu: move to drivers/iommu/
  x86/ia64: intel-iommu: move to drivers/iommu/

 arch/arm/mach-msm/Kconfig  |   19 
 arch/arm/mach-msm/Makefile |2 +-
 arch/ia64/Kconfig  |   24 -
 arch/x86/Kconfig   |   79 
 arch/x86/kernel/Makefile   |2 +-
 drivers/Kconfig|2 +
 drivers/Makefile   |1 +
 drivers/base/Makefile  |1 -
 drivers/iommu/Kconfig  |   97 
 drivers/iommu/Makefile |5 +
 {arch/x86/kernel = drivers/iommu}/amd_iommu.c |0
 drivers/{pci = iommu}/dmar.c  |0
 drivers/{pci = iommu}/intel-iommu.c   |1 -
 drivers/{pci = iommu}/intr_remapping.c|1 -
 drivers/{pci = iommu}/intr_remapping.h|0
 drivers/{base = iommu}/iommu.c|0
 drivers/{pci = iommu}/iova.c  |0
 .../mach-msm/iommu.c = drivers/iommu/msm_iommu.c  |0
 .../iommu_dev.c = drivers/iommu/msm_iommu_dev.c   |0
 drivers/pci/Makefile   |5 -
 drivers/pci/pci.h  |2 -
 include/linux/pci.h|   11 ++
 22 files changed, 118 insertions(+), 134 deletions(-)
 create mode 100644 drivers/iommu/Kconfig
 create mode 100644 drivers/iommu/Makefile
 rename {arch/x86/kernel = drivers/iommu}/amd_iommu.c (100%)
 rename drivers/{pci = iommu}/dmar.c (100%)
 rename drivers/{pci = iommu}/intel-iommu.c (99%)
 rename drivers/{pci = iommu}/intr_remapping.c (99%)
 rename drivers/{pci = iommu}/intr_remapping.h (100%)
 rename drivers/{base = iommu}/iommu.c (100%)
 rename drivers/{pci = iommu}/iova.c (100%)
 rename arch/arm/mach-msm/iommu.c = drivers/iommu/msm_iommu.c (100%)
 rename arch/arm/mach-msm/iommu_dev.c = drivers/iommu/msm_iommu_dev.c (100%)

--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html