Blame view

include/linux/iova.h 1.67 KB
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
1
2
3
4
5
  /*
   * Copyright (c) 2006, Intel Corporation.
   *
   * This file is released under the GPLv2.
   *
98bcef56c   mark gross   copyright owner a...
6
7
   * Copyright (C) 2006-2008 Intel Corporation
   * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
8
9
10
11
12
13
14
15
16
17
   *
   */
  
  #ifndef _IOVA_H_
  #define _IOVA_H_
  
  #include <linux/types.h>
  #include <linux/kernel.h>
  #include <linux/rbtree.h>
  #include <linux/dma-mapping.h>
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
18
19
  /* IO virtual address start page frame number */
  #define IOVA_START_PFN		(1)
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
20
21
22
23
24
25
26
27
28
  /* iova structure */
  struct iova {
  	struct rb_node	node;
  	unsigned long	pfn_hi; /* IOMMU dish out addr hi */
  	unsigned long	pfn_lo; /* IOMMU dish out addr lo */
  };
  
  /* holds all the iova translations for a domain */
  struct iova_domain {
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
29
30
31
  	spinlock_t	iova_rbtree_lock; /* Lock to protect update of rbtree */
  	struct rb_root	rbroot;		/* iova domain rbtree root */
  	struct rb_node	*cached32_node; /* Save last alloced node */
f661197e0   David Miller   Genericizing iova...
32
  	unsigned long	dma_32bit_pfn;
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
33
34
35
36
37
38
39
  };
  
  struct iova *alloc_iova_mem(void);
  void free_iova_mem(struct iova *iova);
  void free_iova(struct iova_domain *iovad, unsigned long pfn);
  void __free_iova(struct iova_domain *iovad, struct iova *iova);
  struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size,
f76aec76e   Keshavamurthy, Anil S   intel-iommu: opti...
40
41
  	unsigned long limit_pfn,
  	bool size_aligned);
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
42
43
44
  struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo,
  	unsigned long pfn_hi);
  void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to);
f661197e0   David Miller   Genericizing iova...
45
  void init_iova_domain(struct iova_domain *iovad, unsigned long pfn_32bit);
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
46
47
  struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn);
  void put_iova_domain(struct iova_domain *iovad);
75f05569d   Jiang Liu   iommu/vt-d: Updat...
48
49
  struct iova *split_and_remove_iova(struct iova_domain *iovad,
  	struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi);
f8de50eb6   Keshavamurthy, Anil S   Intel IOMMU: IOVA...
50
51
  
  #endif