diff options
Diffstat (limited to 'include/linux/swiotlb.h')
| -rw-r--r-- | include/linux/swiotlb.h | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/swiotlb.h b/include/linux/swiotlb.h index 569272871375..f6c3638255d5 100644 --- a/include/linux/swiotlb.h +++ b/include/linux/swiotlb.h @@ -73,6 +73,9 @@ extern enum swiotlb_force swiotlb_force;   * @end:	The end address of the swiotlb memory pool. Used to do a quick   *		range check to see if the memory was in fact allocated by this   *		API. + * @vaddr:	The vaddr of the swiotlb memory pool. The swiotlb memory pool + *		may be remapped in the memory encrypted case and store virtual + *		address for bounce buffer operation.   * @nslabs:	The number of IO TLB blocks (in groups of 64) between @start and   *		@end. For default swiotlb, this is command line adjustable via   *		setup_io_tlb_npages. @@ -92,6 +95,7 @@ extern enum swiotlb_force swiotlb_force;  struct io_tlb_mem {  	phys_addr_t start;  	phys_addr_t end; +	void *vaddr;  	unsigned long nslabs;  	unsigned long used;  	unsigned int index; @@ -186,4 +190,6 @@ static inline bool is_swiotlb_for_alloc(struct device *dev)  }  #endif /* CONFIG_DMA_RESTRICTED_POOL */ +extern phys_addr_t swiotlb_unencrypted_base; +  #endif /* __LINUX_SWIOTLB_H */  |