Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2006, Intel Corporation. |
| 3 | * |
| 4 | * This file is released under the GPLv2. |
| 5 | * |
mark gross | 98bcef5 | 2008-02-23 15:23:35 -0800 | [diff] [blame] | 6 | * Copyright (C) 2006-2008 Intel Corporation |
| 7 | * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 8 | * |
| 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 Roedel | fb418da | 2017-08-10 16:14:59 +0200 | [diff] [blame^] | 17 | #include <linux/atomic.h> |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 18 | #include <linux/dma-mapping.h> |
| 19 | |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 20 | /* iova structure */ |
| 21 | struct iova { |
| 22 | struct rb_node node; |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 23 | unsigned long pfn_hi; /* Highest allocated pfn */ |
| 24 | unsigned long pfn_lo; /* Lowest allocated pfn */ |
| 25 | }; |
| 26 | |
| 27 | struct iova_magazine; |
| 28 | struct 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 | |
| 33 | struct 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 S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
Joerg Roedel | 42f87e7 | 2017-08-10 14:44:28 +0200 | [diff] [blame] | 40 | struct iova_domain; |
| 41 | |
| 42 | /* Call-Back from IOVA code into IOMMU drivers */ |
| 43 | typedef void (* iova_flush_cb)(struct iova_domain *domain); |
| 44 | |
| 45 | /* Destructor for per-entry data */ |
| 46 | typedef 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 */ |
| 52 | struct iova_fq_entry { |
| 53 | unsigned long iova_pfn; |
| 54 | unsigned long pages; |
| 55 | unsigned long data; |
Joerg Roedel | fb418da | 2017-08-10 16:14:59 +0200 | [diff] [blame^] | 56 | u64 counter; /* Flush counter when this entrie was added */ |
Joerg Roedel | 42f87e7 | 2017-08-10 14:44:28 +0200 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | /* Per-CPU Flush Queue structure */ |
| 60 | struct iova_fq { |
| 61 | struct iova_fq_entry entries[IOVA_FQ_SIZE]; |
| 62 | unsigned head, tail; |
| 63 | }; |
| 64 | |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 65 | /* holds all the iova translations for a domain */ |
| 66 | struct iova_domain { |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 67 | spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */ |
| 68 | struct rb_root rbroot; /* iova domain rbtree root */ |
| 69 | struct rb_node *cached32_node; /* Save last alloced node */ |
Robin Murphy | 0fb5fe8 | 2015-01-12 17:51:16 +0000 | [diff] [blame] | 70 | unsigned long granule; /* pfn granularity for this domain */ |
Robin Murphy | 1b72250 | 2015-01-12 17:51:15 +0000 | [diff] [blame] | 71 | unsigned long start_pfn; /* Lower limit for this domain */ |
David Miller | f661197 | 2008-02-06 01:36:23 -0800 | [diff] [blame] | 72 | unsigned long dma_32bit_pfn; |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 73 | struct iova_rcache rcaches[IOVA_RANGE_CACHE_MAX_SIZE]; /* IOVA range caches */ |
Joerg Roedel | 42f87e7 | 2017-08-10 14:44:28 +0200 | [diff] [blame] | 74 | |
| 75 | iova_flush_cb flush_cb; /* Call-Back function to flush IOMMU |
| 76 | TLBs */ |
| 77 | |
| 78 | iova_entry_dtor entry_dtor; /* IOMMU driver specific destructor for |
| 79 | iova entry */ |
| 80 | |
| 81 | struct iova_fq __percpu *fq; /* Flush Queue */ |
Joerg Roedel | fb418da | 2017-08-10 16:14:59 +0200 | [diff] [blame^] | 82 | |
| 83 | atomic64_t fq_flush_start_cnt; /* Number of TLB flushes that |
| 84 | have been started */ |
| 85 | |
| 86 | atomic64_t fq_flush_finish_cnt; /* Number of TLB flushes that |
| 87 | have been finished */ |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 88 | }; |
| 89 | |
Jiang Liu | a156ef9 | 2014-07-11 14:19:36 +0800 | [diff] [blame] | 90 | static inline unsigned long iova_size(struct iova *iova) |
| 91 | { |
| 92 | return iova->pfn_hi - iova->pfn_lo + 1; |
| 93 | } |
| 94 | |
Robin Murphy | 0fb5fe8 | 2015-01-12 17:51:16 +0000 | [diff] [blame] | 95 | static inline unsigned long iova_shift(struct iova_domain *iovad) |
| 96 | { |
| 97 | return __ffs(iovad->granule); |
| 98 | } |
| 99 | |
| 100 | static inline unsigned long iova_mask(struct iova_domain *iovad) |
| 101 | { |
| 102 | return iovad->granule - 1; |
| 103 | } |
| 104 | |
| 105 | static inline size_t iova_offset(struct iova_domain *iovad, dma_addr_t iova) |
| 106 | { |
| 107 | return iova & iova_mask(iovad); |
| 108 | } |
| 109 | |
| 110 | static inline size_t iova_align(struct iova_domain *iovad, size_t size) |
| 111 | { |
| 112 | return ALIGN(size, iovad->granule); |
| 113 | } |
| 114 | |
| 115 | static inline dma_addr_t iova_dma_addr(struct iova_domain *iovad, struct iova *iova) |
| 116 | { |
| 117 | return (dma_addr_t)iova->pfn_lo << iova_shift(iovad); |
| 118 | } |
| 119 | |
| 120 | static inline unsigned long iova_pfn(struct iova_domain *iovad, dma_addr_t iova) |
| 121 | { |
| 122 | return iova >> iova_shift(iovad); |
| 123 | } |
| 124 | |
Joerg Roedel | b4d8c7a | 2017-03-23 00:06:17 +0100 | [diff] [blame] | 125 | #if IS_ENABLED(CONFIG_IOMMU_IOVA) |
Sakari Ailus | ae1ff3d | 2015-07-13 14:31:28 +0300 | [diff] [blame] | 126 | int iova_cache_get(void); |
| 127 | void iova_cache_put(void); |
Robin Murphy | 85b4545 | 2015-01-12 17:51:14 +0000 | [diff] [blame] | 128 | |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 129 | struct iova *alloc_iova_mem(void); |
| 130 | void free_iova_mem(struct iova *iova); |
| 131 | void free_iova(struct iova_domain *iovad, unsigned long pfn); |
| 132 | void __free_iova(struct iova_domain *iovad, struct iova *iova); |
| 133 | struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size, |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 134 | unsigned long limit_pfn, |
| 135 | bool size_aligned); |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 136 | void free_iova_fast(struct iova_domain *iovad, unsigned long pfn, |
| 137 | unsigned long size); |
Joerg Roedel | 1928210 | 2017-08-10 15:49:44 +0200 | [diff] [blame] | 138 | void queue_iova(struct iova_domain *iovad, |
| 139 | unsigned long pfn, unsigned long pages, |
| 140 | unsigned long data); |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 141 | unsigned long alloc_iova_fast(struct iova_domain *iovad, unsigned long size, |
| 142 | unsigned long limit_pfn); |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 143 | struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo, |
| 144 | unsigned long pfn_hi); |
| 145 | void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to); |
Robin Murphy | 0fb5fe8 | 2015-01-12 17:51:16 +0000 | [diff] [blame] | 146 | void init_iova_domain(struct iova_domain *iovad, unsigned long granule, |
| 147 | unsigned long start_pfn, unsigned long pfn_32bit); |
Joerg Roedel | 42f87e7 | 2017-08-10 14:44:28 +0200 | [diff] [blame] | 148 | int init_iova_flush_queue(struct iova_domain *iovad, |
| 149 | iova_flush_cb flush_cb, iova_entry_dtor entry_dtor); |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 150 | struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn); |
| 151 | void put_iova_domain(struct iova_domain *iovad); |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 152 | struct iova *split_and_remove_iova(struct iova_domain *iovad, |
| 153 | struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi); |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 154 | void free_cpu_cached_iovas(unsigned int cpu, struct iova_domain *iovad); |
Thierry Reding | 21aff52 | 2017-03-20 20:11:28 +0100 | [diff] [blame] | 155 | #else |
| 156 | static inline int iova_cache_get(void) |
| 157 | { |
| 158 | return -ENOTSUPP; |
| 159 | } |
| 160 | |
| 161 | static inline void iova_cache_put(void) |
| 162 | { |
| 163 | } |
| 164 | |
| 165 | static inline struct iova *alloc_iova_mem(void) |
| 166 | { |
| 167 | return NULL; |
| 168 | } |
| 169 | |
| 170 | static inline void free_iova_mem(struct iova *iova) |
| 171 | { |
| 172 | } |
| 173 | |
| 174 | static inline void free_iova(struct iova_domain *iovad, unsigned long pfn) |
| 175 | { |
| 176 | } |
| 177 | |
| 178 | static inline void __free_iova(struct iova_domain *iovad, struct iova *iova) |
| 179 | { |
| 180 | } |
| 181 | |
| 182 | static inline struct iova *alloc_iova(struct iova_domain *iovad, |
| 183 | unsigned long size, |
| 184 | unsigned long limit_pfn, |
| 185 | bool size_aligned) |
| 186 | { |
| 187 | return NULL; |
| 188 | } |
| 189 | |
| 190 | static inline void free_iova_fast(struct iova_domain *iovad, |
| 191 | unsigned long pfn, |
| 192 | unsigned long size) |
| 193 | { |
| 194 | } |
| 195 | |
Joerg Roedel | 1928210 | 2017-08-10 15:49:44 +0200 | [diff] [blame] | 196 | static inline void queue_iova(struct iova_domain *iovad, |
| 197 | unsigned long pfn, unsigned long pages, |
| 198 | unsigned long data) |
| 199 | { |
| 200 | } |
| 201 | |
Thierry Reding | 21aff52 | 2017-03-20 20:11:28 +0100 | [diff] [blame] | 202 | static inline unsigned long alloc_iova_fast(struct iova_domain *iovad, |
| 203 | unsigned long size, |
| 204 | unsigned long limit_pfn) |
| 205 | { |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | static inline struct iova *reserve_iova(struct iova_domain *iovad, |
| 210 | unsigned long pfn_lo, |
| 211 | unsigned long pfn_hi) |
| 212 | { |
| 213 | return NULL; |
| 214 | } |
| 215 | |
| 216 | static inline void copy_reserved_iova(struct iova_domain *from, |
| 217 | struct iova_domain *to) |
| 218 | { |
| 219 | } |
| 220 | |
| 221 | static inline void init_iova_domain(struct iova_domain *iovad, |
| 222 | unsigned long granule, |
| 223 | unsigned long start_pfn, |
| 224 | unsigned long pfn_32bit) |
| 225 | { |
| 226 | } |
| 227 | |
Joerg Roedel | 42f87e7 | 2017-08-10 14:44:28 +0200 | [diff] [blame] | 228 | static inline int init_iova_flush_queue(struct iova_domain *iovad, |
| 229 | iova_flush_cb flush_cb, |
| 230 | iova_entry_dtor entry_dtor) |
| 231 | { |
| 232 | return -ENODEV; |
| 233 | } |
| 234 | |
Thierry Reding | 21aff52 | 2017-03-20 20:11:28 +0100 | [diff] [blame] | 235 | static inline struct iova *find_iova(struct iova_domain *iovad, |
| 236 | unsigned long pfn) |
| 237 | { |
| 238 | return NULL; |
| 239 | } |
| 240 | |
| 241 | static inline void put_iova_domain(struct iova_domain *iovad) |
| 242 | { |
| 243 | } |
| 244 | |
| 245 | static inline struct iova *split_and_remove_iova(struct iova_domain *iovad, |
| 246 | struct iova *iova, |
| 247 | unsigned long pfn_lo, |
| 248 | unsigned long pfn_hi) |
| 249 | { |
| 250 | return NULL; |
| 251 | } |
| 252 | |
| 253 | static inline void free_cpu_cached_iovas(unsigned int cpu, |
| 254 | struct iova_domain *iovad) |
| 255 | { |
| 256 | } |
| 257 | #endif |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 258 | |
| 259 | #endif |