blob: 913a690cd4b068822f95382dea2051f51c247280 [file] [log] [blame]
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -07001/*
2 * Copyright (c) 2006, Intel Corporation.
3 *
4 * This file is released under the GPLv2.
5 *
mark gross98bcef52008-02-23 15:23:35 -08006 * Copyright (C) 2006-2008 Intel Corporation
7 * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -07008 *
9 */
10
11#ifndef _IOVA_H_
12#define _IOVA_H_
13
14#include <linux/types.h>
15#include <linux/kernel.h>
16#include <linux/rbtree.h>
Joerg Roedelfb418da2017-08-10 16:14:59 +020017#include <linux/atomic.h>
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070018#include <linux/dma-mapping.h>
19
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070020/* iova structure */
21struct iova {
22 struct rb_node node;
Omer Peleg9257b4a2016-04-20 11:34:11 +030023 unsigned long pfn_hi; /* Highest allocated pfn */
24 unsigned long pfn_lo; /* Lowest allocated pfn */
25};
26
27struct iova_magazine;
28struct iova_cpu_rcache;
29
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 */
32
33struct iova_rcache {
34 spinlock_t lock;
35 unsigned long depot_size;
36 struct iova_magazine *depot[MAX_GLOBAL_MAGS];
37 struct iova_cpu_rcache __percpu *cpu_rcaches;
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070038};
39
Joerg Roedel42f87e72017-08-10 14:44:28 +020040struct iova_domain;
41
42/* Call-Back from IOVA code into IOMMU drivers */
43typedef void (* iova_flush_cb)(struct iova_domain *domain);
44
45/* Destructor for per-entry data */
46typedef void (* iova_entry_dtor)(unsigned long data);
47
48/* Number of entries per Flush Queue */
49#define IOVA_FQ_SIZE 256
50
51/* Flush Queue entry for defered flushing */
52struct iova_fq_entry {
53 unsigned long iova_pfn;
54 unsigned long pages;
55 unsigned long data;
Joerg Roedelfb418da2017-08-10 16:14:59 +020056 u64 counter; /* Flush counter when this entrie was added */
Joerg Roedel42f87e72017-08-10 14:44:28 +020057};
58
59/* Per-CPU Flush Queue structure */
60struct iova_fq {
61 struct iova_fq_entry entries[IOVA_FQ_SIZE];
62 unsigned head, tail;
Joerg Roedel8109c2a2017-08-10 16:31:17 +020063 spinlock_t lock;
Joerg Roedel42f87e72017-08-10 14:44:28 +020064};
65
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070066/* holds all the iova translations for a domain */
67struct iova_domain {
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070068 spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */
69 struct rb_root rbroot; /* iova domain rbtree root */
70 struct rb_node *cached32_node; /* Save last alloced node */
Robin Murphy0fb5fe82015-01-12 17:51:16 +000071 unsigned long granule; /* pfn granularity for this domain */
Robin Murphy1b722502015-01-12 17:51:15 +000072 unsigned long start_pfn; /* Lower limit for this domain */
David Millerf6611972008-02-06 01:36:23 -080073 unsigned long dma_32bit_pfn;
Omer Peleg9257b4a2016-04-20 11:34:11 +030074 struct iova_rcache rcaches[IOVA_RANGE_CACHE_MAX_SIZE]; /* IOVA range caches */
Joerg Roedel42f87e72017-08-10 14:44:28 +020075
76 iova_flush_cb flush_cb; /* Call-Back function to flush IOMMU
77 TLBs */
78
79 iova_entry_dtor entry_dtor; /* IOMMU driver specific destructor for
80 iova entry */
81
82 struct iova_fq __percpu *fq; /* Flush Queue */
Joerg Roedelfb418da2017-08-10 16:14:59 +020083
84 atomic64_t fq_flush_start_cnt; /* Number of TLB flushes that
85 have been started */
86
87 atomic64_t fq_flush_finish_cnt; /* Number of TLB flushes that
88 have been finished */
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070089};
90
Jiang Liua156ef92014-07-11 14:19:36 +080091static inline unsigned long iova_size(struct iova *iova)
92{
93 return iova->pfn_hi - iova->pfn_lo + 1;
94}
95
Robin Murphy0fb5fe82015-01-12 17:51:16 +000096static inline unsigned long iova_shift(struct iova_domain *iovad)
97{
98 return __ffs(iovad->granule);
99}
100
101static inline unsigned long iova_mask(struct iova_domain *iovad)
102{
103 return iovad->granule - 1;
104}
105
106static inline size_t iova_offset(struct iova_domain *iovad, dma_addr_t iova)
107{
108 return iova & iova_mask(iovad);
109}
110
111static inline size_t iova_align(struct iova_domain *iovad, size_t size)
112{
113 return ALIGN(size, iovad->granule);
114}
115
116static inline dma_addr_t iova_dma_addr(struct iova_domain *iovad, struct iova *iova)
117{
118 return (dma_addr_t)iova->pfn_lo << iova_shift(iovad);
119}
120
121static inline unsigned long iova_pfn(struct iova_domain *iovad, dma_addr_t iova)
122{
123 return iova >> iova_shift(iovad);
124}
125
Joerg Roedelb4d8c7a2017-03-23 00:06:17 +0100126#if IS_ENABLED(CONFIG_IOMMU_IOVA)
Sakari Ailusae1ff3d2015-07-13 14:31:28 +0300127int iova_cache_get(void);
128void iova_cache_put(void);
Robin Murphy85b45452015-01-12 17:51:14 +0000129
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700130struct iova *alloc_iova_mem(void);
131void free_iova_mem(struct iova *iova);
132void free_iova(struct iova_domain *iovad, unsigned long pfn);
133void __free_iova(struct iova_domain *iovad, struct iova *iova);
134struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size,
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -0700135 unsigned long limit_pfn,
136 bool size_aligned);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300137void free_iova_fast(struct iova_domain *iovad, unsigned long pfn,
138 unsigned long size);
Joerg Roedel19282102017-08-10 15:49:44 +0200139void queue_iova(struct iova_domain *iovad,
140 unsigned long pfn, unsigned long pages,
141 unsigned long data);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300142unsigned long alloc_iova_fast(struct iova_domain *iovad, unsigned long size,
143 unsigned long limit_pfn);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700144struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo,
145 unsigned long pfn_hi);
146void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to);
Robin Murphy0fb5fe82015-01-12 17:51:16 +0000147void init_iova_domain(struct iova_domain *iovad, unsigned long granule,
148 unsigned long start_pfn, unsigned long pfn_32bit);
Joerg Roedel42f87e72017-08-10 14:44:28 +0200149int init_iova_flush_queue(struct iova_domain *iovad,
150 iova_flush_cb flush_cb, iova_entry_dtor entry_dtor);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700151struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn);
152void put_iova_domain(struct iova_domain *iovad);
Jiang Liu75f05562014-02-19 14:07:37 +0800153struct iova *split_and_remove_iova(struct iova_domain *iovad,
154 struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300155void free_cpu_cached_iovas(unsigned int cpu, struct iova_domain *iovad);
Thierry Reding21aff522017-03-20 20:11:28 +0100156#else
157static inline int iova_cache_get(void)
158{
159 return -ENOTSUPP;
160}
161
162static inline void iova_cache_put(void)
163{
164}
165
166static inline struct iova *alloc_iova_mem(void)
167{
168 return NULL;
169}
170
171static inline void free_iova_mem(struct iova *iova)
172{
173}
174
175static inline void free_iova(struct iova_domain *iovad, unsigned long pfn)
176{
177}
178
179static inline void __free_iova(struct iova_domain *iovad, struct iova *iova)
180{
181}
182
183static inline struct iova *alloc_iova(struct iova_domain *iovad,
184 unsigned long size,
185 unsigned long limit_pfn,
186 bool size_aligned)
187{
188 return NULL;
189}
190
191static inline void free_iova_fast(struct iova_domain *iovad,
192 unsigned long pfn,
193 unsigned long size)
194{
195}
196
Joerg Roedel19282102017-08-10 15:49:44 +0200197static inline void queue_iova(struct iova_domain *iovad,
198 unsigned long pfn, unsigned long pages,
199 unsigned long data)
200{
201}
202
Thierry Reding21aff522017-03-20 20:11:28 +0100203static inline unsigned long alloc_iova_fast(struct iova_domain *iovad,
204 unsigned long size,
205 unsigned long limit_pfn)
206{
207 return 0;
208}
209
210static inline struct iova *reserve_iova(struct iova_domain *iovad,
211 unsigned long pfn_lo,
212 unsigned long pfn_hi)
213{
214 return NULL;
215}
216
217static inline void copy_reserved_iova(struct iova_domain *from,
218 struct iova_domain *to)
219{
220}
221
222static inline void init_iova_domain(struct iova_domain *iovad,
223 unsigned long granule,
224 unsigned long start_pfn,
225 unsigned long pfn_32bit)
226{
227}
228
Joerg Roedel42f87e72017-08-10 14:44:28 +0200229static inline int init_iova_flush_queue(struct iova_domain *iovad,
230 iova_flush_cb flush_cb,
231 iova_entry_dtor entry_dtor)
232{
233 return -ENODEV;
234}
235
Thierry Reding21aff522017-03-20 20:11:28 +0100236static inline struct iova *find_iova(struct iova_domain *iovad,
237 unsigned long pfn)
238{
239 return NULL;
240}
241
242static inline void put_iova_domain(struct iova_domain *iovad)
243{
244}
245
246static inline struct iova *split_and_remove_iova(struct iova_domain *iovad,
247 struct iova *iova,
248 unsigned long pfn_lo,
249 unsigned long pfn_hi)
250{
251 return NULL;
252}
253
254static inline void free_cpu_cached_iovas(unsigned int cpu,
255 struct iova_domain *iovad)
256{
257}
258#endif
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700259
260#endif