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> |
| 17 | #include <linux/dma-mapping.h> |
| 18 | |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 19 | /* iova structure */ |
| 20 | struct iova { |
| 21 | struct rb_node node; |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 22 | unsigned long pfn_hi; /* Highest allocated pfn */ |
| 23 | unsigned long pfn_lo; /* Lowest allocated pfn */ |
| 24 | }; |
| 25 | |
| 26 | struct iova_magazine; |
| 27 | struct iova_cpu_rcache; |
| 28 | |
| 29 | #define IOVA_RANGE_CACHE_MAX_SIZE 6 /* log of max cached IOVA range size (in pages) */ |
| 30 | #define MAX_GLOBAL_MAGS 32 /* magazines per bin */ |
| 31 | |
| 32 | struct iova_rcache { |
| 33 | spinlock_t lock; |
| 34 | unsigned long depot_size; |
| 35 | struct iova_magazine *depot[MAX_GLOBAL_MAGS]; |
| 36 | struct iova_cpu_rcache __percpu *cpu_rcaches; |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
| 39 | /* holds all the iova translations for a domain */ |
| 40 | struct iova_domain { |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 41 | spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */ |
| 42 | struct rb_root rbroot; /* iova domain rbtree root */ |
| 43 | struct rb_node *cached32_node; /* Save last alloced node */ |
Robin Murphy | 0fb5fe8 | 2015-01-12 17:51:16 +0000 | [diff] [blame] | 44 | unsigned long granule; /* pfn granularity for this domain */ |
Robin Murphy | 1b72250 | 2015-01-12 17:51:15 +0000 | [diff] [blame] | 45 | unsigned long start_pfn; /* Lower limit for this domain */ |
David Miller | f661197 | 2008-02-06 01:36:23 -0800 | [diff] [blame] | 46 | unsigned long dma_32bit_pfn; |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 47 | struct iova_rcache rcaches[IOVA_RANGE_CACHE_MAX_SIZE]; /* IOVA range caches */ |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
Jiang Liu | a156ef9 | 2014-07-11 14:19:36 +0800 | [diff] [blame] | 50 | static inline unsigned long iova_size(struct iova *iova) |
| 51 | { |
| 52 | return iova->pfn_hi - iova->pfn_lo + 1; |
| 53 | } |
| 54 | |
Robin Murphy | 0fb5fe8 | 2015-01-12 17:51:16 +0000 | [diff] [blame] | 55 | static inline unsigned long iova_shift(struct iova_domain *iovad) |
| 56 | { |
| 57 | return __ffs(iovad->granule); |
| 58 | } |
| 59 | |
| 60 | static inline unsigned long iova_mask(struct iova_domain *iovad) |
| 61 | { |
| 62 | return iovad->granule - 1; |
| 63 | } |
| 64 | |
| 65 | static inline size_t iova_offset(struct iova_domain *iovad, dma_addr_t iova) |
| 66 | { |
| 67 | return iova & iova_mask(iovad); |
| 68 | } |
| 69 | |
| 70 | static inline size_t iova_align(struct iova_domain *iovad, size_t size) |
| 71 | { |
| 72 | return ALIGN(size, iovad->granule); |
| 73 | } |
| 74 | |
| 75 | static inline dma_addr_t iova_dma_addr(struct iova_domain *iovad, struct iova *iova) |
| 76 | { |
| 77 | return (dma_addr_t)iova->pfn_lo << iova_shift(iovad); |
| 78 | } |
| 79 | |
| 80 | static inline unsigned long iova_pfn(struct iova_domain *iovad, dma_addr_t iova) |
| 81 | { |
| 82 | return iova >> iova_shift(iovad); |
| 83 | } |
| 84 | |
Sakari Ailus | ae1ff3d | 2015-07-13 14:31:28 +0300 | [diff] [blame] | 85 | int iova_cache_get(void); |
| 86 | void iova_cache_put(void); |
Robin Murphy | 85b4545 | 2015-01-12 17:51:14 +0000 | [diff] [blame] | 87 | |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 88 | struct iova *alloc_iova_mem(void); |
| 89 | void free_iova_mem(struct iova *iova); |
| 90 | void free_iova(struct iova_domain *iovad, unsigned long pfn); |
| 91 | void __free_iova(struct iova_domain *iovad, struct iova *iova); |
| 92 | struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size, |
Keshavamurthy, Anil S | f76aec7 | 2007-10-21 16:41:58 -0700 | [diff] [blame] | 93 | unsigned long limit_pfn, |
| 94 | bool size_aligned); |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 95 | void free_iova_fast(struct iova_domain *iovad, unsigned long pfn, |
| 96 | unsigned long size); |
| 97 | unsigned long alloc_iova_fast(struct iova_domain *iovad, unsigned long size, |
| 98 | unsigned long limit_pfn); |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 99 | struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo, |
| 100 | unsigned long pfn_hi); |
| 101 | void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to); |
Robin Murphy | 0fb5fe8 | 2015-01-12 17:51:16 +0000 | [diff] [blame] | 102 | void init_iova_domain(struct iova_domain *iovad, unsigned long granule, |
| 103 | unsigned long start_pfn, unsigned long pfn_32bit); |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 104 | struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn); |
| 105 | void put_iova_domain(struct iova_domain *iovad); |
Jiang Liu | 75f0556 | 2014-02-19 14:07:37 +0800 | [diff] [blame] | 106 | struct iova *split_and_remove_iova(struct iova_domain *iovad, |
| 107 | struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi); |
Omer Peleg | 9257b4a | 2016-04-20 11:34:11 +0300 | [diff] [blame] | 108 | void free_cpu_cached_iovas(unsigned int cpu, struct iova_domain *iovad); |
Keshavamurthy, Anil S | f8de50e | 2007-10-21 16:41:48 -0700 | [diff] [blame] | 109 | |
| 110 | #endif |