1 // SPDX-License-Identifier: GPL-2.0
3 * Helpers for IOMMU drivers implementing SVA
5 #include <linux/mutex.h>
6 #include <linux/sched/mm.h>
8 #include "iommu-sva-lib.h"
10 static DEFINE_MUTEX(iommu_sva_lock
);
11 static DECLARE_IOASID_SET(iommu_sva_pasid
);
14 * iommu_sva_alloc_pasid - Allocate a PASID for the mm
16 * @min: minimum PASID value (inclusive)
17 * @max: maximum PASID value (inclusive)
19 * Try to allocate a PASID for this mm, or take a reference to the existing one
20 * provided it fits within the [@min, @max] range. On success the PASID is
21 * available in mm->pasid, and must be released with iommu_sva_free_pasid().
22 * @min must be greater than 0, because 0 indicates an unused mm->pasid.
24 * Returns 0 on success and < 0 on error.
26 int iommu_sva_alloc_pasid(struct mm_struct
*mm
, ioasid_t min
, ioasid_t max
)
31 if (min
== INVALID_IOASID
|| max
== INVALID_IOASID
||
32 min
== 0 || max
< min
)
35 mutex_lock(&iommu_sva_lock
);
37 if (mm
->pasid
>= min
&& mm
->pasid
<= max
)
38 ioasid_get(mm
->pasid
);
42 pasid
= ioasid_alloc(&iommu_sva_pasid
, min
, max
, mm
);
43 if (pasid
== INVALID_IOASID
)
48 mutex_unlock(&iommu_sva_lock
);
51 EXPORT_SYMBOL_GPL(iommu_sva_alloc_pasid
);
54 * iommu_sva_free_pasid - Release the mm's PASID
57 * Drop one reference to a PASID allocated with iommu_sva_alloc_pasid()
59 void iommu_sva_free_pasid(struct mm_struct
*mm
)
61 mutex_lock(&iommu_sva_lock
);
62 if (ioasid_put(mm
->pasid
))
64 mutex_unlock(&iommu_sva_lock
);
66 EXPORT_SYMBOL_GPL(iommu_sva_free_pasid
);
68 /* ioasid_find getter() requires a void * argument */
69 static bool __mmget_not_zero(void *mm
)
71 return mmget_not_zero(mm
);
75 * iommu_sva_find() - Find mm associated to the given PASID
76 * @pasid: Process Address Space ID assigned to the mm
78 * On success a reference to the mm is taken, and must be released with mmput().
80 * Returns the mm corresponding to this PASID, or an error if not found.
82 struct mm_struct
*iommu_sva_find(ioasid_t pasid
)
84 return ioasid_find(&iommu_sva_pasid
, pasid
, __mmget_not_zero
);
86 EXPORT_SYMBOL_GPL(iommu_sva_find
);