blob: 781b96ac706fcfae04eeba9be925c0e1cc5db879 [file] [log] [blame]
Thomas Gleixner55716d22019-06-01 10:08:42 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -07002/*
3 * Copyright (c) 2006, Intel Corporation.
4 *
mark gross98bcef52008-02-23 15:23:35 -08005 * Copyright (C) 2006-2008 Intel Corporation
6 * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -07007 */
8
9#ifndef _IOVA_H_
10#define _IOVA_H_
11
12#include <linux/types.h>
13#include <linux/kernel.h>
14#include <linux/rbtree.h>
Joerg Roedelfb418da2017-08-10 16:14:59 +020015#include <linux/atomic.h>
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070016#include <linux/dma-mapping.h>
17
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070018/* iova structure */
19struct iova {
20 struct rb_node node;
Omer Peleg9257b4a2016-04-20 11:34:11 +030021 unsigned long pfn_hi; /* Highest allocated pfn */
22 unsigned long pfn_lo; /* Lowest allocated pfn */
23};
24
25struct iova_magazine;
26struct iova_cpu_rcache;
27
28#define IOVA_RANGE_CACHE_MAX_SIZE 6 /* log of max cached IOVA range size (in pages) */
29#define MAX_GLOBAL_MAGS 32 /* magazines per bin */
30
31struct iova_rcache {
32 spinlock_t lock;
33 unsigned long depot_size;
34 struct iova_magazine *depot[MAX_GLOBAL_MAGS];
35 struct iova_cpu_rcache __percpu *cpu_rcaches;
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070036};
37
Joerg Roedel42f87e72017-08-10 14:44:28 +020038struct iova_domain;
39
40/* Call-Back from IOVA code into IOMMU drivers */
41typedef void (* iova_flush_cb)(struct iova_domain *domain);
42
43/* Destructor for per-entry data */
44typedef void (* iova_entry_dtor)(unsigned long data);
45
46/* Number of entries per Flush Queue */
47#define IOVA_FQ_SIZE 256
48
Joerg Roedel9a005a82017-08-10 16:58:18 +020049/* Timeout (in ms) after which entries are flushed from the Flush-Queue */
50#define IOVA_FQ_TIMEOUT 10
51
Joerg Roedel42f87e72017-08-10 14:44:28 +020052/* Flush Queue entry for defered flushing */
53struct iova_fq_entry {
54 unsigned long iova_pfn;
55 unsigned long pages;
56 unsigned long data;
Joerg Roedelfb418da2017-08-10 16:14:59 +020057 u64 counter; /* Flush counter when this entrie was added */
Joerg Roedel42f87e72017-08-10 14:44:28 +020058};
59
60/* Per-CPU Flush Queue structure */
61struct iova_fq {
62 struct iova_fq_entry entries[IOVA_FQ_SIZE];
63 unsigned head, tail;
Joerg Roedel8109c2a2017-08-10 16:31:17 +020064 spinlock_t lock;
Joerg Roedel42f87e72017-08-10 14:44:28 +020065};
66
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070067/* holds all the iova translations for a domain */
68struct iova_domain {
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070069 spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */
70 struct rb_root rbroot; /* iova domain rbtree root */
Robin Murphye60aa7b2017-09-21 16:52:44 +010071 struct rb_node *cached_node; /* Save last alloced node */
72 struct rb_node *cached32_node; /* Save last 32-bit alloced node */
Robin Murphy0fb5fe82015-01-12 17:51:16 +000073 unsigned long granule; /* pfn granularity for this domain */
Robin Murphy1b722502015-01-12 17:51:15 +000074 unsigned long start_pfn; /* Lower limit for this domain */
David Millerf6611972008-02-06 01:36:23 -080075 unsigned long dma_32bit_pfn;
Ganapatrao Kulkarnibee60e92018-09-05 09:57:36 +053076 unsigned long max32_alloc_size; /* Size of last failed allocation */
Jinyu Qi14bd9a62019-04-03 16:35:21 +080077 struct iova_fq __percpu *fq; /* Flush Queue */
78
79 atomic64_t fq_flush_start_cnt; /* Number of TLB flushes that
80 have been started */
81
82 atomic64_t fq_flush_finish_cnt; /* Number of TLB flushes that
83 have been finished */
84
Robin Murphybb68b2f2017-09-21 16:52:46 +010085 struct iova anchor; /* rbtree lookup anchor */
Omer Peleg9257b4a2016-04-20 11:34:11 +030086 struct iova_rcache rcaches[IOVA_RANGE_CACHE_MAX_SIZE]; /* IOVA range caches */
Joerg Roedel42f87e72017-08-10 14:44:28 +020087
88 iova_flush_cb flush_cb; /* Call-Back function to flush IOMMU
89 TLBs */
90
91 iova_entry_dtor entry_dtor; /* IOMMU driver specific destructor for
92 iova entry */
93
Joerg Roedel9a005a82017-08-10 16:58:18 +020094 struct timer_list fq_timer; /* Timer to regularily empty the
95 flush-queues */
96 atomic_t fq_timer_on; /* 1 when timer is active, 0
97 when not */
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070098};
99
Jiang Liua156ef92014-07-11 14:19:36 +0800100static inline unsigned long iova_size(struct iova *iova)
101{
102 return iova->pfn_hi - iova->pfn_lo + 1;
103}
104
Robin Murphy0fb5fe82015-01-12 17:51:16 +0000105static inline unsigned long iova_shift(struct iova_domain *iovad)
106{
107 return __ffs(iovad->granule);
108}
109
110static inline unsigned long iova_mask(struct iova_domain *iovad)
111{
112 return iovad->granule - 1;
113}
114
115static inline size_t iova_offset(struct iova_domain *iovad, dma_addr_t iova)
116{
117 return iova & iova_mask(iovad);
118}
119
120static inline size_t iova_align(struct iova_domain *iovad, size_t size)
121{
122 return ALIGN(size, iovad->granule);
123}
124
125static inline dma_addr_t iova_dma_addr(struct iova_domain *iovad, struct iova *iova)
126{
127 return (dma_addr_t)iova->pfn_lo << iova_shift(iovad);
128}
129
130static inline unsigned long iova_pfn(struct iova_domain *iovad, dma_addr_t iova)
131{
132 return iova >> iova_shift(iovad);
133}
134
Joerg Roedelb4d8c7a2017-03-23 00:06:17 +0100135#if IS_ENABLED(CONFIG_IOMMU_IOVA)
Sakari Ailusae1ff3d2015-07-13 14:31:28 +0300136int iova_cache_get(void);
137void iova_cache_put(void);
Robin Murphy85b45452015-01-12 17:51:14 +0000138
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700139struct iova *alloc_iova_mem(void);
140void free_iova_mem(struct iova *iova);
141void free_iova(struct iova_domain *iovad, unsigned long pfn);
142void __free_iova(struct iova_domain *iovad, struct iova *iova);
143struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size,
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -0700144 unsigned long limit_pfn,
145 bool size_aligned);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300146void free_iova_fast(struct iova_domain *iovad, unsigned long pfn,
147 unsigned long size);
Joerg Roedel19282102017-08-10 15:49:44 +0200148void queue_iova(struct iova_domain *iovad,
149 unsigned long pfn, unsigned long pages,
150 unsigned long data);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300151unsigned long alloc_iova_fast(struct iova_domain *iovad, unsigned long size,
Tomasz Nowicki538d5b32017-09-20 10:52:02 +0200152 unsigned long limit_pfn, bool flush_rcache);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700153struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo,
154 unsigned long pfn_hi);
155void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to);
Robin Murphy0fb5fe82015-01-12 17:51:16 +0000156void init_iova_domain(struct iova_domain *iovad, unsigned long granule,
Zhen Leiaa3ac942017-09-21 16:52:45 +0100157 unsigned long start_pfn);
Joerg Roedel42f87e72017-08-10 14:44:28 +0200158int init_iova_flush_queue(struct iova_domain *iovad,
159 iova_flush_cb flush_cb, iova_entry_dtor entry_dtor);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700160struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn);
161void put_iova_domain(struct iova_domain *iovad);
Jiang Liu75f05562014-02-19 14:07:37 +0800162struct iova *split_and_remove_iova(struct iova_domain *iovad,
163 struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300164void free_cpu_cached_iovas(unsigned int cpu, struct iova_domain *iovad);
Thierry Reding21aff522017-03-20 20:11:28 +0100165#else
166static inline int iova_cache_get(void)
167{
168 return -ENOTSUPP;
169}
170
171static inline void iova_cache_put(void)
172{
173}
174
175static inline struct iova *alloc_iova_mem(void)
176{
177 return NULL;
178}
179
180static inline void free_iova_mem(struct iova *iova)
181{
182}
183
184static inline void free_iova(struct iova_domain *iovad, unsigned long pfn)
185{
186}
187
188static inline void __free_iova(struct iova_domain *iovad, struct iova *iova)
189{
190}
191
192static inline struct iova *alloc_iova(struct iova_domain *iovad,
193 unsigned long size,
194 unsigned long limit_pfn,
195 bool size_aligned)
196{
197 return NULL;
198}
199
200static inline void free_iova_fast(struct iova_domain *iovad,
201 unsigned long pfn,
202 unsigned long size)
203{
204}
205
Joerg Roedel19282102017-08-10 15:49:44 +0200206static inline void queue_iova(struct iova_domain *iovad,
207 unsigned long pfn, unsigned long pages,
208 unsigned long data)
209{
210}
211
Thierry Reding21aff522017-03-20 20:11:28 +0100212static inline unsigned long alloc_iova_fast(struct iova_domain *iovad,
213 unsigned long size,
Tomasz Nowicki538d5b32017-09-20 10:52:02 +0200214 unsigned long limit_pfn,
215 bool flush_rcache)
Thierry Reding21aff522017-03-20 20:11:28 +0100216{
217 return 0;
218}
219
220static inline struct iova *reserve_iova(struct iova_domain *iovad,
221 unsigned long pfn_lo,
222 unsigned long pfn_hi)
223{
224 return NULL;
225}
226
227static inline void copy_reserved_iova(struct iova_domain *from,
228 struct iova_domain *to)
229{
230}
231
232static inline void init_iova_domain(struct iova_domain *iovad,
233 unsigned long granule,
Zhen Leiaa3ac942017-09-21 16:52:45 +0100234 unsigned long start_pfn)
Thierry Reding21aff522017-03-20 20:11:28 +0100235{
236}
237
Joerg Roedel42f87e72017-08-10 14:44:28 +0200238static inline int init_iova_flush_queue(struct iova_domain *iovad,
239 iova_flush_cb flush_cb,
240 iova_entry_dtor entry_dtor)
241{
242 return -ENODEV;
243}
244
Thierry Reding21aff522017-03-20 20:11:28 +0100245static inline struct iova *find_iova(struct iova_domain *iovad,
246 unsigned long pfn)
247{
248 return NULL;
249}
250
251static inline void put_iova_domain(struct iova_domain *iovad)
252{
253}
254
255static inline struct iova *split_and_remove_iova(struct iova_domain *iovad,
256 struct iova *iova,
257 unsigned long pfn_lo,
258 unsigned long pfn_hi)
259{
260 return NULL;
261}
262
263static inline void free_cpu_cached_iovas(unsigned int cpu,
264 struct iova_domain *iovad)
265{
266}
267#endif
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700268
269#endif