| 
									
										
										
										
											2007-10-21 16:41:48 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2006, Intel Corporation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is released under the GPLv2. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-02-23 15:23:35 -08:00
										 |  |  |  * Copyright (C) 2006-2008 Intel Corporation | 
					
						
							|  |  |  |  * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | 
					
						
							| 
									
										
										
										
											2007-10-21 16:41:48 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _IOVA_H_
 | 
					
						
							|  |  |  | #define _IOVA_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/rbtree.h>
 | 
					
						
							|  |  |  | #include <linux/dma-mapping.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* IO virtual address start page frame number */ | 
					
						
							|  |  |  | #define IOVA_START_PFN		(1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* 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 { | 
					
						
							|  |  |  | 	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 */ | 
					
						
							| 
									
										
										
										
											2008-02-06 01:36:23 -08:00
										 |  |  | 	unsigned long	dma_32bit_pfn; | 
					
						
							| 
									
										
										
										
											2007-10-21 16:41:48 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-11 14:19:36 +08:00
										 |  |  | static inline unsigned long iova_size(struct iova *iova) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return iova->pfn_hi - iova->pfn_lo + 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-21 16:41:48 -07:00
										 |  |  | 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, | 
					
						
							| 
									
										
										
										
											2007-10-21 16:41:58 -07:00
										 |  |  | 	unsigned long limit_pfn, | 
					
						
							|  |  |  | 	bool size_aligned); | 
					
						
							| 
									
										
										
										
											2007-10-21 16:41:48 -07:00
										 |  |  | 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); | 
					
						
							| 
									
										
										
										
											2008-02-06 01:36:23 -08:00
										 |  |  | void init_iova_domain(struct iova_domain *iovad, unsigned long pfn_32bit); | 
					
						
							| 
									
										
										
										
											2007-10-21 16:41:48 -07:00
										 |  |  | struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn); | 
					
						
							|  |  |  | void put_iova_domain(struct iova_domain *iovad); | 
					
						
							| 
									
										
										
										
											2014-02-19 14:07:37 +08:00
										 |  |  | struct iova *split_and_remove_iova(struct iova_domain *iovad, | 
					
						
							|  |  |  | 	struct iova *iova, unsigned long pfn_lo, unsigned long pfn_hi); | 
					
						
							| 
									
										
										
										
											2007-10-21 16:41:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |