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>
This commit is contained in:
parent
77f3445866
commit
12275bf0a4
|
@ -31,6 +31,11 @@
|
||||||
#define IORT_IOMMU_TYPE ((1 << ACPI_IORT_NODE_SMMU) | \
|
#define IORT_IOMMU_TYPE ((1 << ACPI_IORT_NODE_SMMU) | \
|
||||||
(1 << ACPI_IORT_NODE_SMMU_V3))
|
(1 << ACPI_IORT_NODE_SMMU_V3))
|
||||||
|
|
||||||
|
/* Until ACPICA headers cover IORT rev. C */
|
||||||
|
#ifndef ACPI_IORT_SMMU_V3_CAVIUM_CN99XX
|
||||||
|
#define ACPI_IORT_SMMU_V3_CAVIUM_CN99XX 0x2
|
||||||
|
#endif
|
||||||
|
|
||||||
struct iort_its_msi_chip {
|
struct iort_its_msi_chip {
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
struct fwnode_handle *fw_node;
|
struct fwnode_handle *fw_node;
|
||||||
|
|
|
@ -413,6 +413,11 @@
|
||||||
#define MSI_IOVA_BASE 0x8000000
|
#define MSI_IOVA_BASE 0x8000000
|
||||||
#define MSI_IOVA_LENGTH 0x100000
|
#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;
|
static bool disable_bypass;
|
||||||
module_param_named(disable_bypass, disable_bypass, bool, S_IRUGO);
|
module_param_named(disable_bypass, disable_bypass, bool, S_IRUGO);
|
||||||
MODULE_PARM_DESC(disable_bypass,
|
MODULE_PARM_DESC(disable_bypass,
|
||||||
|
|
Loading…
Reference in New Issue