1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2009-2010 Advanced Micro Devices, Inc.
4 * Author: Joerg Roedel <jroedel@suse.de>
5 */
6
7 #ifndef AMD_IOMMU_H
8 #define AMD_IOMMU_H
9
10 #include <linux/iommu.h>
11
12 #include "amd_iommu_types.h"
13
14 irqreturn_t amd_iommu_int_thread(int irq, void *data);
15 irqreturn_t amd_iommu_int_thread_evtlog(int irq, void *data);
16 irqreturn_t amd_iommu_int_thread_pprlog(int irq, void *data);
17 irqreturn_t amd_iommu_int_thread_galog(int irq, void *data);
18 irqreturn_t amd_iommu_int_handler(int irq, void *data);
19 void amd_iommu_restart_log(struct amd_iommu *iommu, const char *evt_type,
20 u8 cntrl_intr, u8 cntrl_log,
21 u32 status_run_mask, u32 status_overflow_mask);
22 void amd_iommu_restart_event_logging(struct amd_iommu *iommu);
23 void amd_iommu_restart_ga_log(struct amd_iommu *iommu);
24 void amd_iommu_restart_ppr_log(struct amd_iommu *iommu);
25 void amd_iommu_set_rlookup_table(struct amd_iommu *iommu, u16 devid);
26 void iommu_feature_enable(struct amd_iommu *iommu, u8 bit);
27 void *__init iommu_alloc_4k_pages(struct amd_iommu *iommu,
28 gfp_t gfp, size_t size);
29
30 #ifdef CONFIG_AMD_IOMMU_DEBUGFS
31 void amd_iommu_debugfs_setup(void);
32 #else
amd_iommu_debugfs_setup(void)33 static inline void amd_iommu_debugfs_setup(void) {}
34 #endif
35
36 /* Needed for interrupt remapping */
37 int amd_iommu_prepare(void);
38 int amd_iommu_enable(void);
39 void amd_iommu_disable(void);
40 int amd_iommu_reenable(int mode);
41 int amd_iommu_enable_faulting(unsigned int cpu);
42 extern int amd_iommu_guest_ir;
43 extern enum protection_domain_mode amd_iommu_pgtable;
44 extern int amd_iommu_gpt_level;
45 extern u8 amd_iommu_hpt_level;
46 extern unsigned long amd_iommu_pgsize_bitmap;
47 extern bool amd_iommu_hatdis;
48
49 /* Protection domain ops */
50 void amd_iommu_init_identity_domain(void);
51 struct protection_domain *protection_domain_alloc(void);
52 struct iommu_domain *amd_iommu_domain_alloc_sva(struct device *dev,
53 struct mm_struct *mm);
54 void amd_iommu_domain_free(struct iommu_domain *dom);
55 int iommu_sva_set_dev_pasid(struct iommu_domain *domain,
56 struct device *dev, ioasid_t pasid,
57 struct iommu_domain *old);
58 void amd_iommu_remove_dev_pasid(struct device *dev, ioasid_t pasid,
59 struct iommu_domain *domain);
60
61 /* SVA/PASID */
62 bool amd_iommu_pasid_supported(void);
63
64 /* IOPF */
65 int amd_iommu_iopf_init(struct amd_iommu *iommu);
66 void amd_iommu_iopf_uninit(struct amd_iommu *iommu);
67 void amd_iommu_page_response(struct device *dev, struct iopf_fault *evt,
68 struct iommu_page_response *resp);
69 int amd_iommu_iopf_add_device(struct amd_iommu *iommu,
70 struct iommu_dev_data *dev_data);
71 void amd_iommu_iopf_remove_device(struct amd_iommu *iommu,
72 struct iommu_dev_data *dev_data);
73
74 /* GCR3 setup */
75 int amd_iommu_set_gcr3(struct iommu_dev_data *dev_data,
76 ioasid_t pasid, unsigned long gcr3);
77 int amd_iommu_clear_gcr3(struct iommu_dev_data *dev_data, ioasid_t pasid);
78
79 /* PPR */
80 int __init amd_iommu_alloc_ppr_log(struct amd_iommu *iommu);
81 void __init amd_iommu_free_ppr_log(struct amd_iommu *iommu);
82 void amd_iommu_enable_ppr_log(struct amd_iommu *iommu);
83 void amd_iommu_poll_ppr_log(struct amd_iommu *iommu);
84 int amd_iommu_complete_ppr(struct device *dev, u32 pasid, int status, int tag);
85
86 /*
87 * This function flushes all internal caches of
88 * the IOMMU used by this driver.
89 */
90 void amd_iommu_flush_all_caches(struct amd_iommu *iommu);
91 void amd_iommu_domain_flush_pages(struct protection_domain *domain,
92 u64 address, size_t size);
93 void amd_iommu_dev_flush_pasid_pages(struct iommu_dev_data *dev_data,
94 ioasid_t pasid, u64 address, size_t size);
95
96 #ifdef CONFIG_IRQ_REMAP
97 int amd_iommu_create_irq_domain(struct amd_iommu *iommu);
98 #else
amd_iommu_create_irq_domain(struct amd_iommu * iommu)99 static inline int amd_iommu_create_irq_domain(struct amd_iommu *iommu)
100 {
101 return 0;
102 }
103 #endif
104
is_rd890_iommu(struct pci_dev * pdev)105 static inline bool is_rd890_iommu(struct pci_dev *pdev)
106 {
107 return (pdev->vendor == PCI_VENDOR_ID_ATI) &&
108 (pdev->device == PCI_DEVICE_ID_RD890_IOMMU);
109 }
110
check_feature(u64 mask)111 static inline bool check_feature(u64 mask)
112 {
113 return (amd_iommu_efr & mask);
114 }
115
check_feature2(u64 mask)116 static inline bool check_feature2(u64 mask)
117 {
118 return (amd_iommu_efr2 & mask);
119 }
120
amd_iommu_v2_pgtbl_supported(void)121 static inline bool amd_iommu_v2_pgtbl_supported(void)
122 {
123 return (check_feature(FEATURE_GIOSUP) && check_feature(FEATURE_GT));
124 }
125
amd_iommu_gt_ppr_supported(void)126 static inline bool amd_iommu_gt_ppr_supported(void)
127 {
128 return (amd_iommu_v2_pgtbl_supported() &&
129 check_feature(FEATURE_PPR) &&
130 check_feature(FEATURE_EPHSUP));
131 }
132
iommu_virt_to_phys(void * vaddr)133 static inline u64 iommu_virt_to_phys(void *vaddr)
134 {
135 return (u64)__sme_set(virt_to_phys(vaddr));
136 }
137
iommu_phys_to_virt(unsigned long paddr)138 static inline void *iommu_phys_to_virt(unsigned long paddr)
139 {
140 return phys_to_virt(__sme_clr(paddr));
141 }
142
get_pci_sbdf_id(struct pci_dev * pdev)143 static inline int get_pci_sbdf_id(struct pci_dev *pdev)
144 {
145 int seg = pci_domain_nr(pdev->bus);
146 u16 devid = pci_dev_id(pdev);
147
148 return PCI_SEG_DEVID_TO_SBDF(seg, devid);
149 }
150
151 bool amd_iommu_ht_range_ignore(void);
152
153 /*
154 * This must be called after device probe completes. During probe
155 * use rlookup_amd_iommu() get the iommu.
156 */
get_amd_iommu_from_dev(struct device * dev)157 static inline struct amd_iommu *get_amd_iommu_from_dev(struct device *dev)
158 {
159 return iommu_get_iommu_dev(dev, struct amd_iommu, iommu);
160 }
161
162 /* This must be called after device probe completes. */
get_amd_iommu_from_dev_data(struct iommu_dev_data * dev_data)163 static inline struct amd_iommu *get_amd_iommu_from_dev_data(struct iommu_dev_data *dev_data)
164 {
165 return iommu_get_iommu_dev(dev_data->dev, struct amd_iommu, iommu);
166 }
167
to_pdomain(struct iommu_domain * dom)168 static inline struct protection_domain *to_pdomain(struct iommu_domain *dom)
169 {
170 return container_of(dom, struct protection_domain, domain);
171 }
172
173 bool translation_pre_enabled(struct amd_iommu *iommu);
174 int __init add_special_device(u8 type, u8 id, u32 *devid, bool cmd_line);
175
176 #ifdef CONFIG_DMI
177 void amd_iommu_apply_ivrs_quirks(void);
178 #else
amd_iommu_apply_ivrs_quirks(void)179 static inline void amd_iommu_apply_ivrs_quirks(void) { }
180 #endif
181 struct dev_table_entry *amd_iommu_get_ivhd_dte_flags(u16 segid, u16 devid);
182
183 void amd_iommu_domain_set_pgtable(struct protection_domain *domain,
184 u64 *root, int mode);
185 struct dev_table_entry *get_dev_table(struct amd_iommu *iommu);
186 struct iommu_dev_data *search_dev_data(struct amd_iommu *iommu, u16 devid);
187
188 #endif /* AMD_IOMMU_H */
189