1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
4 * Author: Joerg Roedel <joerg.roedel@amd.com>
5 */
6
7 #ifndef __LINUX_IOMMU_H
8 #define __LINUX_IOMMU_H
9
10 #include <linux/scatterlist.h>
11 #include <linux/device.h>
12 #include <linux/types.h>
13 #include <linux/errno.h>
14 #include <linux/err.h>
15 #include <linux/of.h>
16 #include <linux/iova_bitmap.h>
17 #include <uapi/linux/iommufd.h>
18
19 #define IOMMU_READ (1 << 0)
20 #define IOMMU_WRITE (1 << 1)
21 #define IOMMU_CACHE (1 << 2) /* DMA cache coherency */
22 #define IOMMU_NOEXEC (1 << 3)
23 #define IOMMU_MMIO (1 << 4) /* e.g. things like MSI doorbells */
24 /*
25 * Where the bus hardware includes a privilege level as part of its access type
26 * markings, and certain devices are capable of issuing transactions marked as
27 * either 'supervisor' or 'user', the IOMMU_PRIV flag requests that the other
28 * given permission flags only apply to accesses at the higher privilege level,
29 * and that unprivileged transactions should have as little access as possible.
30 * This would usually imply the same permissions as kernel mappings on the CPU,
31 * if the IOMMU page table format is equivalent.
32 */
33 #define IOMMU_PRIV (1 << 5)
34
35 struct iommu_ops;
36 struct iommu_group;
37 struct bus_type;
38 struct device;
39 struct iommu_domain;
40 struct iommu_domain_ops;
41 struct iommu_dirty_ops;
42 struct notifier_block;
43 struct iommu_sva;
44 struct iommu_dma_cookie;
45 struct iommu_dma_msi_cookie;
46 struct iommu_fault_param;
47 struct iommufd_ctx;
48 struct iommufd_viommu;
49 struct msi_desc;
50 struct msi_msg;
51
52 #define IOMMU_FAULT_PERM_READ (1 << 0) /* read */
53 #define IOMMU_FAULT_PERM_WRITE (1 << 1) /* write */
54 #define IOMMU_FAULT_PERM_EXEC (1 << 2) /* exec */
55 #define IOMMU_FAULT_PERM_PRIV (1 << 3) /* privileged */
56
57 /* Generic fault types, can be expanded IRQ remapping fault */
58 enum iommu_fault_type {
59 IOMMU_FAULT_PAGE_REQ = 1, /* page request fault */
60 };
61
62 /**
63 * struct iommu_fault_page_request - Page Request data
64 * @flags: encodes whether the corresponding fields are valid and whether this
65 * is the last page in group (IOMMU_FAULT_PAGE_REQUEST_* values).
66 * When IOMMU_FAULT_PAGE_RESPONSE_NEEDS_PASID is set, the page response
67 * must have the same PASID value as the page request. When it is clear,
68 * the page response should not have a PASID.
69 * @pasid: Process Address Space ID
70 * @grpid: Page Request Group Index
71 * @perm: requested page permissions (IOMMU_FAULT_PERM_* values)
72 * @addr: page address
73 * @private_data: device-specific private information
74 */
75 struct iommu_fault_page_request {
76 #define IOMMU_FAULT_PAGE_REQUEST_PASID_VALID (1 << 0)
77 #define IOMMU_FAULT_PAGE_REQUEST_LAST_PAGE (1 << 1)
78 #define IOMMU_FAULT_PAGE_RESPONSE_NEEDS_PASID (1 << 2)
79 u32 flags;
80 u32 pasid;
81 u32 grpid;
82 u32 perm;
83 u64 addr;
84 u64 private_data[2];
85 };
86
87 /**
88 * struct iommu_fault - Generic fault data
89 * @type: fault type from &enum iommu_fault_type
90 * @prm: Page Request message, when @type is %IOMMU_FAULT_PAGE_REQ
91 */
92 struct iommu_fault {
93 u32 type;
94 struct iommu_fault_page_request prm;
95 };
96
97 /**
98 * enum iommu_page_response_code - Return status of fault handlers
99 * @IOMMU_PAGE_RESP_SUCCESS: Fault has been handled and the page tables
100 * populated, retry the access. This is "Success" in PCI PRI.
101 * @IOMMU_PAGE_RESP_FAILURE: General error. Drop all subsequent faults from
102 * this device if possible. This is "Response Failure" in PCI PRI.
103 * @IOMMU_PAGE_RESP_INVALID: Could not handle this fault, don't retry the
104 * access. This is "Invalid Request" in PCI PRI.
105 */
106 enum iommu_page_response_code {
107 IOMMU_PAGE_RESP_SUCCESS = 0,
108 IOMMU_PAGE_RESP_INVALID,
109 IOMMU_PAGE_RESP_FAILURE,
110 };
111
112 /**
113 * struct iommu_page_response - Generic page response information
114 * @pasid: Process Address Space ID
115 * @grpid: Page Request Group Index
116 * @code: response code from &enum iommu_page_response_code
117 */
118 struct iommu_page_response {
119 u32 pasid;
120 u32 grpid;
121 u32 code;
122 };
123
124 struct iopf_fault {
125 struct iommu_fault fault;
126 /* node for pending lists */
127 struct list_head list;
128 };
129
130 struct iopf_group {
131 struct iopf_fault last_fault;
132 struct list_head faults;
133 size_t fault_count;
134 /* list node for iommu_fault_param::faults */
135 struct list_head pending_node;
136 struct work_struct work;
137 struct iommu_attach_handle *attach_handle;
138 /* The device's fault data parameter. */
139 struct iommu_fault_param *fault_param;
140 /* Used by handler provider to hook the group on its own lists. */
141 struct list_head node;
142 u32 cookie;
143 };
144
145 /**
146 * struct iopf_queue - IO Page Fault queue
147 * @wq: the fault workqueue
148 * @devices: devices attached to this queue
149 * @lock: protects the device list
150 */
151 struct iopf_queue {
152 struct workqueue_struct *wq;
153 struct list_head devices;
154 struct mutex lock;
155 };
156
157 /* iommu fault flags */
158 #define IOMMU_FAULT_READ 0x0
159 #define IOMMU_FAULT_WRITE 0x1
160
161 typedef int (*iommu_fault_handler_t)(struct iommu_domain *,
162 struct device *, unsigned long, int, void *);
163
164 struct iommu_domain_geometry {
165 dma_addr_t aperture_start; /* First address that can be mapped */
166 dma_addr_t aperture_end; /* Last address that can be mapped */
167 bool force_aperture; /* DMA only allowed in mappable range? */
168 };
169
170 enum iommu_domain_cookie_type {
171 IOMMU_COOKIE_NONE,
172 IOMMU_COOKIE_DMA_IOVA,
173 IOMMU_COOKIE_DMA_MSI,
174 IOMMU_COOKIE_FAULT_HANDLER,
175 IOMMU_COOKIE_SVA,
176 IOMMU_COOKIE_IOMMUFD,
177 };
178
179 /* Domain feature flags */
180 #define __IOMMU_DOMAIN_PAGING (1U << 0) /* Support for iommu_map/unmap */
181 #define __IOMMU_DOMAIN_DMA_API (1U << 1) /* Domain for use in DMA-API
182 implementation */
183 #define __IOMMU_DOMAIN_PT (1U << 2) /* Domain is identity mapped */
184 #define __IOMMU_DOMAIN_DMA_FQ (1U << 3) /* DMA-API uses flush queue */
185
186 #define __IOMMU_DOMAIN_SVA (1U << 4) /* Shared process address space */
187 #define __IOMMU_DOMAIN_PLATFORM (1U << 5)
188
189 #define __IOMMU_DOMAIN_NESTED (1U << 6) /* User-managed address space nested
190 on a stage-2 translation */
191
192 #define IOMMU_DOMAIN_ALLOC_FLAGS ~__IOMMU_DOMAIN_DMA_FQ
193 /*
194 * This are the possible domain-types
195 *
196 * IOMMU_DOMAIN_BLOCKED - All DMA is blocked, can be used to isolate
197 * devices
198 * IOMMU_DOMAIN_IDENTITY - DMA addresses are system physical addresses
199 * IOMMU_DOMAIN_UNMANAGED - DMA mappings managed by IOMMU-API user, used
200 * for VMs
201 * IOMMU_DOMAIN_DMA - Internally used for DMA-API implementations.
202 * This flag allows IOMMU drivers to implement
203 * certain optimizations for these domains
204 * IOMMU_DOMAIN_DMA_FQ - As above, but definitely using batched TLB
205 * invalidation.
206 * IOMMU_DOMAIN_SVA - DMA addresses are shared process addresses
207 * represented by mm_struct's.
208 * IOMMU_DOMAIN_PLATFORM - Legacy domain for drivers that do their own
209 * dma_api stuff. Do not use in new drivers.
210 */
211 #define IOMMU_DOMAIN_BLOCKED (0U)
212 #define IOMMU_DOMAIN_IDENTITY (__IOMMU_DOMAIN_PT)
213 #define IOMMU_DOMAIN_UNMANAGED (__IOMMU_DOMAIN_PAGING)
214 #define IOMMU_DOMAIN_DMA (__IOMMU_DOMAIN_PAGING | \
215 __IOMMU_DOMAIN_DMA_API)
216 #define IOMMU_DOMAIN_DMA_FQ (__IOMMU_DOMAIN_PAGING | \
217 __IOMMU_DOMAIN_DMA_API | \
218 __IOMMU_DOMAIN_DMA_FQ)
219 #define IOMMU_DOMAIN_SVA (__IOMMU_DOMAIN_SVA)
220 #define IOMMU_DOMAIN_PLATFORM (__IOMMU_DOMAIN_PLATFORM)
221 #define IOMMU_DOMAIN_NESTED (__IOMMU_DOMAIN_NESTED)
222
223 struct iommu_domain {
224 unsigned type;
225 enum iommu_domain_cookie_type cookie_type;
226 bool is_iommupt;
227 const struct iommu_domain_ops *ops;
228 const struct iommu_dirty_ops *dirty_ops;
229 const struct iommu_ops *owner; /* Whose domain_alloc we came from */
230 unsigned long pgsize_bitmap; /* Bitmap of page sizes in use */
231 struct iommu_domain_geometry geometry;
232 int (*iopf_handler)(struct iopf_group *group);
233
234 union { /* cookie */
235 struct iommu_dma_cookie *iova_cookie;
236 struct iommu_dma_msi_cookie *msi_cookie;
237 struct iommufd_hw_pagetable *iommufd_hwpt;
238 struct {
239 iommu_fault_handler_t handler;
240 void *handler_token;
241 };
242 struct { /* IOMMU_DOMAIN_SVA */
243 struct mm_struct *mm;
244 int users;
245 /*
246 * Next iommu_domain in mm->iommu_mm->sva-domains list
247 * protected by iommu_sva_lock.
248 */
249 struct list_head next;
250 };
251 };
252 };
253
iommu_is_dma_domain(struct iommu_domain * domain)254 static inline bool iommu_is_dma_domain(struct iommu_domain *domain)
255 {
256 return domain->type & __IOMMU_DOMAIN_DMA_API;
257 }
258
259 enum iommu_cap {
260 IOMMU_CAP_CACHE_COHERENCY, /* IOMMU_CACHE is supported */
261 IOMMU_CAP_NOEXEC, /* IOMMU_NOEXEC flag */
262 IOMMU_CAP_PRE_BOOT_PROTECTION, /* Firmware says it used the IOMMU for
263 DMA protection and we should too */
264 /*
265 * Per-device flag indicating if enforce_cache_coherency() will work on
266 * this device.
267 */
268 IOMMU_CAP_ENFORCE_CACHE_COHERENCY,
269 /*
270 * IOMMU driver does not issue TLB maintenance during .unmap, so can
271 * usefully support the non-strict DMA flush queue.
272 */
273 IOMMU_CAP_DEFERRED_FLUSH,
274 IOMMU_CAP_DIRTY_TRACKING, /* IOMMU supports dirty tracking */
275 /* ATS is supported and may be enabled for this device */
276 IOMMU_CAP_PCI_ATS_SUPPORTED,
277 };
278
279 /* These are the possible reserved region types */
280 enum iommu_resv_type {
281 /* Memory regions which must be mapped 1:1 at all times */
282 IOMMU_RESV_DIRECT,
283 /*
284 * Memory regions which are advertised to be 1:1 but are
285 * commonly considered relaxable in some conditions,
286 * for instance in device assignment use case (USB, Graphics)
287 */
288 IOMMU_RESV_DIRECT_RELAXABLE,
289 /* Arbitrary "never map this or give it to a device" address ranges */
290 IOMMU_RESV_RESERVED,
291 /* Hardware MSI region (untranslated) */
292 IOMMU_RESV_MSI,
293 /* Software-managed MSI translation window */
294 IOMMU_RESV_SW_MSI,
295 };
296
297 /**
298 * struct iommu_resv_region - descriptor for a reserved memory region
299 * @list: Linked list pointers
300 * @start: System physical start address of the region
301 * @length: Length of the region in bytes
302 * @prot: IOMMU Protection flags (READ/WRITE/...)
303 * @type: Type of the reserved region
304 * @free: Callback to free associated memory allocations
305 */
306 struct iommu_resv_region {
307 struct list_head list;
308 phys_addr_t start;
309 size_t length;
310 int prot;
311 enum iommu_resv_type type;
312 void (*free)(struct device *dev, struct iommu_resv_region *region);
313 };
314
315 struct iommu_iort_rmr_data {
316 struct iommu_resv_region rr;
317
318 /* Stream IDs associated with IORT RMR entry */
319 const u32 *sids;
320 u32 num_sids;
321 };
322
323 #define IOMMU_NO_PASID (0U) /* Reserved for DMA w/o PASID */
324 #define IOMMU_FIRST_GLOBAL_PASID (1U) /*starting range for allocation */
325 #define IOMMU_PASID_INVALID (-1U)
326 typedef unsigned int ioasid_t;
327
328 /* Read but do not clear any dirty bits */
329 #define IOMMU_DIRTY_NO_CLEAR (1 << 0)
330
331 /*
332 * Pages allocated through iommu_alloc_pages_node_sz() can be placed on this
333 * list using iommu_pages_list_add(). Note: ONLY pages from
334 * iommu_alloc_pages_node_sz() can be used this way!
335 */
336 struct iommu_pages_list {
337 struct list_head pages;
338 };
339
340 #define IOMMU_PAGES_LIST_INIT(name) \
341 ((struct iommu_pages_list){ .pages = LIST_HEAD_INIT(name.pages) })
342
343 #ifdef CONFIG_IOMMU_API
344
345 /**
346 * struct iommu_iotlb_gather - Range information for a pending IOTLB flush
347 *
348 * This structure is intended to be updated by multiple calls to the
349 * ->unmap() function in struct iommu_ops before eventually being passed
350 * into ->iotlb_sync(). Drivers can add pages to @freelist to be freed after
351 * ->iotlb_sync() or ->iotlb_flush_all() have cleared all cached references to
352 * them. @queued is set to indicate when ->iotlb_flush_all() will be called
353 * later instead of ->iotlb_sync(), so drivers may optimise accordingly.
354 */
355 struct iommu_iotlb_gather {
356 /** @start: IOVA representing the start of the range to be flushed */
357 unsigned long start;
358 /**
359 * @end: IOVA representing the end of the range to be
360 * flushed (inclusive)
361 */
362 unsigned long end;
363
364 union {
365 /**
366 * @pgsize: The interval at which to perform the flush, only
367 * used by arm-smmu-v3
368 */
369 size_t pgsize;
370 struct {
371 /**
372 * @pt.leaf_levels_bitmap: Bitmap of generic_pt
373 * levels where leaf entries were unmapped. Bit 0
374 * means the leaf only level. If 0 no leafs
375 * were unmapped.
376 */
377 u8 leaf_levels_bitmap;
378 /**
379 * @pt.table_levels_bitmap: Bitmap of generic_pt levels
380 * of table entries that were removed. Bit 0 is never
381 * set, bit 1 means a table of all leafs was removed.
382 * When freelist is empty this must be 0.
383 */
384 u8 table_levels_bitmap;
385 } pt;
386 };
387
388 /**
389 * @freelist: Removed pages to free after sync, only used by
390 * iommupt
391 */
392 struct iommu_pages_list freelist;
393 /** @queued: True if the gather will be completed with a flush all */
394 bool queued;
395 };
396
397 /**
398 * struct iommu_dirty_bitmap - Dirty IOVA bitmap state
399 * @bitmap: IOVA bitmap
400 * @gather: Range information for a pending IOTLB flush
401 */
402 struct iommu_dirty_bitmap {
403 struct iova_bitmap *bitmap;
404 struct iommu_iotlb_gather *gather;
405 };
406
407 /**
408 * struct iommu_dirty_ops - domain specific dirty tracking operations
409 * @set_dirty_tracking: Enable or Disable dirty tracking on the iommu domain
410 * @read_and_clear_dirty: Walk IOMMU page tables for dirtied PTEs marshalled
411 * into a bitmap, with a bit represented as a page.
412 * Reads the dirty PTE bits and clears it from IO
413 * pagetables.
414 */
415 struct iommu_dirty_ops {
416 int (*set_dirty_tracking)(struct iommu_domain *domain, bool enabled);
417 int (*read_and_clear_dirty)(struct iommu_domain *domain,
418 unsigned long iova, size_t size,
419 unsigned long flags,
420 struct iommu_dirty_bitmap *dirty);
421 };
422
423 /**
424 * struct iommu_user_data - iommu driver specific user space data info
425 * @type: The data type of the user buffer
426 * @uptr: Pointer to the user buffer for copy_from_user()
427 * @len: The length of the user buffer in bytes
428 *
429 * A user space data is an uAPI that is defined in include/uapi/linux/iommufd.h
430 * @type, @uptr and @len should be just copied from an iommufd core uAPI struct.
431 */
432 struct iommu_user_data {
433 unsigned int type;
434 void __user *uptr;
435 size_t len;
436 };
437
438 /**
439 * struct iommu_user_data_array - iommu driver specific user space data array
440 * @type: The data type of all the entries in the user buffer array
441 * @uptr: Pointer to the user buffer array
442 * @entry_len: The fixed-width length of an entry in the array, in bytes
443 * @entry_num: The number of total entries in the array
444 *
445 * The user buffer includes an array of requests with format defined in
446 * include/uapi/linux/iommufd.h
447 */
448 struct iommu_user_data_array {
449 unsigned int type;
450 void __user *uptr;
451 size_t entry_len;
452 u32 entry_num;
453 };
454
455 /**
456 * __iommu_copy_struct_from_user - Copy iommu driver specific user space data
457 * @dst_data: Pointer to an iommu driver specific user data that is defined in
458 * include/uapi/linux/iommufd.h
459 * @src_data: Pointer to a struct iommu_user_data for user space data info
460 * @data_type: The data type of the @dst_data. Must match with @src_data.type
461 * @data_len: Length of current user data structure, i.e. sizeof(struct _dst)
462 * @min_len: Initial length of user data structure for backward compatibility.
463 * This should be offsetofend using the last member in the user data
464 * struct that was initially added to include/uapi/linux/iommufd.h
465 */
__iommu_copy_struct_from_user(void * dst_data,const struct iommu_user_data * src_data,unsigned int data_type,size_t data_len,size_t min_len)466 static inline int __iommu_copy_struct_from_user(
467 void *dst_data, const struct iommu_user_data *src_data,
468 unsigned int data_type, size_t data_len, size_t min_len)
469 {
470 if (WARN_ON(!dst_data || !src_data))
471 return -EINVAL;
472 if (src_data->type != data_type)
473 return -EINVAL;
474 if (src_data->len < min_len || data_len < src_data->len)
475 return -EINVAL;
476 return copy_struct_from_user(dst_data, data_len, src_data->uptr,
477 src_data->len);
478 }
479
480 /**
481 * iommu_copy_struct_from_user - Copy iommu driver specific user space data
482 * @kdst: Pointer to an iommu driver specific user data that is defined in
483 * include/uapi/linux/iommufd.h
484 * @user_data: Pointer to a struct iommu_user_data for user space data info
485 * @data_type: The data type of the @kdst. Must match with @user_data->type
486 * @min_last: The last member of the data structure @kdst points in the initial
487 * version.
488 * Return 0 for success, otherwise -error.
489 */
490 #define iommu_copy_struct_from_user(kdst, user_data, data_type, min_last) \
491 __iommu_copy_struct_from_user(kdst, user_data, data_type, \
492 sizeof(*kdst), \
493 offsetofend(typeof(*kdst), min_last))
494
495 /**
496 * __iommu_copy_struct_from_user_array - Copy iommu driver specific user space
497 * data from an iommu_user_data_array
498 * @dst_data: Pointer to an iommu driver specific user data that is defined in
499 * include/uapi/linux/iommufd.h
500 * @src_array: Pointer to a struct iommu_user_data_array for a user space array
501 * @data_type: The data type of the @dst_data. Must match with @src_array.type
502 * @index: Index to the location in the array to copy user data from
503 * @data_len: Length of current user data structure, i.e. sizeof(struct _dst)
504 * @min_len: Initial length of user data structure for backward compatibility.
505 * This should be offsetofend using the last member in the user data
506 * struct that was initially added to include/uapi/linux/iommufd.h
507 */
__iommu_copy_struct_from_user_array(void * dst_data,const struct iommu_user_data_array * src_array,unsigned int data_type,unsigned int index,size_t data_len,size_t min_len)508 static inline int __iommu_copy_struct_from_user_array(
509 void *dst_data, const struct iommu_user_data_array *src_array,
510 unsigned int data_type, unsigned int index, size_t data_len,
511 size_t min_len)
512 {
513 struct iommu_user_data src_data;
514
515 if (WARN_ON(!src_array || index >= src_array->entry_num))
516 return -EINVAL;
517 if (!src_array->entry_num)
518 return -EINVAL;
519 src_data.uptr = src_array->uptr + src_array->entry_len * index;
520 src_data.len = src_array->entry_len;
521 src_data.type = src_array->type;
522
523 return __iommu_copy_struct_from_user(dst_data, &src_data, data_type,
524 data_len, min_len);
525 }
526
527 /**
528 * iommu_copy_struct_from_user_array - Copy iommu driver specific user space
529 * data from an iommu_user_data_array
530 * @kdst: Pointer to an iommu driver specific user data that is defined in
531 * include/uapi/linux/iommufd.h
532 * @user_array: Pointer to a struct iommu_user_data_array for a user space
533 * array
534 * @data_type: The data type of the @kdst. Must match with @user_array->type
535 * @index: Index to the location in the array to copy user data from
536 * @min_last: The last member of the data structure @kdst points in the
537 * initial version.
538 *
539 * Copy a single entry from a user array. Return 0 for success, otherwise
540 * -error.
541 */
542 #define iommu_copy_struct_from_user_array(kdst, user_array, data_type, index, \
543 min_last) \
544 __iommu_copy_struct_from_user_array( \
545 kdst, user_array, data_type, index, sizeof(*(kdst)), \
546 offsetofend(typeof(*(kdst)), min_last))
547
548 /**
549 * iommu_copy_struct_from_full_user_array - Copy iommu driver specific user
550 * space data from an iommu_user_data_array
551 * @kdst: Pointer to an iommu driver specific user data that is defined in
552 * include/uapi/linux/iommufd.h
553 * @kdst_entry_size: sizeof(*kdst)
554 * @user_array: Pointer to a struct iommu_user_data_array for a user space
555 * array
556 * @data_type: The data type of the @kdst. Must match with @user_array->type
557 *
558 * Copy the entire user array. kdst must have room for kdst_entry_size *
559 * user_array->entry_num bytes. Return 0 for success, otherwise -error.
560 */
561 static inline int
iommu_copy_struct_from_full_user_array(void * kdst,size_t kdst_entry_size,struct iommu_user_data_array * user_array,unsigned int data_type)562 iommu_copy_struct_from_full_user_array(void *kdst, size_t kdst_entry_size,
563 struct iommu_user_data_array *user_array,
564 unsigned int data_type)
565 {
566 unsigned int i;
567 int ret;
568
569 if (user_array->type != data_type)
570 return -EINVAL;
571 if (!user_array->entry_num)
572 return -EINVAL;
573 if (likely(user_array->entry_len == kdst_entry_size)) {
574 if (copy_from_user(kdst, user_array->uptr,
575 user_array->entry_num *
576 user_array->entry_len))
577 return -EFAULT;
578 return 0;
579 }
580
581 /* Copy item by item */
582 for (i = 0; i != user_array->entry_num; i++) {
583 ret = copy_struct_from_user(
584 kdst + kdst_entry_size * i, kdst_entry_size,
585 user_array->uptr + user_array->entry_len * i,
586 user_array->entry_len);
587 if (ret)
588 return ret;
589 }
590 return 0;
591 }
592
593 /**
594 * __iommu_copy_struct_to_user - Report iommu driver specific user space data
595 * @dst_data: Pointer to a struct iommu_user_data for user space data location
596 * @src_data: Pointer to an iommu driver specific user data that is defined in
597 * include/uapi/linux/iommufd.h
598 * @data_type: The data type of the @src_data. Must match with @dst_data.type
599 * @data_len: Length of current user data structure, i.e. sizeof(struct _src)
600 * @min_len: Initial length of user data structure for backward compatibility.
601 * This should be offsetofend using the last member in the user data
602 * struct that was initially added to include/uapi/linux/iommufd.h
603 */
604 static inline int
__iommu_copy_struct_to_user(const struct iommu_user_data * dst_data,void * src_data,unsigned int data_type,size_t data_len,size_t min_len)605 __iommu_copy_struct_to_user(const struct iommu_user_data *dst_data,
606 void *src_data, unsigned int data_type,
607 size_t data_len, size_t min_len)
608 {
609 if (WARN_ON(!dst_data || !src_data))
610 return -EINVAL;
611 if (dst_data->type != data_type)
612 return -EINVAL;
613 if (dst_data->len < min_len || data_len < dst_data->len)
614 return -EINVAL;
615 return copy_struct_to_user(dst_data->uptr, dst_data->len, src_data,
616 data_len, NULL);
617 }
618
619 /**
620 * iommu_copy_struct_to_user - Report iommu driver specific user space data
621 * @user_data: Pointer to a struct iommu_user_data for user space data location
622 * @ksrc: Pointer to an iommu driver specific user data that is defined in
623 * include/uapi/linux/iommufd.h
624 * @data_type: The data type of the @ksrc. Must match with @user_data->type
625 * @min_last: The last member of the data structure @ksrc points in the initial
626 * version.
627 * Return 0 for success, otherwise -error.
628 */
629 #define iommu_copy_struct_to_user(user_data, ksrc, data_type, min_last) \
630 __iommu_copy_struct_to_user(user_data, ksrc, data_type, sizeof(*ksrc), \
631 offsetofend(typeof(*ksrc), min_last))
632
633 /**
634 * struct iommu_ops - iommu ops and capabilities
635 * @capable: check capability
636 * @hw_info: report iommu hardware information. The data buffer returned by this
637 * op is allocated in the iommu driver and freed by the caller after
638 * use. @type can input a requested type and output a supported type.
639 * Driver should reject an unsupported data @type input
640 * @domain_alloc: Do not use in new drivers
641 * @domain_alloc_identity: allocate an IDENTITY domain. Drivers should prefer to
642 * use identity_domain instead. This should only be used
643 * if dynamic logic is necessary.
644 * @domain_alloc_paging_flags: Allocate an iommu domain corresponding to the
645 * input parameters as defined in
646 * include/uapi/linux/iommufd.h. The @user_data can be
647 * optionally provided, the new domain must support
648 * __IOMMU_DOMAIN_PAGING. Upon failure, ERR_PTR must be
649 * returned.
650 * @domain_alloc_paging: Allocate an iommu_domain that can be used for
651 * UNMANAGED, DMA, and DMA_FQ domain types. This is the
652 * same as invoking domain_alloc_paging_flags() with
653 * @flags=0, @user_data=NULL. A driver should implement
654 * only one of the two ops.
655 * @domain_alloc_sva: Allocate an iommu_domain for Shared Virtual Addressing.
656 * @domain_alloc_nested: Allocate an iommu_domain for nested translation.
657 * @probe_device: Add device to iommu driver handling
658 * @release_device: Remove device from iommu driver handling
659 * @probe_finalize: Do final setup work after the device is added to an IOMMU
660 * group and attached to the groups domain
661 * @device_group: find iommu group for a particular device
662 * @get_resv_regions: Request list of reserved regions for a device
663 * @of_xlate: add OF master IDs to iommu grouping
664 * @is_attach_deferred: Check if domain attach should be deferred from iommu
665 * driver init to device driver init (default no)
666 * @page_response: handle page request response
667 * @def_domain_type: device default domain type, return value:
668 * - IOMMU_DOMAIN_IDENTITY: must use an identity domain
669 * - IOMMU_DOMAIN_DMA: must use a dma domain
670 * - 0: use the default setting
671 * @default_domain_ops: the default ops for domains
672 * @get_viommu_size: Get the size of a driver-level vIOMMU structure for a given
673 * @dev corresponding to @viommu_type. Driver should return 0
674 * if vIOMMU isn't supported accordingly. It is required for
675 * driver to use the VIOMMU_STRUCT_SIZE macro to sanitize the
676 * driver-level vIOMMU structure related to the core one
677 * @viommu_init: Init the driver-level struct of an iommufd_viommu on a physical
678 * IOMMU instance @viommu->iommu_dev, as the set of virtualization
679 * resources shared/passed to user space IOMMU instance. Associate
680 * it with a nesting @parent_domain. It is required for driver to
681 * set @viommu->ops pointing to its own viommu_ops
682 * @owner: Driver module providing these ops
683 * @identity_domain: An always available, always attachable identity
684 * translation.
685 * @blocked_domain: An always available, always attachable blocking
686 * translation.
687 * @default_domain: If not NULL this will always be set as the default domain.
688 * This should be an IDENTITY/BLOCKED/PLATFORM domain.
689 * Do not use in new drivers.
690 * @user_pasid_table: IOMMU driver supports user-managed PASID table. There is
691 * no user domain for each PASID and the I/O page faults are
692 * forwarded through the user domain attached to the device
693 * RID.
694 */
695 struct iommu_ops {
696 bool (*capable)(struct device *dev, enum iommu_cap);
697 void *(*hw_info)(struct device *dev, u32 *length,
698 enum iommu_hw_info_type *type);
699
700 /* Domain allocation and freeing by the iommu driver */
701 #if IS_ENABLED(CONFIG_FSL_PAMU)
702 struct iommu_domain *(*domain_alloc)(unsigned iommu_domain_type);
703 #endif
704 struct iommu_domain *(*domain_alloc_identity)(struct device *dev);
705 struct iommu_domain *(*domain_alloc_paging_flags)(
706 struct device *dev, u32 flags,
707 const struct iommu_user_data *user_data);
708 struct iommu_domain *(*domain_alloc_paging)(struct device *dev);
709 struct iommu_domain *(*domain_alloc_sva)(struct device *dev,
710 struct mm_struct *mm);
711 struct iommu_domain *(*domain_alloc_nested)(
712 struct device *dev, struct iommu_domain *parent, u32 flags,
713 const struct iommu_user_data *user_data);
714
715 struct iommu_device *(*probe_device)(struct device *dev);
716 void (*release_device)(struct device *dev);
717 void (*probe_finalize)(struct device *dev);
718 struct iommu_group *(*device_group)(struct device *dev);
719
720 /* Request/Free a list of reserved regions for a device */
721 void (*get_resv_regions)(struct device *dev, struct list_head *list);
722
723 int (*of_xlate)(struct device *dev, const struct of_phandle_args *args);
724 bool (*is_attach_deferred)(struct device *dev);
725
726 /* Per device IOMMU features */
727 void (*page_response)(struct device *dev, struct iopf_fault *evt,
728 struct iommu_page_response *msg);
729
730 int (*def_domain_type)(struct device *dev);
731
732 size_t (*get_viommu_size)(struct device *dev,
733 enum iommu_viommu_type viommu_type);
734 int (*viommu_init)(struct iommufd_viommu *viommu,
735 struct iommu_domain *parent_domain,
736 const struct iommu_user_data *user_data);
737
738 const struct iommu_domain_ops *default_domain_ops;
739 struct module *owner;
740 struct iommu_domain *identity_domain;
741 struct iommu_domain *blocked_domain;
742 struct iommu_domain *release_domain;
743 struct iommu_domain *default_domain;
744 u8 user_pasid_table:1;
745 };
746
747 /**
748 * struct iommu_domain_ops - domain specific operations
749 * @attach_dev: attach an iommu domain to a device
750 * Return:
751 * * 0 - success
752 * * EINVAL - can indicate that device and domain are incompatible due to
753 * some previous configuration of the domain, in which case the
754 * driver shouldn't log an error, since it is legitimate for a
755 * caller to test reuse of existing domains. Otherwise, it may
756 * still represent some other fundamental problem
757 * * ENOMEM - out of memory
758 * * ENOSPC - non-ENOMEM type of resource allocation failures
759 * * EBUSY - device is attached to a domain and cannot be changed
760 * * ENODEV - device specific errors, not able to be attached
761 * * <others> - treated as ENODEV by the caller. Use is discouraged
762 * @set_dev_pasid: set or replace an iommu domain to a pasid of device. The pasid of
763 * the device should be left in the old config in error case.
764 * @map_pages: map a physically contiguous set of pages of the same size to
765 * an iommu domain.
766 * @unmap_pages: unmap a number of pages of the same size from an iommu domain
767 * @flush_iotlb_all: Synchronously flush all hardware TLBs for this domain
768 * @iotlb_sync_map: Sync mappings created recently using @map to the hardware
769 * @iotlb_sync: Flush all queued ranges from the hardware TLBs and empty flush
770 * queue
771 * @cache_invalidate_user: Flush hardware cache for user space IO page table.
772 * The @domain must be IOMMU_DOMAIN_NESTED. The @array
773 * passes in the cache invalidation requests, in form
774 * of a driver data structure. The driver must update
775 * array->entry_num to report the number of handled
776 * invalidation requests. The driver data structure
777 * must be defined in include/uapi/linux/iommufd.h
778 * @iova_to_phys: translate iova to physical address
779 * @enforce_cache_coherency: Prevent any kind of DMA from bypassing IOMMU_CACHE,
780 * including no-snoop TLPs on PCIe or other platform
781 * specific mechanisms.
782 * @set_pgtable_quirks: Set io page table quirks (IO_PGTABLE_QUIRK_*)
783 * @free: Release the domain after use.
784 */
785 struct iommu_domain_ops {
786 int (*attach_dev)(struct iommu_domain *domain, struct device *dev,
787 struct iommu_domain *old);
788 int (*set_dev_pasid)(struct iommu_domain *domain, struct device *dev,
789 ioasid_t pasid, struct iommu_domain *old);
790
791 int (*map_pages)(struct iommu_domain *domain, unsigned long iova,
792 phys_addr_t paddr, size_t pgsize, size_t pgcount,
793 int prot, gfp_t gfp, size_t *mapped);
794 size_t (*unmap_pages)(struct iommu_domain *domain, unsigned long iova,
795 size_t pgsize, size_t pgcount,
796 struct iommu_iotlb_gather *iotlb_gather);
797
798 void (*flush_iotlb_all)(struct iommu_domain *domain);
799 int (*iotlb_sync_map)(struct iommu_domain *domain, unsigned long iova,
800 size_t size);
801 void (*iotlb_sync)(struct iommu_domain *domain,
802 struct iommu_iotlb_gather *iotlb_gather);
803 int (*cache_invalidate_user)(struct iommu_domain *domain,
804 struct iommu_user_data_array *array);
805
806 phys_addr_t (*iova_to_phys)(struct iommu_domain *domain,
807 dma_addr_t iova);
808
809 bool (*enforce_cache_coherency)(struct iommu_domain *domain);
810 int (*set_pgtable_quirks)(struct iommu_domain *domain,
811 unsigned long quirks);
812
813 void (*free)(struct iommu_domain *domain);
814 };
815
816 /**
817 * struct iommu_device - IOMMU core representation of one IOMMU hardware
818 * instance
819 * @list: Used by the iommu-core to keep a list of registered iommus
820 * @ops: iommu-ops for talking to this iommu
821 * @dev: struct device for sysfs handling
822 * @singleton_group: Used internally for drivers that have only one group
823 * @max_pasids: number of supported PASIDs
824 * @ready: set once iommu_device_register() has completed successfully
825 */
826 struct iommu_device {
827 struct list_head list;
828 const struct iommu_ops *ops;
829 struct fwnode_handle *fwnode;
830 struct device *dev;
831 struct iommu_group *singleton_group;
832 u32 max_pasids;
833 bool ready;
834 };
835
836 /**
837 * struct iommu_fault_param - per-device IOMMU fault data
838 * @lock: protect pending faults list
839 * @users: user counter to manage the lifetime of the data
840 * @rcu: rcu head for kfree_rcu()
841 * @dev: the device that owns this param
842 * @queue: IOPF queue
843 * @queue_list: index into queue->devices
844 * @partial: faults that are part of a Page Request Group for which the last
845 * request hasn't been submitted yet.
846 * @faults: holds the pending faults which need response
847 */
848 struct iommu_fault_param {
849 struct mutex lock;
850 refcount_t users;
851 struct rcu_head rcu;
852
853 struct device *dev;
854 struct iopf_queue *queue;
855 struct list_head queue_list;
856
857 struct list_head partial;
858 struct list_head faults;
859 };
860
861 /**
862 * struct dev_iommu - Collection of per-device IOMMU data
863 *
864 * @fault_param: IOMMU detected device fault reporting data
865 * @fwspec: IOMMU fwspec data
866 * @iommu_dev: IOMMU device this device is linked to
867 * @priv: IOMMU Driver private data
868 * @max_pasids: number of PASIDs this device can consume
869 * @attach_deferred: the dma domain attachment is deferred
870 * @pci_32bit_workaround: Limit DMA allocations to 32-bit IOVAs
871 * @require_direct: device requires IOMMU_RESV_DIRECT regions
872 * @shadow_on_flush: IOTLB flushes are used to sync shadow tables
873 *
874 * TODO: migrate other per device data pointers under iommu_dev_data, e.g.
875 * struct iommu_group *iommu_group;
876 */
877 struct dev_iommu {
878 struct mutex lock;
879 struct iommu_fault_param __rcu *fault_param;
880 struct iommu_fwspec *fwspec;
881 struct iommu_device *iommu_dev;
882 void *priv;
883 u32 max_pasids;
884 u32 attach_deferred:1;
885 u32 pci_32bit_workaround:1;
886 u32 require_direct:1;
887 u32 shadow_on_flush:1;
888 };
889
890 int iommu_device_register(struct iommu_device *iommu,
891 const struct iommu_ops *ops,
892 struct device *hwdev);
893 void iommu_device_unregister(struct iommu_device *iommu);
894 int iommu_device_sysfs_add(struct iommu_device *iommu,
895 struct device *parent,
896 const struct attribute_group **groups,
897 const char *fmt, ...) __printf(4, 5);
898 void iommu_device_sysfs_remove(struct iommu_device *iommu);
899 int iommu_device_link(struct iommu_device *iommu, struct device *link);
900 void iommu_device_unlink(struct iommu_device *iommu, struct device *link);
901 int iommu_deferred_attach(struct device *dev, struct iommu_domain *domain);
902
dev_to_iommu_device(struct device * dev)903 static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
904 {
905 return (struct iommu_device *)dev_get_drvdata(dev);
906 }
907
908 /**
909 * iommu_get_iommu_dev - Get iommu_device for a device
910 * @dev: an end-point device
911 *
912 * Note that this function must be called from the iommu_ops
913 * to retrieve the iommu_device for a device, which the core code
914 * guarentees it will not invoke the op without an attached iommu.
915 */
__iommu_get_iommu_dev(struct device * dev)916 static inline struct iommu_device *__iommu_get_iommu_dev(struct device *dev)
917 {
918 return dev->iommu->iommu_dev;
919 }
920
921 #define iommu_get_iommu_dev(dev, type, member) \
922 container_of(__iommu_get_iommu_dev(dev), type, member)
923
iommu_iotlb_gather_init(struct iommu_iotlb_gather * gather)924 static inline void iommu_iotlb_gather_init(struct iommu_iotlb_gather *gather)
925 {
926 *gather = (struct iommu_iotlb_gather) {
927 .start = ULONG_MAX,
928 .freelist = IOMMU_PAGES_LIST_INIT(gather->freelist),
929 };
930 }
931
932 extern bool device_iommu_capable(struct device *dev, enum iommu_cap cap);
933 extern bool iommu_group_has_isolated_msi(struct iommu_group *group);
934 struct iommu_domain *iommu_paging_domain_alloc_flags(struct device *dev, unsigned int flags);
iommu_paging_domain_alloc(struct device * dev)935 static inline struct iommu_domain *iommu_paging_domain_alloc(struct device *dev)
936 {
937 return iommu_paging_domain_alloc_flags(dev, 0);
938 }
939 extern void iommu_domain_free(struct iommu_domain *domain);
940 extern int iommu_attach_device(struct iommu_domain *domain,
941 struct device *dev);
942 extern void iommu_detach_device(struct iommu_domain *domain,
943 struct device *dev);
944 extern struct iommu_domain *iommu_get_domain_for_dev(struct device *dev);
945 struct iommu_domain *iommu_driver_get_domain_for_dev(struct device *dev);
946 extern struct iommu_domain *iommu_get_dma_domain(struct device *dev);
947 extern int iommu_map(struct iommu_domain *domain, unsigned long iova,
948 phys_addr_t paddr, size_t size, int prot, gfp_t gfp);
949 int iommu_map_nosync(struct iommu_domain *domain, unsigned long iova,
950 phys_addr_t paddr, size_t size, int prot, gfp_t gfp);
951 int iommu_sync_map(struct iommu_domain *domain, unsigned long iova,
952 size_t size);
953 extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova,
954 size_t size);
955 extern size_t iommu_unmap_fast(struct iommu_domain *domain,
956 unsigned long iova, size_t size,
957 struct iommu_iotlb_gather *iotlb_gather);
958 extern ssize_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
959 struct scatterlist *sg, unsigned int nents,
960 int prot, gfp_t gfp);
961 extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova);
962 extern void iommu_set_fault_handler(struct iommu_domain *domain,
963 iommu_fault_handler_t handler, void *token);
964
965 extern void iommu_get_resv_regions(struct device *dev, struct list_head *list);
966 extern void iommu_put_resv_regions(struct device *dev, struct list_head *list);
967 extern void iommu_set_default_passthrough(bool cmd_line);
968 extern void iommu_set_default_translated(bool cmd_line);
969 extern bool iommu_default_passthrough(void);
970 extern struct iommu_resv_region *
971 iommu_alloc_resv_region(phys_addr_t start, size_t length, int prot,
972 enum iommu_resv_type type, gfp_t gfp);
973 extern int iommu_get_group_resv_regions(struct iommu_group *group,
974 struct list_head *head);
975
976 extern int iommu_attach_group(struct iommu_domain *domain,
977 struct iommu_group *group);
978 extern void iommu_detach_group(struct iommu_domain *domain,
979 struct iommu_group *group);
980 extern struct iommu_group *iommu_group_alloc(void);
981 extern void *iommu_group_get_iommudata(struct iommu_group *group);
982 extern void iommu_group_set_iommudata(struct iommu_group *group,
983 void *iommu_data,
984 void (*release)(void *iommu_data));
985 extern int iommu_group_set_name(struct iommu_group *group, const char *name);
986 extern int iommu_group_add_device(struct iommu_group *group,
987 struct device *dev);
988 extern void iommu_group_remove_device(struct device *dev);
989 extern int iommu_group_for_each_dev(struct iommu_group *group, void *data,
990 int (*fn)(struct device *, void *));
991 extern struct iommu_group *iommu_group_get(struct device *dev);
992 extern struct iommu_group *iommu_group_ref_get(struct iommu_group *group);
993 extern void iommu_group_put(struct iommu_group *group);
994
995 extern int iommu_group_id(struct iommu_group *group);
996 extern struct iommu_domain *iommu_group_default_domain(struct iommu_group *);
997
998 int iommu_set_pgtable_quirks(struct iommu_domain *domain,
999 unsigned long quirks);
1000
1001 void iommu_set_dma_strict(void);
1002
1003 extern int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
1004 unsigned long iova, int flags);
1005
iommu_flush_iotlb_all(struct iommu_domain * domain)1006 static inline void iommu_flush_iotlb_all(struct iommu_domain *domain)
1007 {
1008 if (domain->ops->flush_iotlb_all)
1009 domain->ops->flush_iotlb_all(domain);
1010 }
1011
iommu_iotlb_sync(struct iommu_domain * domain,struct iommu_iotlb_gather * iotlb_gather)1012 static inline void iommu_iotlb_sync(struct iommu_domain *domain,
1013 struct iommu_iotlb_gather *iotlb_gather)
1014 {
1015 if (domain->ops->iotlb_sync &&
1016 likely(iotlb_gather->start < iotlb_gather->end))
1017 domain->ops->iotlb_sync(domain, iotlb_gather);
1018
1019 iommu_iotlb_gather_init(iotlb_gather);
1020 }
1021
1022 /**
1023 * iommu_iotlb_gather_is_disjoint - Checks whether a new range is disjoint
1024 *
1025 * @gather: TLB gather data
1026 * @iova: start of page to invalidate
1027 * @size: size of page to invalidate
1028 *
1029 * Helper for IOMMU drivers to check whether a new range and the gathered range
1030 * are disjoint. For many IOMMUs, flushing the IOMMU in this case is better
1031 * than merging the two, which might lead to unnecessary invalidations.
1032 */
1033 static inline
iommu_iotlb_gather_is_disjoint(struct iommu_iotlb_gather * gather,unsigned long iova,size_t size)1034 bool iommu_iotlb_gather_is_disjoint(struct iommu_iotlb_gather *gather,
1035 unsigned long iova, size_t size)
1036 {
1037 unsigned long start = iova, end = start + size - 1;
1038
1039 return gather->end != 0 &&
1040 (end + 1 < gather->start || start > gather->end + 1);
1041 }
1042
1043
1044 /**
1045 * iommu_iotlb_gather_add_range - Gather for address-based TLB invalidation
1046 * @gather: TLB gather data
1047 * @iova: start of page to invalidate
1048 * @size: size of page to invalidate
1049 *
1050 * Helper for IOMMU drivers to build arbitrarily-sized invalidation commands
1051 * where only the address range matters, and simply minimising intermediate
1052 * syncs is preferred.
1053 */
iommu_iotlb_gather_add_range(struct iommu_iotlb_gather * gather,unsigned long iova,size_t size)1054 static inline void iommu_iotlb_gather_add_range(struct iommu_iotlb_gather *gather,
1055 unsigned long iova, size_t size)
1056 {
1057 unsigned long end = iova + size - 1;
1058
1059 if (gather->start > iova)
1060 gather->start = iova;
1061 if (gather->end < end)
1062 gather->end = end;
1063 }
1064
1065 /**
1066 * iommu_iotlb_gather_add_page - Gather for page-based TLB invalidation
1067 * @domain: IOMMU domain to be invalidated
1068 * @gather: TLB gather data
1069 * @iova: start of page to invalidate
1070 * @size: size of page to invalidate
1071 *
1072 * Helper for IOMMU drivers to build invalidation commands based on individual
1073 * pages, or with page size/table level hints which cannot be gathered if they
1074 * differ.
1075 */
iommu_iotlb_gather_add_page(struct iommu_domain * domain,struct iommu_iotlb_gather * gather,unsigned long iova,size_t size)1076 static inline void iommu_iotlb_gather_add_page(struct iommu_domain *domain,
1077 struct iommu_iotlb_gather *gather,
1078 unsigned long iova, size_t size)
1079 {
1080 /*
1081 * If the new page is disjoint from the current range or is mapped at
1082 * a different granularity, then sync the TLB so that the gather
1083 * structure can be rewritten.
1084 */
1085 if ((gather->pgsize && gather->pgsize != size) ||
1086 iommu_iotlb_gather_is_disjoint(gather, iova, size))
1087 iommu_iotlb_sync(domain, gather);
1088
1089 gather->pgsize = size;
1090 iommu_iotlb_gather_add_range(gather, iova, size);
1091 }
1092
iommu_iotlb_gather_queued(struct iommu_iotlb_gather * gather)1093 static inline bool iommu_iotlb_gather_queued(struct iommu_iotlb_gather *gather)
1094 {
1095 return gather && gather->queued;
1096 }
1097
iommu_dirty_bitmap_init(struct iommu_dirty_bitmap * dirty,struct iova_bitmap * bitmap,struct iommu_iotlb_gather * gather)1098 static inline void iommu_dirty_bitmap_init(struct iommu_dirty_bitmap *dirty,
1099 struct iova_bitmap *bitmap,
1100 struct iommu_iotlb_gather *gather)
1101 {
1102 if (gather)
1103 iommu_iotlb_gather_init(gather);
1104
1105 dirty->bitmap = bitmap;
1106 dirty->gather = gather;
1107 }
1108
iommu_dirty_bitmap_record(struct iommu_dirty_bitmap * dirty,unsigned long iova,unsigned long length)1109 static inline void iommu_dirty_bitmap_record(struct iommu_dirty_bitmap *dirty,
1110 unsigned long iova,
1111 unsigned long length)
1112 {
1113 if (dirty->bitmap)
1114 iova_bitmap_set(dirty->bitmap, iova, length);
1115
1116 if (dirty->gather)
1117 iommu_iotlb_gather_add_range(dirty->gather, iova, length);
1118 }
1119
1120 /* PCI device grouping function */
1121 extern struct iommu_group *pci_device_group(struct device *dev);
1122 /* Generic device grouping function */
1123 extern struct iommu_group *generic_device_group(struct device *dev);
1124 /* FSL-MC device grouping function */
1125 struct iommu_group *fsl_mc_device_group(struct device *dev);
1126 extern struct iommu_group *generic_single_device_group(struct device *dev);
1127
1128 /**
1129 * struct iommu_fwspec - per-device IOMMU instance data
1130 * @iommu_fwnode: firmware handle for this device's IOMMU
1131 * @flags: IOMMU_FWSPEC_* flags
1132 * @num_ids: number of associated device IDs
1133 * @ids: IDs which this device may present to the IOMMU
1134 *
1135 * Note that the IDs (and any other information, really) stored in this structure should be
1136 * considered private to the IOMMU device driver and are not to be used directly by IOMMU
1137 * consumers.
1138 */
1139 struct iommu_fwspec {
1140 struct fwnode_handle *iommu_fwnode;
1141 u32 flags;
1142 unsigned int num_ids;
1143 u32 ids[];
1144 };
1145
1146 /* ATS is supported */
1147 #define IOMMU_FWSPEC_PCI_RC_ATS (1 << 0)
1148 /* CANWBS is supported */
1149 #define IOMMU_FWSPEC_PCI_RC_CANWBS (1 << 1)
1150
1151 /*
1152 * An iommu attach handle represents a relationship between an iommu domain
1153 * and a PASID or RID of a device. It is allocated and managed by the component
1154 * that manages the domain and is stored in the iommu group during the time the
1155 * domain is attached.
1156 */
1157 struct iommu_attach_handle {
1158 struct iommu_domain *domain;
1159 };
1160
1161 /**
1162 * struct iommu_sva - handle to a device-mm bond
1163 */
1164 struct iommu_sva {
1165 struct iommu_attach_handle handle;
1166 struct device *dev;
1167 refcount_t users;
1168 };
1169
1170 struct iommu_mm_data {
1171 u32 pasid;
1172 struct mm_struct *mm;
1173 struct list_head sva_domains;
1174 struct list_head mm_list_elm;
1175 };
1176
1177 int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode);
1178 int iommu_fwspec_add_ids(struct device *dev, const u32 *ids, int num_ids);
1179
dev_iommu_fwspec_get(struct device * dev)1180 static inline struct iommu_fwspec *dev_iommu_fwspec_get(struct device *dev)
1181 {
1182 if (dev->iommu)
1183 return dev->iommu->fwspec;
1184 else
1185 return NULL;
1186 }
1187
dev_iommu_fwspec_set(struct device * dev,struct iommu_fwspec * fwspec)1188 static inline void dev_iommu_fwspec_set(struct device *dev,
1189 struct iommu_fwspec *fwspec)
1190 {
1191 dev->iommu->fwspec = fwspec;
1192 }
1193
dev_iommu_priv_get(struct device * dev)1194 static inline void *dev_iommu_priv_get(struct device *dev)
1195 {
1196 if (dev->iommu)
1197 return dev->iommu->priv;
1198 else
1199 return NULL;
1200 }
1201
1202 void dev_iommu_priv_set(struct device *dev, void *priv);
1203
1204 extern struct mutex iommu_probe_device_lock;
1205 int iommu_probe_device(struct device *dev);
1206
1207 int iommu_device_use_default_domain(struct device *dev);
1208 void iommu_device_unuse_default_domain(struct device *dev);
1209
1210 int iommu_group_claim_dma_owner(struct iommu_group *group, void *owner);
1211 void iommu_group_release_dma_owner(struct iommu_group *group);
1212 bool iommu_group_dma_owner_claimed(struct iommu_group *group);
1213
1214 int iommu_device_claim_dma_owner(struct device *dev, void *owner);
1215 void iommu_device_release_dma_owner(struct device *dev);
1216
1217 int iommu_attach_device_pasid(struct iommu_domain *domain,
1218 struct device *dev, ioasid_t pasid,
1219 struct iommu_attach_handle *handle);
1220 void iommu_detach_device_pasid(struct iommu_domain *domain,
1221 struct device *dev, ioasid_t pasid);
1222 ioasid_t iommu_alloc_global_pasid(struct device *dev);
1223 void iommu_free_global_pasid(ioasid_t pasid);
1224
1225 /* PCI device reset functions */
1226 int pci_dev_reset_iommu_prepare(struct pci_dev *pdev);
1227 void pci_dev_reset_iommu_done(struct pci_dev *pdev);
1228 #else /* CONFIG_IOMMU_API */
1229
1230 struct iommu_ops {};
1231 struct iommu_group {};
1232 struct iommu_fwspec {};
1233 struct iommu_device {};
1234 struct iommu_fault_param {};
1235 struct iommu_iotlb_gather {};
1236 struct iommu_dirty_bitmap {};
1237 struct iommu_dirty_ops {};
1238
device_iommu_capable(struct device * dev,enum iommu_cap cap)1239 static inline bool device_iommu_capable(struct device *dev, enum iommu_cap cap)
1240 {
1241 return false;
1242 }
1243
iommu_paging_domain_alloc_flags(struct device * dev,unsigned int flags)1244 static inline struct iommu_domain *iommu_paging_domain_alloc_flags(struct device *dev,
1245 unsigned int flags)
1246 {
1247 return ERR_PTR(-ENODEV);
1248 }
1249
iommu_paging_domain_alloc(struct device * dev)1250 static inline struct iommu_domain *iommu_paging_domain_alloc(struct device *dev)
1251 {
1252 return ERR_PTR(-ENODEV);
1253 }
1254
iommu_domain_free(struct iommu_domain * domain)1255 static inline void iommu_domain_free(struct iommu_domain *domain)
1256 {
1257 }
1258
iommu_attach_device(struct iommu_domain * domain,struct device * dev)1259 static inline int iommu_attach_device(struct iommu_domain *domain,
1260 struct device *dev)
1261 {
1262 return -ENODEV;
1263 }
1264
iommu_detach_device(struct iommu_domain * domain,struct device * dev)1265 static inline void iommu_detach_device(struct iommu_domain *domain,
1266 struct device *dev)
1267 {
1268 }
1269
iommu_get_domain_for_dev(struct device * dev)1270 static inline struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1271 {
1272 return NULL;
1273 }
1274
iommu_map(struct iommu_domain * domain,unsigned long iova,phys_addr_t paddr,size_t size,int prot,gfp_t gfp)1275 static inline int iommu_map(struct iommu_domain *domain, unsigned long iova,
1276 phys_addr_t paddr, size_t size, int prot, gfp_t gfp)
1277 {
1278 return -ENODEV;
1279 }
1280
iommu_unmap(struct iommu_domain * domain,unsigned long iova,size_t size)1281 static inline size_t iommu_unmap(struct iommu_domain *domain,
1282 unsigned long iova, size_t size)
1283 {
1284 return 0;
1285 }
1286
iommu_unmap_fast(struct iommu_domain * domain,unsigned long iova,int gfp_order,struct iommu_iotlb_gather * iotlb_gather)1287 static inline size_t iommu_unmap_fast(struct iommu_domain *domain,
1288 unsigned long iova, int gfp_order,
1289 struct iommu_iotlb_gather *iotlb_gather)
1290 {
1291 return 0;
1292 }
1293
iommu_map_sg(struct iommu_domain * domain,unsigned long iova,struct scatterlist * sg,unsigned int nents,int prot,gfp_t gfp)1294 static inline ssize_t iommu_map_sg(struct iommu_domain *domain,
1295 unsigned long iova, struct scatterlist *sg,
1296 unsigned int nents, int prot, gfp_t gfp)
1297 {
1298 return -ENODEV;
1299 }
1300
iommu_flush_iotlb_all(struct iommu_domain * domain)1301 static inline void iommu_flush_iotlb_all(struct iommu_domain *domain)
1302 {
1303 }
1304
iommu_iotlb_sync(struct iommu_domain * domain,struct iommu_iotlb_gather * iotlb_gather)1305 static inline void iommu_iotlb_sync(struct iommu_domain *domain,
1306 struct iommu_iotlb_gather *iotlb_gather)
1307 {
1308 }
1309
iommu_iova_to_phys(struct iommu_domain * domain,dma_addr_t iova)1310 static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
1311 {
1312 return 0;
1313 }
1314
iommu_set_fault_handler(struct iommu_domain * domain,iommu_fault_handler_t handler,void * token)1315 static inline void iommu_set_fault_handler(struct iommu_domain *domain,
1316 iommu_fault_handler_t handler, void *token)
1317 {
1318 }
1319
iommu_get_resv_regions(struct device * dev,struct list_head * list)1320 static inline void iommu_get_resv_regions(struct device *dev,
1321 struct list_head *list)
1322 {
1323 }
1324
iommu_put_resv_regions(struct device * dev,struct list_head * list)1325 static inline void iommu_put_resv_regions(struct device *dev,
1326 struct list_head *list)
1327 {
1328 }
1329
iommu_get_group_resv_regions(struct iommu_group * group,struct list_head * head)1330 static inline int iommu_get_group_resv_regions(struct iommu_group *group,
1331 struct list_head *head)
1332 {
1333 return -ENODEV;
1334 }
1335
iommu_set_default_passthrough(bool cmd_line)1336 static inline void iommu_set_default_passthrough(bool cmd_line)
1337 {
1338 }
1339
iommu_set_default_translated(bool cmd_line)1340 static inline void iommu_set_default_translated(bool cmd_line)
1341 {
1342 }
1343
iommu_default_passthrough(void)1344 static inline bool iommu_default_passthrough(void)
1345 {
1346 return true;
1347 }
1348
iommu_attach_group(struct iommu_domain * domain,struct iommu_group * group)1349 static inline int iommu_attach_group(struct iommu_domain *domain,
1350 struct iommu_group *group)
1351 {
1352 return -ENODEV;
1353 }
1354
iommu_detach_group(struct iommu_domain * domain,struct iommu_group * group)1355 static inline void iommu_detach_group(struct iommu_domain *domain,
1356 struct iommu_group *group)
1357 {
1358 }
1359
iommu_group_alloc(void)1360 static inline struct iommu_group *iommu_group_alloc(void)
1361 {
1362 return ERR_PTR(-ENODEV);
1363 }
1364
iommu_group_get_iommudata(struct iommu_group * group)1365 static inline void *iommu_group_get_iommudata(struct iommu_group *group)
1366 {
1367 return NULL;
1368 }
1369
iommu_group_set_iommudata(struct iommu_group * group,void * iommu_data,void (* release)(void * iommu_data))1370 static inline void iommu_group_set_iommudata(struct iommu_group *group,
1371 void *iommu_data,
1372 void (*release)(void *iommu_data))
1373 {
1374 }
1375
iommu_group_set_name(struct iommu_group * group,const char * name)1376 static inline int iommu_group_set_name(struct iommu_group *group,
1377 const char *name)
1378 {
1379 return -ENODEV;
1380 }
1381
iommu_group_add_device(struct iommu_group * group,struct device * dev)1382 static inline int iommu_group_add_device(struct iommu_group *group,
1383 struct device *dev)
1384 {
1385 return -ENODEV;
1386 }
1387
iommu_group_remove_device(struct device * dev)1388 static inline void iommu_group_remove_device(struct device *dev)
1389 {
1390 }
1391
iommu_group_for_each_dev(struct iommu_group * group,void * data,int (* fn)(struct device *,void *))1392 static inline int iommu_group_for_each_dev(struct iommu_group *group,
1393 void *data,
1394 int (*fn)(struct device *, void *))
1395 {
1396 return -ENODEV;
1397 }
1398
iommu_group_get(struct device * dev)1399 static inline struct iommu_group *iommu_group_get(struct device *dev)
1400 {
1401 return NULL;
1402 }
1403
iommu_group_put(struct iommu_group * group)1404 static inline void iommu_group_put(struct iommu_group *group)
1405 {
1406 }
1407
iommu_group_id(struct iommu_group * group)1408 static inline int iommu_group_id(struct iommu_group *group)
1409 {
1410 return -ENODEV;
1411 }
1412
iommu_set_pgtable_quirks(struct iommu_domain * domain,unsigned long quirks)1413 static inline int iommu_set_pgtable_quirks(struct iommu_domain *domain,
1414 unsigned long quirks)
1415 {
1416 return 0;
1417 }
1418
iommu_device_register(struct iommu_device * iommu,const struct iommu_ops * ops,struct device * hwdev)1419 static inline int iommu_device_register(struct iommu_device *iommu,
1420 const struct iommu_ops *ops,
1421 struct device *hwdev)
1422 {
1423 return -ENODEV;
1424 }
1425
dev_to_iommu_device(struct device * dev)1426 static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
1427 {
1428 return NULL;
1429 }
1430
iommu_iotlb_gather_init(struct iommu_iotlb_gather * gather)1431 static inline void iommu_iotlb_gather_init(struct iommu_iotlb_gather *gather)
1432 {
1433 }
1434
iommu_iotlb_gather_add_page(struct iommu_domain * domain,struct iommu_iotlb_gather * gather,unsigned long iova,size_t size)1435 static inline void iommu_iotlb_gather_add_page(struct iommu_domain *domain,
1436 struct iommu_iotlb_gather *gather,
1437 unsigned long iova, size_t size)
1438 {
1439 }
1440
iommu_iotlb_gather_queued(struct iommu_iotlb_gather * gather)1441 static inline bool iommu_iotlb_gather_queued(struct iommu_iotlb_gather *gather)
1442 {
1443 return false;
1444 }
1445
iommu_dirty_bitmap_init(struct iommu_dirty_bitmap * dirty,struct iova_bitmap * bitmap,struct iommu_iotlb_gather * gather)1446 static inline void iommu_dirty_bitmap_init(struct iommu_dirty_bitmap *dirty,
1447 struct iova_bitmap *bitmap,
1448 struct iommu_iotlb_gather *gather)
1449 {
1450 }
1451
iommu_dirty_bitmap_record(struct iommu_dirty_bitmap * dirty,unsigned long iova,unsigned long length)1452 static inline void iommu_dirty_bitmap_record(struct iommu_dirty_bitmap *dirty,
1453 unsigned long iova,
1454 unsigned long length)
1455 {
1456 }
1457
iommu_device_unregister(struct iommu_device * iommu)1458 static inline void iommu_device_unregister(struct iommu_device *iommu)
1459 {
1460 }
1461
iommu_device_sysfs_add(struct iommu_device * iommu,struct device * parent,const struct attribute_group ** groups,const char * fmt,...)1462 static inline int iommu_device_sysfs_add(struct iommu_device *iommu,
1463 struct device *parent,
1464 const struct attribute_group **groups,
1465 const char *fmt, ...)
1466 {
1467 return -ENODEV;
1468 }
1469
iommu_device_sysfs_remove(struct iommu_device * iommu)1470 static inline void iommu_device_sysfs_remove(struct iommu_device *iommu)
1471 {
1472 }
1473
iommu_device_link(struct device * dev,struct device * link)1474 static inline int iommu_device_link(struct device *dev, struct device *link)
1475 {
1476 return -EINVAL;
1477 }
1478
iommu_device_unlink(struct device * dev,struct device * link)1479 static inline void iommu_device_unlink(struct device *dev, struct device *link)
1480 {
1481 }
1482
iommu_fwspec_init(struct device * dev,struct fwnode_handle * iommu_fwnode)1483 static inline int iommu_fwspec_init(struct device *dev,
1484 struct fwnode_handle *iommu_fwnode)
1485 {
1486 return -ENODEV;
1487 }
1488
iommu_fwspec_add_ids(struct device * dev,u32 * ids,int num_ids)1489 static inline int iommu_fwspec_add_ids(struct device *dev, u32 *ids,
1490 int num_ids)
1491 {
1492 return -ENODEV;
1493 }
1494
dev_iommu_fwspec_get(struct device * dev)1495 static inline struct iommu_fwspec *dev_iommu_fwspec_get(struct device *dev)
1496 {
1497 return NULL;
1498 }
1499
iommu_device_use_default_domain(struct device * dev)1500 static inline int iommu_device_use_default_domain(struct device *dev)
1501 {
1502 return 0;
1503 }
1504
iommu_device_unuse_default_domain(struct device * dev)1505 static inline void iommu_device_unuse_default_domain(struct device *dev)
1506 {
1507 }
1508
1509 static inline int
iommu_group_claim_dma_owner(struct iommu_group * group,void * owner)1510 iommu_group_claim_dma_owner(struct iommu_group *group, void *owner)
1511 {
1512 return -ENODEV;
1513 }
1514
iommu_group_release_dma_owner(struct iommu_group * group)1515 static inline void iommu_group_release_dma_owner(struct iommu_group *group)
1516 {
1517 }
1518
iommu_group_dma_owner_claimed(struct iommu_group * group)1519 static inline bool iommu_group_dma_owner_claimed(struct iommu_group *group)
1520 {
1521 return false;
1522 }
1523
iommu_device_release_dma_owner(struct device * dev)1524 static inline void iommu_device_release_dma_owner(struct device *dev)
1525 {
1526 }
1527
iommu_device_claim_dma_owner(struct device * dev,void * owner)1528 static inline int iommu_device_claim_dma_owner(struct device *dev, void *owner)
1529 {
1530 return -ENODEV;
1531 }
1532
iommu_attach_device_pasid(struct iommu_domain * domain,struct device * dev,ioasid_t pasid,struct iommu_attach_handle * handle)1533 static inline int iommu_attach_device_pasid(struct iommu_domain *domain,
1534 struct device *dev, ioasid_t pasid,
1535 struct iommu_attach_handle *handle)
1536 {
1537 return -ENODEV;
1538 }
1539
iommu_detach_device_pasid(struct iommu_domain * domain,struct device * dev,ioasid_t pasid)1540 static inline void iommu_detach_device_pasid(struct iommu_domain *domain,
1541 struct device *dev, ioasid_t pasid)
1542 {
1543 }
1544
iommu_alloc_global_pasid(struct device * dev)1545 static inline ioasid_t iommu_alloc_global_pasid(struct device *dev)
1546 {
1547 return IOMMU_PASID_INVALID;
1548 }
1549
iommu_free_global_pasid(ioasid_t pasid)1550 static inline void iommu_free_global_pasid(ioasid_t pasid) {}
1551
pci_dev_reset_iommu_prepare(struct pci_dev * pdev)1552 static inline int pci_dev_reset_iommu_prepare(struct pci_dev *pdev)
1553 {
1554 return 0;
1555 }
1556
pci_dev_reset_iommu_done(struct pci_dev * pdev)1557 static inline void pci_dev_reset_iommu_done(struct pci_dev *pdev)
1558 {
1559 }
1560 #endif /* CONFIG_IOMMU_API */
1561
1562 #ifdef CONFIG_IRQ_MSI_IOMMU
1563 #ifdef CONFIG_IOMMU_API
1564 int iommu_dma_prepare_msi(struct msi_desc *desc, phys_addr_t msi_addr);
1565 #else
iommu_dma_prepare_msi(struct msi_desc * desc,phys_addr_t msi_addr)1566 static inline int iommu_dma_prepare_msi(struct msi_desc *desc,
1567 phys_addr_t msi_addr)
1568 {
1569 return 0;
1570 }
1571 #endif /* CONFIG_IOMMU_API */
1572 #endif /* CONFIG_IRQ_MSI_IOMMU */
1573
1574 #if IS_ENABLED(CONFIG_LOCKDEP) && IS_ENABLED(CONFIG_IOMMU_API)
1575 void iommu_group_mutex_assert(struct device *dev);
1576 #else
iommu_group_mutex_assert(struct device * dev)1577 static inline void iommu_group_mutex_assert(struct device *dev)
1578 {
1579 }
1580 #endif
1581
1582 /**
1583 * iommu_map_sgtable - Map the given buffer to the IOMMU domain
1584 * @domain: The IOMMU domain to perform the mapping
1585 * @iova: The start address to map the buffer
1586 * @sgt: The sg_table object describing the buffer
1587 * @prot: IOMMU protection bits
1588 *
1589 * Creates a mapping at @iova for the buffer described by a scatterlist
1590 * stored in the given sg_table object in the provided IOMMU domain.
1591 */
iommu_map_sgtable(struct iommu_domain * domain,unsigned long iova,struct sg_table * sgt,int prot)1592 static inline ssize_t iommu_map_sgtable(struct iommu_domain *domain,
1593 unsigned long iova, struct sg_table *sgt, int prot)
1594 {
1595 return iommu_map_sg(domain, iova, sgt->sgl, sgt->orig_nents, prot,
1596 GFP_KERNEL);
1597 }
1598
1599 #ifdef CONFIG_IOMMU_DEBUGFS
1600 extern struct dentry *iommu_debugfs_dir;
1601 void iommu_debugfs_setup(void);
1602 #else
iommu_debugfs_setup(void)1603 static inline void iommu_debugfs_setup(void) {}
1604 #endif
1605
1606 #ifdef CONFIG_IOMMU_DMA
1607 int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base);
1608 #else /* CONFIG_IOMMU_DMA */
iommu_get_msi_cookie(struct iommu_domain * domain,dma_addr_t base)1609 static inline int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base)
1610 {
1611 return -ENODEV;
1612 }
1613 #endif /* CONFIG_IOMMU_DMA */
1614
1615 /*
1616 * Newer generations of Tegra SoCs require devices' stream IDs to be directly programmed into
1617 * some registers. These are always paired with a Tegra SMMU or ARM SMMU, for which the contents
1618 * of the struct iommu_fwspec are known. Use this helper to formalize access to these internals.
1619 */
1620 #define TEGRA_STREAM_ID_BYPASS 0x7f
1621
tegra_dev_iommu_get_stream_id(struct device * dev,u32 * stream_id)1622 static inline bool tegra_dev_iommu_get_stream_id(struct device *dev, u32 *stream_id)
1623 {
1624 #ifdef CONFIG_IOMMU_API
1625 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
1626
1627 if (fwspec && fwspec->num_ids == 1) {
1628 *stream_id = fwspec->ids[0] & 0xffff;
1629 return true;
1630 }
1631 #endif
1632
1633 return false;
1634 }
1635
1636 #ifdef CONFIG_IOMMU_MM_DATA
mm_pasid_init(struct mm_struct * mm)1637 static inline void mm_pasid_init(struct mm_struct *mm)
1638 {
1639 /*
1640 * During dup_mm(), a new mm will be memcpy'd from an old one and that makes
1641 * the new mm and the old one point to a same iommu_mm instance. When either
1642 * one of the two mms gets released, the iommu_mm instance is freed, leaving
1643 * the other mm running into a use-after-free/double-free problem. To avoid
1644 * the problem, zeroing the iommu_mm pointer of a new mm is needed here.
1645 */
1646 mm->iommu_mm = NULL;
1647 }
1648
mm_valid_pasid(struct mm_struct * mm)1649 static inline bool mm_valid_pasid(struct mm_struct *mm)
1650 {
1651 return READ_ONCE(mm->iommu_mm);
1652 }
1653
mm_get_enqcmd_pasid(struct mm_struct * mm)1654 static inline u32 mm_get_enqcmd_pasid(struct mm_struct *mm)
1655 {
1656 struct iommu_mm_data *iommu_mm = READ_ONCE(mm->iommu_mm);
1657
1658 if (!iommu_mm)
1659 return IOMMU_PASID_INVALID;
1660 return iommu_mm->pasid;
1661 }
1662
1663 void mm_pasid_drop(struct mm_struct *mm);
1664 struct iommu_sva *iommu_sva_bind_device(struct device *dev,
1665 struct mm_struct *mm);
1666 void iommu_sva_unbind_device(struct iommu_sva *handle);
1667 u32 iommu_sva_get_pasid(struct iommu_sva *handle);
1668 void iommu_sva_invalidate_kva_range(unsigned long start, unsigned long end);
1669 #else
1670 static inline struct iommu_sva *
iommu_sva_bind_device(struct device * dev,struct mm_struct * mm)1671 iommu_sva_bind_device(struct device *dev, struct mm_struct *mm)
1672 {
1673 return ERR_PTR(-ENODEV);
1674 }
1675
iommu_sva_unbind_device(struct iommu_sva * handle)1676 static inline void iommu_sva_unbind_device(struct iommu_sva *handle)
1677 {
1678 }
1679
iommu_sva_get_pasid(struct iommu_sva * handle)1680 static inline u32 iommu_sva_get_pasid(struct iommu_sva *handle)
1681 {
1682 return IOMMU_PASID_INVALID;
1683 }
mm_pasid_init(struct mm_struct * mm)1684 static inline void mm_pasid_init(struct mm_struct *mm) {}
mm_valid_pasid(struct mm_struct * mm)1685 static inline bool mm_valid_pasid(struct mm_struct *mm) { return false; }
1686
mm_get_enqcmd_pasid(struct mm_struct * mm)1687 static inline u32 mm_get_enqcmd_pasid(struct mm_struct *mm)
1688 {
1689 return IOMMU_PASID_INVALID;
1690 }
1691
mm_pasid_drop(struct mm_struct * mm)1692 static inline void mm_pasid_drop(struct mm_struct *mm) {}
iommu_sva_invalidate_kva_range(unsigned long start,unsigned long end)1693 static inline void iommu_sva_invalidate_kva_range(unsigned long start, unsigned long end) {}
1694 #endif /* CONFIG_IOMMU_SVA */
1695
1696 #ifdef CONFIG_IOMMU_IOPF
1697 int iopf_queue_add_device(struct iopf_queue *queue, struct device *dev);
1698 void iopf_queue_remove_device(struct iopf_queue *queue, struct device *dev);
1699 int iopf_queue_flush_dev(struct device *dev);
1700 struct iopf_queue *iopf_queue_alloc(const char *name);
1701 void iopf_queue_free(struct iopf_queue *queue);
1702 int iopf_queue_discard_partial(struct iopf_queue *queue);
1703 void iopf_free_group(struct iopf_group *group);
1704 int iommu_report_device_fault(struct device *dev, struct iopf_fault *evt);
1705 void iopf_group_response(struct iopf_group *group,
1706 enum iommu_page_response_code status);
1707 void iopf_group_dequeue(struct iopf_group *group);
1708 #else
1709 static inline int
iopf_queue_add_device(struct iopf_queue * queue,struct device * dev)1710 iopf_queue_add_device(struct iopf_queue *queue, struct device *dev)
1711 {
1712 return -ENODEV;
1713 }
1714
1715 static inline void
iopf_queue_remove_device(struct iopf_queue * queue,struct device * dev)1716 iopf_queue_remove_device(struct iopf_queue *queue, struct device *dev)
1717 {
1718 }
1719
iopf_queue_flush_dev(struct device * dev)1720 static inline int iopf_queue_flush_dev(struct device *dev)
1721 {
1722 return -ENODEV;
1723 }
1724
iopf_queue_alloc(const char * name)1725 static inline struct iopf_queue *iopf_queue_alloc(const char *name)
1726 {
1727 return NULL;
1728 }
1729
iopf_queue_free(struct iopf_queue * queue)1730 static inline void iopf_queue_free(struct iopf_queue *queue)
1731 {
1732 }
1733
iopf_queue_discard_partial(struct iopf_queue * queue)1734 static inline int iopf_queue_discard_partial(struct iopf_queue *queue)
1735 {
1736 return -ENODEV;
1737 }
1738
iopf_free_group(struct iopf_group * group)1739 static inline void iopf_free_group(struct iopf_group *group)
1740 {
1741 }
1742
1743 static inline int
iommu_report_device_fault(struct device * dev,struct iopf_fault * evt)1744 iommu_report_device_fault(struct device *dev, struct iopf_fault *evt)
1745 {
1746 return -ENODEV;
1747 }
1748
iopf_group_response(struct iopf_group * group,enum iommu_page_response_code status)1749 static inline void iopf_group_response(struct iopf_group *group,
1750 enum iommu_page_response_code status)
1751 {
1752 }
1753
iopf_group_dequeue(struct iopf_group * group)1754 static inline void iopf_group_dequeue(struct iopf_group *group)
1755 {
1756 }
1757 #endif /* CONFIG_IOMMU_IOPF */
1758 #endif /* __LINUX_IOMMU_H */
1759