101 lines
2.3 KiB
C
101 lines
2.3 KiB
C
/*
|
|
* aram_managerc
|
|
*
|
|
* ARAM manager
|
|
*
|
|
* Copyright (C) 2014-2018, NVIDIA Corporation. All rights reserved.
|
|
*
|
|
* This software is licensed under the terms of the GNU General Public
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
* may be copied, distributed, and modified under those terms.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#define pr_fmt(fmt) "%s : %d, " fmt, __func__, __LINE__
|
|
|
|
#include <linux/debugfs.h>
|
|
#include <linux/tegra_nvadsp.h>
|
|
|
|
#include "aram_manager.h"
|
|
|
|
static void *aram_handle;
|
|
|
|
static LIST_HEAD(aram_alloc_list);
|
|
static LIST_HEAD(aram_free_list);
|
|
|
|
void nvadsp_aram_print(void)
|
|
{
|
|
mem_print(aram_handle);
|
|
}
|
|
|
|
void *nvadsp_aram_request(const char *name, size_t size)
|
|
{
|
|
return mem_request(aram_handle, name, size);
|
|
}
|
|
|
|
bool nvadsp_aram_release(void *handle)
|
|
{
|
|
return mem_release(aram_handle, handle);
|
|
}
|
|
|
|
unsigned long nvadsp_aram_get_address(void *handle)
|
|
{
|
|
return mem_get_address(handle);
|
|
}
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
static struct dentry *aram_dump_debugfs_file;
|
|
|
|
static int nvadsp_aram_dump(struct seq_file *s, void *data)
|
|
{
|
|
mem_dump(aram_handle, s);
|
|
return 0;
|
|
}
|
|
|
|
static int nvadsp_aram_dump_open(struct inode *inode, struct file *file)
|
|
{
|
|
return single_open(file, nvadsp_aram_dump, inode->i_private);
|
|
}
|
|
|
|
static const struct file_operations aram_dump_fops = {
|
|
.open = nvadsp_aram_dump_open,
|
|
.read = seq_read,
|
|
.llseek = seq_lseek,
|
|
.release = single_release,
|
|
};
|
|
#endif
|
|
|
|
int nvadsp_aram_init(unsigned long addr, unsigned long size)
|
|
{
|
|
aram_handle = create_mem_manager("ARAM", addr, size);
|
|
if (IS_ERR(aram_handle)) {
|
|
pr_err("ERROR: failed to create aram memory_manager");
|
|
return PTR_ERR(aram_handle);
|
|
}
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
aram_dump_debugfs_file = debugfs_create_file("aram_dump",
|
|
S_IRUSR, NULL, NULL, &aram_dump_fops);
|
|
if (!aram_dump_debugfs_file) {
|
|
pr_err("ERROR: failed to create aram_dump debugfs");
|
|
destroy_mem_manager(aram_handle);
|
|
return -ENOMEM;
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
void nvadsp_aram_exit(void)
|
|
{
|
|
#ifdef CONFIG_DEBUG_FS
|
|
debugfs_remove(aram_dump_debugfs_file);
|
|
#endif
|
|
destroy_mem_manager(aram_handle);
|
|
}
|
|
|