blob: f27bb2c62fca5cf19a74f3f03c64b8cb9036bd19 [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>
17#include <linux/dma-mapping.h>
18
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070019/* iova structure */
20struct iova {
21 struct rb_node node;
Omer Peleg9257b4a2016-04-20 11:34:11 +030022 unsigned long pfn_hi; /* Highest allocated pfn */
23 unsigned long pfn_lo; /* Lowest allocated pfn */
24};
25
26struct iova_magazine;
27struct 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
32struct 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 Sf8de50e2007-10-21 16:41:48 -070037};
38
39/* holds all the iova translations for a domain */
40struct iova_domain {
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070041 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 Murphy0fb5fe82015-01-12 17:51:16 +000044 unsigned long granule; /* pfn granularity for this domain */
Robin Murphy1b722502015-01-12 17:51:15 +000045 unsigned long start_pfn; /* Lower limit for this domain */
David Millerf6611972008-02-06 01:36:23 -080046 unsigned long dma_32bit_pfn;
Omer Peleg9257b4a2016-04-20 11:34:11 +030047 struct iova_rcache rcaches[IOVA_RANGE_CACHE_MAX_SIZE]; /* IOVA range caches */
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070048};
49
Jiang Liua156ef92014-07-11 14:19:36 +080050static inline unsigned long iova_size(struct iova *iova)
51{
52 return iova->pfn_hi - iova->pfn_lo + 1;
53}
54
Robin Murphy0fb5fe82015-01-12 17:51:16 +000055static inline unsigned long iova_shift(struct iova_domain *iovad)
56{
57 return __ffs(iovad->granule);
58}
59
60static inline unsigned long iova_mask(struct iova_domain *iovad)
61{
62 return iovad->granule - 1;
63}
64
65static inline size_t iova_offset(struct iova_domain *iovad, dma_addr_t iova)
66{
67 return iova & iova_mask(iovad);
68}
69
70static inline size_t iova_align(struct iova_domain *iovad, size_t size)
71{
72 return ALIGN(size, iovad->granule);
73}
74
75static 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
80static inline unsigned long iova_pfn(struct iova_domain *iovad, dma_addr_t iova)
81{
82 return iova >> iova_shift(iovad);
83}
84
Sakari Ailusae1ff3d2015-07-13 14:31:28 +030085int iova_cache_get(void);
86void iova_cache_put(void);
Robin Murphy85b45452015-01-12 17:51:14 +000087
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070088struct iova *alloc_iova_mem(void);
89void free_iova_mem(struct iova *iova);
90void free_iova(struct iova_domain *iovad, unsigned long pfn);
91void __free_iova(struct iova_domain *iovad, struct iova *iova);
92struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size,
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -070093 unsigned long limit_pfn,
94 bool size_aligned);
Omer Peleg9257b4a2016-04-20 11:34:11 +030095void free_iova_fast(struct iova_domain *iovad, unsigned long pfn,
96 unsigned long size);
97unsigned long alloc_iova_fast(struct iova_domain *iovad, unsigned long size,
98 unsigned long limit_pfn);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070099struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo,
100 unsigned long pfn_hi);
101void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to);
Robin Murphy0fb5fe82015-01-12 17:51:16 +0000102void init_iova_domain(struct iova_domain *iovad, unsigned long granule,
103 unsigned long start_pfn, unsigned long pfn_32bit);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700104struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn);
105void put_iova_domain(struct iova_domain *iovad);
Jiang Liu75f05562014-02-19 14:07:37 +0800106struct iova *split_and_remove_iova(struct iova_domain *iovad,
107 struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi);
Omer Peleg9257b4a2016-04-20 11:34:11 +0300108void free_cpu_cached_iovas(unsigned int cpu, struct iova_domain *iovad);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -0700109
110#endif