diff options
author | Robert Richter <rrichter@cavium.com> | 2017-06-22 21:20:54 +0200 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2017-06-23 17:58:03 +0100 |
commit | 12275bf0a4deb690a5dc9903d207060737b7bae6 (patch) | |
tree | c608d7f40f35a2b7c432a6060c0327aaf2a4d856 /drivers/iommu/arm-smmu-v3.c | |
parent | 77f3445866c39d8866b31d8d9fa47c7c20938e05 (diff) | |
download | blackbird-obmc-linux-12275bf0a4deb690a5dc9903d207060737b7bae6.tar.gz blackbird-obmc-linux-12275bf0a4deb690a5dc9903d207060737b7bae6.zip |
iommu/arm-smmu-v3, acpi: Add temporary Cavium SMMU-V3 IORT model number definitions
The model number is already defined in acpica and we are actually
waiting for the acpi maintainers to include it:
https://github.com/acpica/acpica/commit/d00a4eb86e64
Adding those temporary definitions until the change makes it into
include/acpi/actbl2.h. Once that is done this patch can be reverted.
Acked-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Signed-off-by: Robert Richter <rrichter@cavium.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'drivers/iommu/arm-smmu-v3.c')
-rw-r--r-- | drivers/iommu/arm-smmu-v3.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/iommu/arm-smmu-v3.c b/drivers/iommu/arm-smmu-v3.c index 884b1a49a52a..da481d53e09b 100644 --- a/drivers/iommu/arm-smmu-v3.c +++ b/drivers/iommu/arm-smmu-v3.c @@ -413,6 +413,11 @@ #define MSI_IOVA_BASE 0x8000000 #define MSI_IOVA_LENGTH 0x100000 +/* Until ACPICA headers cover IORT rev. C */ +#ifndef ACPI_IORT_SMMU_V3_CAVIUM_CN99XX +#define ACPI_IORT_SMMU_V3_CAVIUM_CN99XX 0x2 +#endif + static bool disable_bypass; module_param_named(disable_bypass, disable_bypass, bool, S_IRUGO); MODULE_PARM_DESC(disable_bypass, |