iommu/arm-smmu: Pass external fault information to client handlers

A client fault handler flag was recently introduced to indicate external
faults.  Use it.

Change-Id: Ib9ea59befc3c8324de4fc94a0dbe4acafaa6f9b8
Signed-off-by: Mitchel Humpherys <mitchelh@codeaurora.org>
Signed-off-by: Patrick Daly <pdaly@codeaurora.org>
diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
index aa6db35..2632913 100644
--- a/drivers/iommu/arm-smmu.c
+++ b/drivers/iommu/arm-smmu.c
@@ -813,6 +813,8 @@
 		flags |= IOMMU_FAULT_TRANSLATION;
 	if (fsr & FSR_PF)
 		flags |= IOMMU_FAULT_PERMISSION;
+	if (fsr & FSR_EF)
+		flags |= IOMMU_FAULT_EXTERNAL;
 	if (fsr & FSR_SS)
 		flags |= IOMMU_FAULT_TRANSACTION_STALLED;