iommu.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/17] OMAP IOMMU Cleanup & Consolidation
@ 2014-10-22 22:22 Suman Anna
       [not found] ` <1414016555-28067-1-git-send-email-s-anna-l0cyMroinI0@public.gmane.org>
                   ` (15 more replies)
  0 siblings, 16 replies; 20+ messages in thread
From: Suman Anna @ 2014-10-22 22:22 UTC (permalink / raw)
  To: Joerg Roedel; +Cc: Laurent Pinchart, iommu, linux-omap, Suman Anna

Hi,

This is an updated version of the OMAP IOMMU Cleanup & Consolidation
patch series [1], rebased onto 3.18-rc1. The update addresses
comments on patch 12 [2] from the previous series, there are no
changes to any of the other patches.

The series is intended for the 3.19 merge window. A reference branch
with all these patches is available is hosted at [3].

Following is the summary of changes in v2:
- Series rebased to 3.18-rc1.
- Added back the OMAP_IOMMU_DEBUG Kconfig option that was removed
  in v1 in Patch 12. This allows the debugfs portions to be built
  conditionally.
- Added the Acked-by received from Laurent on all patches except
  Patch 12.
- Patches 13 through 17 have no code changes but have to rebased
  because of the updates to Patch 12.

v1:
- See [1] for details

regards
Suman

[1] http://marc.info/?l=linux-omap&m=141211179711402&w=2
[2] https://patchwork.kernel.org/patch/5007261/
[3] https://github.com/sumananna/omap-kernel/commits/iommu/submit/3.18-rc1-cleanup-consolidation-v2

Suman Anna (17):
  iommu/omap: Remove refcount field from omap_iommu object
  iommu/omap: Remove unused isr_priv field from omap_iommu
  iommu/omap: Remove duplicate declarations
  iommu/omap: Remove conditional definition of dev_to_omap_iommu()
  iommu/omap: Remove ver debugfs entry
  iommu/omap: Remove omap_iommu_arch_version() and version field
  iommu/omap: Remove bogus version check in context save/restore
  iommu/omap: Simplify omap2_iommu_fault_isr()
  iommu/omap: Consolidate OMAP IOMMU modules
  iommu/omap: Fix the permissions on nr_tlb_entries
  iommu/omap: Make pagetable debugfs entry read-only
  iommu/omap: Integrate omap-iommu-debug into omap-iommu
  iommu/omap: Remove couple of unused exported functions
  iommu/omap: Do not export unneeded functions
  iommu/omap: Reset the domain field upon detaching
  iommu/omap: Fix bus error on debugfs access of unattached IOMMU
  iommu/omap: Switch pagetable debugfs entry to use seq_file

 drivers/iommu/Kconfig            |  12 +-
 drivers/iommu/Makefile           |   1 -
 drivers/iommu/omap-iommu-debug.c | 242 ++++++++--------------------
 drivers/iommu/omap-iommu.c       | 306 ++++++++++++++++++++++-------------
 drivers/iommu/omap-iommu.h       |  98 ++++++------
 drivers/iommu/omap-iommu2.c      | 337 ---------------------------------------
 6 files changed, 312 insertions(+), 684 deletions(-)
 delete mode 100644 drivers/iommu/omap-iommu2.c

-- 
2.1.0


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

end of thread, other threads:[~2014-10-23 12:34 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-22 22:22 [PATCH v2 00/17] OMAP IOMMU Cleanup & Consolidation Suman Anna
     [not found] ` <1414016555-28067-1-git-send-email-s-anna-l0cyMroinI0@public.gmane.org>
2014-10-22 22:22   ` [PATCH v2 01/17] iommu/omap: Remove refcount field from omap_iommu object Suman Anna
2014-10-22 22:22   ` [PATCH v2 05/17] iommu/omap: Remove ver debugfs entry Suman Anna
2014-10-22 22:22   ` [PATCH v2 17/17] iommu/omap: Switch pagetable debugfs entry to use seq_file Suman Anna
2014-10-22 22:22 ` [PATCH v2 02/17] iommu/omap: Remove unused isr_priv field from omap_iommu Suman Anna
2014-10-22 22:22 ` [PATCH v2 03/17] iommu/omap: Remove duplicate declarations Suman Anna
2014-10-22 22:22 ` [PATCH v2 04/17] iommu/omap: Remove conditional definition of dev_to_omap_iommu() Suman Anna
2014-10-22 22:22 ` [PATCH v2 06/17] iommu/omap: Remove omap_iommu_arch_version() and version field Suman Anna
2014-10-22 22:22 ` [PATCH v2 07/17] iommu/omap: Remove bogus version check in context save/restore Suman Anna
2014-10-22 22:22 ` [PATCH v2 08/17] iommu/omap: Simplify omap2_iommu_fault_isr() Suman Anna
2014-10-22 22:22 ` [PATCH v2 09/17] iommu/omap: Consolidate OMAP IOMMU modules Suman Anna
2014-10-22 22:22 ` [PATCH v2 10/17] iommu/omap: Fix the permissions on nr_tlb_entries Suman Anna
2014-10-22 22:22 ` [PATCH v2 11/17] iommu/omap: Make pagetable debugfs entry read-only Suman Anna
2014-10-22 22:22 ` [PATCH v2 12/17] iommu/omap: Integrate omap-iommu-debug into omap-iommu Suman Anna
2014-10-22 23:16   ` Laurent Pinchart
2014-10-22 22:22 ` [PATCH v2 13/17] iommu/omap: Remove couple of unused exported functions Suman Anna
2014-10-22 22:22 ` [PATCH v2 14/17] iommu/omap: Do not export unneeded functions Suman Anna
2014-10-22 22:22 ` [PATCH v2 15/17] iommu/omap: Reset the domain field upon detaching Suman Anna
2014-10-22 22:22 ` [PATCH v2 16/17] iommu/omap: Fix bus error on debugfs access of unattached IOMMU Suman Anna
2014-10-23 12:34 ` [PATCH v2 00/17] OMAP IOMMU Cleanup & Consolidation Joerg Roedel

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