2019-05-19 15:08:55 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* Dynamic DMA mapping support.
|
|
|
|
*
|
2007-02-06 05:51:25 +03:00
|
|
|
* This implementation is a fallback for platforms that do not support
|
2005-04-17 02:20:36 +04:00
|
|
|
* I/O TLBs (aka DMA address translation hardware).
|
|
|
|
* Copyright (C) 2000 Asit Mallick <Asit.K.Mallick@intel.com>
|
|
|
|
* Copyright (C) 2000 Goutham Rao <goutham.rao@intel.com>
|
|
|
|
* Copyright (C) 2000, 2003 Hewlett-Packard Co
|
|
|
|
* David Mosberger-Tang <davidm@hpl.hp.com>
|
|
|
|
*
|
|
|
|
* 03/05/07 davidm Switch from PCI-DMA to generic device DMA API.
|
|
|
|
* 00/12/13 davidm Rename to swiotlb.c and add mark_clean() to avoid
|
|
|
|
* unnecessary i-cache flushing.
|
2005-09-30 01:45:24 +04:00
|
|
|
* 04/07/.. ak Better overflow handling. Assorted fixes.
|
|
|
|
* 05/09/10 linville Add support for syncing ranges, support syncing for
|
|
|
|
* DMA_BIDIRECTIONAL mappings, miscellaneous cleanup.
|
2008-12-22 21:26:09 +03:00
|
|
|
* 08/12/11 beckyb Add highmem support
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
|
2018-07-11 02:22:22 +03:00
|
|
|
#define pr_fmt(fmt) "software IO TLB: " fmt
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/cache.h>
|
2022-01-24 19:40:18 +03:00
|
|
|
#include <linux/cc_platform.h>
|
|
|
|
#include <linux/ctype.h>
|
|
|
|
#include <linux/debugfs.h>
|
2018-01-10 18:21:13 +03:00
|
|
|
#include <linux/dma-direct.h>
|
2020-09-22 16:36:11 +03:00
|
|
|
#include <linux/dma-map-ops.h>
|
2011-11-17 06:29:17 +04:00
|
|
|
#include <linux/export.h>
|
2022-01-24 19:40:18 +03:00
|
|
|
#include <linux/gfp.h>
|
|
|
|
#include <linux/highmem.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/iommu-helper.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/memblock.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/pfn.h>
|
|
|
|
#include <linux/scatterlist.h>
|
|
|
|
#include <linux/set_memory.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/string.h>
|
2008-12-16 23:17:27 +03:00
|
|
|
#include <linux/swiotlb.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/types.h>
|
2021-06-19 06:40:41 +03:00
|
|
|
#ifdef CONFIG_DMA_RESTRICTED_POOL
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_fdt.h>
|
|
|
|
#include <linux/of_reserved_mem.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2013-10-23 15:32:04 +04:00
|
|
|
#define CREATE_TRACE_POINTS
|
2013-09-05 00:11:05 +04:00
|
|
|
#include <trace/events/swiotlb.h>
|
|
|
|
|
2005-09-06 21:20:49 +04:00
|
|
|
#define SLABS_PER_PAGE (1 << (PAGE_SHIFT - IO_TLB_SHIFT))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Minimum IO TLB size to bother booting with. Systems with mainly
|
|
|
|
* 64bit capable cards will only lightly use the swiotlb. If we can't
|
|
|
|
* allocate a contiguous 1MB, we're probably in trouble anyway.
|
|
|
|
*/
|
|
|
|
#define IO_TLB_MIN_SLABS ((1<<20) >> IO_TLB_SHIFT)
|
|
|
|
|
2021-03-18 19:14:22 +03:00
|
|
|
#define INVALID_PHYS_ADDR (~(phys_addr_t)0)
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2021-03-18 19:14:22 +03:00
|
|
|
enum swiotlb_force swiotlb_force;
|
2019-01-18 10:10:27 +03:00
|
|
|
|
2021-07-20 16:38:24 +03:00
|
|
|
struct io_tlb_mem io_tlb_default_mem;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2021-12-13 10:14:02 +03:00
|
|
|
phys_addr_t swiotlb_unencrypted_base;
|
|
|
|
|
2016-12-20 18:02:02 +03:00
|
|
|
/*
|
|
|
|
* Max segment that we can provide which (if pages are contingous) will
|
|
|
|
* not be bounced (unless SWIOTLB_FORCE is set).
|
|
|
|
*/
|
2020-09-02 20:31:05 +03:00
|
|
|
static unsigned int max_segment;
|
2016-12-20 18:02:02 +03:00
|
|
|
|
2021-03-18 19:14:23 +03:00
|
|
|
static unsigned long default_nslabs = IO_TLB_DEFAULT_SIZE >> IO_TLB_SHIFT;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
static int __init
|
|
|
|
setup_io_tlb_npages(char *str)
|
|
|
|
{
|
|
|
|
if (isdigit(*str)) {
|
|
|
|
/* avoid tail segment of size < IO_TLB_SEGSIZE */
|
2021-03-18 19:14:23 +03:00
|
|
|
default_nslabs =
|
|
|
|
ALIGN(simple_strtoul(str, &str, 0), IO_TLB_SEGSIZE);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
if (*str == ',')
|
|
|
|
++str;
|
2021-03-23 04:53:49 +03:00
|
|
|
if (!strcmp(str, "force"))
|
2016-12-16 16:28:41 +03:00
|
|
|
swiotlb_force = SWIOTLB_FORCE;
|
2021-03-23 04:53:49 +03:00
|
|
|
else if (!strcmp(str, "noforce"))
|
2016-12-16 16:28:42 +03:00
|
|
|
swiotlb_force = SWIOTLB_NO_FORCE;
|
2009-11-11 18:03:28 +03:00
|
|
|
|
2013-04-16 09:23:45 +04:00
|
|
|
return 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2013-04-16 09:23:45 +04:00
|
|
|
early_param("swiotlb", setup_io_tlb_npages);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2016-12-20 18:02:02 +03:00
|
|
|
unsigned int swiotlb_max_segment(void)
|
|
|
|
{
|
2021-07-20 16:38:24 +03:00
|
|
|
return io_tlb_default_mem.nslabs ? max_segment : 0;
|
2016-12-20 18:02:02 +03:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(swiotlb_max_segment);
|
|
|
|
|
|
|
|
void swiotlb_set_max_segment(unsigned int val)
|
|
|
|
{
|
|
|
|
if (swiotlb_force == SWIOTLB_FORCE)
|
|
|
|
max_segment = 1;
|
|
|
|
else
|
|
|
|
max_segment = rounddown(val, PAGE_SIZE);
|
|
|
|
}
|
|
|
|
|
2013-04-16 09:23:45 +04:00
|
|
|
unsigned long swiotlb_size_or_default(void)
|
|
|
|
{
|
2021-03-18 19:14:23 +03:00
|
|
|
return default_nslabs << IO_TLB_SHIFT;
|
2013-04-16 09:23:45 +04:00
|
|
|
}
|
|
|
|
|
2021-03-18 19:14:23 +03:00
|
|
|
void __init swiotlb_adjust_size(unsigned long size)
|
2020-12-10 04:25:15 +03:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If swiotlb parameter has not been specified, give a chance to
|
|
|
|
* architectures such as those supporting memory encryption to
|
|
|
|
* adjust/expand SWIOTLB size for their use.
|
|
|
|
*/
|
2021-04-29 09:28:59 +03:00
|
|
|
if (default_nslabs != IO_TLB_DEFAULT_SIZE >> IO_TLB_SHIFT)
|
|
|
|
return;
|
2021-03-18 19:14:23 +03:00
|
|
|
size = ALIGN(size, IO_TLB_SIZE);
|
|
|
|
default_nslabs = ALIGN(size >> IO_TLB_SHIFT, IO_TLB_SEGSIZE);
|
|
|
|
pr_info("SWIOTLB bounce buffer size adjusted to %luMB", size >> 20);
|
2020-12-10 04:25:15 +03:00
|
|
|
}
|
|
|
|
|
2009-11-10 13:46:19 +03:00
|
|
|
void swiotlb_print_info(void)
|
2008-12-16 23:17:34 +03:00
|
|
|
{
|
2021-07-20 16:38:24 +03:00
|
|
|
struct io_tlb_mem *mem = &io_tlb_default_mem;
|
2008-12-16 23:17:34 +03:00
|
|
|
|
2021-07-20 16:38:24 +03:00
|
|
|
if (!mem->nslabs) {
|
2018-07-11 02:22:22 +03:00
|
|
|
pr_warn("No low mem\n");
|
x86: Don't panic if can not alloc buffer for swiotlb
Normal boot path on system with iommu support:
swiotlb buffer will be allocated early at first and then try to initialize
iommu, if iommu for intel or AMD could setup properly, swiotlb buffer
will be freed.
The early allocating is with bootmem, and could panic when we try to use
kdump with buffer above 4G only, or with memmap to limit mem under 4G.
for example: memmap=4095M$1M to remove memory under 4G.
According to Eric, add _nopanic version and no_iotlb_memory to fail
map single later if swiotlb is still needed.
-v2: don't pass nopanic, and use -ENOMEM return value according to Eric.
panic early instead of using swiotlb_full to panic...according to Eric/Konrad.
-v3: make swiotlb_init to be notpanic, but will affect:
arm64, ia64, powerpc, tile, unicore32, x86.
-v4: cleanup swiotlb_init by removing swiotlb_init_with_default_size.
Suggested-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1359058816-7615-36-git-send-email-yinghai@kernel.org
Reviewed-and-tested-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Cc: linux-mips@linux-mips.org
Cc: xen-devel@lists.xensource.com
Cc: virtualization@lists.linux-foundation.org
Cc: Shuah Khan <shuahkhan@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2013-01-25 00:20:16 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-03-18 19:14:22 +03:00
|
|
|
pr_info("mapped [mem %pa-%pa] (%luMB)\n", &mem->start, &mem->end,
|
2021-03-18 19:14:23 +03:00
|
|
|
(mem->nslabs << IO_TLB_SHIFT) >> 20);
|
2008-12-16 23:17:34 +03:00
|
|
|
}
|
|
|
|
|
2021-02-04 12:11:20 +03:00
|
|
|
static inline unsigned long io_tlb_offset(unsigned long val)
|
|
|
|
{
|
|
|
|
return val & (IO_TLB_SEGSIZE - 1);
|
|
|
|
}
|
|
|
|
|
2021-02-05 13:19:34 +03:00
|
|
|
static inline unsigned long nr_slots(u64 val)
|
|
|
|
{
|
|
|
|
return DIV_ROUND_UP(val, IO_TLB_SIZE);
|
|
|
|
}
|
|
|
|
|
2021-12-13 10:14:02 +03:00
|
|
|
/*
|
|
|
|
* Remap swioltb memory in the unencrypted physical address space
|
|
|
|
* when swiotlb_unencrypted_base is set. (e.g. for Hyper-V AMD SEV-SNP
|
|
|
|
* Isolation VMs).
|
|
|
|
*/
|
2022-01-04 19:11:19 +03:00
|
|
|
#ifdef CONFIG_HAS_IOMEM
|
2021-12-13 10:14:02 +03:00
|
|
|
static void *swiotlb_mem_remap(struct io_tlb_mem *mem, unsigned long bytes)
|
|
|
|
{
|
|
|
|
void *vaddr = NULL;
|
|
|
|
|
|
|
|
if (swiotlb_unencrypted_base) {
|
|
|
|
phys_addr_t paddr = mem->start + swiotlb_unencrypted_base;
|
|
|
|
|
|
|
|
vaddr = memremap(paddr, bytes, MEMREMAP_WB);
|
|
|
|
if (!vaddr)
|
|
|
|
pr_err("Failed to map the unencrypted memory %pa size %lx.\n",
|
|
|
|
&paddr, bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
return vaddr;
|
|
|
|
}
|
2022-01-04 19:11:19 +03:00
|
|
|
#else
|
|
|
|
static void *swiotlb_mem_remap(struct io_tlb_mem *mem, unsigned long bytes)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2021-12-13 10:14:02 +03:00
|
|
|
|
2017-07-18 00:10:21 +03:00
|
|
|
/*
|
|
|
|
* Early SWIOTLB allocation may be too early to allow an architecture to
|
|
|
|
* perform the desired operations. This function allows the architecture to
|
|
|
|
* call SWIOTLB when the operations are possible. It needs to be called
|
|
|
|
* before the SWIOTLB memory is used.
|
|
|
|
*/
|
|
|
|
void __init swiotlb_update_mem_attributes(void)
|
|
|
|
{
|
2021-07-20 16:38:24 +03:00
|
|
|
struct io_tlb_mem *mem = &io_tlb_default_mem;
|
2017-07-18 00:10:21 +03:00
|
|
|
void *vaddr;
|
|
|
|
unsigned long bytes;
|
|
|
|
|
2021-07-20 16:38:24 +03:00
|
|
|
if (!mem->nslabs || mem->late_alloc)
|
2017-07-18 00:10:21 +03:00
|
|
|
return;
|
2021-03-18 19:14:22 +03:00
|
|
|
vaddr = phys_to_virt(mem->start);
|
|
|
|
bytes = PAGE_ALIGN(mem->nslabs << IO_TLB_SHIFT);
|
2018-03-19 13:38:23 +03:00
|
|
|
set_memory_decrypted((unsigned long)vaddr, bytes >> PAGE_SHIFT);
|
2021-12-13 10:14:02 +03:00
|
|
|
|
|
|
|
mem->vaddr = swiotlb_mem_remap(mem, bytes);
|
|
|
|
if (!mem->vaddr)
|
|
|
|
mem->vaddr = vaddr;
|
2017-07-18 00:10:21 +03:00
|
|
|
}
|
|
|
|
|
2021-06-19 06:40:32 +03:00
|
|
|
static void swiotlb_init_io_tlb_mem(struct io_tlb_mem *mem, phys_addr_t start,
|
|
|
|
unsigned long nslabs, bool late_alloc)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2021-06-19 06:40:32 +03:00
|
|
|
void *vaddr = phys_to_virt(start);
|
2021-03-18 19:14:23 +03:00
|
|
|
unsigned long bytes = nslabs << IO_TLB_SHIFT, i;
|
2021-06-19 06:40:32 +03:00
|
|
|
|
|
|
|
mem->nslabs = nslabs;
|
|
|
|
mem->start = start;
|
|
|
|
mem->end = mem->start + bytes;
|
|
|
|
mem->index = 0;
|
|
|
|
mem->late_alloc = late_alloc;
|
2021-06-24 18:55:20 +03:00
|
|
|
|
|
|
|
if (swiotlb_force == SWIOTLB_FORCE)
|
|
|
|
mem->force_bounce = true;
|
|
|
|
|
2021-06-19 06:40:32 +03:00
|
|
|
spin_lock_init(&mem->lock);
|
|
|
|
for (i = 0; i < mem->nslabs; i++) {
|
|
|
|
mem->slots[i].list = IO_TLB_SEGSIZE - io_tlb_offset(i);
|
|
|
|
mem->slots[i].orig_addr = INVALID_PHYS_ADDR;
|
|
|
|
mem->slots[i].alloc_size = 0;
|
|
|
|
}
|
2021-12-13 10:14:02 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If swiotlb_unencrypted_base is set, the bounce buffer memory will
|
|
|
|
* be remapped and cleared in swiotlb_update_mem_attributes.
|
|
|
|
*/
|
|
|
|
if (swiotlb_unencrypted_base)
|
|
|
|
return;
|
|
|
|
|
2021-06-19 06:40:32 +03:00
|
|
|
memset(vaddr, 0, bytes);
|
2021-12-13 10:14:02 +03:00
|
|
|
mem->vaddr = vaddr;
|
|
|
|
return;
|
2021-06-19 06:40:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int __init swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose)
|
|
|
|
{
|
2021-07-20 16:38:24 +03:00
|
|
|
struct io_tlb_mem *mem = &io_tlb_default_mem;
|
2019-03-12 09:30:26 +03:00
|
|
|
size_t alloc_size;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2021-03-23 04:53:49 +03:00
|
|
|
if (swiotlb_force == SWIOTLB_NO_FORCE)
|
|
|
|
return 0;
|
|
|
|
|
2021-03-01 10:44:31 +03:00
|
|
|
/* protect against double initialization */
|
2021-07-20 16:38:24 +03:00
|
|
|
if (WARN_ON_ONCE(mem->nslabs))
|
2021-03-01 10:44:31 +03:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2021-07-20 16:38:24 +03:00
|
|
|
alloc_size = PAGE_ALIGN(array_size(sizeof(*mem->slots), nslabs));
|
|
|
|
mem->slots = memblock_alloc(alloc_size, PAGE_SIZE);
|
|
|
|
if (!mem->slots)
|
2021-03-18 19:14:23 +03:00
|
|
|
panic("%s: Failed to allocate %zu bytes align=0x%lx\n",
|
|
|
|
__func__, alloc_size, PAGE_SIZE);
|
2021-06-19 06:40:32 +03:00
|
|
|
|
|
|
|
swiotlb_init_io_tlb_mem(mem, __pa(tlb), nslabs, false);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2009-11-10 13:46:19 +03:00
|
|
|
if (verbose)
|
|
|
|
swiotlb_print_info();
|
2021-03-18 19:14:22 +03:00
|
|
|
swiotlb_set_max_segment(mem->nslabs << IO_TLB_SHIFT);
|
x86: Don't panic if can not alloc buffer for swiotlb
Normal boot path on system with iommu support:
swiotlb buffer will be allocated early at first and then try to initialize
iommu, if iommu for intel or AMD could setup properly, swiotlb buffer
will be freed.
The early allocating is with bootmem, and could panic when we try to use
kdump with buffer above 4G only, or with memmap to limit mem under 4G.
for example: memmap=4095M$1M to remove memory under 4G.
According to Eric, add _nopanic version and no_iotlb_memory to fail
map single later if swiotlb is still needed.
-v2: don't pass nopanic, and use -ENOMEM return value according to Eric.
panic early instead of using swiotlb_full to panic...according to Eric/Konrad.
-v3: make swiotlb_init to be notpanic, but will affect:
arm64, ia64, powerpc, tile, unicore32, x86.
-v4: cleanup swiotlb_init by removing swiotlb_init_with_default_size.
Suggested-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1359058816-7615-36-git-send-email-yinghai@kernel.org
Reviewed-and-tested-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Cc: linux-mips@linux-mips.org
Cc: xen-devel@lists.xensource.com
Cc: virtualization@lists.linux-foundation.org
Cc: Shuah Khan <shuahkhan@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2013-01-25 00:20:16 +04:00
|
|
|
return 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2010-05-10 23:15:12 +04:00
|
|
|
/*
|
|
|
|
* Statically reserve bounce buffer space and initialize bounce buffer data
|
|
|
|
* structures for the software IO TLB used to implement the DMA API.
|
|
|
|
*/
|
x86: Don't panic if can not alloc buffer for swiotlb
Normal boot path on system with iommu support:
swiotlb buffer will be allocated early at first and then try to initialize
iommu, if iommu for intel or AMD could setup properly, swiotlb buffer
will be freed.
The early allocating is with bootmem, and could panic when we try to use
kdump with buffer above 4G only, or with memmap to limit mem under 4G.
for example: memmap=4095M$1M to remove memory under 4G.
According to Eric, add _nopanic version and no_iotlb_memory to fail
map single later if swiotlb is still needed.
-v2: don't pass nopanic, and use -ENOMEM return value according to Eric.
panic early instead of using swiotlb_full to panic...according to Eric/Konrad.
-v3: make swiotlb_init to be notpanic, but will affect:
arm64, ia64, powerpc, tile, unicore32, x86.
-v4: cleanup swiotlb_init by removing swiotlb_init_with_default_size.
Suggested-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1359058816-7615-36-git-send-email-yinghai@kernel.org
Reviewed-and-tested-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Cc: linux-mips@linux-mips.org
Cc: xen-devel@lists.xensource.com
Cc: virtualization@lists.linux-foundation.org
Cc: Shuah Khan <shuahkhan@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2013-01-25 00:20:16 +04:00
|
|
|
void __init
|
|
|
|
swiotlb_init(int verbose)
|
2010-05-10 23:15:12 +04:00
|
|
|
{
|
2021-03-18 19:14:23 +03:00
|
|
|
size_t bytes = PAGE_ALIGN(default_nslabs << IO_TLB_SHIFT);
|
|
|
|
void *tlb;
|
2010-05-10 23:15:12 +04:00
|
|
|
|
2021-03-23 04:53:49 +03:00
|
|
|
if (swiotlb_force == SWIOTLB_NO_FORCE)
|
|
|
|
return;
|
|
|
|
|
x86: Don't panic if can not alloc buffer for swiotlb
Normal boot path on system with iommu support:
swiotlb buffer will be allocated early at first and then try to initialize
iommu, if iommu for intel or AMD could setup properly, swiotlb buffer
will be freed.
The early allocating is with bootmem, and could panic when we try to use
kdump with buffer above 4G only, or with memmap to limit mem under 4G.
for example: memmap=4095M$1M to remove memory under 4G.
According to Eric, add _nopanic version and no_iotlb_memory to fail
map single later if swiotlb is still needed.
-v2: don't pass nopanic, and use -ENOMEM return value according to Eric.
panic early instead of using swiotlb_full to panic...according to Eric/Konrad.
-v3: make swiotlb_init to be notpanic, but will affect:
arm64, ia64, powerpc, tile, unicore32, x86.
-v4: cleanup swiotlb_init by removing swiotlb_init_with_default_size.
Suggested-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1359058816-7615-36-git-send-email-yinghai@kernel.org
Reviewed-and-tested-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Cc: linux-mips@linux-mips.org
Cc: xen-devel@lists.xensource.com
Cc: virtualization@lists.linux-foundation.org
Cc: Shuah Khan <shuahkhan@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
2013-01-25 00:20:16 +04:00
|
|
|
/* Get IO TLB memory from the low pages */
|
2021-03-18 19:14:23 +03:00
|
|
|
tlb = memblock_alloc_low(bytes, PAGE_SIZE);
|
|
|
|
if (!tlb)
|
|
|
|
goto fail;
|
|
|
|
if (swiotlb_init_with_tbl(tlb, default_nslabs, verbose))
|
|
|
|
goto fail_free_mem;
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail_free_mem:
|
2021-11-05 23:43:22 +03:00
|
|
|
memblock_free(tlb, bytes);
|
2021-03-18 19:14:23 +03:00
|
|
|
fail:
|
2018-07-11 02:22:22 +03:00
|
|
|
pr_warn("Cannot allocate buffer");
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2005-09-06 21:20:49 +04:00
|
|
|
/*
|
|
|
|
* Systems with larger DMA zones (those that don't support ISA) can
|
|
|
|
* initialize the swiotlb later using the slab allocator if needed.
|
|
|
|
* This should be just like above, but with some error catching.
|
|
|
|
*/
|
|
|
|
int
|
2007-02-06 05:51:25 +03:00
|
|
|
swiotlb_late_init_with_default_size(size_t default_size)
|
2005-09-06 21:20:49 +04:00
|
|
|
{
|
2021-03-18 19:14:23 +03:00
|
|
|
unsigned long nslabs =
|
|
|
|
ALIGN(default_size >> IO_TLB_SHIFT, IO_TLB_SEGSIZE);
|
|
|
|
unsigned long bytes;
|
2012-10-15 21:19:28 +04:00
|
|
|
unsigned char *vstart = NULL;
|
2005-09-06 21:20:49 +04:00
|
|
|
unsigned int order;
|
2012-07-28 04:55:27 +04:00
|
|
|
int rc = 0;
|
2005-09-06 21:20:49 +04:00
|
|
|
|
2021-03-23 04:53:49 +03:00
|
|
|
if (swiotlb_force == SWIOTLB_NO_FORCE)
|
|
|
|
return 0;
|
|
|
|
|
2005-09-06 21:20:49 +04:00
|
|
|
/*
|
|
|
|
* Get IO TLB memory from the low pages
|
|
|
|
*/
|
2021-03-18 19:14:23 +03:00
|
|
|
order = get_order(nslabs << IO_TLB_SHIFT);
|
|
|
|
nslabs = SLABS_PER_PAGE << order;
|
|
|
|
bytes = nslabs << IO_TLB_SHIFT;
|
2005-09-06 21:20:49 +04:00
|
|
|
|
|
|
|
while ((SLABS_PER_PAGE << order) > IO_TLB_MIN_SLABS) {
|
2012-10-15 21:19:28 +04:00
|
|
|
vstart = (void *)__get_free_pages(GFP_DMA | __GFP_NOWARN,
|
|
|
|
order);
|
|
|
|
if (vstart)
|
2005-09-06 21:20:49 +04:00
|
|
|
break;
|
|
|
|
order--;
|
|
|
|
}
|
|
|
|
|
2021-03-18 19:14:23 +03:00
|
|
|
if (!vstart)
|
2012-07-28 04:55:27 +04:00
|
|
|
return -ENOMEM;
|
2021-03-18 19:14:23 +03:00
|
|
|
|
2007-02-06 05:51:25 +03:00
|
|
|
if (order != get_order(bytes)) {
|
2018-07-11 02:22:22 +03:00
|
|
|
pr_warn("only able to allocate %ld MB\n",
|
|
|
|
(PAGE_SIZE << order) >> 20);
|
2021-03-18 19:14:23 +03:00
|
|
|
nslabs = SLABS_PER_PAGE << order;
|
2005-09-06 21:20:49 +04:00
|
|
|
}
|
2021-03-18 19:14:23 +03:00
|
|
|
rc = swiotlb_late_init_with_tbl(vstart, nslabs);
|
2012-07-28 04:55:27 +04:00
|
|
|
if (rc)
|
2012-10-15 21:19:28 +04:00
|
|
|
free_pages((unsigned long)vstart, order);
|
2016-12-20 18:02:02 +03:00
|
|
|
|
2012-07-28 04:55:27 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
swiotlb_late_init_with_tbl(char *tlb, unsigned long nslabs)
|
|
|
|
{
|
2021-07-20 16:38:24 +03:00
|
|
|
struct io_tlb_mem *mem = &io_tlb_default_mem;
|
2021-06-19 06:40:32 +03:00
|
|
|
unsigned long bytes = nslabs << IO_TLB_SHIFT;
|
2021-03-23 04:53:49 +03:00
|
|
|
|
|
|
|
if (swiotlb_force == SWIOTLB_NO_FORCE)
|
|
|
|
return 0;
|
2012-07-28 04:55:27 +04:00
|
|
|
|
2021-03-01 10:44:31 +03:00
|
|
|
/* protect against double initialization */
|
2021-07-20 16:38:24 +03:00
|
|
|
if (WARN_ON_ONCE(mem->nslabs))
|
2021-03-01 10:44:31 +03:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2021-07-20 16:38:24 +03:00
|
|
|
mem->slots = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
|
|
|
|
get_order(array_size(sizeof(*mem->slots), nslabs)));
|
|
|
|
if (!mem->slots)
|
2021-03-18 19:14:23 +03:00
|
|
|
return -ENOMEM;
|
2012-07-28 04:55:27 +04:00
|
|
|
|
2018-03-19 13:38:23 +03:00
|
|
|
set_memory_decrypted((unsigned long)tlb, bytes >> PAGE_SHIFT);
|
2021-06-19 06:40:32 +03:00
|
|
|
swiotlb_init_io_tlb_mem(mem, virt_to_phys(tlb), nslabs, true);
|
2005-09-06 21:20:49 +04:00
|
|
|
|
2009-11-10 13:46:19 +03:00
|
|
|
swiotlb_print_info();
|
2021-03-18 19:14:22 +03:00
|
|
|
swiotlb_set_max_segment(mem->nslabs << IO_TLB_SHIFT);
|
2005-09-06 21:20:49 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-23 16:14:54 +03:00
|
|
|
void __init swiotlb_exit(void)
|
2009-11-10 13:46:18 +03:00
|
|
|
{
|
2021-07-20 16:38:24 +03:00
|
|
|
struct io_tlb_mem *mem = &io_tlb_default_mem;
|
2021-07-20 16:38:26 +03:00
|
|
|
unsigned long tbl_vaddr;
|
|
|
|
size_t tbl_size, slots_size;
|
2021-03-18 19:14:22 +03:00
|
|
|
|
2021-07-20 16:38:24 +03:00
|
|
|
if (!mem->nslabs)
|
2009-11-10 13:46:18 +03:00
|
|
|
return;
|
|
|
|
|
2021-07-20 16:38:25 +03:00
|
|
|
pr_info("tearing down default memory pool\n");
|
2021-07-20 16:38:26 +03:00
|
|
|
tbl_vaddr = (unsigned long)phys_to_virt(mem->start);
|
|
|
|
tbl_size = PAGE_ALIGN(mem->end - mem->start);
|
|
|
|
slots_size = PAGE_ALIGN(array_size(sizeof(*mem->slots), mem->nslabs));
|
|
|
|
|
|
|
|
set_memory_encrypted(tbl_vaddr, tbl_size >> PAGE_SHIFT);
|
|
|
|
if (mem->late_alloc) {
|
|
|
|
free_pages(tbl_vaddr, get_order(tbl_size));
|
|
|
|
free_pages((unsigned long)mem->slots, get_order(slots_size));
|
|
|
|
} else {
|
|
|
|
memblock_free_late(mem->start, tbl_size);
|
|
|
|
memblock_free_late(__pa(mem->slots), slots_size);
|
|
|
|
}
|
|
|
|
|
2021-07-20 16:38:24 +03:00
|
|
|
memset(mem, 0, sizeof(*mem));
|
2009-11-10 13:46:18 +03:00
|
|
|
}
|
|
|
|
|
swiotlb: manipulate orig_addr when tlb_addr has offset
in case of driver wants to sync part of ranges with offset,
swiotlb_tbl_sync_single() copies from orig_addr base to tlb_addr with
offset and ends up with data mismatch.
It was removed from
"swiotlb: don't modify orig_addr in swiotlb_tbl_sync_single",
but said logic has to be added back in.
From Linus's email:
"That commit which the removed the offset calculation entirely, because the old
(unsigned long)tlb_addr & (IO_TLB_SIZE - 1)
was wrong, but instead of removing it, I think it should have just
fixed it to be
(tlb_addr - mem->start) & (IO_TLB_SIZE - 1);
instead. That way the slot offset always matches the slot index calculation."
(Unfortunatly that broke NVMe).
The use-case that drivers are hitting is as follow:
1. Get dma_addr_t from dma_map_single()
dma_addr_t tlb_addr = dma_map_single(dev, vaddr, vsize, DMA_TO_DEVICE);
|<---------------vsize------------->|
+-----------------------------------+
| | original buffer
+-----------------------------------+
vaddr
swiotlb_align_offset
|<----->|<---------------vsize------------->|
+-------+-----------------------------------+
| | | swiotlb buffer
+-------+-----------------------------------+
tlb_addr
2. Do something
3. Sync dma_addr_t through dma_sync_single_for_device(..)
dma_sync_single_for_device(dev, tlb_addr + offset, size, DMA_TO_DEVICE);
Error case.
Copy data to original buffer but it is from base addr (instead of
base addr + offset) in original buffer:
swiotlb_align_offset
|<----->|<- offset ->|<- size ->|
+-------+-----------------------------------+
| | |##########| | swiotlb buffer
+-------+-----------------------------------+
tlb_addr
|<- size ->|
+-----------------------------------+
|##########| | original buffer
+-----------------------------------+
vaddr
The fix is to copy the data to the original buffer and take into
account the offset, like so:
swiotlb_align_offset
|<----->|<- offset ->|<- size ->|
+-------+-----------------------------------+
| | |##########| | swiotlb buffer
+-------+-----------------------------------+
tlb_addr
|<- offset ->|<- size ->|
+-----------------------------------+
| |##########| | original buffer
+-----------------------------------+
vaddr
[One fix which was Linus's that made more sense to as it created a
symmetry would break NVMe. The reason for that is the:
unsigned int offset = (tlb_addr - mem->start) & (IO_TLB_SIZE - 1);
would come up with the proper offset, but it would lose the
alignment (which this patch contains).]
Fixes: 16fc3cef33a0 ("swiotlb: don't modify orig_addr in swiotlb_tbl_sync_single")
Signed-off-by: Bumyong Lee <bumyong.lee@samsung.com>
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reported-by: Dominique MARTINET <dominique.martinet@atmark-techno.com>
Reported-by: Horia Geantă <horia.geanta@nxp.com>
Tested-by: Horia Geantă <horia.geanta@nxp.com>
CC: stable@vger.kernel.org
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2021-05-10 12:10:04 +03:00
|
|
|
/*
|
|
|
|
* Return the offset into a iotlb slot required to keep the device happy.
|
|
|
|
*/
|
|
|
|
static unsigned int swiotlb_align_offset(struct device *dev, u64 addr)
|
|
|
|
{
|
|
|
|
return addr & dma_get_min_align_mask(dev) & (IO_TLB_SIZE - 1);
|
|
|
|
}
|
|
|
|
|
2008-12-22 21:26:09 +03:00
|
|
|
/*
|
2019-01-18 10:10:26 +03:00
|
|
|
* Bounce: copy the swiotlb buffer from or back to the original dma location
|
2008-12-22 21:26:09 +03:00
|
|
|
*/
|
2021-03-01 10:44:25 +03:00
|
|
|
static void swiotlb_bounce(struct device *dev, phys_addr_t tlb_addr, size_t size,
|
|
|
|
enum dma_data_direction dir)
|
2008-12-22 21:26:09 +03:00
|
|
|
{
|
2021-06-19 06:40:34 +03:00
|
|
|
struct io_tlb_mem *mem = dev->dma_io_tlb_mem;
|
2021-03-18 19:14:22 +03:00
|
|
|
int index = (tlb_addr - mem->start) >> IO_TLB_SHIFT;
|
2021-03-18 19:14:23 +03:00
|
|
|
phys_addr_t orig_addr = mem->slots[index].orig_addr;
|
|
|
|
size_t alloc_size = mem->slots[index].alloc_size;
|
2012-10-15 21:19:55 +04:00
|
|
|
unsigned long pfn = PFN_DOWN(orig_addr);
|
2021-12-13 10:14:02 +03:00
|
|
|
unsigned char *vaddr = mem->vaddr + tlb_addr - mem->start;
|
2021-07-07 08:12:54 +03:00
|
|
|
unsigned int tlb_offset, orig_addr_offset;
|
2008-12-22 21:26:09 +03:00
|
|
|
|
2021-03-01 10:44:25 +03:00
|
|
|
if (orig_addr == INVALID_PHYS_ADDR)
|
|
|
|
return;
|
|
|
|
|
2021-07-07 08:12:54 +03:00
|
|
|
tlb_offset = tlb_addr & (IO_TLB_SIZE - 1);
|
|
|
|
orig_addr_offset = swiotlb_align_offset(dev, orig_addr);
|
|
|
|
if (tlb_offset < orig_addr_offset) {
|
|
|
|
dev_WARN_ONCE(dev, 1,
|
|
|
|
"Access before mapping start detected. orig offset %u, requested offset %u.\n",
|
|
|
|
orig_addr_offset, tlb_offset);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tlb_offset -= orig_addr_offset;
|
|
|
|
if (tlb_offset > alloc_size) {
|
|
|
|
dev_WARN_ONCE(dev, 1,
|
|
|
|
"Buffer overflow detected. Allocation size: %zu. Mapping size: %zu+%u.\n",
|
|
|
|
alloc_size, size, tlb_offset);
|
|
|
|
return;
|
|
|
|
}
|
swiotlb: manipulate orig_addr when tlb_addr has offset
in case of driver wants to sync part of ranges with offset,
swiotlb_tbl_sync_single() copies from orig_addr base to tlb_addr with
offset and ends up with data mismatch.
It was removed from
"swiotlb: don't modify orig_addr in swiotlb_tbl_sync_single",
but said logic has to be added back in.
From Linus's email:
"That commit which the removed the offset calculation entirely, because the old
(unsigned long)tlb_addr & (IO_TLB_SIZE - 1)
was wrong, but instead of removing it, I think it should have just
fixed it to be
(tlb_addr - mem->start) & (IO_TLB_SIZE - 1);
instead. That way the slot offset always matches the slot index calculation."
(Unfortunatly that broke NVMe).
The use-case that drivers are hitting is as follow:
1. Get dma_addr_t from dma_map_single()
dma_addr_t tlb_addr = dma_map_single(dev, vaddr, vsize, DMA_TO_DEVICE);
|<---------------vsize------------->|
+-----------------------------------+
| | original buffer
+-----------------------------------+
vaddr
swiotlb_align_offset
|<----->|<---------------vsize------------->|
+-------+-----------------------------------+
| | | swiotlb buffer
+-------+-----------------------------------+
tlb_addr
2. Do something
3. Sync dma_addr_t through dma_sync_single_for_device(..)
dma_sync_single_for_device(dev, tlb_addr + offset, size, DMA_TO_DEVICE);
Error case.
Copy data to original buffer but it is from base addr (instead of
base addr + offset) in original buffer:
swiotlb_align_offset
|<----->|<- offset ->|<- size ->|
+-------+-----------------------------------+
| | |##########| | swiotlb buffer
+-------+-----------------------------------+
tlb_addr
|<- size ->|
+-----------------------------------+
|##########| | original buffer
+-----------------------------------+
vaddr
The fix is to copy the data to the original buffer and take into
account the offset, like so:
swiotlb_align_offset
|<----->|<- offset ->|<- size ->|
+-------+-----------------------------------+
| | |##########| | swiotlb buffer
+-------+-----------------------------------+
tlb_addr
|<- offset ->|<- size ->|
+-----------------------------------+
| |##########| | original buffer
+-----------------------------------+
vaddr
[One fix which was Linus's that made more sense to as it created a
symmetry would break NVMe. The reason for that is the:
unsigned int offset = (tlb_addr - mem->start) & (IO_TLB_SIZE - 1);
would come up with the proper offset, but it would lose the
alignment (which this patch contains).]
Fixes: 16fc3cef33a0 ("swiotlb: don't modify orig_addr in swiotlb_tbl_sync_single")
Signed-off-by: Bumyong Lee <bumyong.lee@samsung.com>
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reported-by: Dominique MARTINET <dominique.martinet@atmark-techno.com>
Reported-by: Horia Geantă <horia.geanta@nxp.com>
Tested-by: Horia Geantă <horia.geanta@nxp.com>
CC: stable@vger.kernel.org
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2021-05-10 12:10:04 +03:00
|
|
|
|
|
|
|
orig_addr += tlb_offset;
|
|
|
|
alloc_size -= tlb_offset;
|
|
|
|
|
2021-03-01 10:44:25 +03:00
|
|
|
if (size > alloc_size) {
|
|
|
|
dev_WARN_ONCE(dev, 1,
|
|
|
|
"Buffer overflow detected. Allocation size: %zu. Mapping size: %zu.\n",
|
|
|
|
alloc_size, size);
|
|
|
|
size = alloc_size;
|
|
|
|
}
|
|
|
|
|
2008-12-22 21:26:09 +03:00
|
|
|
if (PageHighMem(pfn_to_page(pfn))) {
|
|
|
|
/* The buffer does not have a mapping. Map it in and copy */
|
2012-10-15 21:19:55 +04:00
|
|
|
unsigned int offset = orig_addr & ~PAGE_MASK;
|
2008-12-22 21:26:09 +03:00
|
|
|
char *buffer;
|
|
|
|
unsigned int sz = 0;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
while (size) {
|
2009-04-08 18:09:16 +04:00
|
|
|
sz = min_t(size_t, PAGE_SIZE - offset, size);
|
2008-12-22 21:26:09 +03:00
|
|
|
|
|
|
|
local_irq_save(flags);
|
2011-11-25 19:14:39 +04:00
|
|
|
buffer = kmap_atomic(pfn_to_page(pfn));
|
2008-12-22 21:26:09 +03:00
|
|
|
if (dir == DMA_TO_DEVICE)
|
2012-10-15 21:19:55 +04:00
|
|
|
memcpy(vaddr, buffer + offset, sz);
|
2008-12-16 23:17:33 +03:00
|
|
|
else
|
2012-10-15 21:19:55 +04:00
|
|
|
memcpy(buffer + offset, vaddr, sz);
|
2011-11-25 19:14:39 +04:00
|
|
|
kunmap_atomic(buffer);
|
2008-12-16 23:17:33 +03:00
|
|
|
local_irq_restore(flags);
|
2008-12-22 21:26:09 +03:00
|
|
|
|
|
|
|
size -= sz;
|
|
|
|
pfn++;
|
2012-10-15 21:19:55 +04:00
|
|
|
vaddr += sz;
|
2008-12-22 21:26:09 +03:00
|
|
|
offset = 0;
|
2008-12-16 23:17:33 +03:00
|
|
|
}
|
2012-10-15 21:19:55 +04:00
|
|
|
} else if (dir == DMA_TO_DEVICE) {
|
|
|
|
memcpy(vaddr, phys_to_virt(orig_addr), size);
|
2008-12-16 23:17:33 +03:00
|
|
|
} else {
|
2012-10-15 21:19:55 +04:00
|
|
|
memcpy(phys_to_virt(orig_addr), vaddr, size);
|
2008-12-16 23:17:33 +03:00
|
|
|
}
|
2008-12-16 23:17:32 +03:00
|
|
|
}
|
|
|
|
|
2021-02-04 13:08:35 +03:00
|
|
|
#define slot_addr(start, idx) ((start) + ((idx) << IO_TLB_SHIFT))
|
2017-07-18 00:10:22 +03:00
|
|
|
|
2021-02-04 13:08:35 +03:00
|
|
|
/*
|
|
|
|
* Carefully handle integer overflow which can occur when boundary_mask == ~0UL.
|
|
|
|
*/
|
|
|
|
static inline unsigned long get_max_slots(unsigned long boundary_mask)
|
|
|
|
{
|
|
|
|
if (boundary_mask == ~0UL)
|
|
|
|
return 1UL << (BITS_PER_LONG - IO_TLB_SHIFT);
|
|
|
|
return nr_slots(boundary_mask + 1);
|
|
|
|
}
|
2008-02-05 09:28:16 +03:00
|
|
|
|
2021-03-18 19:14:22 +03:00
|
|
|
static unsigned int wrap_index(struct io_tlb_mem *mem, unsigned int index)
|
2021-02-04 13:08:35 +03:00
|
|
|
{
|
2021-03-18 19:14:22 +03:00
|
|
|
if (index >= mem->nslabs)
|
2021-02-04 13:08:35 +03:00
|
|
|
return 0;
|
|
|
|
return index;
|
|
|
|
}
|
swiotlb: add swiotlb_tbl_map_single library function
swiotlb_tbl_map_single() takes the dma address of iotlb instead of
using swiotlb_virt_to_bus().
[v2: changed swiotlb_tlb to swiotlb_tbl]
[v3: changed u64 to dma_addr_t]
This patch:
This is a set of patches that separate the address translation
(virt_to_phys, virt_to_bus, etc) and allocation of the SWIOTLB buffer
from the SWIOTLB library.
The idea behind this set of patches is to make it possible to have separate
mechanisms for translating virtual to physical or virtual to DMA addresses
on platforms which need an SWIOTLB, and where physical != PCI bus address
and also to allocate the core IOTLB memory outside SWIOTLB.
One customers of this is the pv-ops project, which can switch between
different modes of operation depending on the environment it is running in:
bare-metal or virtualized (Xen for now). Another is the Wii DMA - used to
implement the MEM2 DMA facility needed by its EHCI controller (for details:
http://lkml.org/lkml/2010/5/18/303)
On bare-metal SWIOTLB is used when there are no hardware IOMMU. In virtualized
environment it used when PCI pass-through is enabled for the guest. The problems
with PCI pass-through is that the guest's idea of PFN's is not the real thing.
To fix that, there is translation layer for PFN->machine frame number and vice-versa.
To bubble that up to the SWIOTLB layer there are two possible solutions.
One solution has been to wholesale copy the SWIOTLB, stick it in
arch/x86/xen/swiotlb.c and modify the virt_to_phys, phys_to_virt and others
to use the Xen address translation functions. Unfortunately, since the kernel can
run on bare-metal, there would be big code overlap with the real SWIOTLB.
(git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git xen/dom0/swiotlb-new)
Another approach, which this set of patches explores, is to abstract the
address translation and address determination functions away from the
SWIOTLB book-keeping functions. This way the core SWIOTLB library functions
are present in one place, while the address related functions are in
a separate library that can be loaded when running under non-bare-metal platform.
Changelog:
Since the last posting [v8.2] Konrad has done:
- Added this changelog in the patch and referenced in the other patches
this description.
- 'enum dma_data_direction direction' to 'enum dma.. dir' so to be
unified.
[v8-v8.2 changes:]
- Rolled-up the last two patches in one.
- Rebased against linus latest. That meant dealing with swiotlb_sync_single_range_* changes.
- added Acked-by: Fujita Tomonori and Tested-by: Albert Herranz
[v7-v8 changes:]
- Minimized the list of exported functions.
- Integrated Fujita's patches and changed "swiotlb_tlb" to "swiotlb_tbl" in them.
[v6-v7 changes:]
- Minimized the amount of exported functions/variable with a prefix of: "swiotbl_tbl".
- Made the usage of 'int dir' to be 'enum dma_data_direction'.
[v5-v6 changes:]
- Made the exported functions/variables have the 'swiotlb_bk' prefix.
- dropped the checkpatches/other reworks
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tested-by: Albert Herranz <albert_herranz@yahoo.es>
2010-05-10 23:14:54 +04:00
|
|
|
|
2021-02-04 13:08:35 +03:00
|
|
|
/*
|
|
|
|
* Find a suitable number of IO TLB entries size that will fit this request and
|
|
|
|
* allocate a buffer from that IO TLB pool.
|
|
|
|
*/
|
2021-06-24 18:55:21 +03:00
|
|
|
static int swiotlb_find_slots(struct device *dev, phys_addr_t orig_addr,
|
2021-09-29 05:32:59 +03:00
|
|
|
size_t alloc_size, unsigned int alloc_align_mask)
|
2021-02-04 13:08:35 +03:00
|
|
|
{
|
2021-06-19 06:40:34 +03:00
|
|
|
struct io_tlb_mem *mem = dev->dma_io_tlb_mem;
|
2021-02-04 13:08:35 +03:00
|
|
|
unsigned long boundary_mask = dma_get_seg_boundary(dev);
|
|
|
|
dma_addr_t tbl_dma_addr =
|
2021-03-18 19:14:22 +03:00
|
|
|
phys_to_dma_unencrypted(dev, mem->start) & boundary_mask;
|
2021-02-04 13:08:35 +03:00
|
|
|
unsigned long max_slots = get_max_slots(boundary_mask);
|
2021-02-22 22:39:44 +03:00
|
|
|
unsigned int iotlb_align_mask =
|
|
|
|
dma_get_min_align_mask(dev) & ~(IO_TLB_SIZE - 1);
|
|
|
|
unsigned int nslots = nr_slots(alloc_size), stride;
|
2021-02-04 13:08:35 +03:00
|
|
|
unsigned int index, wrap, count = 0, i;
|
2021-06-24 18:55:21 +03:00
|
|
|
unsigned int offset = swiotlb_align_offset(dev, orig_addr);
|
2021-02-04 13:08:35 +03:00
|
|
|
unsigned long flags;
|
2008-12-16 23:17:29 +03:00
|
|
|
|
2021-02-04 13:08:35 +03:00
|
|
|
BUG_ON(!nslots);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2021-02-22 22:39:44 +03:00
|
|
|
* For mappings with an alignment requirement don't bother looping to
|
|
|
|
* unaligned slots once we found an aligned one. For allocations of
|
|
|
|
* PAGE_SIZE or larger only look for page aligned allocations.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2021-02-22 22:39:44 +03:00
|
|
|
stride = (iotlb_align_mask >> IO_TLB_SHIFT) + 1;
|
2019-09-06 09:14:48 +03:00
|
|
|
if (alloc_size >= PAGE_SIZE)
|
2021-02-22 22:39:44 +03:00
|
|
|
stride = max(stride, stride << (PAGE_SHIFT - IO_TLB_SHIFT));
|
2021-09-29 05:32:59 +03:00
|
|
|
stride = max(stride, (alloc_align_mask >> IO_TLB_SHIFT) + 1);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2021-03-18 19:14:22 +03:00
|
|
|
spin_lock_irqsave(&mem->lock, flags);
|
|
|
|
if (unlikely(nslots > mem->nslabs - mem->used))
|
2019-01-18 10:10:28 +03:00
|
|
|
goto not_found;
|
|
|
|
|
2021-03-18 19:14:22 +03:00
|
|
|
index = wrap = wrap_index(mem, ALIGN(mem->index, stride));
|
2008-04-29 11:59:36 +04:00
|
|
|
do {
|
2021-06-19 06:40:40 +03:00
|
|
|
if (orig_addr &&
|
|
|
|
(slot_addr(tbl_dma_addr, index) & iotlb_align_mask) !=
|
|
|
|
(orig_addr & iotlb_align_mask)) {
|
2021-03-18 19:14:22 +03:00
|
|
|
index = wrap_index(mem, index + 1);
|
2021-02-22 22:39:44 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-04-29 11:59:36 +04:00
|
|
|
/*
|
|
|
|
* If we find a slot that indicates we have 'nslots' number of
|
|
|
|
* contiguous buffers, we allocate the buffers from that slot
|
|
|
|
* and mark the entries as '0' indicating unavailable.
|
|
|
|
*/
|
2021-02-04 13:08:35 +03:00
|
|
|
if (!iommu_is_span_boundary(index, nslots,
|
|
|
|
nr_slots(tbl_dma_addr),
|
|
|
|
max_slots)) {
|
2021-03-18 19:14:23 +03:00
|
|
|
if (mem->slots[index].list >= nslots)
|
2021-02-04 13:08:35 +03:00
|
|
|
goto found;
|
2008-04-29 11:59:36 +04:00
|
|
|
}
|
2021-03-18 19:14:22 +03:00
|
|
|
index = wrap_index(mem, index + stride);
|
2008-04-29 11:59:36 +04:00
|
|
|
} while (index != wrap);
|
|
|
|
|
|
|
|
not_found:
|
2021-03-18 19:14:22 +03:00
|
|
|
spin_unlock_irqrestore(&mem->lock, flags);
|
2021-02-04 13:08:35 +03:00
|
|
|
return -1;
|
|
|
|
|
2008-04-29 11:59:36 +04:00
|
|
|
found:
|
2021-06-24 18:55:21 +03:00
|
|
|
for (i = index; i < index + nslots; i++) {
|
2021-03-18 19:14:23 +03:00
|
|
|
mem->slots[i].list = 0;
|
2021-06-24 18:55:21 +03:00
|
|
|
mem->slots[i].alloc_size =
|
|
|
|
alloc_size - (offset + ((i - index) << IO_TLB_SHIFT));
|
|
|
|
}
|
2021-02-04 13:08:35 +03:00
|
|
|
for (i = index - 1;
|
|
|
|
io_tlb_offset(i) != IO_TLB_SEGSIZE - 1 &&
|
2021-03-18 19:14:23 +03:00
|
|
|
mem->slots[i].list; i--)
|
|
|
|
mem->slots[i].list = ++count;
|
2021-02-04 13:08:35 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the indices to avoid searching in the next round.
|
|
|
|
*/
|
2021-03-18 19:14:22 +03:00
|
|
|
if (index + nslots < mem->nslabs)
|
|
|
|
mem->index = index + nslots;
|
2021-02-04 13:08:35 +03:00
|
|
|
else
|
2021-03-18 19:14:22 +03:00
|
|
|
mem->index = 0;
|
|
|
|
mem->used += nslots;
|
2021-02-04 13:08:35 +03:00
|
|
|
|
2021-03-18 19:14:22 +03:00
|
|
|
spin_unlock_irqrestore(&mem->lock, flags);
|
2021-02-04 13:08:35 +03:00
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
|
|
|
phys_addr_t swiotlb_tbl_map_single(struct device *dev, phys_addr_t orig_addr,
|
|
|
|
size_t mapping_size, size_t alloc_size,
|
2021-09-29 05:32:59 +03:00
|
|
|
unsigned int alloc_align_mask, enum dma_data_direction dir,
|
|
|
|
unsigned long attrs)
|
2021-02-04 13:08:35 +03:00
|
|
|
{
|
2021-06-19 06:40:34 +03:00
|
|
|
struct io_tlb_mem *mem = dev->dma_io_tlb_mem;
|
2021-02-22 22:39:44 +03:00
|
|
|
unsigned int offset = swiotlb_align_offset(dev, orig_addr);
|
2021-04-22 11:14:53 +03:00
|
|
|
unsigned int i;
|
|
|
|
int index;
|
2021-02-04 13:08:35 +03:00
|
|
|
phys_addr_t tlb_addr;
|
|
|
|
|
2021-03-18 19:14:23 +03:00
|
|
|
if (!mem)
|
2021-02-04 13:08:35 +03:00
|
|
|
panic("Can not allocate SWIOTLB buffer earlier and can't now provide you with the DMA bounce buffer");
|
|
|
|
|
2021-09-09 01:58:39 +03:00
|
|
|
if (cc_platform_has(CC_ATTR_MEM_ENCRYPT))
|
2021-02-04 13:08:35 +03:00
|
|
|
pr_warn_once("Memory encryption is active and system is using DMA bounce buffers\n");
|
|
|
|
|
|
|
|
if (mapping_size > alloc_size) {
|
|
|
|
dev_warn_once(dev, "Invalid sizes (mapping: %zd bytes, alloc: %zd bytes)",
|
|
|
|
mapping_size, alloc_size);
|
|
|
|
return (phys_addr_t)DMA_MAPPING_ERROR;
|
|
|
|
}
|
|
|
|
|
2021-09-29 05:32:59 +03:00
|
|
|
index = swiotlb_find_slots(dev, orig_addr,
|
|
|
|
alloc_size + offset, alloc_align_mask);
|
2021-02-04 13:08:35 +03:00
|
|
|
if (index == -1) {
|
|
|
|
if (!(attrs & DMA_ATTR_NO_WARN))
|
|
|
|
dev_warn_ratelimited(dev,
|
|
|
|
"swiotlb buffer is full (sz: %zd bytes), total %lu (slots), used %lu (slots)\n",
|
2021-03-18 19:14:22 +03:00
|
|
|
alloc_size, mem->nslabs, mem->used);
|
2021-02-04 13:08:35 +03:00
|
|
|
return (phys_addr_t)DMA_MAPPING_ERROR;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Save away the mapping from the original address to the DMA address.
|
|
|
|
* This is needed when we sync the memory. Then we sync the buffer if
|
|
|
|
* needed.
|
|
|
|
*/
|
2021-06-24 18:55:21 +03:00
|
|
|
for (i = 0; i < nr_slots(alloc_size + offset); i++)
|
2021-03-18 19:14:23 +03:00
|
|
|
mem->slots[index + i].orig_addr = slot_addr(orig_addr, i);
|
2021-03-18 19:14:22 +03:00
|
|
|
tlb_addr = slot_addr(mem->start, index) + offset;
|
2016-11-02 14:13:02 +03:00
|
|
|
if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC) &&
|
|
|
|
(dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL))
|
2021-03-01 10:44:25 +03:00
|
|
|
swiotlb_bounce(dev, tlb_addr, mapping_size, DMA_TO_DEVICE);
|
2012-10-15 21:19:39 +04:00
|
|
|
return tlb_addr;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2021-06-19 06:40:39 +03:00
|
|
|
static void swiotlb_release_slots(struct device *dev, phys_addr_t tlb_addr)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2021-06-19 06:40:39 +03:00
|
|
|
struct io_tlb_mem *mem = dev->dma_io_tlb_mem;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long flags;
|
2021-06-19 06:40:39 +03:00
|
|
|
unsigned int offset = swiotlb_align_offset(dev, tlb_addr);
|
2021-03-18 19:14:22 +03:00
|
|
|
int index = (tlb_addr - offset - mem->start) >> IO_TLB_SHIFT;
|
2021-03-18 19:14:23 +03:00
|
|
|
int nslots = nr_slots(mem->slots[index].alloc_size + offset);
|
2021-03-01 10:44:25 +03:00
|
|
|
int count, i;
|
2021-01-12 18:07:29 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* Return the buffer to the free list by setting the corresponding
|
tree-wide: fix assorted typos all over the place
That is "success", "unknown", "through", "performance", "[re|un]mapping"
, "access", "default", "reasonable", "[con]currently", "temperature"
, "channel", "[un]used", "application", "example","hierarchy", "therefore"
, "[over|under]flow", "contiguous", "threshold", "enough" and others.
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2009-11-14 18:09:05 +03:00
|
|
|
* entries to indicate the number of contiguous entries available.
|
2005-04-17 02:20:36 +04:00
|
|
|
* While returning the entries to the free list, we merge the entries
|
|
|
|
* with slots below and above the pool being returned.
|
|
|
|
*/
|
2021-03-18 19:14:22 +03:00
|
|
|
spin_lock_irqsave(&mem->lock, flags);
|
2021-02-04 12:13:40 +03:00
|
|
|
if (index + nslots < ALIGN(index + 1, IO_TLB_SEGSIZE))
|
2021-03-18 19:14:23 +03:00
|
|
|
count = mem->slots[index + nslots].list;
|
2021-02-04 12:13:40 +03:00
|
|
|
else
|
|
|
|
count = 0;
|
2019-01-18 10:10:27 +03:00
|
|
|
|
2021-02-04 12:13:40 +03:00
|
|
|
/*
|
|
|
|
* Step 1: return the slots to the free list, merging the slots with
|
|
|
|
* superceeding slots
|
|
|
|
*/
|
|
|
|
for (i = index + nslots - 1; i >= index; i--) {
|
2021-03-18 19:14:23 +03:00
|
|
|
mem->slots[i].list = ++count;
|
|
|
|
mem->slots[i].orig_addr = INVALID_PHYS_ADDR;
|
|
|
|
mem->slots[i].alloc_size = 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2021-02-04 12:13:40 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Step 2: merge the returned slots with the preceding slots, if
|
|
|
|
* available (non zero)
|
|
|
|
*/
|
|
|
|
for (i = index - 1;
|
2021-03-18 19:14:23 +03:00
|
|
|
io_tlb_offset(i) != IO_TLB_SEGSIZE - 1 && mem->slots[i].list;
|
2021-02-04 12:13:40 +03:00
|
|
|
i--)
|
2021-03-18 19:14:23 +03:00
|
|
|
mem->slots[i].list = ++count;
|
2021-03-18 19:14:22 +03:00
|
|
|
mem->used -= nslots;
|
|
|
|
spin_unlock_irqrestore(&mem->lock, flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2021-06-19 06:40:39 +03:00
|
|
|
/*
|
|
|
|
* tlb_addr is the physical address of the bounce buffer to unmap.
|
|
|
|
*/
|
|
|
|
void swiotlb_tbl_unmap_single(struct device *dev, phys_addr_t tlb_addr,
|
|
|
|
size_t mapping_size, enum dma_data_direction dir,
|
|
|
|
unsigned long attrs)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* First, sync the memory before unmapping the entry
|
|
|
|
*/
|
|
|
|
if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC) &&
|
|
|
|
(dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL))
|
|
|
|
swiotlb_bounce(dev, tlb_addr, mapping_size, DMA_FROM_DEVICE);
|
|
|
|
|
|
|
|
swiotlb_release_slots(dev, tlb_addr);
|
|
|
|
}
|
|
|
|
|
2021-03-01 10:44:26 +03:00
|
|
|
void swiotlb_sync_single_for_device(struct device *dev, phys_addr_t tlb_addr,
|
|
|
|
size_t size, enum dma_data_direction dir)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2021-03-01 10:44:26 +03:00
|
|
|
if (dir == DMA_TO_DEVICE || dir == DMA_BIDIRECTIONAL)
|
|
|
|
swiotlb_bounce(dev, tlb_addr, size, DMA_TO_DEVICE);
|
|
|
|
else
|
|
|
|
BUG_ON(dir != DMA_FROM_DEVICE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void swiotlb_sync_single_for_cpu(struct device *dev, phys_addr_t tlb_addr,
|
|
|
|
size_t size, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
if (dir == DMA_FROM_DEVICE || dir == DMA_BIDIRECTIONAL)
|
|
|
|
swiotlb_bounce(dev, tlb_addr, size, DMA_FROM_DEVICE);
|
|
|
|
else
|
|
|
|
BUG_ON(dir != DMA_TO_DEVICE);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2018-12-03 13:43:54 +03:00
|
|
|
/*
|
2020-02-03 16:44:38 +03:00
|
|
|
* Create a swiotlb mapping for the buffer at @paddr, and in case of DMAing
|
2018-12-03 13:43:54 +03:00
|
|
|
* to the device copy the data into it as well.
|
|
|
|
*/
|
2020-02-03 16:44:38 +03:00
|
|
|
dma_addr_t swiotlb_map(struct device *dev, phys_addr_t paddr, size_t size,
|
|
|
|
enum dma_data_direction dir, unsigned long attrs)
|
2018-08-20 17:21:10 +03:00
|
|
|
{
|
2020-02-03 16:44:38 +03:00
|
|
|
phys_addr_t swiotlb_addr;
|
|
|
|
dma_addr_t dma_addr;
|
2018-08-20 17:21:10 +03:00
|
|
|
|
2020-02-03 16:44:38 +03:00
|
|
|
trace_swiotlb_bounced(dev, phys_to_dma(dev, paddr), size,
|
|
|
|
swiotlb_force);
|
2018-08-20 17:21:10 +03:00
|
|
|
|
2021-09-29 05:32:59 +03:00
|
|
|
swiotlb_addr = swiotlb_tbl_map_single(dev, paddr, size, size, 0, dir,
|
2020-10-23 09:33:09 +03:00
|
|
|
attrs);
|
2020-02-03 16:44:38 +03:00
|
|
|
if (swiotlb_addr == (phys_addr_t)DMA_MAPPING_ERROR)
|
|
|
|
return DMA_MAPPING_ERROR;
|
2018-08-20 17:21:10 +03:00
|
|
|
|
|
|
|
/* Ensure that the address returned is DMA'ble */
|
2020-08-17 18:34:03 +03:00
|
|
|
dma_addr = phys_to_dma_unencrypted(dev, swiotlb_addr);
|
2020-02-03 16:44:38 +03:00
|
|
|
if (unlikely(!dma_capable(dev, dma_addr, size, true))) {
|
2021-03-01 10:44:24 +03:00
|
|
|
swiotlb_tbl_unmap_single(dev, swiotlb_addr, size, dir,
|
2018-08-20 17:21:10 +03:00
|
|
|
attrs | DMA_ATTR_SKIP_CPU_SYNC);
|
2020-02-03 16:44:38 +03:00
|
|
|
dev_WARN_ONCE(dev, 1,
|
|
|
|
"swiotlb addr %pad+%zu overflow (mask %llx, bus limit %llx).\n",
|
|
|
|
&dma_addr, size, *dev->dma_mask, dev->bus_dma_limit);
|
|
|
|
return DMA_MAPPING_ERROR;
|
2018-10-19 09:51:53 +03:00
|
|
|
}
|
|
|
|
|
2020-02-03 16:44:38 +03:00
|
|
|
if (!dev_is_dma_coherent(dev) && !(attrs & DMA_ATTR_SKIP_CPU_SYNC))
|
|
|
|
arch_sync_dma_for_device(swiotlb_addr, size, dir);
|
|
|
|
return dma_addr;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2019-02-07 14:59:13 +03:00
|
|
|
size_t swiotlb_max_mapping_size(struct device *dev)
|
|
|
|
{
|
2021-02-05 13:18:40 +03:00
|
|
|
return ((size_t)IO_TLB_SIZE) * IO_TLB_SEGSIZE;
|
2019-02-07 14:59:13 +03:00
|
|
|
}
|
2019-02-07 14:59:14 +03:00
|
|
|
|
2021-06-19 06:40:36 +03:00
|
|
|
bool is_swiotlb_active(struct device *dev)
|
2019-02-07 14:59:14 +03:00
|
|
|
{
|
2021-07-20 16:38:24 +03:00
|
|
|
struct io_tlb_mem *mem = dev->dma_io_tlb_mem;
|
|
|
|
|
|
|
|
return mem && mem->nslabs;
|
2019-02-07 14:59:14 +03:00
|
|
|
}
|
2021-03-18 19:14:24 +03:00
|
|
|
EXPORT_SYMBOL_GPL(is_swiotlb_active);
|
2019-03-10 22:47:57 +03:00
|
|
|
|
2022-01-24 19:40:17 +03:00
|
|
|
static void swiotlb_create_debugfs_files(struct io_tlb_mem *mem,
|
|
|
|
const char *dirname)
|
2019-01-18 10:10:27 +03:00
|
|
|
{
|
2022-01-24 19:40:17 +03:00
|
|
|
mem->debugfs = debugfs_create_dir(dirname, io_tlb_default_mem.debugfs);
|
|
|
|
if (!mem->nslabs)
|
|
|
|
return;
|
|
|
|
|
2021-03-18 19:14:22 +03:00
|
|
|
debugfs_create_ulong("io_tlb_nslabs", 0400, mem->debugfs, &mem->nslabs);
|
|
|
|
debugfs_create_ulong("io_tlb_used", 0400, mem->debugfs, &mem->used);
|
2021-06-19 06:40:33 +03:00
|
|
|
}
|
|
|
|
|
2022-01-24 19:40:17 +03:00
|
|
|
static int __init __maybe_unused swiotlb_create_default_debugfs(void)
|
2021-06-19 06:40:33 +03:00
|
|
|
{
|
2022-01-24 19:40:17 +03:00
|
|
|
swiotlb_create_debugfs_files(&io_tlb_default_mem, "swiotlb");
|
2019-01-18 10:10:27 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-01-24 19:40:17 +03:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2021-06-19 06:40:33 +03:00
|
|
|
late_initcall(swiotlb_create_default_debugfs);
|
2019-01-18 10:10:27 +03:00
|
|
|
#endif
|
2021-06-19 06:40:40 +03:00
|
|
|
|
|
|
|
#ifdef CONFIG_DMA_RESTRICTED_POOL
|
2021-07-01 06:31:30 +03:00
|
|
|
|
2021-06-19 06:40:40 +03:00
|
|
|
struct page *swiotlb_alloc(struct device *dev, size_t size)
|
|
|
|
{
|
|
|
|
struct io_tlb_mem *mem = dev->dma_io_tlb_mem;
|
|
|
|
phys_addr_t tlb_addr;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
if (!mem)
|
|
|
|
return NULL;
|
|
|
|
|
2021-09-29 05:32:59 +03:00
|
|
|
index = swiotlb_find_slots(dev, 0, size, 0);
|
2021-06-19 06:40:40 +03:00
|
|
|
if (index == -1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
tlb_addr = slot_addr(mem->start, index);
|
|
|
|
|
|
|
|
return pfn_to_page(PFN_DOWN(tlb_addr));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool swiotlb_free(struct device *dev, struct page *page, size_t size)
|
|
|
|
{
|
|
|
|
phys_addr_t tlb_addr = page_to_phys(page);
|
|
|
|
|
|
|
|
if (!is_swiotlb_buffer(dev, tlb_addr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
swiotlb_release_slots(dev, tlb_addr);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-06-19 06:40:41 +03:00
|
|
|
static int rmem_swiotlb_device_init(struct reserved_mem *rmem,
|
|
|
|
struct device *dev)
|
|
|
|
{
|
|
|
|
struct io_tlb_mem *mem = rmem->priv;
|
|
|
|
unsigned long nslabs = rmem->size >> IO_TLB_SHIFT;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Since multiple devices can share the same pool, the private data,
|
|
|
|
* io_tlb_mem struct, will be initialized by the first device attached
|
|
|
|
* to it.
|
|
|
|
*/
|
|
|
|
if (!mem) {
|
2021-07-20 16:38:24 +03:00
|
|
|
mem = kzalloc(sizeof(*mem), GFP_KERNEL);
|
2021-06-19 06:40:41 +03:00
|
|
|
if (!mem)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2021-07-20 16:38:24 +03:00
|
|
|
mem->slots = kzalloc(array_size(sizeof(*mem->slots), nslabs),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!mem->slots) {
|
|
|
|
kfree(mem);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2021-06-19 06:40:41 +03:00
|
|
|
set_memory_decrypted((unsigned long)phys_to_virt(rmem->base),
|
|
|
|
rmem->size >> PAGE_SHIFT);
|
|
|
|
swiotlb_init_io_tlb_mem(mem, rmem->base, nslabs, false);
|
|
|
|
mem->force_bounce = true;
|
|
|
|
mem->for_alloc = true;
|
|
|
|
|
|
|
|
rmem->priv = mem;
|
|
|
|
|
2022-01-24 19:40:17 +03:00
|
|
|
swiotlb_create_debugfs_files(mem, rmem->name);
|
2021-06-19 06:40:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dev->dma_io_tlb_mem = mem;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rmem_swiotlb_device_release(struct reserved_mem *rmem,
|
|
|
|
struct device *dev)
|
|
|
|
{
|
2021-07-20 16:38:24 +03:00
|
|
|
dev->dma_io_tlb_mem = &io_tlb_default_mem;
|
2021-06-19 06:40:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct reserved_mem_ops rmem_swiotlb_ops = {
|
|
|
|
.device_init = rmem_swiotlb_device_init,
|
|
|
|
.device_release = rmem_swiotlb_device_release,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init rmem_swiotlb_setup(struct reserved_mem *rmem)
|
|
|
|
{
|
|
|
|
unsigned long node = rmem->fdt_node;
|
|
|
|
|
|
|
|
if (of_get_flat_dt_prop(node, "reusable", NULL) ||
|
|
|
|
of_get_flat_dt_prop(node, "linux,cma-default", NULL) ||
|
|
|
|
of_get_flat_dt_prop(node, "linux,dma-default", NULL) ||
|
|
|
|
of_get_flat_dt_prop(node, "no-map", NULL))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (PageHighMem(pfn_to_page(PHYS_PFN(rmem->base)))) {
|
|
|
|
pr_err("Restricted DMA pool must be accessible within the linear mapping.");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rmem->ops = &rmem_swiotlb_ops;
|
|
|
|
pr_info("Reserved memory: created restricted DMA pool at %pa, size %ld MiB\n",
|
|
|
|
&rmem->base, (unsigned long)rmem->size / SZ_1M);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
RESERVEDMEM_OF_DECLARE(dma, "restricted-dma-pool", rmem_swiotlb_setup);
|
2021-06-19 06:40:40 +03:00
|
|
|
#endif /* CONFIG_DMA_RESTRICTED_POOL */
|