2 * Copyright (c) 2006, Intel Corporation.
4 * This file is released under the GPLv2.
6 * Copyright (C) 2006-2008 Intel Corporation
7 * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
14 #include <linux/types.h>
15 #include <linux/kernel.h>
16 #include <linux/rbtree.h>
17 #include <linux/atomic.h>
18 #include <linux/dma-mapping.h>
23 unsigned long pfn_hi
; /* Highest allocated pfn */
24 unsigned long pfn_lo
; /* Lowest allocated pfn */
28 struct iova_cpu_rcache
;
30 #define IOVA_RANGE_CACHE_MAX_SIZE 6 /* log of max cached IOVA range size (in pages) */
31 #define MAX_GLOBAL_MAGS 32 /* magazines per bin */
35 unsigned long depot_size
;
36 struct iova_magazine
*depot
[MAX_GLOBAL_MAGS
];
37 struct iova_cpu_rcache __percpu
*cpu_rcaches
;
42 /* Call-Back from IOVA code into IOMMU drivers */
43 typedef void (* iova_flush_cb
)(struct iova_domain
*domain
);
45 /* Destructor for per-entry data */
46 typedef void (* iova_entry_dtor
)(unsigned long data
);
48 /* Number of entries per Flush Queue */
49 #define IOVA_FQ_SIZE 256
51 /* Timeout (in ms) after which entries are flushed from the Flush-Queue */
52 #define IOVA_FQ_TIMEOUT 10
54 /* Flush Queue entry for defered flushing */
55 struct iova_fq_entry
{
56 unsigned long iova_pfn
;
59 u64 counter
; /* Flush counter when this entrie was added */
62 /* Per-CPU Flush Queue structure */
64 struct iova_fq_entry entries
[IOVA_FQ_SIZE
];
69 /* holds all the iova translations for a domain */
71 spinlock_t iova_rbtree_lock
; /* Lock to protect update of rbtree */
72 struct rb_root rbroot
; /* iova domain rbtree root */
73 struct rb_node
*cached_node
; /* Save last alloced node */
74 struct rb_node
*cached32_node
; /* Save last 32-bit alloced node */
75 unsigned long granule
; /* pfn granularity for this domain */
76 unsigned long start_pfn
; /* Lower limit for this domain */
77 unsigned long dma_32bit_pfn
;
78 struct iova anchor
; /* rbtree lookup anchor */
79 struct iova_rcache rcaches
[IOVA_RANGE_CACHE_MAX_SIZE
]; /* IOVA range caches */
81 iova_flush_cb flush_cb
; /* Call-Back function to flush IOMMU
84 iova_entry_dtor entry_dtor
; /* IOMMU driver specific destructor for
87 struct iova_fq __percpu
*fq
; /* Flush Queue */
89 atomic64_t fq_flush_start_cnt
; /* Number of TLB flushes that
92 atomic64_t fq_flush_finish_cnt
; /* Number of TLB flushes that
95 struct timer_list fq_timer
; /* Timer to regularily empty the
97 atomic_t fq_timer_on
; /* 1 when timer is active, 0
101 static inline unsigned long iova_size(struct iova
*iova
)
103 return iova
->pfn_hi
- iova
->pfn_lo
+ 1;
106 static inline unsigned long iova_shift(struct iova_domain
*iovad
)
108 return __ffs(iovad
->granule
);
111 static inline unsigned long iova_mask(struct iova_domain
*iovad
)
113 return iovad
->granule
- 1;
116 static inline size_t iova_offset(struct iova_domain
*iovad
, dma_addr_t iova
)
118 return iova
& iova_mask(iovad
);
121 static inline size_t iova_align(struct iova_domain
*iovad
, size_t size
)
123 return ALIGN(size
, iovad
->granule
);
126 static inline dma_addr_t
iova_dma_addr(struct iova_domain
*iovad
, struct iova
*iova
)
128 return (dma_addr_t
)iova
->pfn_lo
<< iova_shift(iovad
);
131 static inline unsigned long iova_pfn(struct iova_domain
*iovad
, dma_addr_t iova
)
133 return iova
>> iova_shift(iovad
);
136 #if IS_ENABLED(CONFIG_IOMMU_IOVA)
137 int iova_cache_get(void);
138 void iova_cache_put(void);
140 struct iova
*alloc_iova_mem(void);
141 void free_iova_mem(struct iova
*iova
);
142 void free_iova(struct iova_domain
*iovad
, unsigned long pfn
);
143 void __free_iova(struct iova_domain
*iovad
, struct iova
*iova
);
144 struct iova
*alloc_iova(struct iova_domain
*iovad
, unsigned long size
,
145 unsigned long limit_pfn
,
147 void free_iova_fast(struct iova_domain
*iovad
, unsigned long pfn
,
149 void queue_iova(struct iova_domain
*iovad
,
150 unsigned long pfn
, unsigned long pages
,
152 unsigned long alloc_iova_fast(struct iova_domain
*iovad
, unsigned long size
,
153 unsigned long limit_pfn
, bool flush_rcache
);
154 struct iova
*reserve_iova(struct iova_domain
*iovad
, unsigned long pfn_lo
,
155 unsigned long pfn_hi
);
156 void copy_reserved_iova(struct iova_domain
*from
, struct iova_domain
*to
);
157 void init_iova_domain(struct iova_domain
*iovad
, unsigned long granule
,
158 unsigned long start_pfn
);
159 int init_iova_flush_queue(struct iova_domain
*iovad
,
160 iova_flush_cb flush_cb
, iova_entry_dtor entry_dtor
);
161 struct iova
*find_iova(struct iova_domain
*iovad
, unsigned long pfn
);
162 void put_iova_domain(struct iova_domain
*iovad
);
163 struct iova
*split_and_remove_iova(struct iova_domain
*iovad
,
164 struct iova
*iova
, unsigned long pfn_lo
, unsigned long pfn_hi
);
165 void free_cpu_cached_iovas(unsigned int cpu
, struct iova_domain
*iovad
);
167 static inline int iova_cache_get(void)
172 static inline void iova_cache_put(void)
176 static inline struct iova
*alloc_iova_mem(void)
181 static inline void free_iova_mem(struct iova
*iova
)
185 static inline void free_iova(struct iova_domain
*iovad
, unsigned long pfn
)
189 static inline void __free_iova(struct iova_domain
*iovad
, struct iova
*iova
)
193 static inline struct iova
*alloc_iova(struct iova_domain
*iovad
,
195 unsigned long limit_pfn
,
201 static inline void free_iova_fast(struct iova_domain
*iovad
,
207 static inline void queue_iova(struct iova_domain
*iovad
,
208 unsigned long pfn
, unsigned long pages
,
213 static inline unsigned long alloc_iova_fast(struct iova_domain
*iovad
,
215 unsigned long limit_pfn
,
221 static inline struct iova
*reserve_iova(struct iova_domain
*iovad
,
222 unsigned long pfn_lo
,
223 unsigned long pfn_hi
)
228 static inline void copy_reserved_iova(struct iova_domain
*from
,
229 struct iova_domain
*to
)
233 static inline void init_iova_domain(struct iova_domain
*iovad
,
234 unsigned long granule
,
235 unsigned long start_pfn
)
239 static inline int init_iova_flush_queue(struct iova_domain
*iovad
,
240 iova_flush_cb flush_cb
,
241 iova_entry_dtor entry_dtor
)
246 static inline struct iova
*find_iova(struct iova_domain
*iovad
,
252 static inline void put_iova_domain(struct iova_domain
*iovad
)
256 static inline struct iova
*split_and_remove_iova(struct iova_domain
*iovad
,
258 unsigned long pfn_lo
,
259 unsigned long pfn_hi
)
264 static inline void free_cpu_cached_iovas(unsigned int cpu
,
265 struct iova_domain
*iovad
)