All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] iommu/rockchip: Use OF_IOMMU
@ 2018-01-11  8:22 ` Jeffy Chen
  0 siblings, 0 replies; 40+ messages in thread
From: Jeffy Chen @ 2018-01-11  8:22 UTC (permalink / raw)
  To: linux-kernel
  Cc: jcliang, robin.murphy, tfiga, Jeffy Chen, Marek Szyprowski,
	linux-samsung-soc, Kukjin Kim, Heiko Stuebner, devicetree,
	linux-arm-msm, iommu, Frank Rowand, Krzysztof Kozlowski,
	Rob Clark, Will Deacon, linux-rockchip, Joerg Roedel, Rob Herring,
	linux-arm-kernel


This series fixes some issues in rockchip iommu driver, and add of_iommu
support in it.

Also drop of_iommu early initialisation hooks as Robin suggested.


Jeffy Chen (5):
  iommu/of: Drop early initialisation hooks
  iommu/rockchip: Fix error handling in probe
  iommu/rockchip: Fix error handling in init
  iommu/rockchip: Use IOMMU device for dma mapping operations
  iommu/rockchip: Use OF_IOMMU to attach devices automatically

Tomasz Figa (4):
  iommu/rockchip: Fix error handling in attach
  iommu/rockchip: Use iopoll helpers to wait for hardware
  iommu/rockchip: Fix TLB flush of secondary IOMMUs
  iommu/rockchip: Use iommu_group_get_for_dev() for add_device

 drivers/iommu/arm-smmu-v3.c    |   2 +-
 drivers/iommu/arm-smmu.c       |  12 +-
 drivers/iommu/exynos-iommu.c   |   2 +-
 drivers/iommu/ipmmu-vmsa.c     |  17 +--
 drivers/iommu/msm_iommu.c      |  24 +--
 drivers/iommu/of_iommu.c       |  16 --
 drivers/iommu/qcom_iommu.c     |   2 +-
 drivers/iommu/rockchip-iommu.c | 331 ++++++++++++++++++++---------------------
 include/linux/of_iommu.h       |   6 +-
 9 files changed, 184 insertions(+), 228 deletions(-)

-- 
2.11.0

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

end of thread, other threads:[~2018-01-12  1:22 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-11  8:22 [PATCH 0/9] iommu/rockchip: Use OF_IOMMU Jeffy Chen
2018-01-11  8:22 ` Jeffy Chen
2018-01-11  8:22 ` [PATCH 1/9] iommu/of: Drop early initialisation hooks Jeffy Chen
2018-01-11  8:22   ` Jeffy Chen
     [not found]   ` <20180111082229.24011-2-jeffy.chen-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
2018-01-11  9:40     ` Marek Szyprowski
2018-01-11  9:40       ` Marek Szyprowski
2018-01-11  9:40       ` Marek Szyprowski
     [not found]       ` <60fdd375-ca74-0fea-c598-39a68b9e7735-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2018-01-11 11:14         ` JeffyChen
2018-01-11 11:14           ` JeffyChen
2018-01-11 11:14           ` JeffyChen
     [not found]           ` <5A57471E.7020304-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
2018-01-11 12:24             ` Robin Murphy
2018-01-11 12:24               ` Robin Murphy
2018-01-11 12:24               ` Robin Murphy
     [not found]               ` <faeccc75-79e9-ddb6-446d-88ab63fe4e1f-5wv7dgnIgG8@public.gmane.org>
2018-01-12  1:22                 ` JeffyChen
2018-01-12  1:22                   ` JeffyChen
2018-01-12  1:22                   ` JeffyChen
2018-01-11 12:26           ` Marek Szyprowski
2018-01-11 12:26             ` Marek Szyprowski
2018-01-11  8:22 ` [PATCH 2/9] iommu/rockchip: Fix error handling in attach Jeffy Chen
2018-01-11  8:22   ` Jeffy Chen
     [not found]   ` <20180111082229.24011-3-jeffy.chen-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
2018-01-11 15:47     ` Robin Murphy
2018-01-11 15:47       ` Robin Murphy
2018-01-11 15:47       ` Robin Murphy
2018-01-12  0:33       ` JeffyChen
2018-01-12  0:33         ` JeffyChen
2018-01-11  8:22 ` [PATCH 3/9] iommu/rockchip: Fix error handling in probe Jeffy Chen
2018-01-11  8:22   ` Jeffy Chen
2018-01-11  8:22 ` [PATCH 4/9] iommu/rockchip: Fix error handling in init Jeffy Chen
2018-01-11  8:22   ` Jeffy Chen
2018-01-11  8:22 ` [PATCH 5/9] iommu/rockchip: Use iopoll helpers to wait for hardware Jeffy Chen
2018-01-11  8:22   ` Jeffy Chen
2018-01-11  8:22 ` [PATCH 6/9] iommu/rockchip: Fix TLB flush of secondary IOMMUs Jeffy Chen
2018-01-11  8:22   ` Jeffy Chen
     [not found] ` <20180111082229.24011-1-jeffy.chen-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
2018-01-11  8:22   ` [PATCH 7/9] iommu/rockchip: Use iommu_group_get_for_dev() for add_device Jeffy Chen
2018-01-11  8:22     ` Jeffy Chen
2018-01-11  8:22     ` Jeffy Chen
2018-01-11  8:22 ` [PATCH 8/9] iommu/rockchip: Use IOMMU device for dma mapping operations Jeffy Chen
2018-01-11  8:22   ` Jeffy Chen
2018-01-11  8:22 ` [PATCH 9/9] iommu/rockchip: Use OF_IOMMU to attach devices automatically Jeffy Chen
2018-01-11  8:22   ` Jeffy Chen

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.