blob: 591b19626b4653b4bd391e68bc969107b54ec0ab [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;
22 unsigned long pfn_hi; /* IOMMU dish out addr hi */
23 unsigned long pfn_lo; /* IOMMU dish out addr lo */
24};
25
26/* holds all the iova translations for a domain */
27struct iova_domain {
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070028 spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */
29 struct rb_root rbroot; /* iova domain rbtree root */
30 struct rb_node *cached32_node; /* Save last alloced node */
Robin Murphy1b722502015-01-12 17:51:15 +000031 unsigned long start_pfn; /* Lower limit for this domain */
David Millerf6611972008-02-06 01:36:23 -080032 unsigned long dma_32bit_pfn;
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070033};
34
Jiang Liua156ef92014-07-11 14:19:36 +080035static inline unsigned long iova_size(struct iova *iova)
36{
37 return iova->pfn_hi - iova->pfn_lo + 1;
38}
39
Robin Murphy85b45452015-01-12 17:51:14 +000040int iommu_iova_cache_init(void);
41void iommu_iova_cache_destroy(void);
42
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070043struct iova *alloc_iova_mem(void);
44void free_iova_mem(struct iova *iova);
45void free_iova(struct iova_domain *iovad, unsigned long pfn);
46void __free_iova(struct iova_domain *iovad, struct iova *iova);
47struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size,
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -070048 unsigned long limit_pfn,
49 bool size_aligned);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070050struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo,
51 unsigned long pfn_hi);
52void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to);
Robin Murphy1b722502015-01-12 17:51:15 +000053void init_iova_domain(struct iova_domain *iovad, unsigned long start_pfn,
54 unsigned long pfn_32bit);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070055struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn);
56void put_iova_domain(struct iova_domain *iovad);
Jiang Liu75f05562014-02-19 14:07:37 +080057struct iova *split_and_remove_iova(struct iova_domain *iovad,
58 struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070059
60#endif