mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
add_mm_counter is not an exported function, so instead use atomic_long_add_return/percpu_counter_add to directly modify RSS stat counters. Bug 5222690 Change-Id: I51a68d932aeb04f96e51a4a3c286ee5c8efc789a Signed-off-by: Ketan Patil <ketanp@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3446982 (cherry picked from commit8e1a6b2dd1) Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3453099 (cherry picked from commite488812038) Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3454643 GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Tested-by: Amulya Yarlagadda <ayarlagadda@nvidia.com> Reviewed-by: Amulya Yarlagadda <ayarlagadda@nvidia.com>
1358 lines
33 KiB
C
1358 lines
33 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2011-2025, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Handle allocation and freeing routines for nvmap
|
|
*/
|
|
|
|
#define pr_fmt(fmt) "%s: " fmt, __func__
|
|
|
|
#include <linux/moduleparam.h>
|
|
#include <linux/random.h>
|
|
#include <linux/version.h>
|
|
#include <linux/io.h>
|
|
#if KERNEL_VERSION(4, 15, 0) > LINUX_VERSION_CODE
|
|
#include <soc/tegra/chip-id.h>
|
|
#else
|
|
#include <soc/tegra/fuse.h>
|
|
#endif
|
|
#include <trace/events/nvmap.h>
|
|
|
|
#ifndef NVMAP_LOADABLE_MODULE
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 4, 0)
|
|
#include <linux/dma-map-ops.h>
|
|
#endif
|
|
#endif /* !NVMAP_LOADABLE_MODULE */
|
|
|
|
#ifdef NVMAP_UPSTREAM_KERNEL
|
|
#include <linux/libnvdimm.h>
|
|
#endif /* NVMAP_UPSTREAM_KERNEL */
|
|
#include "nvmap_priv.h"
|
|
#include <linux/mm.h>
|
|
|
|
bool nvmap_convert_carveout_to_iovmm;
|
|
bool nvmap_convert_iovmm_to_carveout;
|
|
|
|
u32 nvmap_max_handle_count;
|
|
u64 nvmap_big_page_allocs;
|
|
u64 nvmap_total_page_allocs;
|
|
|
|
/* handles may be arbitrarily large (16+MiB), and any handle allocated from
|
|
* the kernel (i.e., not a carveout handle) includes its array of pages. to
|
|
* preserve kmalloc space, if the array of pages exceeds PAGELIST_VMALLOC_MIN,
|
|
* the array is allocated using vmalloc. */
|
|
#define PAGELIST_VMALLOC_MIN (PAGE_SIZE)
|
|
|
|
void *nvmap_altalloc(size_t len)
|
|
{
|
|
if (len > PAGELIST_VMALLOC_MIN)
|
|
return vzalloc(len);
|
|
else
|
|
return kzalloc(len, GFP_KERNEL);
|
|
}
|
|
|
|
void nvmap_altfree(void *ptr, size_t len)
|
|
{
|
|
if (!ptr)
|
|
return;
|
|
|
|
if (len > PAGELIST_VMALLOC_MIN)
|
|
vfree(ptr);
|
|
else
|
|
kfree(ptr);
|
|
}
|
|
|
|
static struct page *nvmap_alloc_pages_exact(gfp_t gfp, size_t size, bool use_numa, int numa_id)
|
|
{
|
|
struct page *page, *p, *e;
|
|
unsigned int order;
|
|
|
|
order = get_order(size);
|
|
if (!use_numa)
|
|
page = alloc_pages(gfp, order);
|
|
else
|
|
page = alloc_pages_node(numa_id, gfp, order);
|
|
|
|
if (!page)
|
|
return NULL;
|
|
|
|
split_page(page, order);
|
|
e = nth_page(page, (1 << order));
|
|
for (p = nth_page(page, (size >> PAGE_SHIFT)); p < e; p++)
|
|
__free_page(p);
|
|
|
|
return page;
|
|
}
|
|
|
|
static uint s_nr_colors = 1;
|
|
module_param_named(nr_colors, s_nr_colors, uint, 0644);
|
|
|
|
#define NVMAP_MAX_COLORS 16
|
|
|
|
struct color_list {
|
|
u32 *counts;
|
|
u32 *heads;
|
|
u32 *list;
|
|
struct page **pages;
|
|
u32 page_count;
|
|
u32 length;
|
|
};
|
|
|
|
static struct color_list *alloc_color_list(u32 nr_pages, u32 nr_colors)
|
|
{
|
|
struct color_list *list;
|
|
u32 *temp = NULL;
|
|
u32 nr_u32;
|
|
|
|
list = kzalloc(sizeof(struct color_list), GFP_KERNEL);
|
|
if (!list)
|
|
return NULL;
|
|
|
|
list->pages = vmalloc(nr_pages * sizeof(struct page *));
|
|
if (!list->pages) {
|
|
kfree(list);
|
|
return NULL;
|
|
}
|
|
|
|
/* Allocate counts, heads, and list with a single allocation */
|
|
nr_u32 = nr_pages + 2 * nr_colors;
|
|
temp = vmalloc(nr_u32 * sizeof(u32));
|
|
if (!temp)
|
|
goto fail;
|
|
|
|
memset(&temp[0], 0, 2 * nr_colors * sizeof(u32));
|
|
list->counts = &temp[0];
|
|
list->heads = &temp[nr_colors];
|
|
list->list = &temp[2 * nr_colors];
|
|
|
|
list->page_count = nr_pages;
|
|
|
|
return list;
|
|
fail:
|
|
if (list->pages)
|
|
vfree(list->pages);
|
|
kfree(list);
|
|
return NULL;
|
|
}
|
|
|
|
static void free_color_list(struct color_list *list)
|
|
{
|
|
vfree(list->pages);
|
|
vfree(list->counts); /* Frees counts, heads, and list */
|
|
kfree(list);
|
|
}
|
|
|
|
static struct page *list_pop_page(struct color_list *list, u32 color, char *who)
|
|
{
|
|
u32 i;
|
|
|
|
/* Debug check */
|
|
if ((list->counts[color] == 0) || (list->counts[color] > 1 << 31)) {
|
|
pr_err("list_pop_page: OVER FREE!\n");
|
|
pr_err(" called from: %s\n", who);
|
|
for (i = 0; i < s_nr_colors; i++)
|
|
pr_err(" color = %d: %d\n", i, list->counts[i]);
|
|
BUG();
|
|
}
|
|
i = list->heads[color];
|
|
list->heads[color] = list->list[i];
|
|
list->counts[color]--;
|
|
return list->pages[i];
|
|
}
|
|
|
|
struct nvmap_alloc_state {
|
|
u32 nr_colors;
|
|
u32 (*addr_to_color)(uintptr_t phys);
|
|
u32 tile;
|
|
u32 output_count;
|
|
u32 nr_pages;
|
|
u32 max_color_per_tile;
|
|
struct color_list *list;
|
|
};
|
|
|
|
#define CHANNEL_MASK_0 0x27af5200
|
|
#define CHANNEL_MASK_1 0x563ca400
|
|
#define CHANNEL_MASK_2 0x3f264800
|
|
#define CHANNEL_MASK_3 0xe2443000
|
|
#define BANK_MASK_0 0x5ca78400
|
|
#define BANK_MASK_1 0xe5724800
|
|
#define BANK_MASK_2 0x973bb000
|
|
|
|
#define BIT_N(a, n) \
|
|
(((a) >> (n)) & 1)
|
|
|
|
#define BITS_XOR_9_TO_31(a) \
|
|
(BIT_N((a), 9) ^ BIT_N((a), 10) ^ BIT_N((a), 11) ^ BIT_N((a), 12) ^ \
|
|
BIT_N((a), 13) ^ BIT_N((a), 14) ^ BIT_N((a), 15) ^ BIT_N((a), 16) ^ \
|
|
BIT_N((a), 17) ^ BIT_N((a), 18) ^ BIT_N((a), 19) ^ BIT_N((a), 20) ^ \
|
|
BIT_N((a), 21) ^ BIT_N((a), 22) ^ BIT_N((a), 23) ^ BIT_N((a), 24) ^ \
|
|
BIT_N((a), 25) ^ BIT_N((a), 26) ^ BIT_N((a), 27) ^ BIT_N((a), 28) ^ \
|
|
BIT_N((a), 29) ^ BIT_N((a), 30) ^ BIT_N((a), 31))
|
|
|
|
#define BITS_XOR_10_TO_31(a) \
|
|
(BIT_N((a), 10) ^ BIT_N((a), 11) ^ BIT_N((a), 12) ^ \
|
|
BIT_N((a), 13) ^ BIT_N((a), 14) ^ BIT_N((a), 15) ^ BIT_N((a), 16) ^ \
|
|
BIT_N((a), 17) ^ BIT_N((a), 18) ^ BIT_N((a), 19) ^ BIT_N((a), 20) ^ \
|
|
BIT_N((a), 21) ^ BIT_N((a), 22) ^ BIT_N((a), 23) ^ BIT_N((a), 24) ^ \
|
|
BIT_N((a), 25) ^ BIT_N((a), 26) ^ BIT_N((a), 27) ^ BIT_N((a), 28) ^ \
|
|
BIT_N((a), 29) ^ BIT_N((a), 30) ^ BIT_N((a), 31))
|
|
|
|
static u32 addr_to_color_t19x(uintptr_t phys)
|
|
{
|
|
int color, chan, bank;
|
|
u32 addr = (u32)phys;
|
|
u32 xaddr = (u32)(phys >> 4);
|
|
|
|
|
|
chan = (BITS_XOR_9_TO_31(addr & CHANNEL_MASK_0) << 0);
|
|
chan |= (BITS_XOR_9_TO_31(addr & CHANNEL_MASK_1) << 1);
|
|
chan |= (BITS_XOR_9_TO_31(addr & CHANNEL_MASK_2) << 2);
|
|
chan |= (BITS_XOR_9_TO_31(addr & CHANNEL_MASK_3) << 3);
|
|
|
|
bank = (BITS_XOR_10_TO_31(xaddr & BANK_MASK_0) << 0);
|
|
bank |= (BITS_XOR_10_TO_31(xaddr & BANK_MASK_1) << 1);
|
|
bank |= (BITS_XOR_10_TO_31(xaddr & BANK_MASK_2) << 2);
|
|
|
|
WARN_ON(chan > 15);
|
|
WARN_ON(bank > 7);
|
|
/* It is preferable to color pages based on even/odd banks
|
|
* as well. To limit the number of colors to 16, bank info
|
|
* is not used in page coloring.
|
|
*/
|
|
color = chan;
|
|
|
|
return color;
|
|
}
|
|
|
|
static struct color_list *init_color_list(struct nvmap_alloc_state *state,
|
|
u32 nr_pages)
|
|
{
|
|
struct color_list *list;
|
|
u32 color, i, page_index = 0;
|
|
gfp_t gfp = GFP_NVMAP | __GFP_ZERO;
|
|
|
|
list = alloc_color_list(nr_pages, state->nr_colors);
|
|
if (!list)
|
|
return NULL;
|
|
|
|
#ifdef NVMAP_CONFIG_PAGE_POOLS
|
|
/* Allocated page from nvmap page pool if possible */
|
|
page_index = nvmap_page_pool_alloc_lots(&nvmap_dev->pool, list->pages, nr_pages,
|
|
false, 0);
|
|
#endif
|
|
/* Fall back to general page allocator */
|
|
for (i = page_index; i < nr_pages; i++) {
|
|
list->pages[i] = nvmap_alloc_pages_exact(gfp, PAGE_SIZE, false, 0);
|
|
if (!list->pages[i])
|
|
goto fail;
|
|
}
|
|
/* Clean the cache for any page that didn't come from the page pool */
|
|
if (page_index < nr_pages)
|
|
nvmap_clean_cache(&list->pages[page_index],
|
|
nr_pages - page_index);
|
|
|
|
/* Create linked list of colors and compute the histogram */
|
|
for (i = 0; i < nr_pages; i++) {
|
|
color = state->addr_to_color((uintptr_t)
|
|
page_to_phys(list->pages[i]));
|
|
list->list[i] = list->heads[color];
|
|
list->heads[color] = i;
|
|
list->counts[color]++;
|
|
}
|
|
return list;
|
|
fail:
|
|
while (i--)
|
|
__free_page(list->pages[i]);
|
|
free_color_list(list);
|
|
return NULL;
|
|
}
|
|
|
|
static void smooth_pages(struct color_list *list, u32 nr_extra, u32 nr_colors)
|
|
{
|
|
u32 i, j, color, max;
|
|
u32 counts[NVMAP_MAX_COLORS] = {0};
|
|
|
|
if (nr_extra == 0)
|
|
return;
|
|
|
|
/* Determine which colors need to be freed */
|
|
for (i = 0; i < nr_extra; i++) {
|
|
/* Find the max */
|
|
max = 0;
|
|
color = 0;
|
|
for (j = 0; j < nr_colors; j++) {
|
|
if (list->counts[j] - counts[j] > max) {
|
|
color = j;
|
|
max = list->counts[j] - counts[j];
|
|
}
|
|
}
|
|
counts[color]++;
|
|
}
|
|
|
|
/* Iterate through 0...nr_extra-1 in psuedorandom order */
|
|
do {
|
|
/* Pop the max off and free it */
|
|
for (color = 0; color < nr_colors; color++) {
|
|
while (counts[color]) {
|
|
__free_page(list_pop_page(list,
|
|
color, "smooth_pages"));
|
|
counts[color]--;
|
|
nr_extra--;
|
|
}
|
|
}
|
|
} while (nr_extra > 0);
|
|
}
|
|
|
|
static void add_perfect(struct nvmap_alloc_state *state, u32 nr_pages,
|
|
struct page **out_pages)
|
|
{
|
|
u32 i;
|
|
u32 color;
|
|
struct page *page;
|
|
uintptr_t virt_addr;
|
|
|
|
|
|
/* create a perfect tile */
|
|
for (i = 0;
|
|
i < state->nr_colors && state->output_count < nr_pages;
|
|
i++) {
|
|
virt_addr = (i + (state->tile * state->nr_colors)) * PAGE_SIZE;
|
|
color = state->addr_to_color(virt_addr);
|
|
page = list_pop_page(state->list, color, "perfect");
|
|
out_pages[state->output_count++] = page;
|
|
}
|
|
}
|
|
|
|
static void add_imperfect(struct nvmap_alloc_state *state, u32 nr_pages,
|
|
struct page **out_pages)
|
|
{
|
|
u32 i, j;
|
|
u32 max_count;
|
|
u32 color;
|
|
struct page *page;
|
|
uintptr_t virt_addr;
|
|
u32 counts[NVMAP_MAX_COLORS] = {0};
|
|
|
|
/* Determine which colors will go into the tile */
|
|
for (i = 0; i < state->nr_colors; i++) {
|
|
max_count = 0;
|
|
color = 0;
|
|
for (j = 0; j < state->nr_colors; j++) {
|
|
u32 left = state->list->counts[j] - counts[j];
|
|
|
|
if (left > max_count &&
|
|
counts[j] < state->max_color_per_tile) {
|
|
max_count = left;
|
|
color = j;
|
|
}
|
|
}
|
|
counts[color]++;
|
|
}
|
|
|
|
/* Arrange the colors into the tile */
|
|
for (i = 0;
|
|
i < state->nr_colors && state->output_count < nr_pages;
|
|
i++) {
|
|
virt_addr = (i + (i * state->nr_colors)) * PAGE_SIZE;
|
|
color = state->addr_to_color(virt_addr);
|
|
/* Find a substitute color */
|
|
if (counts[color] == 0) {
|
|
/* Find the color used the most in the tile */
|
|
max_count = 0;
|
|
for (j = 0; j < state->nr_colors; j++) {
|
|
if (counts[j] > max_count) {
|
|
max_count = counts[j];
|
|
color = j;
|
|
}
|
|
}
|
|
}
|
|
page = list_pop_page(state->list, color, "imperfect");
|
|
out_pages[state->output_count++] = page;
|
|
counts[color]--;
|
|
}
|
|
}
|
|
|
|
static int alloc_colored(u32 nr_pages,
|
|
struct page **out_pages, u32 chipid)
|
|
{
|
|
struct nvmap_alloc_state state;
|
|
u32 nr_alloc, max_count, min_count;
|
|
u32 nr_tiles, nr_perfect, nr_imperfect;
|
|
int dither_state;
|
|
u32 i;
|
|
|
|
state.nr_colors = s_nr_colors;
|
|
state.addr_to_color = addr_to_color_t19x;
|
|
|
|
/* Allocate pages for full 32-page tiles */
|
|
nr_tiles = (nr_pages + state.nr_colors - 1) / state.nr_colors;
|
|
/* Overallocate pages by 1/16th */
|
|
nr_alloc = state.nr_colors * nr_tiles;
|
|
nr_alloc += nr_alloc >> 4;
|
|
|
|
/* Create lists of each page color */
|
|
state.list = init_color_list(&state, nr_alloc);
|
|
if (!state.list)
|
|
return -ENOMEM;
|
|
|
|
/* Smooth out the histogram by freeing over allocated pages */
|
|
smooth_pages(state.list, nr_alloc - state.nr_colors * nr_tiles,
|
|
state.nr_colors);
|
|
|
|
max_count = 0;
|
|
min_count = state.list->counts[0];
|
|
for (i = 0; i < state.nr_colors; i++) {
|
|
if (state.list->counts[i] > max_count)
|
|
max_count = state.list->counts[i];
|
|
if (state.list->counts[i] < min_count)
|
|
min_count = state.list->counts[i];
|
|
}
|
|
|
|
/*
|
|
* Compute the number of perfect / imperfect tiles and the maximum
|
|
* number of pages with the same color can be in a tile
|
|
*
|
|
* Perfect tile: A tile which consist of one page of each color i.e. 16 pages,
|
|
* each of different color
|
|
* Imperfect tile: A tile which is not perfect i.e. at least some color will repeat
|
|
* max_color_per_tile: How many max times any color can be present in a tile
|
|
*/
|
|
if (min_count == 0) {
|
|
/*
|
|
* If there is no page of at least one color, then not a sigle perefect tile can be
|
|
* created. The max color pages would need to be distributed equally among all
|
|
* tiles.
|
|
*/
|
|
nr_perfect = 0;
|
|
state.max_color_per_tile = max_count / nr_tiles;
|
|
if (max_count % nr_tiles != 0)
|
|
(state.max_color_per_tile)++;
|
|
} else if (min_count == nr_tiles) {
|
|
/*
|
|
* If pages with each color are at least the number of tiles, then all of the tiles
|
|
* can be perfect.
|
|
*/
|
|
nr_perfect = nr_tiles;
|
|
state.max_color_per_tile = 1;
|
|
} else {
|
|
/*
|
|
* Some of the tiles can be perfect and remaining will be imperfect.
|
|
* min_count number of perfect tiles can be created, hence the min_count number of
|
|
* pages
|
|
* having max color would be present in the perfect tiles, The remaining pages would
|
|
* be distributed equally among the imperfect tiles.
|
|
*/
|
|
nr_perfect = min_count;
|
|
nr_imperfect = nr_tiles - nr_perfect;
|
|
state.max_color_per_tile = (max_count - nr_perfect) / nr_imperfect;
|
|
if ((max_count - nr_perfect) % nr_imperfect != 0)
|
|
(state.max_color_per_tile)++;
|
|
}
|
|
nr_imperfect = nr_tiles - nr_perfect;
|
|
|
|
/* Output tiles */
|
|
dither_state = nr_perfect - nr_imperfect;
|
|
state.output_count = 0;
|
|
for (state.tile = 0; state.tile < nr_tiles; state.tile++) {
|
|
if (dither_state > 0) {
|
|
add_perfect(&state, nr_pages, out_pages);
|
|
dither_state -= nr_imperfect;
|
|
} else {
|
|
add_imperfect(&state, nr_pages, out_pages);
|
|
dither_state += nr_perfect;
|
|
}
|
|
}
|
|
|
|
/* Free extra pages created when the buffer does not
|
|
* fill the last tile
|
|
*/
|
|
for (i = 0; i < state.nr_colors; i++)
|
|
while (state.list->counts[i] > 0)
|
|
__free_page(list_pop_page(state.list, i, "free"));
|
|
|
|
free_color_list(state.list);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int handle_page_alloc(struct nvmap_client *client,
|
|
struct nvmap_handle *h, bool contiguous)
|
|
{
|
|
size_t size = h->size;
|
|
size_t nr_page = size >> PAGE_SHIFT;
|
|
int i = 0, page_index = 0, allocated = 0;
|
|
struct page **pages;
|
|
gfp_t gfp = GFP_NVMAP | __GFP_ZERO;
|
|
#ifdef CONFIG_ARM64_4K_PAGES
|
|
#ifdef NVMAP_CONFIG_PAGE_POOLS
|
|
int pages_per_big_pg = NVMAP_PP_BIG_PAGE_SIZE >> PAGE_SHIFT;
|
|
#else
|
|
int pages_per_big_pg = 0;
|
|
#endif
|
|
#endif /* CONFIG_ARM64_4K_PAGES */
|
|
#if KERNEL_VERSION(4, 15, 0) > LINUX_VERSION_CODE
|
|
static u32 chipid;
|
|
#else
|
|
static u8 chipid;
|
|
#endif
|
|
struct mm_struct *mm = current->mm;
|
|
struct nvmap_handle_ref *ref;
|
|
|
|
if (!chipid) {
|
|
#ifdef NVMAP_CONFIG_COLOR_PAGES
|
|
#if KERNEL_VERSION(4, 15, 0) > LINUX_VERSION_CODE
|
|
chipid = tegra_hidrev_get_chipid(tegra_read_chipid());
|
|
#else
|
|
chipid = tegra_get_chip_id();
|
|
#endif
|
|
if (chipid == TEGRA194)
|
|
s_nr_colors = 16;
|
|
#endif
|
|
}
|
|
|
|
pages = nvmap_altalloc(nr_page * sizeof(*pages));
|
|
if (!pages)
|
|
return -ENOMEM;
|
|
|
|
/*
|
|
* Get refcount on mm_struct, so that it won't be freed until
|
|
* nvmap reduces refcount after it reduces the RSS counter.
|
|
*/
|
|
if (!mmget_not_zero(mm))
|
|
goto page_free;
|
|
|
|
if (contiguous) {
|
|
struct page *page;
|
|
page = nvmap_alloc_pages_exact(gfp, size, true, h->numa_id);
|
|
if (!page)
|
|
goto fail;
|
|
|
|
for (i = 0; i < nr_page; i++)
|
|
pages[i] = nth_page(page, i);
|
|
|
|
} else {
|
|
#ifdef CONFIG_ARM64_4K_PAGES
|
|
#ifdef NVMAP_CONFIG_PAGE_POOLS
|
|
/* Get as many big pages from the pool as possible. */
|
|
page_index = nvmap_page_pool_alloc_lots_bp(&nvmap_dev->pool, pages,
|
|
nr_page, true, h->numa_id);
|
|
pages_per_big_pg = nvmap_dev->pool.pages_per_big_pg;
|
|
#endif
|
|
/* Try to allocate big pages from page allocator */
|
|
for (i = page_index;
|
|
i < nr_page && pages_per_big_pg > 1 && (nr_page - i) >= pages_per_big_pg;
|
|
i += pages_per_big_pg, page_index += pages_per_big_pg) {
|
|
struct page *page;
|
|
int idx;
|
|
/*
|
|
* set the gfp not to trigger direct/kswapd reclaims and
|
|
* not to use emergency reserves.
|
|
*/
|
|
gfp_t gfp_no_reclaim = (gfp | __GFP_NOMEMALLOC) & ~__GFP_RECLAIM;
|
|
|
|
page = nvmap_alloc_pages_exact(gfp_no_reclaim,
|
|
pages_per_big_pg << PAGE_SHIFT, true, h->numa_id);
|
|
if (!page)
|
|
break;
|
|
|
|
for (idx = 0; idx < pages_per_big_pg; idx++)
|
|
pages[i + idx] = nth_page(page, idx);
|
|
nvmap_clean_cache(&pages[i], pages_per_big_pg);
|
|
}
|
|
nvmap_big_page_allocs += page_index;
|
|
#endif /* CONFIG_ARM64_4K_PAGES */
|
|
if (s_nr_colors <= 1) {
|
|
#ifdef NVMAP_CONFIG_PAGE_POOLS
|
|
/* Get as many pages from the pool as possible. */
|
|
page_index += nvmap_page_pool_alloc_lots(
|
|
&nvmap_dev->pool, &pages[page_index],
|
|
nr_page - page_index, true, h->numa_id);
|
|
#endif
|
|
allocated = page_index;
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 13, 0)
|
|
if (page_index < nr_page) {
|
|
int nid = h->numa_id == NUMA_NO_NODE ? numa_mem_id() : h->numa_id;
|
|
|
|
allocated = __alloc_pages_bulk(gfp, nid, NULL,
|
|
nr_page, NULL, pages);
|
|
}
|
|
#endif
|
|
for (i = allocated; i < nr_page; i++) {
|
|
pages[i] = nvmap_alloc_pages_exact(gfp, PAGE_SIZE,
|
|
true, h->numa_id);
|
|
|
|
if (!pages[i])
|
|
goto fail;
|
|
}
|
|
} else if (page_index < nr_page) {
|
|
if (alloc_colored(nr_page - page_index, &pages[page_index], chipid))
|
|
goto fail;
|
|
page_index = nr_page;
|
|
}
|
|
nvmap_total_page_allocs += nr_page;
|
|
}
|
|
|
|
/*
|
|
* Increment the RSS counter of the allocating process by number of pages allocated.
|
|
*/
|
|
h->anon_count = nr_page;
|
|
nvmap_add_mm_counter(mm, MM_ANONPAGES, nr_page);
|
|
|
|
/*
|
|
* Make sure any data in the caches is cleaned out before
|
|
* passing these pages to userspace. Many nvmap clients assume that
|
|
* the buffers are clean as soon as they are allocated. nvmap
|
|
* clients can pass the buffer to hardware as it is without any
|
|
* explicit cache maintenance.
|
|
*/
|
|
if (page_index < nr_page)
|
|
nvmap_clean_cache(&pages[page_index], nr_page - page_index);
|
|
|
|
h->pgalloc.pages = pages;
|
|
h->pgalloc.contig = contiguous;
|
|
atomic_set(&h->pgalloc.ndirty, 0);
|
|
|
|
nvmap_ref_lock(client);
|
|
ref = __nvmap_validate_locked(client, h, false);
|
|
if (ref) {
|
|
ref->mm = mm;
|
|
ref->anon_count = h->anon_count;
|
|
} else {
|
|
nvmap_add_mm_counter(mm, MM_ANONPAGES, -nr_page);
|
|
mmput(mm);
|
|
}
|
|
|
|
nvmap_ref_unlock(client);
|
|
return 0;
|
|
|
|
fail:
|
|
while (i--)
|
|
__free_page(pages[i]);
|
|
|
|
/* Incase of failure, release the reference on mm_struct. */
|
|
mmput(mm);
|
|
|
|
page_free:
|
|
nvmap_altfree(pages, nr_page * sizeof(*pages));
|
|
wmb();
|
|
return -ENOMEM;
|
|
}
|
|
|
|
static struct device *nvmap_heap_pgalloc_dev(unsigned long type)
|
|
{
|
|
int ret = -EINVAL;
|
|
struct device *dma_dev;
|
|
|
|
ret = 0;
|
|
|
|
if (ret || (type != NVMAP_HEAP_CARVEOUT_VPR))
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
dma_dev = dma_dev_from_handle(type);
|
|
#ifdef NVMAP_CONFIG_VPR_RESIZE
|
|
if (!IS_ERR(dma_dev)) {
|
|
ret = dma_set_resizable_heap_floor_size(dma_dev, 0);
|
|
if (ret)
|
|
return ERR_PTR(ret);
|
|
}
|
|
#endif
|
|
return dma_dev;
|
|
}
|
|
|
|
static int nvmap_heap_pgalloc(struct nvmap_client *client,
|
|
struct nvmap_handle *h, unsigned long type)
|
|
{
|
|
size_t size = h->size;
|
|
struct page **pages;
|
|
struct device *dma_dev;
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 4, 0)
|
|
dma_addr_t pa = DMA_ERROR_CODE;
|
|
#else
|
|
dma_addr_t pa = DMA_MAPPING_ERROR;
|
|
#endif
|
|
|
|
dma_dev = nvmap_heap_pgalloc_dev(type);
|
|
if (IS_ERR(dma_dev))
|
|
return PTR_ERR(dma_dev);
|
|
|
|
pages = dma_alloc_attrs(dma_dev, size, &pa,
|
|
GFP_KERNEL, DMA_ALLOC_FREE_ATTR);
|
|
if (dma_mapping_error(dma_dev, pa))
|
|
return -ENOMEM;
|
|
|
|
h->pgalloc.pages = pages;
|
|
h->pgalloc.contig = 0;
|
|
atomic_set(&h->pgalloc.ndirty, 0);
|
|
return 0;
|
|
}
|
|
|
|
static int nvmap_heap_pgfree(struct nvmap_handle *h)
|
|
{
|
|
size_t size = h->size;
|
|
struct device *dma_dev;
|
|
dma_addr_t pa = ~(dma_addr_t)0;
|
|
|
|
dma_dev = nvmap_heap_pgalloc_dev(h->heap_type);
|
|
if (IS_ERR(dma_dev))
|
|
return PTR_ERR(dma_dev);
|
|
|
|
dma_free_attrs(dma_dev, size, h->pgalloc.pages, pa,
|
|
DMA_ALLOC_FREE_ATTR);
|
|
h->pgalloc.pages = NULL;
|
|
return 0;
|
|
}
|
|
|
|
static bool nvmap_cpu_map_is_allowed(struct nvmap_handle *handle)
|
|
{
|
|
if (handle->heap_type & NVMAP_HEAP_CARVEOUT_VPR)
|
|
return false;
|
|
else
|
|
return handle->heap_type & nvmap_dev->dynamic_dma_map_mask;
|
|
}
|
|
|
|
static void alloc_handle(struct nvmap_client *client,
|
|
struct nvmap_handle *h, unsigned int type)
|
|
{
|
|
unsigned int carveout_mask = NVMAP_HEAP_CARVEOUT_MASK;
|
|
unsigned int iovmm_mask = NVMAP_HEAP_IOVMM;
|
|
int ret;
|
|
|
|
/* type should only be non-zero and in power of 2. */
|
|
BUG_ON((!type) || (type & (type - 1)));
|
|
|
|
if (nvmap_convert_carveout_to_iovmm) {
|
|
carveout_mask &= ~NVMAP_HEAP_CARVEOUT_GENERIC;
|
|
iovmm_mask |= NVMAP_HEAP_CARVEOUT_GENERIC;
|
|
} else if (nvmap_convert_iovmm_to_carveout) {
|
|
if (type & NVMAP_HEAP_IOVMM) {
|
|
type &= ~NVMAP_HEAP_IOVMM;
|
|
type |= NVMAP_HEAP_CARVEOUT_GENERIC;
|
|
}
|
|
}
|
|
|
|
if (type & carveout_mask) {
|
|
struct nvmap_heap_block *b;
|
|
|
|
b = nvmap_carveout_alloc(client, h, type, NULL);
|
|
if (b) {
|
|
h->heap_type = type;
|
|
h->heap_pgalloc = false;
|
|
/* barrier to ensure all handle alloc data
|
|
* is visible before alloc is seen by other
|
|
* processors.
|
|
*/
|
|
mb();
|
|
h->alloc = true;
|
|
|
|
if (nvmap_dev->co_cache_flush_at_alloc) {
|
|
/* Clear the allocated buffer */
|
|
if (nvmap_cpu_map_is_allowed(h)) {
|
|
void *cpu_addr;
|
|
|
|
if (h->pgalloc.pages &&
|
|
h->heap_type == NVMAP_HEAP_CARVEOUT_GPU) {
|
|
unsigned long page_count;
|
|
u32 granule_size = 0;
|
|
int i;
|
|
struct list_block *lb;
|
|
|
|
lb = container_of(b, struct list_block, block);
|
|
granule_size = lb->heap->granule_size;
|
|
page_count = h->size >> PAGE_SHIFT;
|
|
/* Iterate over granules */
|
|
for (i = 0; i < page_count;
|
|
i += PAGES_PER_GRANULE(granule_size)) {
|
|
cpu_addr = memremap(page_to_phys(
|
|
h->pgalloc.pages[i]),
|
|
granule_size,
|
|
MEMREMAP_WB);
|
|
if (cpu_addr != NULL) {
|
|
memset(cpu_addr, 0, granule_size);
|
|
#ifdef NVMAP_UPSTREAM_KERNEL
|
|
arch_invalidate_pmem(cpu_addr,
|
|
granule_size);
|
|
#else
|
|
__dma_flush_area(cpu_addr,
|
|
granule_size);
|
|
#endif
|
|
memunmap(cpu_addr);
|
|
}
|
|
|
|
}
|
|
} else {
|
|
cpu_addr = memremap(b->base, h->size,
|
|
MEMREMAP_WB);
|
|
if (cpu_addr != NULL) {
|
|
memset(cpu_addr, 0, h->size);
|
|
#ifdef NVMAP_UPSTREAM_KERNEL
|
|
arch_invalidate_pmem(cpu_addr, h->size);
|
|
#else
|
|
__dma_flush_area(cpu_addr, h->size);
|
|
#endif
|
|
memunmap(cpu_addr);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
ret = nvmap_heap_pgalloc(client, h, type);
|
|
if (ret)
|
|
return;
|
|
h->heap_type = NVMAP_HEAP_CARVEOUT_VPR;
|
|
h->heap_pgalloc = true;
|
|
mb();
|
|
h->alloc = true;
|
|
} else if (type & iovmm_mask) {
|
|
ret = handle_page_alloc(client, h,
|
|
h->userflags & NVMAP_HANDLE_PHYS_CONTIG);
|
|
if (ret)
|
|
return;
|
|
h->heap_type = NVMAP_HEAP_IOVMM;
|
|
h->heap_pgalloc = true;
|
|
mb();
|
|
h->alloc = true;
|
|
}
|
|
}
|
|
|
|
static int alloc_handle_from_va(struct nvmap_client *client,
|
|
struct nvmap_handle *h,
|
|
ulong vaddr,
|
|
u32 flags)
|
|
{
|
|
size_t nr_page = h->size >> PAGE_SHIFT;
|
|
struct page **pages;
|
|
int ret = 0;
|
|
struct mm_struct *mm = current->mm;
|
|
|
|
pages = nvmap_altalloc(nr_page * sizeof(*pages));
|
|
if (IS_ERR_OR_NULL(pages))
|
|
return PTR_ERR(pages);
|
|
|
|
nvmap_acquire_mmap_read_lock(mm);
|
|
ret = nvmap_get_user_pages(vaddr & PAGE_MASK, nr_page, pages, true,
|
|
(flags & NVMAP_HANDLE_RO) ? 0 : FOLL_WRITE);
|
|
nvmap_release_mmap_read_lock(mm);
|
|
if (ret) {
|
|
nvmap_altfree(pages, nr_page * sizeof(*pages));
|
|
return ret;
|
|
}
|
|
|
|
if (flags & NVMAP_HANDLE_RO)
|
|
h->is_ro = true;
|
|
|
|
nvmap_clean_cache(&pages[0], nr_page);
|
|
h->pgalloc.pages = pages;
|
|
atomic_set(&h->pgalloc.ndirty, 0);
|
|
h->heap_type = NVMAP_HEAP_IOVMM;
|
|
h->heap_pgalloc = true;
|
|
h->from_va = true;
|
|
mb();
|
|
h->alloc = true;
|
|
return ret;
|
|
}
|
|
|
|
/* small allocations will try to allocate from generic OS memory before
|
|
* any of the limited heaps, to increase the effective memory for graphics
|
|
* allocations, and to reduce fragmentation of the graphics heaps with
|
|
* sub-page splinters */
|
|
static const unsigned int heap_policy_small[] = {
|
|
NVMAP_HEAP_CARVEOUT_VPR,
|
|
NVMAP_HEAP_CARVEOUT_MASK,
|
|
NVMAP_HEAP_IOVMM,
|
|
0,
|
|
};
|
|
|
|
static const unsigned int heap_policy_large[] = {
|
|
NVMAP_HEAP_CARVEOUT_VPR,
|
|
NVMAP_HEAP_IOVMM,
|
|
NVMAP_HEAP_CARVEOUT_MASK,
|
|
0,
|
|
};
|
|
|
|
static const unsigned int heap_policy_excl[] = {
|
|
NVMAP_HEAP_CARVEOUT_IVM,
|
|
NVMAP_HEAP_CARVEOUT_VIDMEM,
|
|
0,
|
|
};
|
|
|
|
int nvmap_alloc_handle(struct nvmap_client *client,
|
|
struct nvmap_handle *h, unsigned int heap_mask,
|
|
size_t align,
|
|
u8 kind,
|
|
unsigned int flags,
|
|
unsigned int peer)
|
|
{
|
|
const unsigned int *alloc_policy;
|
|
size_t nr_page;
|
|
int err = -ENOMEM;
|
|
int tag, i;
|
|
bool alloc_from_excl = false;
|
|
|
|
h = nvmap_handle_get(h);
|
|
|
|
if (!h)
|
|
return -EINVAL;
|
|
|
|
if (h->alloc) {
|
|
nvmap_handle_put(h);
|
|
return -EEXIST;
|
|
}
|
|
|
|
nvmap_stats_inc(NS_TOTAL, h->size);
|
|
nvmap_stats_inc(NS_ALLOC, h->size);
|
|
trace_nvmap_alloc_handle(client, h,
|
|
h->size, heap_mask, align, flags,
|
|
nvmap_stats_read(NS_TOTAL),
|
|
nvmap_stats_read(NS_ALLOC));
|
|
h->userflags = flags;
|
|
nr_page = ((h->size + PAGE_SIZE - 1) >> PAGE_SHIFT);
|
|
/* Force mapping to uncached for VPR memory. */
|
|
if (heap_mask & (NVMAP_HEAP_CARVEOUT_VPR | ~nvmap_dev->cpu_access_mask))
|
|
h->flags = NVMAP_HANDLE_UNCACHEABLE;
|
|
else
|
|
h->flags = (flags & NVMAP_HANDLE_CACHE_FLAG);
|
|
h->align = max_t(size_t, align, L1_CACHE_BYTES);
|
|
h->peer = peer;
|
|
tag = flags >> 16;
|
|
|
|
if (!tag && client && !client->tag_warned) {
|
|
char task_comm[TASK_COMM_LEN];
|
|
client->tag_warned = 1;
|
|
get_task_comm(task_comm, client->task);
|
|
pr_err("PID %d: %s: WARNING: "
|
|
"All NvMap Allocations must have a tag "
|
|
"to identify the subsystem allocating memory."
|
|
"Please pass the tag to the API call"
|
|
" NvRmMemHanldeAllocAttr() or relevant. \n",
|
|
client->task->pid, task_comm);
|
|
}
|
|
|
|
/*
|
|
* If user specifies one of the exclusive carveouts, allocation
|
|
* from no other heap should be allowed.
|
|
*/
|
|
for (i = 0; i < ARRAY_SIZE(heap_policy_excl); i++) {
|
|
if (!(heap_mask & heap_policy_excl[i]))
|
|
continue;
|
|
|
|
if (heap_mask & ~(heap_policy_excl[i])) {
|
|
pr_err("%s alloc mixes exclusive heap %d and other heaps\n",
|
|
current->group_leader->comm, heap_policy_excl[i]);
|
|
err = -EINVAL;
|
|
goto out;
|
|
}
|
|
alloc_from_excl = true;
|
|
}
|
|
|
|
if (!heap_mask) {
|
|
err = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
alloc_policy = alloc_from_excl ? heap_policy_excl :
|
|
(nr_page == 1) ? heap_policy_small : heap_policy_large;
|
|
|
|
while (!h->alloc && *alloc_policy) {
|
|
unsigned int heap_type;
|
|
|
|
heap_type = *alloc_policy++;
|
|
heap_type &= heap_mask;
|
|
|
|
if (!heap_type)
|
|
continue;
|
|
|
|
heap_mask &= ~heap_type;
|
|
|
|
while (heap_type && !h->alloc) {
|
|
unsigned int heap;
|
|
|
|
/* iterate possible heaps MSB-to-LSB, since higher-
|
|
* priority carveouts will have higher usage masks */
|
|
heap = 1 << __fls(heap_type);
|
|
alloc_handle(client, h, heap);
|
|
heap_type &= ~heap;
|
|
}
|
|
}
|
|
|
|
out:
|
|
if (h->alloc) {
|
|
if (client->kernel_client)
|
|
nvmap_stats_inc(NS_KALLOC, h->size);
|
|
else
|
|
nvmap_stats_inc(NS_UALLOC, h->size);
|
|
NVMAP_TAG_TRACE(trace_nvmap_alloc_handle_done,
|
|
NVMAP_TP_ARGS_CHR(client, h, NULL));
|
|
err = 0;
|
|
} else {
|
|
nvmap_stats_dec(NS_TOTAL, h->size);
|
|
nvmap_stats_dec(NS_ALLOC, h->size);
|
|
}
|
|
nvmap_handle_put(h);
|
|
return err;
|
|
}
|
|
|
|
int nvmap_alloc_handle_from_va(struct nvmap_client *client,
|
|
struct nvmap_handle *h,
|
|
ulong addr,
|
|
unsigned int flags)
|
|
{
|
|
int err = -ENOMEM;
|
|
int tag;
|
|
|
|
h = nvmap_handle_get(h);
|
|
if (!h)
|
|
return -EINVAL;
|
|
|
|
if (h->alloc) {
|
|
nvmap_handle_put(h);
|
|
return -EEXIST;
|
|
}
|
|
|
|
h->userflags = flags;
|
|
h->flags = (flags & NVMAP_HANDLE_CACHE_FLAG);
|
|
h->align = PAGE_SIZE;
|
|
tag = flags >> 16;
|
|
|
|
if (!tag && client && !client->tag_warned) {
|
|
char task_comm[TASK_COMM_LEN];
|
|
client->tag_warned = 1;
|
|
get_task_comm(task_comm, client->task);
|
|
pr_err("PID %d: %s: WARNING: "
|
|
"All NvMap Allocations must have a tag "
|
|
"to identify the subsystem allocating memory."
|
|
"Please pass the tag to the API call"
|
|
" NvRmMemHanldeAllocAttr() or relevant. \n",
|
|
client->task->pid, task_comm);
|
|
}
|
|
|
|
err = alloc_handle_from_va(client, h, addr, flags);
|
|
if (err) {
|
|
pr_err("alloc_handle_from_va failed %d", err);
|
|
nvmap_handle_put(h);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (h->alloc) {
|
|
NVMAP_TAG_TRACE(trace_nvmap_alloc_handle_done,
|
|
NVMAP_TP_ARGS_CHR(client, h, NULL));
|
|
err = 0;
|
|
}
|
|
nvmap_handle_put(h);
|
|
return err;
|
|
}
|
|
|
|
void _nvmap_handle_free(struct nvmap_handle *h)
|
|
{
|
|
unsigned int i, nr_page, page_index = 0;
|
|
struct nvmap_handle_dmabuf_priv *curr, *next;
|
|
|
|
list_for_each_entry_safe(curr, next, &h->dmabuf_priv, list) {
|
|
curr->priv_release(curr->priv);
|
|
list_del(&curr->list);
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0)
|
|
kzfree(curr);
|
|
#else
|
|
kfree_sensitive(curr);
|
|
#endif
|
|
}
|
|
|
|
if (nvmap_handle_remove(nvmap_dev, h) != 0)
|
|
return;
|
|
|
|
if (!h->alloc)
|
|
goto out;
|
|
|
|
nvmap_stats_inc(NS_RELEASE, h->size);
|
|
nvmap_stats_dec(NS_TOTAL, h->size);
|
|
if (!h->heap_pgalloc) {
|
|
if (h->vaddr) {
|
|
void *addr = h->vaddr;
|
|
|
|
if (h->pgalloc.pages) {
|
|
vunmap(h->vaddr);
|
|
} else {
|
|
addr -= (h->carveout->base & ~PAGE_MASK);
|
|
iounmap((void __iomem *)addr);
|
|
}
|
|
}
|
|
|
|
nvmap_heap_free(h->carveout);
|
|
nvmap_kmaps_dec(h);
|
|
h->carveout = NULL;
|
|
h->vaddr = NULL;
|
|
h->pgalloc.pages = NULL;
|
|
goto out;
|
|
} else {
|
|
int ret = nvmap_heap_pgfree(h);
|
|
if (!ret)
|
|
goto out;
|
|
}
|
|
|
|
nr_page = DIV_ROUND_UP(h->size, PAGE_SIZE);
|
|
|
|
BUG_ON(h->size & ~PAGE_MASK);
|
|
BUG_ON(!h->pgalloc.pages);
|
|
|
|
if (h->vaddr) {
|
|
nvmap_kmaps_dec(h);
|
|
vunmap(h->vaddr);
|
|
|
|
h->vaddr = NULL;
|
|
}
|
|
|
|
for (i = 0; i < nr_page; i++)
|
|
h->pgalloc.pages[i] = nvmap_to_page(h->pgalloc.pages[i]);
|
|
|
|
#ifdef NVMAP_CONFIG_PAGE_POOLS
|
|
if (!h->from_va && !h->is_subhandle) {
|
|
/*
|
|
* When the process is exiting with kill signal pending, don't release the memory
|
|
* back into page pool. So that memory would be released back to the kernel and OOM
|
|
* killer would be able to actually free the memory.
|
|
*/
|
|
if (fatal_signal_pending(current) == 0 &&
|
|
sigismember(¤t->signal->shared_pending.signal, SIGKILL) == 0) {
|
|
page_index = nvmap_page_pool_fill_lots(&nvmap_dev->pool,
|
|
h->pgalloc.pages, nr_page);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
for (i = page_index; i < nr_page; i++) {
|
|
if (h->from_va)
|
|
put_page(h->pgalloc.pages[i]);
|
|
/* Knowingly kept in "else if" handle for subrange */
|
|
else if (h->is_subhandle)
|
|
put_page(h->pgalloc.pages[i]);
|
|
else
|
|
__free_page(h->pgalloc.pages[i]);
|
|
}
|
|
|
|
nvmap_altfree(h->pgalloc.pages, nr_page * sizeof(struct page *));
|
|
|
|
out:
|
|
NVMAP_TAG_TRACE(trace_nvmap_destroy_handle,
|
|
NULL, get_current()->pid, 0, NVMAP_TP_ARGS_H(h));
|
|
kfree(h);
|
|
}
|
|
|
|
void nvmap_free_handle(struct nvmap_client *client,
|
|
struct nvmap_handle *handle, bool is_ro)
|
|
{
|
|
struct nvmap_handle_ref *ref;
|
|
struct nvmap_handle *h;
|
|
|
|
nvmap_ref_lock(client);
|
|
|
|
ref = __nvmap_validate_locked(client, handle, is_ro);
|
|
if (!ref) {
|
|
nvmap_ref_unlock(client);
|
|
return;
|
|
}
|
|
|
|
BUG_ON(!ref->handle);
|
|
h = ref->handle;
|
|
|
|
if (atomic_dec_return(&ref->dupes)) {
|
|
NVMAP_TAG_TRACE(trace_nvmap_free_handle,
|
|
NVMAP_TP_ARGS_CHR(client, h, ref));
|
|
nvmap_ref_unlock(client);
|
|
goto out;
|
|
}
|
|
|
|
smp_rmb();
|
|
rb_erase(&ref->node, &client->handle_refs);
|
|
client->handle_count--;
|
|
atomic_dec(&ref->handle->share_count);
|
|
|
|
nvmap_ref_unlock(client);
|
|
|
|
if (h->owner == client)
|
|
h->owner = NULL;
|
|
|
|
/*
|
|
* When a reference is freed, decrement rss counter of the process corresponding
|
|
* to this ref and do mmput so that mm_struct can be freed, if required.
|
|
*/
|
|
if (ref->mm != NULL && ref->anon_count != 0) {
|
|
nvmap_add_mm_counter(ref->mm, MM_ANONPAGES, -ref->anon_count);
|
|
mmput(ref->mm);
|
|
ref->mm = NULL;
|
|
ref->anon_count = 0;
|
|
}
|
|
|
|
if (is_ro)
|
|
dma_buf_put(ref->handle->dmabuf_ro);
|
|
else
|
|
dma_buf_put(ref->handle->dmabuf);
|
|
NVMAP_TAG_TRACE(trace_nvmap_free_handle,
|
|
NVMAP_TP_ARGS_CHR(client, h, ref));
|
|
kfree(ref);
|
|
|
|
out:
|
|
BUG_ON(!atomic_read(&h->ref));
|
|
nvmap_handle_put(h);
|
|
}
|
|
|
|
int is_nvmap_id_ro(struct nvmap_client *client, int id, bool *is_ro)
|
|
{
|
|
struct nvmap_handle_info *info = NULL;
|
|
struct dma_buf *dmabuf = NULL;
|
|
|
|
if (WARN_ON(!client))
|
|
goto fail;
|
|
|
|
if (client->ida)
|
|
dmabuf = nvmap_id_array_get_dmabuf_from_id(client->ida,
|
|
id);
|
|
else
|
|
dmabuf = dma_buf_get(id);
|
|
|
|
if (IS_ERR_OR_NULL(dmabuf))
|
|
goto fail;
|
|
|
|
if (dmabuf_is_nvmap(dmabuf))
|
|
info = dmabuf->priv;
|
|
|
|
if (!info) {
|
|
dma_buf_put(dmabuf);
|
|
/*
|
|
* Ideally, we should return error from here,
|
|
* but this is done intentionally to handle foreign buffers.
|
|
*/
|
|
return 0;
|
|
}
|
|
|
|
*is_ro = info->is_ro;
|
|
dma_buf_put(dmabuf);
|
|
return 0;
|
|
|
|
fail:
|
|
pr_err("Handle RO check failed\n");
|
|
return -EINVAL;
|
|
}
|
|
void nvmap_free_handle_from_fd(struct nvmap_client *client,
|
|
int id)
|
|
{
|
|
bool is_ro = false;
|
|
struct nvmap_handle *handle;
|
|
struct dma_buf *dmabuf = NULL;
|
|
int handle_ref = 0;
|
|
long dmabuf_ref = 0;
|
|
|
|
handle = nvmap_handle_get_from_id(client, id);
|
|
if (IS_ERR_OR_NULL(handle))
|
|
return;
|
|
|
|
if (is_nvmap_id_ro(client, id, &is_ro) != 0) {
|
|
nvmap_handle_put(handle);
|
|
return;
|
|
}
|
|
|
|
if (client->ida)
|
|
nvmap_id_array_id_release(client->ida, id);
|
|
|
|
nvmap_free_handle(client, handle, is_ro);
|
|
if (handle) {
|
|
dmabuf = is_ro ? handle->dmabuf_ro : handle->dmabuf;
|
|
handle_ref = atomic_read(&handle->ref);
|
|
dmabuf_ref = dmabuf ? atomic_long_read(&dmabuf->file->f_count) : 0;
|
|
}
|
|
|
|
trace_refcount_free_handle(handle, dmabuf, handle_ref, dmabuf_ref,
|
|
is_ro ? "RO" : "RW");
|
|
nvmap_handle_put(handle);
|
|
}
|
|
|
|
static int nvmap_assign_pages_per_handle(struct nvmap_handle *src_h,
|
|
struct nvmap_handle *dest_h, u64 src_h_start,
|
|
u64 src_h_end, u32 *pg_cnt)
|
|
{
|
|
/* Increament ref count of source handle as its pages
|
|
* are referenced here to create new nvmap handle.
|
|
* By increamenting the ref count of source handle,
|
|
* source handle pages are not freed until new handle's fd is not closed.
|
|
* Note: nvmap_dmabuf_release, need to decreement source handle ref count
|
|
*/
|
|
src_h = nvmap_handle_get(src_h);
|
|
if (!src_h)
|
|
return -EINVAL;
|
|
|
|
while (src_h_start < src_h_end) {
|
|
unsigned long next;
|
|
struct page *dest_page;
|
|
|
|
dest_h->pgalloc.pages[*pg_cnt] =
|
|
src_h->pgalloc.pages[src_h_start >> PAGE_SHIFT];
|
|
dest_page = nvmap_to_page(dest_h->pgalloc.pages[*pg_cnt]);
|
|
get_page(dest_page);
|
|
|
|
next = min(((src_h_start + PAGE_SIZE) & PAGE_MASK),
|
|
src_h_end);
|
|
src_h_start = next;
|
|
*pg_cnt = *pg_cnt + 1;
|
|
}
|
|
|
|
mutex_lock(&dest_h->pg_ref_h_lock);
|
|
list_add_tail(&src_h->pg_ref, &dest_h->pg_ref_h);
|
|
mutex_unlock(&dest_h->pg_ref_h_lock);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int nvmap_assign_pages_to_handle(struct nvmap_client *client,
|
|
struct nvmap_handle **hs, struct nvmap_handle *h,
|
|
struct handles_range *rng)
|
|
{
|
|
size_t nr_page = h->size >> PAGE_SHIFT;
|
|
struct page **pages;
|
|
u64 end_cur = 0;
|
|
u64 start = 0;
|
|
u64 end = 0;
|
|
u32 pg_cnt = 0;
|
|
u32 i;
|
|
int err = 0;
|
|
|
|
h = nvmap_handle_get(h);
|
|
if (!h)
|
|
return -EINVAL;
|
|
|
|
if (h->alloc) {
|
|
nvmap_handle_put(h);
|
|
return -EEXIST;
|
|
}
|
|
|
|
pages = nvmap_altalloc(nr_page * sizeof(*pages));
|
|
if (!pages) {
|
|
nvmap_handle_put(h);
|
|
return -ENOMEM;
|
|
}
|
|
h->pgalloc.pages = pages;
|
|
|
|
start = rng->offs_start;
|
|
end = rng->sz;
|
|
|
|
for (i = rng->start; i <= rng->end; i++) {
|
|
end_cur = (end >= hs[i]->size) ? (hs[i]->size - start) : end;
|
|
err = nvmap_assign_pages_per_handle(hs[i], h, start, start + end_cur, &pg_cnt);
|
|
if (err) {
|
|
nvmap_altfree(pages, nr_page * sizeof(*pages));
|
|
goto err_h;
|
|
}
|
|
end -= (hs[i]->size - start);
|
|
start = 0;
|
|
}
|
|
|
|
h->flags = hs[0]->flags;
|
|
h->heap_type = NVMAP_HEAP_IOVMM;
|
|
h->heap_pgalloc = true;
|
|
h->alloc = true;
|
|
h->is_subhandle = true;
|
|
mb();
|
|
return err;
|
|
err_h:
|
|
nvmap_handle_put(h);
|
|
return err;
|
|
}
|