mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 01:50:07 +03:00
We have completely different versions of probe for nvgpu and pci device Extract out common steps into nvgpu_probe() function and separate it out in new file nvgpu_common.c Divide task of nvgpu_probe() into further smaller functions Do platform specific things (like irq handling, memresource management, power management) only in individual probes and then call nvgpu_probe() to complete the common initialization Move all debugfs initialization to common gk20a_debug_init() This also helps to bringup all debug nodes to pci device Pass debugfs_symlink name as a parameter to gk20a_debug_init() This allows us to set separate debugfs symlink for nvgpu and pci device In case of railgating, cde and ce debugfs, check if platform supports them or not Copy vidmem_is_vidmem from platform to mm structure and set it to true for pci device Return from gk20a_scale_init() if we don't have either of governor or qos_notifier Fix gk20a_alloc_debugfs_init() and gk20a_secure_page_alloc() to receive device pointer instead of platform_device Export gk20a_railgating_debugfs_init() so that we can call it from gk20a_debug_init() Jira DNVGPU-56 Jira DNVGPU-58 Change-Id: I3cc048082b0a1e57415a9fb8bfb9eec0f0a280cd Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: http://git-master/r/1204207 (cherry picked from commit add6bb0a3d5bd98131bbe6f62d4358d4d722b0fe) Reviewed-on: http://git-master/r/1204462 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
183 lines
3.9 KiB
C
183 lines
3.9 KiB
C
/*
|
|
* gk20a allocator
|
|
*
|
|
* Copyright (c) 2011-2016, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/slab.h>
|
|
|
|
#include "mm_gk20a.h"
|
|
#include "platform_gk20a.h"
|
|
#include "gk20a_allocator.h"
|
|
|
|
u32 gk20a_alloc_tracing_on;
|
|
|
|
static struct dentry *gk20a_alloc_debugfs_root;
|
|
|
|
u64 gk20a_alloc_length(struct gk20a_allocator *a)
|
|
{
|
|
if (a->ops->length)
|
|
return a->ops->length(a);
|
|
|
|
return 0;
|
|
}
|
|
|
|
u64 gk20a_alloc_base(struct gk20a_allocator *a)
|
|
{
|
|
if (a->ops->base)
|
|
return a->ops->base(a);
|
|
|
|
return 0;
|
|
}
|
|
|
|
u64 gk20a_alloc_initialized(struct gk20a_allocator *a)
|
|
{
|
|
if (!a->ops || !a->ops->inited)
|
|
return 0;
|
|
|
|
return a->ops->inited(a);
|
|
}
|
|
|
|
u64 gk20a_alloc_end(struct gk20a_allocator *a)
|
|
{
|
|
if (a->ops->end)
|
|
return a->ops->end(a);
|
|
|
|
return 0;
|
|
}
|
|
|
|
u64 gk20a_alloc(struct gk20a_allocator *a, u64 len)
|
|
{
|
|
return a->ops->alloc(a, len);
|
|
}
|
|
|
|
void gk20a_free(struct gk20a_allocator *a, u64 addr)
|
|
{
|
|
a->ops->free(a, addr);
|
|
}
|
|
|
|
u64 gk20a_alloc_fixed(struct gk20a_allocator *a, u64 base, u64 len)
|
|
{
|
|
if (a->ops->alloc_fixed)
|
|
return a->ops->alloc_fixed(a, base, len);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void gk20a_free_fixed(struct gk20a_allocator *a, u64 base, u64 len)
|
|
{
|
|
/*
|
|
* If this operation is not defined for the allocator then just do
|
|
* nothing. The alternative would be to fall back on the regular
|
|
* free but that may be harmful in unexpected ways.
|
|
*/
|
|
if (a->ops->free_fixed)
|
|
a->ops->free_fixed(a, base, len);
|
|
}
|
|
|
|
void gk20a_alloc_destroy(struct gk20a_allocator *a)
|
|
{
|
|
a->ops->fini(a);
|
|
memset(a, 0, sizeof(*a));
|
|
}
|
|
|
|
/*
|
|
* Handle the common init stuff for a gk20a_allocator.
|
|
*/
|
|
int __gk20a_alloc_common_init(struct gk20a_allocator *a,
|
|
const char *name, void *priv, bool dbg,
|
|
const struct gk20a_allocator_ops *ops)
|
|
{
|
|
if (!ops)
|
|
return -EINVAL;
|
|
|
|
/*
|
|
* This is the bare minimum operations required for a sensible
|
|
* allocator.
|
|
*/
|
|
if (!ops->alloc || !ops->free || !ops->fini)
|
|
return -EINVAL;
|
|
|
|
a->ops = ops;
|
|
a->priv = priv;
|
|
a->debug = dbg;
|
|
|
|
mutex_init(&a->lock);
|
|
|
|
strlcpy(a->name, name, sizeof(a->name));
|
|
|
|
return 0;
|
|
}
|
|
|
|
void gk20a_alloc_print_stats(struct gk20a_allocator *__a,
|
|
struct seq_file *s, int lock)
|
|
{
|
|
__a->ops->print_stats(__a, s, lock);
|
|
}
|
|
|
|
static int __alloc_show(struct seq_file *s, void *unused)
|
|
{
|
|
struct gk20a_allocator *a = s->private;
|
|
|
|
gk20a_alloc_print_stats(a, s, 1);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int __alloc_open(struct inode *inode, struct file *file)
|
|
{
|
|
return single_open(file, __alloc_show, inode->i_private);
|
|
}
|
|
|
|
static const struct file_operations __alloc_fops = {
|
|
.open = __alloc_open,
|
|
.read = seq_read,
|
|
.llseek = seq_lseek,
|
|
.release = single_release,
|
|
};
|
|
|
|
void gk20a_init_alloc_debug(struct gk20a_allocator *a)
|
|
{
|
|
if (!gk20a_alloc_debugfs_root)
|
|
return;
|
|
|
|
a->debugfs_entry = debugfs_create_file(a->name, S_IRUGO,
|
|
gk20a_alloc_debugfs_root,
|
|
a, &__alloc_fops);
|
|
}
|
|
|
|
void gk20a_fini_alloc_debug(struct gk20a_allocator *a)
|
|
{
|
|
if (!gk20a_alloc_debugfs_root)
|
|
return;
|
|
|
|
if (!IS_ERR_OR_NULL(a->debugfs_entry))
|
|
debugfs_remove(a->debugfs_entry);
|
|
}
|
|
|
|
void gk20a_alloc_debugfs_init(struct device *dev)
|
|
{
|
|
struct gk20a_platform *platform = dev_get_drvdata(dev);
|
|
struct dentry *gpu_root = platform->debugfs;
|
|
|
|
gk20a_alloc_debugfs_root = debugfs_create_dir("allocators", gpu_root);
|
|
if (IS_ERR_OR_NULL(gk20a_alloc_debugfs_root))
|
|
return;
|
|
|
|
debugfs_create_u32("tracing", 0664, gk20a_alloc_debugfs_root,
|
|
&gk20a_alloc_tracing_on);
|
|
}
|