All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/4] Nvidia Arm SMMUv2 Implementation
@ 2020-06-04 23:44 ` Krishna Reddy
  0 siblings, 0 replies; 52+ messages in thread
From: Krishna Reddy @ 2020-06-04 23:44 UTC (permalink / raw)
  Cc: snikam-DDmLM1+adcrQT0dZR+AlfA, mperttunen-DDmLM1+adcrQT0dZR+AlfA,
	bhuntsman-DDmLM1+adcrQT0dZR+AlfA, will-DgEjT+Ai2ygdnm+yROfE0A,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	praithatha-DDmLM1+adcrQT0dZR+AlfA, talho-DDmLM1+adcrQT0dZR+AlfA,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	nicolinc-DDmLM1+adcrQT0dZR+AlfA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, yhsu-DDmLM1+adcrQT0dZR+AlfA,
	treding-DDmLM1+adcrQT0dZR+AlfA, robin.murphy-5wv7dgnIgG8,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	bbiswas-DDmLM1+adcrQT0dZR+AlfA

Changes in v6:
Restricted the patch set to driver specific patches.
Fixed the cast warning reported by kbuild test robot.
Rebased on git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git next

v5 - https://lkml.org/lkml/2020/5/21/1114
v4 - https://lkml.org/lkml/2019/10/30/1054
v3 - https://lkml.org/lkml/2019/10/18/1601
v2 - https://lkml.org/lkml/2019/9/2/980
v1 - https://lkml.org/lkml/2019/8/29/1588

Krishna Reddy (4):
  iommu/arm-smmu: add NVIDIA implementation for dual ARM MMU-500 usage
  dt-bindings: arm-smmu: Add binding for Tegra194 SMMU
  iommu/arm-smmu: Add global/context fault implementation hooks
  iommu/arm-smmu-nvidia: fix the warning reported by kbuild test robot

 .../devicetree/bindings/iommu/arm,smmu.yaml   |   5 +
 MAINTAINERS                                   |   2 +
 drivers/iommu/Makefile                        |   2 +-
 drivers/iommu/arm-smmu-impl.c                 |   3 +
 drivers/iommu/arm-smmu-nvidia.c               | 261 ++++++++++++++++++
 drivers/iommu/arm-smmu.c                      |  11 +-
 drivers/iommu/arm-smmu.h                      |   4 +
 7 files changed, 285 insertions(+), 3 deletions(-)
 create mode 100644 drivers/iommu/arm-smmu-nvidia.c


base-commit: 431275afdc7155415254aef4bd3816a1b8a2ead0
-- 
2.26.2

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

end of thread, other threads:[~2020-06-26 12:07 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-04 23:44 [PATCH v6 0/4] Nvidia Arm SMMUv2 Implementation Krishna Reddy
2020-06-04 23:44 ` Krishna Reddy
2020-06-04 23:44 ` Krishna Reddy
2020-06-04 23:44 ` Krishna Reddy
     [not found] ` <20200604234414.21912-1-vdumpa-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-06-04 23:44   ` [PATCH v6 1/4] iommu/arm-smmu: add NVIDIA implementation for dual ARM MMU-500 usage Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
     [not found]     ` <20200604234414.21912-2-vdumpa-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-06-23 10:29       ` Thierry Reding
2020-06-23 10:29         ` Thierry Reding
2020-06-23 10:29         ` Thierry Reding
2020-06-23 11:16         ` Robin Murphy
2020-06-23 11:16           ` Robin Murphy
2020-06-23 11:16           ` Robin Murphy
     [not found]           ` <5f29c794-406a-db13-d6d0-75dcb0d0b0cc-5wv7dgnIgG8@public.gmane.org>
2020-06-23 12:47             ` Thierry Reding
2020-06-23 12:47               ` Thierry Reding
2020-06-23 12:47               ` Thierry Reding
2020-06-25 23:13         ` Krishna Reddy
2020-06-25 23:13           ` Krishna Reddy
2020-06-25 23:13           ` Krishna Reddy
2020-06-25 23:13           ` Krishna Reddy
2020-06-04 23:44   ` [PATCH v6 2/4] dt-bindings: arm-smmu: Add binding for Tegra194 SMMU Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
     [not found]     ` <20200604234414.21912-3-vdumpa-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-06-23  8:38       ` Thierry Reding
2020-06-23  8:38         ` Thierry Reding
2020-06-23  8:38         ` Thierry Reding
2020-06-25 22:32         ` Krishna Reddy
2020-06-25 22:32           ` Krishna Reddy
2020-06-25 22:32           ` Krishna Reddy
2020-06-25 22:32           ` Krishna Reddy
2020-06-04 23:44   ` [PATCH v6 3/4] iommu/arm-smmu: Add global/context fault implementation hooks Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
     [not found]     ` <20200604234414.21912-4-vdumpa-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-06-23  8:36       ` Thierry Reding
2020-06-23  8:36         ` Thierry Reding
2020-06-23  8:36         ` Thierry Reding
2020-06-23 11:30         ` Robin Murphy
2020-06-23 11:30           ` Robin Murphy
2020-06-23 11:30           ` Robin Murphy
     [not found]           ` <2dda4530-39cc-d549-1124-26337dd9afbe-5wv7dgnIgG8@public.gmane.org>
2020-06-23 12:33             ` Thierry Reding
2020-06-23 12:33               ` Thierry Reding
2020-06-23 12:33               ` Thierry Reding
2020-06-04 23:44   ` [PATCH v6 4/4] iommu/arm-smmu-nvidia: fix the warning reported by kbuild test robot Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
2020-06-04 23:44     ` Krishna Reddy
     [not found]     ` <20200604234414.21912-5-vdumpa-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-06-23  8:33       ` Thierry Reding
2020-06-23  8:33         ` Thierry Reding
2020-06-23  8:33         ` Thierry Reding

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.