Thomas Gleixner | 3b20eb2 | 2019-05-29 16:57:35 -0700 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Tomasz Nowicki | 88ef16d | 2016-09-12 20:54:20 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016, Semihalf |
| 4 | * Author: Tomasz Nowicki <[email protected]> |
Tomasz Nowicki | 88ef16d | 2016-09-12 20:54:20 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __ACPI_IORT_H__ |
| 8 | #define __ACPI_IORT_H__ |
| 9 | |
| 10 | #include <linux/acpi.h> |
Tomasz Nowicki | 4bf2efd | 2016-09-12 20:32:21 +0200 | [diff] [blame] | 11 | #include <linux/fwnode.h> |
| 12 | #include <linux/irqdomain.h> |
Tomasz Nowicki | 88ef16d | 2016-09-12 20:54:20 +0200 | [diff] [blame] | 13 | |
Lorenzo Pieralisi | d6fcd3b | 2016-11-21 10:01:45 +0000 | [diff] [blame] | 14 | #define IORT_IRQ_MASK(irq) (irq & 0xffffffffULL) |
| 15 | #define IORT_IRQ_TRIGGER_MASK(irq) ((irq >> 32) & 0xffffffffULL) |
| 16 | |
Neil Leeder | 24e5160 | 2019-03-26 15:17:50 +0000 | [diff] [blame] | 17 | /* |
| 18 | * PMCG model identifiers for use in smmu pmu driver. Please note |
| 19 | * that this is purely for the use of software and has nothing to |
| 20 | * do with hardware or with IORT specification. |
| 21 | */ |
| 22 | #define IORT_SMMU_V3_PMCG_GENERIC 0x00000000 /* Generic SMMUv3 PMCG */ |
Shameer Kolothum | 24062fe | 2019-03-26 15:17:53 +0000 | [diff] [blame] | 23 | #define IORT_SMMU_V3_PMCG_HISI_HIP08 0x00000001 /* HiSilicon HIP08 PMCG */ |
Neil Leeder | 24e5160 | 2019-03-26 15:17:50 +0000 | [diff] [blame] | 24 | |
Shameer Kolothum | 8b4282e | 2018-02-13 15:20:50 +0000 | [diff] [blame] | 25 | int iort_register_domain_token(int trans_id, phys_addr_t base, |
| 26 | struct fwnode_handle *fw_node); |
Tomasz Nowicki | 4bf2efd | 2016-09-12 20:32:21 +0200 | [diff] [blame] | 27 | void iort_deregister_domain_token(int trans_id); |
| 28 | struct fwnode_handle *iort_find_domain_token(int trans_id); |
Tomasz Nowicki | 88ef16d | 2016-09-12 20:54:20 +0200 | [diff] [blame] | 29 | #ifdef CONFIG_ACPI_IORT |
| 30 | void acpi_iort_init(void); |
Tomasz Nowicki | 4bf2efd | 2016-09-12 20:32:21 +0200 | [diff] [blame] | 31 | u32 iort_msi_map_rid(struct device *dev, u32 req_id); |
| 32 | struct irq_domain *iort_get_device_domain(struct device *dev, u32 req_id); |
Hanjun Guo | d4f54a1 | 2017-03-07 20:40:06 +0800 | [diff] [blame] | 33 | void acpi_configure_pmsi_domain(struct device *dev); |
Hanjun Guo | ae7c183 | 2017-03-07 20:40:05 +0800 | [diff] [blame] | 34 | int iort_pmsi_get_dev_id(struct device *dev, u32 *dev_id); |
Lorenzo Pieralisi | 643b8e4 | 2016-11-21 10:01:48 +0000 | [diff] [blame] | 35 | /* IOMMU interface */ |
Lorenzo Pieralisi | 7ad4263 | 2017-08-07 11:29:49 +0100 | [diff] [blame] | 36 | void iort_dma_setup(struct device *dev, u64 *dma_addr, u64 *size); |
Lorenzo Pieralisi | 643b8e4 | 2016-11-21 10:01:48 +0000 | [diff] [blame] | 37 | const struct iommu_ops *iort_iommu_configure(struct device *dev); |
Shameer Kolothum | 8b4282e | 2018-02-13 15:20:50 +0000 | [diff] [blame] | 38 | int iort_iommu_msi_get_resv_regions(struct device *dev, struct list_head *head); |
Tomasz Nowicki | 88ef16d | 2016-09-12 20:54:20 +0200 | [diff] [blame] | 39 | #else |
| 40 | static inline void acpi_iort_init(void) { } |
Tomasz Nowicki | 4bf2efd | 2016-09-12 20:32:21 +0200 | [diff] [blame] | 41 | static inline u32 iort_msi_map_rid(struct device *dev, u32 req_id) |
| 42 | { return req_id; } |
| 43 | static inline struct irq_domain *iort_get_device_domain(struct device *dev, |
| 44 | u32 req_id) |
| 45 | { return NULL; } |
Hanjun Guo | d4f54a1 | 2017-03-07 20:40:06 +0800 | [diff] [blame] | 46 | static inline void acpi_configure_pmsi_domain(struct device *dev) { } |
Lorenzo Pieralisi | 643b8e4 | 2016-11-21 10:01:48 +0000 | [diff] [blame] | 47 | /* IOMMU interface */ |
Lorenzo Pieralisi | 7ad4263 | 2017-08-07 11:29:49 +0100 | [diff] [blame] | 48 | static inline void iort_dma_setup(struct device *dev, u64 *dma_addr, |
| 49 | u64 *size) { } |
Lorenzo Pieralisi | e3d4939 | 2017-09-28 14:03:33 +0100 | [diff] [blame] | 50 | static inline const struct iommu_ops *iort_iommu_configure( |
| 51 | struct device *dev) |
Lorenzo Pieralisi | 643b8e4 | 2016-11-21 10:01:48 +0000 | [diff] [blame] | 52 | { return NULL; } |
Shameer Kolothum | 8b4282e | 2018-02-13 15:20:50 +0000 | [diff] [blame] | 53 | static inline |
| 54 | int iort_iommu_msi_get_resv_regions(struct device *dev, struct list_head *head) |
| 55 | { return 0; } |
Tomasz Nowicki | 88ef16d | 2016-09-12 20:54:20 +0200 | [diff] [blame] | 56 | #endif |
| 57 | |
Tomasz Nowicki | 88ef16d | 2016-09-12 20:54:20 +0200 | [diff] [blame] | 58 | #endif /* __ACPI_IORT_H__ */ |