blob: 928442dda565f147b501dca93601731a92581b2d [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
Joerg Roedel9a005a82017-08-10 16:58:18 +020051/* Timeout (in ms) after which entries are flushed from the Flush-Queue */
52#define IOVA_FQ_TIMEOUT 10
53
Joerg Roedel42f87e72017-08-10 14:44:28 +020054/* Flush Queue entry for defered flushing */
55struct iova_fq_entry {
56 unsigned long iova_pfn;
57 unsigned long pages;
58 unsigned long data;
Joerg Roedelfb418da2017-08-10 16:14:59 +020059 u64 counter; /* Flush counter when this entrie was added */
Joerg Roedel42f87e72017-08-10 14:44:28 +020060};
61
62/* Per-CPU Flush Queue structure */
63struct iova_fq {
64 struct iova_fq_entry entries[IOVA_FQ_SIZE];
65 unsigned head, tail;
Joerg Roedel8109c2a2017-08-10 16:31:17 +020066 spinlock_t lock;
Joerg Roedel42f87e72017-08-10 14:44:28 +020067};
68
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070069/* holds all the iova translations for a domain */
70struct iova_domain {
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070071 spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */
72 struct rb_root rbroot; /* iova domain rbtree root */
Robin Murphye60aa7b2017-09-21 16:52:44 +010073 struct rb_node *cached_node; /* Save last alloced node */
74 struct rb_node *cached32_node; /* Save last 32-bit alloced node */
Robin Murphy0fb5fe82015-01-12 17:51:16 +000075 unsigned long granule; /* pfn granularity for this domain */
Robin Murphy1b722502015-01-12 17:51:15 +000076 unsigned long start_pfn; /* Lower limit for this domain */
David Millerf6611972008-02-06 01:36:23 -080077 unsigned long dma_32bit_pfn;
Robin Murphybb68b2f2017-09-21 16:52:46 +010078 struct iova anchor; /* rbtree lookup anchor */
Omer Peleg9257b4a2016-04-20 11:34:11 +030079 struct iova_rcache rcaches[IOVA_RANGE_CACHE_MAX_SIZE]; /* IOVA range caches */
Joerg Roedel42f87e72017-08-10 14:44:28 +020080
81 iova_flush_cb flush_cb; /* Call-Back function to flush IOMMU
82 TLBs */
83
84 iova_entry_dtor entry_dtor; /* IOMMU driver specific destructor for
85 iova entry */
86
87 struct iova_fq __percpu *fq; /* Flush Queue */
Joerg Roedelfb418da2017-08-10 16:14:59 +020088
89 atomic64_t fq_flush_start_cnt; /* Number of TLB flushes that
90 have been started */
91
92 atomic64_t fq_flush_finish_cnt; /* Number of TLB flushes that
93 have been finished */
Joerg Roedel9a005a82017-08-10 16:58:18 +020094
95 struct timer_list fq_timer; /* Timer to regularily empty the
96 flush-queues */
97 atomic_t fq_timer_on; /* 1 when timer is active, 0
98 when not */
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070099};
100
Jiang Liua156ef92014-07-11 14:19:36 +0800101static inline unsigned long iova_size(struct iova *iova)
102{
103 return iova->pfn_hi - iova->pfn_lo + 1;
104}
105
Robin Murphy0fb5fe82015-01-12 17:51:16 +0000106static inline unsigned long iova_shift(struct iova_domain *iovad)
107{
108 return __ffs(iovad->granule);
109}
110
111static inline unsigned long iova_mask(struct iova_domain *iovad)
112{
113 return iovad->granule - 1;
114}
115
116static inline size_t iova_offset(struct iova_domain *iovad, dma_addr_t iova)
117{
118 return iova & iova_mask(iovad);
119}
120
121static inline size_t iova_align(struct iova_domain *iovad, size_t size)
122{
123 return ALIGN(size, iovad->granule);
124}
125
126static inline dma_addr_t iova_dma_addr(struct iova_domain *iovad, struct iova *iova)
127{
128 return (dma_addr_t)iova->pfn_lo << iova_shift(iovad);
129}
130
131static inline unsigned long iova_pfn(struct iova_domain *iovad, dma_addr_t iova)
132{
133 return iova >> iova_shift(iovad);
134}
135
Joerg Roedelb4d8c7a2017-03-23 00:06:17 +0100136#if IS_ENABLED(CONFIG_IOMMU_IOVA)
Sakari Ailusae1ff3d2015-07-13 14:31:28 +0300137int iova_cache_get(void);
138void iova_cache_put(void);
Robin Murphy85b45452015-01-12 17:51:14 +0000139
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700140struct iova *alloc_iova_mem(void);
141void free_iova_mem(struct iova *iova);
142void free_iova(struct iova_domain *iovad, unsigned long pfn);
143void __free_iova(struct iova_domain *iovad, struct iova *iova);
144struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size,
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -0700145 unsigned long limit_pfn,
146 bool size_aligned);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300147void free_iova_fast(struct iova_domain *iovad, unsigned long pfn,
148 unsigned long size);
Joerg Roedel19282102017-08-10 15:49:44 +0200149void queue_iova(struct iova_domain *iovad,
150 unsigned long pfn, unsigned long pages,
151 unsigned long data);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300152unsigned long alloc_iova_fast(struct iova_domain *iovad, unsigned long size,
Tomasz Nowicki538d5b32017-09-20 10:52:02 +0200153 unsigned long limit_pfn, bool flush_rcache);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700154struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo,
155 unsigned long pfn_hi);
156void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to);
Robin Murphy0fb5fe82015-01-12 17:51:16 +0000157void init_iova_domain(struct iova_domain *iovad, unsigned long granule,
Zhen Leiaa3ac942017-09-21 16:52:45 +0100158 unsigned long start_pfn);
Joerg Roedel42f87e72017-08-10 14:44:28 +0200159int init_iova_flush_queue(struct iova_domain *iovad,
160 iova_flush_cb flush_cb, iova_entry_dtor entry_dtor);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700161struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn);
162void put_iova_domain(struct iova_domain *iovad);
Jiang Liu75f05562014-02-19 14:07:37 +0800163struct iova *split_and_remove_iova(struct iova_domain *iovad,
164 struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300165void free_cpu_cached_iovas(unsigned int cpu, struct iova_domain *iovad);
Thierry Reding21aff522017-03-20 20:11:28 +0100166#else
167static inline int iova_cache_get(void)
168{
169 return -ENOTSUPP;
170}
171
172static inline void iova_cache_put(void)
173{
174}
175
176static inline struct iova *alloc_iova_mem(void)
177{
178 return NULL;
179}
180
181static inline void free_iova_mem(struct iova *iova)
182{
183}
184
185static inline void free_iova(struct iova_domain *iovad, unsigned long pfn)
186{
187}
188
189static inline void __free_iova(struct iova_domain *iovad, struct iova *iova)
190{
191}
192
193static inline struct iova *alloc_iova(struct iova_domain *iovad,
194 unsigned long size,
195 unsigned long limit_pfn,
196 bool size_aligned)
197{
198 return NULL;
199}
200
201static inline void free_iova_fast(struct iova_domain *iovad,
202 unsigned long pfn,
203 unsigned long size)
204{
205}
206
Joerg Roedel19282102017-08-10 15:49:44 +0200207static inline void queue_iova(struct iova_domain *iovad,
208 unsigned long pfn, unsigned long pages,
209 unsigned long data)
210{
211}
212
Thierry Reding21aff522017-03-20 20:11:28 +0100213static inline unsigned long alloc_iova_fast(struct iova_domain *iovad,
214 unsigned long size,
Tomasz Nowicki538d5b32017-09-20 10:52:02 +0200215 unsigned long limit_pfn,
216 bool flush_rcache)
Thierry Reding21aff522017-03-20 20:11:28 +0100217{
218 return 0;
219}
220
221static inline struct iova *reserve_iova(struct iova_domain *iovad,
222 unsigned long pfn_lo,
223 unsigned long pfn_hi)
224{
225 return NULL;
226}
227
228static inline void copy_reserved_iova(struct iova_domain *from,
229 struct iova_domain *to)
230{
231}
232
233static inline void init_iova_domain(struct iova_domain *iovad,
234 unsigned long granule,
Zhen Leiaa3ac942017-09-21 16:52:45 +0100235 unsigned long start_pfn)
Thierry Reding21aff522017-03-20 20:11:28 +0100236{
237}
238
Joerg Roedel42f87e72017-08-10 14:44:28 +0200239static inline int init_iova_flush_queue(struct iova_domain *iovad,
240 iova_flush_cb flush_cb,
241 iova_entry_dtor entry_dtor)
242{
243 return -ENODEV;
244}
245
Thierry Reding21aff522017-03-20 20:11:28 +0100246static inline struct iova *find_iova(struct iova_domain *iovad,
247 unsigned long pfn)
248{
249 return NULL;
250}
251
252static inline void put_iova_domain(struct iova_domain *iovad)
253{
254}
255
256static inline struct iova *split_and_remove_iova(struct iova_domain *iovad,
257 struct iova *iova,
258 unsigned long pfn_lo,
259 unsigned long pfn_hi)
260{
261 return NULL;
262}
263
264static inline void free_cpu_cached_iovas(unsigned int cpu,
265 struct iova_domain *iovad)
266{
267}
268#endif
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700269
270#endif