diff options
| author | Mark Brown <broonie@kernel.org> | 2020-12-11 17:49:01 +0000 | 
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2020-12-11 17:49:01 +0000 | 
| commit | 3e98a021cc85e7d52acdd1eae8a988e975ec5bf9 (patch) | |
| tree | cecfac58b9550a602555a02a9d583ed0f3378b38 /kernel/dma/swiotlb.c | |
| parent | 58f7553fa424fd0fd74e8b796d50c66014cebebe (diff) | |
| parent | 2fee9583198eb97b5351feda7bd825e0f778385c (diff) | |
Merge remote-tracking branch 'spi/for-5.11' into spi-next
Diffstat (limited to 'kernel/dma/swiotlb.c')
| -rw-r--r-- | kernel/dma/swiotlb.c | 22 | 
1 files changed, 11 insertions, 11 deletions
| diff --git a/kernel/dma/swiotlb.c b/kernel/dma/swiotlb.c index b4eea0abc3f0..781b9dca197c 100644 --- a/kernel/dma/swiotlb.c +++ b/kernel/dma/swiotlb.c @@ -229,6 +229,7 @@ int __init swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose)  		io_tlb_orig_addr[i] = INVALID_PHYS_ADDR;  	}  	io_tlb_index = 0; +	no_iotlb_memory = false;  	if (verbose)  		swiotlb_print_info(); @@ -260,9 +261,11 @@ swiotlb_init(int verbose)  	if (vstart && !swiotlb_init_with_tbl(vstart, io_tlb_nslabs, verbose))  		return; -	if (io_tlb_start) +	if (io_tlb_start) {  		memblock_free_early(io_tlb_start,  				    PAGE_ALIGN(io_tlb_nslabs << IO_TLB_SHIFT)); +		io_tlb_start = 0; +	}  	pr_warn("Cannot allocate buffer");  	no_iotlb_memory = true;  } @@ -360,6 +363,7 @@ swiotlb_late_init_with_tbl(char *tlb, unsigned long nslabs)  		io_tlb_orig_addr[i] = INVALID_PHYS_ADDR;  	}  	io_tlb_index = 0; +	no_iotlb_memory = false;  	swiotlb_print_info(); @@ -441,14 +445,11 @@ static void swiotlb_bounce(phys_addr_t orig_addr, phys_addr_t tlb_addr,  	}  } -phys_addr_t swiotlb_tbl_map_single(struct device *hwdev, -				   dma_addr_t tbl_dma_addr, -				   phys_addr_t orig_addr, -				   size_t mapping_size, -				   size_t alloc_size, -				   enum dma_data_direction dir, -				   unsigned long attrs) +phys_addr_t swiotlb_tbl_map_single(struct device *hwdev, phys_addr_t orig_addr, +		size_t mapping_size, size_t alloc_size, +		enum dma_data_direction dir, unsigned long attrs)  { +	dma_addr_t tbl_dma_addr = phys_to_dma_unencrypted(hwdev, io_tlb_start);  	unsigned long flags;  	phys_addr_t tlb_addr;  	unsigned int nslots, stride, index, wrap; @@ -667,9 +668,8 @@ dma_addr_t swiotlb_map(struct device *dev, phys_addr_t paddr, size_t size,  	trace_swiotlb_bounced(dev, phys_to_dma(dev, paddr), size,  			      swiotlb_force); -	swiotlb_addr = swiotlb_tbl_map_single(dev, -			phys_to_dma_unencrypted(dev, io_tlb_start), -			paddr, size, size, dir, attrs); +	swiotlb_addr = swiotlb_tbl_map_single(dev, paddr, size, size, dir, +			attrs);  	if (swiotlb_addr == (phys_addr_t)DMA_MAPPING_ERROR)  		return DMA_MAPPING_ERROR; | 
