mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 18:16:01 +03:00
Add a translation layer to convert from the NVGPU_AS_* flags to to new set of NVGPU_VM_MAP_* and NVGPU_VM_AREA_ALLOC_* flags. This allows the common MM code to not depend on the UAPI header defined for Linux. In addition to this change a couple of other small changes were made: 1. Deprecate, print a warning, and ignore usage of the NVGPU_AS_MAP_BUFFER_FLAGS_MAPPABLE_COMPBITS flag. 2. Move the t19x IO coherence flag from the t19x UAPI header to the regular UAPI header. JIRA NVGPU-293 Change-Id: I146402b0e8617294374e63e78f8826c57cd3b291 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1599802 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
76 lines
2.3 KiB
C
76 lines
2.3 KiB
C
/*
|
|
* Copyright (c) 2017, 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.
|
|
*/
|
|
|
|
#ifndef __NVGPU_VM_AREA_H__
|
|
#define __NVGPU_VM_AREA_H__
|
|
|
|
#include <nvgpu/list.h>
|
|
#include <nvgpu/types.h>
|
|
|
|
struct vm_gk20a;
|
|
struct gk20a_as_share;
|
|
struct nvgpu_as_alloc_space_args;
|
|
struct nvgpu_as_free_space_args;
|
|
|
|
struct nvgpu_vm_area {
|
|
/*
|
|
* Entry into the list of VM areas owned by a VM.
|
|
*/
|
|
struct nvgpu_list_node vm_area_list;
|
|
|
|
/*
|
|
* List of buffers mapped into this vm_area.
|
|
*/
|
|
struct nvgpu_list_node buffer_list_head;
|
|
|
|
u32 flags;
|
|
u32 pgsz_idx;
|
|
u64 addr;
|
|
u64 size;
|
|
bool sparse;
|
|
};
|
|
|
|
static inline struct nvgpu_vm_area *
|
|
nvgpu_vm_area_from_vm_area_list(struct nvgpu_list_node *node)
|
|
{
|
|
return (struct nvgpu_vm_area *)
|
|
((uintptr_t)node - offsetof(struct nvgpu_vm_area,
|
|
vm_area_list));
|
|
};
|
|
|
|
/*
|
|
* Alloc space flags.
|
|
*/
|
|
#define NVGPU_VM_AREA_ALLOC_FIXED_OFFSET (1 << 0)
|
|
#define NVGPU_VM_AREA_ALLOC_SPARSE (1 << 1)
|
|
|
|
int nvgpu_vm_area_alloc(struct vm_gk20a *vm, u32 pages, u32 page_size,
|
|
u64 *addr, u32 flags);
|
|
int nvgpu_vm_area_free(struct vm_gk20a *vm, u64 addr);
|
|
|
|
struct nvgpu_vm_area *nvgpu_vm_area_find(struct vm_gk20a *vm, u64 addr);
|
|
int nvgpu_vm_area_validate_buffer(struct vm_gk20a *vm,
|
|
u64 map_offset, u64 map_size, int pgsz_idx,
|
|
struct nvgpu_vm_area **pvm_area);
|
|
|
|
#endif
|