mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
Split the nvgpu_sgt code out from the nvgpu_mem code. Although the two chunks of code are related the SGT code is distinct and as such should be its own unit. To do this a new source file has been added - nvgpu_sgt.c - which contains all the nvgpu_sgt common APIs. These are the facade APIs to abstract the actual details of how any given nvgpu_sgt is actually implemented. An abstract unit - nvgpu_sgt_os - was also defined. This unit exists solely for the nvgpu_sgt unit to call so that the OS specific nvgpu_sgt_os_create_from_mem() API can be moved from the common nvgpu_sgt unit. Note this also updates the name of what the OS specific units are expected to call. Common code may still use the generic nvgpu_sgt_create_from_mem() API. JIRA NVGPU-1391 Change-Id: I37f5b2bbf9f84c0fb6bc296c3e04ea13518bd4d0 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1946012 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
178 lines
4.7 KiB
C
178 lines
4.7 KiB
C
/*
|
|
* Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include <nvgpu/bug.h>
|
|
#include <nvgpu/dma.h>
|
|
#include <nvgpu/gmmu.h>
|
|
#include <nvgpu/kmem.h>
|
|
#include <nvgpu/nvgpu_mem.h>
|
|
#include <nvgpu/nvgpu_sgt.h>
|
|
#include <nvgpu/nvgpu_sgt_os.h>
|
|
#include <nvgpu/gk20a.h>
|
|
|
|
#define DMA_ERROR_CODE (~(u64)0x0)
|
|
|
|
/*
|
|
* These functions are somewhat meaningless.
|
|
*/
|
|
u64 nvgpu_mem_get_addr(struct gk20a *g, struct nvgpu_mem *mem)
|
|
{
|
|
return (u64)(uintptr_t)mem->cpu_va;
|
|
}
|
|
|
|
u64 nvgpu_mem_get_phys_addr(struct gk20a *g, struct nvgpu_mem *mem)
|
|
{
|
|
return (u64)(uintptr_t)mem->cpu_va;
|
|
}
|
|
|
|
static struct nvgpu_sgl *nvgpu_mem_sgl_next(struct nvgpu_sgl *sgl)
|
|
{
|
|
struct nvgpu_mem_sgl *mem = (struct nvgpu_mem_sgl *)sgl;
|
|
|
|
return (struct nvgpu_sgl *) mem->next;
|
|
}
|
|
|
|
static u64 nvgpu_mem_sgl_phys(struct gk20a *g, struct nvgpu_sgl *sgl)
|
|
{
|
|
struct nvgpu_mem_sgl *mem = (struct nvgpu_mem_sgl *)sgl;
|
|
|
|
return (u64)(uintptr_t)mem->phys;
|
|
}
|
|
|
|
static u64 nvgpu_mem_sgl_ipa_to_pa(struct gk20a *g, struct nvgpu_sgl *sgl,
|
|
u64 ipa, u64 *pa_len)
|
|
{
|
|
return nvgpu_mem_sgl_phys(g, sgl);
|
|
}
|
|
|
|
static u64 nvgpu_mem_sgl_dma(struct nvgpu_sgl *sgl)
|
|
{
|
|
struct nvgpu_mem_sgl *mem = (struct nvgpu_mem_sgl *)sgl;
|
|
|
|
return (u64)(uintptr_t)mem->dma;
|
|
}
|
|
|
|
static u64 nvgpu_mem_sgl_length(struct nvgpu_sgl *sgl)
|
|
{
|
|
struct nvgpu_mem_sgl *mem = (struct nvgpu_mem_sgl *)sgl;
|
|
|
|
return (u64)mem->length;
|
|
}
|
|
|
|
static u64 nvgpu_mem_sgl_gpu_addr(struct gk20a *g, struct nvgpu_sgl *sgl,
|
|
struct nvgpu_gmmu_attrs *attrs)
|
|
{
|
|
struct nvgpu_mem_sgl *mem = (struct nvgpu_mem_sgl *)sgl;
|
|
|
|
if (mem->dma == 0U) {
|
|
return g->ops.mm.gpu_phys_addr(g, attrs, mem->phys);
|
|
}
|
|
|
|
if (mem->dma == DMA_ERROR_CODE) {
|
|
return 0x0;
|
|
}
|
|
|
|
return nvgpu_mem_iommu_translate(g, mem->dma);
|
|
}
|
|
|
|
static bool nvgpu_mem_sgt_iommuable(struct gk20a *g, struct nvgpu_sgt *sgt)
|
|
{
|
|
return nvgpu_iommuable(g);
|
|
}
|
|
|
|
static void nvgpu_mem_sgt_free(struct gk20a *g, struct nvgpu_sgt *sgt)
|
|
{
|
|
if (sgt->sgl != NULL) {
|
|
nvgpu_kfree(g, sgt->sgl);
|
|
}
|
|
nvgpu_kfree(g, sgt);
|
|
}
|
|
|
|
static struct nvgpu_sgt_ops nvgpu_sgt_posix_ops = {
|
|
.sgl_next = nvgpu_mem_sgl_next,
|
|
.sgl_phys = nvgpu_mem_sgl_phys,
|
|
.sgl_ipa = nvgpu_mem_sgl_phys,
|
|
.sgl_ipa_to_pa = nvgpu_mem_sgl_ipa_to_pa,
|
|
.sgl_dma = nvgpu_mem_sgl_dma,
|
|
.sgl_length = nvgpu_mem_sgl_length,
|
|
.sgl_gpu_addr = nvgpu_mem_sgl_gpu_addr,
|
|
.sgt_iommuable = nvgpu_mem_sgt_iommuable,
|
|
.sgt_free = nvgpu_mem_sgt_free,
|
|
};
|
|
|
|
struct nvgpu_sgt *nvgpu_sgt_os_create_from_mem(struct gk20a *g,
|
|
struct nvgpu_mem *mem)
|
|
{
|
|
struct nvgpu_mem_sgl *sgl;
|
|
struct nvgpu_sgt *sgt = nvgpu_kzalloc(g, sizeof(*sgt));
|
|
|
|
if (sgt == NULL)
|
|
return NULL;
|
|
|
|
/*
|
|
* The userspace implementation is simple: a single 'entry' (which we
|
|
* only need the nvgpu_mem_sgl struct to describe). A unit test can
|
|
* easily replace it if needed.
|
|
*/
|
|
sgt->ops = &nvgpu_sgt_posix_ops;
|
|
|
|
sgl = (struct nvgpu_mem_sgl *) nvgpu_kzalloc(g, sizeof(
|
|
struct nvgpu_mem_sgl));
|
|
if (sgl == NULL) {
|
|
nvgpu_kfree(g, sgt);
|
|
return NULL;
|
|
}
|
|
|
|
sgl->length = mem->size;
|
|
sgl->phys = (u64) mem->cpu_va;
|
|
sgt->sgl = (struct nvgpu_sgl *) sgl;
|
|
|
|
return sgt;
|
|
}
|
|
|
|
int nvgpu_mem_create_from_mem(struct gk20a *g,
|
|
struct nvgpu_mem *dest, struct nvgpu_mem *src,
|
|
u64 start_page, int nr_pages)
|
|
{
|
|
u64 start = start_page * U64(PAGE_SIZE);
|
|
u64 size = U64(nr_pages) * U64(PAGE_SIZE);
|
|
|
|
if (src->aperture != APERTURE_SYSMEM)
|
|
return -EINVAL;
|
|
|
|
/* Some silly things a caller might do... */
|
|
if (size > src->size)
|
|
return -EINVAL;
|
|
if ((start + size) > src->size)
|
|
return -EINVAL;
|
|
|
|
(void) memset(dest, 0, sizeof(*dest));
|
|
|
|
dest->cpu_va = ((char *)src->cpu_va) + start;
|
|
dest->mem_flags = src->mem_flags | NVGPU_MEM_FLAG_SHADOW_COPY;
|
|
dest->aperture = src->aperture;
|
|
dest->skip_wmb = src->skip_wmb;
|
|
dest->size = size;
|
|
|
|
return 0;
|
|
}
|