blob: d521b5b7319c42ebdbade15a45fb41486309611d [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 *
6 * Copyright (C) 2006 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7 *
8 */
9
10#ifndef _IOVA_H_
11#define _IOVA_H_
12
13#include <linux/types.h>
14#include <linux/kernel.h>
15#include <linux/rbtree.h>
16#include <linux/dma-mapping.h>
17
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070018/* IO virtual address start page frame number */
19#define IOVA_START_PFN (1)
20
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070021/* iova structure */
22struct iova {
23 struct rb_node node;
24 unsigned long pfn_hi; /* IOMMU dish out addr hi */
25 unsigned long pfn_lo; /* IOMMU dish out addr lo */
26};
27
28/* holds all the iova translations for a domain */
29struct iova_domain {
30 spinlock_t iova_alloc_lock;/* Lock to protect iova allocation */
31 spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */
32 struct rb_root rbroot; /* iova domain rbtree root */
33 struct rb_node *cached32_node; /* Save last alloced node */
David Millerf6611972008-02-06 01:36:23 -080034 unsigned long dma_32bit_pfn;
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070035};
36
37struct iova *alloc_iova_mem(void);
38void free_iova_mem(struct iova *iova);
39void free_iova(struct iova_domain *iovad, unsigned long pfn);
40void __free_iova(struct iova_domain *iovad, struct iova *iova);
41struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size,
Keshavamurthy, Anil Sf76aec72007-10-21 16:41:58 -070042 unsigned long limit_pfn,
43 bool size_aligned);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070044struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo,
45 unsigned long pfn_hi);
46void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to);
David Millerf6611972008-02-06 01:36:23 -080047void init_iova_domain(struct iova_domain *iovad, unsigned long pfn_32bit);
Keshavamurthy, Anil Sf8de50e2007-10-21 16:41:48 -070048struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn);
49void put_iova_domain(struct iova_domain *iovad);
50
51#endif