License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 14:07:57 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-02-03 05:46:32 +00:00
|
|
|
/*
|
2018-09-08 09:22:43 +00:00
|
|
|
* Copyright (C) 2018 Christoph Hellwig.
|
|
|
|
*
|
|
|
|
* DMA operations that map physical memory directly without using an IOMMU.
|
2016-02-03 05:46:32 +00:00
|
|
|
*/
|
2018-10-30 22:09:49 +00:00
|
|
|
#include <linux/memblock.h> /* for max_pfn */
|
2016-02-03 05:46:32 +00:00
|
|
|
#include <linux/export.h>
|
|
|
|
#include <linux/mm.h>
|
2017-12-22 10:29:51 +00:00
|
|
|
#include <linux/dma-direct.h>
|
2016-02-03 05:46:32 +00:00
|
|
|
#include <linux/scatterlist.h>
|
2017-12-22 10:51:44 +00:00
|
|
|
#include <linux/dma-contiguous.h>
|
2018-09-08 09:22:43 +00:00
|
|
|
#include <linux/dma-noncoherent.h>
|
2017-06-26 09:18:55 +00:00
|
|
|
#include <linux/pfn.h>
|
2018-03-19 10:38:25 +00:00
|
|
|
#include <linux/set_memory.h>
|
2018-12-03 10:43:54 +00:00
|
|
|
#include <linux/swiotlb.h>
|
2016-02-03 05:46:32 +00:00
|
|
|
|
2018-01-09 22:39:03 +00:00
|
|
|
/*
|
|
|
|
* Most architectures use ZONE_DMA for the first 16 Megabytes, but
|
|
|
|
* some use it for entirely different regions:
|
|
|
|
*/
|
|
|
|
#ifndef ARCH_ZONE_DMA_BITS
|
|
|
|
#define ARCH_ZONE_DMA_BITS 24
|
|
|
|
#endif
|
|
|
|
|
2018-03-19 10:38:25 +00:00
|
|
|
/*
|
|
|
|
* For AMD SEV all DMA must be to unencrypted addresses.
|
|
|
|
*/
|
|
|
|
static inline bool force_dma_unencrypted(void)
|
|
|
|
{
|
|
|
|
return sev_active();
|
|
|
|
}
|
|
|
|
|
2018-12-03 06:43:05 +00:00
|
|
|
static void report_addr(struct device *dev, dma_addr_t dma_addr, size_t size)
|
2018-01-09 15:30:47 +00:00
|
|
|
{
|
2018-12-03 06:43:05 +00:00
|
|
|
if (!dev->dma_mask) {
|
|
|
|
dev_err_once(dev, "DMA map on device without dma_mask\n");
|
|
|
|
} else if (*dev->dma_mask >= DMA_BIT_MASK(32) || dev->bus_dma_mask) {
|
|
|
|
dev_err_once(dev,
|
|
|
|
"overflow %pad+%zu of DMA mask %llx bus mask %llx\n",
|
|
|
|
&dma_addr, size, *dev->dma_mask, dev->bus_dma_mask);
|
2018-01-09 15:30:47 +00:00
|
|
|
}
|
2018-12-03 06:43:05 +00:00
|
|
|
WARN_ON_ONCE(1);
|
2018-01-09 15:30:47 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 11:26:13 +00:00
|
|
|
static inline dma_addr_t phys_to_dma_direct(struct device *dev,
|
|
|
|
phys_addr_t phys)
|
|
|
|
{
|
|
|
|
if (force_dma_unencrypted())
|
|
|
|
return __phys_to_dma(dev, phys);
|
|
|
|
return phys_to_dma(dev, phys);
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 dma_direct_get_required_mask(struct device *dev)
|
|
|
|
{
|
|
|
|
u64 max_dma = phys_to_dma_direct(dev, (max_pfn - 1) << PAGE_SHIFT);
|
|
|
|
|
2018-09-20 12:04:08 +00:00
|
|
|
if (dev->bus_dma_mask && dev->bus_dma_mask < max_dma)
|
|
|
|
max_dma = dev->bus_dma_mask;
|
|
|
|
|
2018-09-20 11:26:13 +00:00
|
|
|
return (1ULL << (fls64(max_dma) - 1)) * 2 - 1;
|
|
|
|
}
|
|
|
|
|
2018-09-07 00:30:54 +00:00
|
|
|
static gfp_t __dma_direct_optimal_gfp_mask(struct device *dev, u64 dma_mask,
|
|
|
|
u64 *phys_mask)
|
|
|
|
{
|
2018-09-20 12:04:08 +00:00
|
|
|
if (dev->bus_dma_mask && dev->bus_dma_mask < dma_mask)
|
|
|
|
dma_mask = dev->bus_dma_mask;
|
|
|
|
|
2018-09-07 00:30:54 +00:00
|
|
|
if (force_dma_unencrypted())
|
|
|
|
*phys_mask = __dma_to_phys(dev, dma_mask);
|
|
|
|
else
|
|
|
|
*phys_mask = dma_to_phys(dev, dma_mask);
|
|
|
|
|
2018-10-01 14:40:53 +00:00
|
|
|
/*
|
|
|
|
* Optimistically try the zone that the physical address mask falls
|
|
|
|
* into first. If that returns memory that isn't actually addressable
|
|
|
|
* we will fallback to the next lower zone and try again.
|
|
|
|
*
|
|
|
|
* Note that GFP_DMA32 and GFP_DMA are no ops without the corresponding
|
|
|
|
* zones.
|
|
|
|
*/
|
2018-09-07 00:30:54 +00:00
|
|
|
if (*phys_mask <= DMA_BIT_MASK(ARCH_ZONE_DMA_BITS))
|
|
|
|
return GFP_DMA;
|
|
|
|
if (*phys_mask <= DMA_BIT_MASK(32))
|
|
|
|
return GFP_DMA32;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-09 22:40:57 +00:00
|
|
|
static bool dma_coherent_ok(struct device *dev, phys_addr_t phys, size_t size)
|
|
|
|
{
|
2018-09-20 11:26:13 +00:00
|
|
|
return phys_to_dma_direct(dev, phys) + size - 1 <=
|
2018-09-20 12:04:08 +00:00
|
|
|
min_not_zero(dev->coherent_dma_mask, dev->bus_dma_mask);
|
2018-01-09 22:40:57 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 16:27:56 +00:00
|
|
|
struct page *__dma_direct_alloc_pages(struct device *dev, size_t size,
|
2018-09-08 09:22:43 +00:00
|
|
|
dma_addr_t *dma_handle, gfp_t gfp, unsigned long attrs)
|
2016-02-03 05:46:32 +00:00
|
|
|
{
|
2017-12-22 10:51:44 +00:00
|
|
|
unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
|
|
|
|
int page_order = get_order(size);
|
|
|
|
struct page *page = NULL;
|
2018-09-07 00:30:54 +00:00
|
|
|
u64 phys_mask;
|
2016-02-03 05:46:32 +00:00
|
|
|
|
2018-09-24 11:10:34 +00:00
|
|
|
if (attrs & DMA_ATTR_NO_WARN)
|
|
|
|
gfp |= __GFP_NOWARN;
|
|
|
|
|
2018-03-28 13:35:35 +00:00
|
|
|
/* we always manually zero the memory once we are done: */
|
|
|
|
gfp &= ~__GFP_ZERO;
|
2018-09-07 00:30:54 +00:00
|
|
|
gfp |= __dma_direct_optimal_gfp_mask(dev, dev->coherent_dma_mask,
|
|
|
|
&phys_mask);
|
2018-01-09 22:40:57 +00:00
|
|
|
again:
|
2017-12-22 10:51:44 +00:00
|
|
|
/* CMA can be used only in the context which permits sleeping */
|
2018-01-09 22:40:57 +00:00
|
|
|
if (gfpflags_allow_blocking(gfp)) {
|
2018-08-17 22:49:00 +00:00
|
|
|
page = dma_alloc_from_contiguous(dev, count, page_order,
|
|
|
|
gfp & __GFP_NOWARN);
|
2018-01-09 22:40:57 +00:00
|
|
|
if (page && !dma_coherent_ok(dev, page_to_phys(page), size)) {
|
|
|
|
dma_release_from_contiguous(dev, page, count);
|
|
|
|
page = NULL;
|
|
|
|
}
|
|
|
|
}
|
2017-12-22 10:51:44 +00:00
|
|
|
if (!page)
|
2017-12-22 10:55:23 +00:00
|
|
|
page = alloc_pages_node(dev_to_node(dev), gfp, page_order);
|
2018-01-09 22:40:57 +00:00
|
|
|
|
|
|
|
if (page && !dma_coherent_ok(dev, page_to_phys(page), size)) {
|
|
|
|
__free_pages(page, page_order);
|
|
|
|
page = NULL;
|
|
|
|
|
2018-04-16 15:18:19 +00:00
|
|
|
if (IS_ENABLED(CONFIG_ZONE_DMA32) &&
|
2018-09-07 00:30:54 +00:00
|
|
|
phys_mask < DMA_BIT_MASK(64) &&
|
2018-04-16 15:18:19 +00:00
|
|
|
!(gfp & (GFP_DMA32 | GFP_DMA))) {
|
|
|
|
gfp |= GFP_DMA32;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
2019-02-13 07:01:03 +00:00
|
|
|
if (IS_ENABLED(CONFIG_ZONE_DMA) && !(gfp & GFP_DMA)) {
|
2018-01-09 22:40:57 +00:00
|
|
|
gfp = (gfp & ~GFP_DMA32) | GFP_DMA;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 16:27:56 +00:00
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *dma_direct_alloc_pages(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t gfp, unsigned long attrs)
|
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
void *ret;
|
|
|
|
|
|
|
|
page = __dma_direct_alloc_pages(dev, size, dma_handle, gfp, attrs);
|
2017-12-22 10:51:44 +00:00
|
|
|
if (!page)
|
|
|
|
return NULL;
|
2018-11-04 16:27:56 +00:00
|
|
|
|
2018-09-22 18:47:26 +00:00
|
|
|
if (PageHighMem(page)) {
|
|
|
|
/*
|
|
|
|
* Depending on the cma= arguments and per-arch setup
|
|
|
|
* dma_alloc_from_contiguous could return highmem pages.
|
|
|
|
* Without remapping there is no way to return them here,
|
|
|
|
* so log an error and fail.
|
|
|
|
*/
|
|
|
|
dev_info(dev, "Rejecting highmem page from CMA.\n");
|
|
|
|
__dma_direct_free_pages(dev, size, page);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-03-19 10:38:25 +00:00
|
|
|
ret = page_address(page);
|
|
|
|
if (force_dma_unencrypted()) {
|
2018-11-04 16:27:56 +00:00
|
|
|
set_memory_decrypted((unsigned long)ret, 1 << get_order(size));
|
2018-03-19 10:38:25 +00:00
|
|
|
*dma_handle = __phys_to_dma(dev, page_to_phys(page));
|
|
|
|
} else {
|
|
|
|
*dma_handle = phys_to_dma(dev, page_to_phys(page));
|
|
|
|
}
|
|
|
|
memset(ret, 0, size);
|
|
|
|
return ret;
|
2016-02-03 05:46:32 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 16:27:56 +00:00
|
|
|
void __dma_direct_free_pages(struct device *dev, size_t size, struct page *page)
|
|
|
|
{
|
|
|
|
unsigned int count = PAGE_ALIGN(size) >> PAGE_SHIFT;
|
|
|
|
|
|
|
|
if (!dma_release_from_contiguous(dev, page, count))
|
|
|
|
__free_pages(page, get_order(size));
|
|
|
|
}
|
|
|
|
|
2018-09-08 09:22:43 +00:00
|
|
|
void dma_direct_free_pages(struct device *dev, size_t size, void *cpu_addr,
|
2018-01-09 15:30:23 +00:00
|
|
|
dma_addr_t dma_addr, unsigned long attrs)
|
2016-02-03 05:46:32 +00:00
|
|
|
{
|
2018-03-19 10:38:25 +00:00
|
|
|
unsigned int page_order = get_order(size);
|
2017-12-22 10:51:44 +00:00
|
|
|
|
2018-03-19 10:38:25 +00:00
|
|
|
if (force_dma_unencrypted())
|
|
|
|
set_memory_encrypted((unsigned long)cpu_addr, 1 << page_order);
|
2018-11-04 16:27:56 +00:00
|
|
|
__dma_direct_free_pages(dev, size, virt_to_page(cpu_addr));
|
2016-02-03 05:46:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-08 09:22:43 +00:00
|
|
|
void *dma_direct_alloc(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t gfp, unsigned long attrs)
|
|
|
|
{
|
|
|
|
if (!dev_is_dma_coherent(dev))
|
|
|
|
return arch_dma_alloc(dev, size, dma_handle, gfp, attrs);
|
|
|
|
return dma_direct_alloc_pages(dev, size, dma_handle, gfp, attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dma_direct_free(struct device *dev, size_t size,
|
|
|
|
void *cpu_addr, dma_addr_t dma_addr, unsigned long attrs)
|
|
|
|
{
|
|
|
|
if (!dev_is_dma_coherent(dev))
|
|
|
|
arch_dma_free(dev, size, cpu_addr, dma_addr, attrs);
|
|
|
|
else
|
|
|
|
dma_direct_free_pages(dev, size, cpu_addr, dma_addr, attrs);
|
|
|
|
}
|
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
|
|
|
|
defined(CONFIG_SWIOTLB)
|
|
|
|
void dma_direct_sync_single_for_device(struct device *dev,
|
2018-09-08 09:22:43 +00:00
|
|
|
dma_addr_t addr, size_t size, enum dma_data_direction dir)
|
|
|
|
{
|
2018-12-03 10:43:54 +00:00
|
|
|
phys_addr_t paddr = dma_to_phys(dev, addr);
|
|
|
|
|
|
|
|
if (unlikely(is_swiotlb_buffer(paddr)))
|
|
|
|
swiotlb_tbl_sync_single(dev, paddr, size, dir, SYNC_FOR_DEVICE);
|
|
|
|
|
|
|
|
if (!dev_is_dma_coherent(dev))
|
|
|
|
arch_sync_dma_for_device(dev, paddr, size, dir);
|
2018-09-08 09:22:43 +00:00
|
|
|
}
|
2018-12-06 21:39:32 +00:00
|
|
|
EXPORT_SYMBOL(dma_direct_sync_single_for_device);
|
2018-09-08 09:22:43 +00:00
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
void dma_direct_sync_sg_for_device(struct device *dev,
|
2018-09-08 09:22:43 +00:00
|
|
|
struct scatterlist *sgl, int nents, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
struct scatterlist *sg;
|
|
|
|
int i;
|
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
for_each_sg(sgl, sg, nents, i) {
|
|
|
|
if (unlikely(is_swiotlb_buffer(sg_phys(sg))))
|
|
|
|
swiotlb_tbl_sync_single(dev, sg_phys(sg), sg->length,
|
|
|
|
dir, SYNC_FOR_DEVICE);
|
2018-09-08 09:22:43 +00:00
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
if (!dev_is_dma_coherent(dev))
|
|
|
|
arch_sync_dma_for_device(dev, sg_phys(sg), sg->length,
|
|
|
|
dir);
|
|
|
|
}
|
2018-09-08 09:22:43 +00:00
|
|
|
}
|
2018-12-06 21:39:32 +00:00
|
|
|
EXPORT_SYMBOL(dma_direct_sync_sg_for_device);
|
2018-12-03 10:14:09 +00:00
|
|
|
#endif
|
2018-09-08 09:22:43 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
|
2018-12-03 10:43:54 +00:00
|
|
|
defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL) || \
|
|
|
|
defined(CONFIG_SWIOTLB)
|
|
|
|
void dma_direct_sync_single_for_cpu(struct device *dev,
|
2018-09-08 09:22:43 +00:00
|
|
|
dma_addr_t addr, size_t size, enum dma_data_direction dir)
|
|
|
|
{
|
2018-12-03 10:43:54 +00:00
|
|
|
phys_addr_t paddr = dma_to_phys(dev, addr);
|
|
|
|
|
|
|
|
if (!dev_is_dma_coherent(dev)) {
|
|
|
|
arch_sync_dma_for_cpu(dev, paddr, size, dir);
|
|
|
|
arch_sync_dma_for_cpu_all(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlikely(is_swiotlb_buffer(paddr)))
|
|
|
|
swiotlb_tbl_sync_single(dev, paddr, size, dir, SYNC_FOR_CPU);
|
2018-09-08 09:22:43 +00:00
|
|
|
}
|
2018-12-06 21:39:32 +00:00
|
|
|
EXPORT_SYMBOL(dma_direct_sync_single_for_cpu);
|
2018-09-08 09:22:43 +00:00
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
void dma_direct_sync_sg_for_cpu(struct device *dev,
|
2018-09-08 09:22:43 +00:00
|
|
|
struct scatterlist *sgl, int nents, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
struct scatterlist *sg;
|
|
|
|
int i;
|
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
for_each_sg(sgl, sg, nents, i) {
|
|
|
|
if (!dev_is_dma_coherent(dev))
|
|
|
|
arch_sync_dma_for_cpu(dev, sg_phys(sg), sg->length, dir);
|
|
|
|
|
|
|
|
if (unlikely(is_swiotlb_buffer(sg_phys(sg))))
|
|
|
|
swiotlb_tbl_sync_single(dev, sg_phys(sg), sg->length, dir,
|
|
|
|
SYNC_FOR_CPU);
|
|
|
|
}
|
2018-09-08 09:22:43 +00:00
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
if (!dev_is_dma_coherent(dev))
|
|
|
|
arch_sync_dma_for_cpu_all(dev);
|
2018-09-08 09:22:43 +00:00
|
|
|
}
|
2018-12-06 21:39:32 +00:00
|
|
|
EXPORT_SYMBOL(dma_direct_sync_sg_for_cpu);
|
2018-09-08 09:22:43 +00:00
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
void dma_direct_unmap_page(struct device *dev, dma_addr_t addr,
|
2018-09-08 09:22:43 +00:00
|
|
|
size_t size, enum dma_data_direction dir, unsigned long attrs)
|
|
|
|
{
|
2018-12-03 10:43:54 +00:00
|
|
|
phys_addr_t phys = dma_to_phys(dev, addr);
|
|
|
|
|
2018-09-08 09:22:43 +00:00
|
|
|
if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC))
|
|
|
|
dma_direct_sync_single_for_cpu(dev, addr, size, dir);
|
2018-12-03 10:43:54 +00:00
|
|
|
|
|
|
|
if (unlikely(is_swiotlb_buffer(phys)))
|
|
|
|
swiotlb_tbl_unmap_single(dev, phys, size, dir, attrs);
|
2018-09-08 09:22:43 +00:00
|
|
|
}
|
2018-12-06 21:39:32 +00:00
|
|
|
EXPORT_SYMBOL(dma_direct_unmap_page);
|
2018-09-08 09:22:43 +00:00
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
void dma_direct_unmap_sg(struct device *dev, struct scatterlist *sgl,
|
2018-09-08 09:22:43 +00:00
|
|
|
int nents, enum dma_data_direction dir, unsigned long attrs)
|
|
|
|
{
|
2018-12-03 10:43:54 +00:00
|
|
|
struct scatterlist *sg;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_sg(sgl, sg, nents, i)
|
|
|
|
dma_direct_unmap_page(dev, sg->dma_address, sg_dma_len(sg), dir,
|
|
|
|
attrs);
|
2018-09-08 09:22:43 +00:00
|
|
|
}
|
2018-12-06 21:39:32 +00:00
|
|
|
EXPORT_SYMBOL(dma_direct_unmap_sg);
|
2018-09-08 09:22:43 +00:00
|
|
|
#endif
|
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
static inline bool dma_direct_possible(struct device *dev, dma_addr_t dma_addr,
|
|
|
|
size_t size)
|
|
|
|
{
|
|
|
|
return swiotlb_force != SWIOTLB_FORCE &&
|
2019-03-13 17:45:21 +00:00
|
|
|
dma_capable(dev, dma_addr, size);
|
2018-12-03 10:43:54 +00:00
|
|
|
}
|
|
|
|
|
2018-04-16 13:24:51 +00:00
|
|
|
dma_addr_t dma_direct_map_page(struct device *dev, struct page *page,
|
2018-01-09 15:30:23 +00:00
|
|
|
unsigned long offset, size_t size, enum dma_data_direction dir,
|
|
|
|
unsigned long attrs)
|
2016-02-03 05:46:32 +00:00
|
|
|
{
|
2018-09-08 09:22:43 +00:00
|
|
|
phys_addr_t phys = page_to_phys(page) + offset;
|
|
|
|
dma_addr_t dma_addr = phys_to_dma(dev, phys);
|
2018-01-09 15:30:47 +00:00
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
if (unlikely(!dma_direct_possible(dev, dma_addr, size)) &&
|
|
|
|
!swiotlb_map(dev, &phys, &dma_addr, size, dir, attrs)) {
|
2018-12-03 06:43:05 +00:00
|
|
|
report_addr(dev, dma_addr, size);
|
2018-11-21 17:52:35 +00:00
|
|
|
return DMA_MAPPING_ERROR;
|
2018-12-03 06:43:05 +00:00
|
|
|
}
|
2018-09-08 09:22:43 +00:00
|
|
|
|
2018-12-03 10:43:54 +00:00
|
|
|
if (!dev_is_dma_coherent(dev) && !(attrs & DMA_ATTR_SKIP_CPU_SYNC))
|
|
|
|
arch_sync_dma_for_device(dev, phys, size, dir);
|
2018-01-09 15:30:47 +00:00
|
|
|
return dma_addr;
|
2016-02-03 05:46:32 +00:00
|
|
|
}
|
2018-12-06 21:39:32 +00:00
|
|
|
EXPORT_SYMBOL(dma_direct_map_page);
|
2016-02-03 05:46:32 +00:00
|
|
|
|
2018-04-16 13:24:51 +00:00
|
|
|
int dma_direct_map_sg(struct device *dev, struct scatterlist *sgl, int nents,
|
|
|
|
enum dma_data_direction dir, unsigned long attrs)
|
2016-02-03 05:46:32 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct scatterlist *sg;
|
|
|
|
|
|
|
|
for_each_sg(sgl, sg, nents, i) {
|
2018-12-03 10:14:09 +00:00
|
|
|
sg->dma_address = dma_direct_map_page(dev, sg_page(sg),
|
|
|
|
sg->offset, sg->length, dir, attrs);
|
|
|
|
if (sg->dma_address == DMA_MAPPING_ERROR)
|
2018-12-03 10:43:54 +00:00
|
|
|
goto out_unmap;
|
2016-02-03 05:46:32 +00:00
|
|
|
sg_dma_len(sg) = sg->length;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nents;
|
2018-12-03 10:43:54 +00:00
|
|
|
|
|
|
|
out_unmap:
|
|
|
|
dma_direct_unmap_sg(dev, sgl, i, dir, attrs | DMA_ATTR_SKIP_CPU_SYNC);
|
|
|
|
return 0;
|
2016-02-03 05:46:32 +00:00
|
|
|
}
|
2018-12-06 21:39:32 +00:00
|
|
|
EXPORT_SYMBOL(dma_direct_map_sg);
|
2016-02-03 05:46:32 +00:00
|
|
|
|
2019-01-04 17:20:05 +00:00
|
|
|
dma_addr_t dma_direct_map_resource(struct device *dev, phys_addr_t paddr,
|
|
|
|
size_t size, enum dma_data_direction dir, unsigned long attrs)
|
|
|
|
{
|
|
|
|
dma_addr_t dma_addr = paddr;
|
|
|
|
|
|
|
|
if (unlikely(!dma_direct_possible(dev, dma_addr, size))) {
|
|
|
|
report_addr(dev, dma_addr, size);
|
|
|
|
return DMA_MAPPING_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dma_addr;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dma_direct_map_resource);
|
|
|
|
|
2018-09-07 07:31:58 +00:00
|
|
|
/*
|
|
|
|
* Because 32-bit DMA masks are so common we expect every architecture to be
|
|
|
|
* able to satisfy them - either by not supporting more physical memory, or by
|
|
|
|
* providing a ZONE_DMA32. If neither is the case, the architecture needs to
|
|
|
|
* use an IOMMU instead of the direct mapping.
|
|
|
|
*/
|
2017-12-24 14:04:32 +00:00
|
|
|
int dma_direct_supported(struct device *dev, u64 mask)
|
|
|
|
{
|
2018-09-07 07:31:58 +00:00
|
|
|
u64 min_mask;
|
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_ZONE_DMA))
|
|
|
|
min_mask = DMA_BIT_MASK(ARCH_ZONE_DMA_BITS);
|
|
|
|
else
|
|
|
|
min_mask = DMA_BIT_MASK(32);
|
|
|
|
|
|
|
|
min_mask = min_t(u64, min_mask, (max_pfn - 1) << PAGE_SHIFT);
|
|
|
|
|
2018-12-17 14:39:16 +00:00
|
|
|
/*
|
|
|
|
* This check needs to be against the actual bit mask value, so
|
|
|
|
* use __phys_to_dma() here so that the SME encryption mask isn't
|
|
|
|
* part of the check.
|
|
|
|
*/
|
|
|
|
return mask >= __phys_to_dma(dev, min_mask);
|
2017-12-24 14:04:32 +00:00
|
|
|
}
|
2019-02-07 11:59:15 +00:00
|
|
|
|
|
|
|
size_t dma_direct_max_mapping_size(struct device *dev)
|
|
|
|
{
|
|
|
|
size_t size = SIZE_MAX;
|
|
|
|
|
|
|
|
/* If SWIOTLB is active, use its maximum mapping size */
|
|
|
|
if (is_swiotlb_active())
|
|
|
|
size = swiotlb_max_mapping_size(dev);
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|