mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 18:16:01 +03:00
Remove use of linux specifix header files <linux/nvhost.h> and <linux/nvhost_ioctl.h> and use nvgpu specific header file <nvgpu/nvhost.h> instead This is needed to remove all Linux dependencies from nvgpu driver Replace all nvhost_*() calls by nvgpu_nvhost_*() calls from new nvgpu library Remove platform device pointer host1x_dev from struct gk20a and add struct nvgpu_nvhost_dev instead Jira NVGPU-29 Change-Id: Ia7af70602cfc16f9ccc380752538c05a9cbb8a67 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: http://git-master/r/1489726 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
/*
|
|
* Tegra Virtualized GPU Platform Interface
|
|
*
|
|
* Copyright (c) 2014-2017, 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.
|
|
*/
|
|
|
|
#include "gk20a.h"
|
|
#include "hal_gk20a.h"
|
|
#include "platform_gk20a.h"
|
|
|
|
#include <nvgpu/nvhost.h>
|
|
|
|
static int gk20a_tegra_probe(struct device *dev)
|
|
{
|
|
#ifdef CONFIG_TEGRA_GK20A_NVHOST
|
|
struct gk20a_platform *platform = dev_get_drvdata(dev);
|
|
return nvgpu_get_nvhost_dev(platform->g);
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
struct gk20a_platform vgpu_tegra_platform = {
|
|
.has_syncpoints = true,
|
|
.aggressive_sync_destroy_thresh = 64,
|
|
|
|
/* power management configuration */
|
|
.can_railgate_init = false,
|
|
.can_elpg_init = false,
|
|
.enable_slcg = false,
|
|
.enable_blcg = false,
|
|
.enable_elcg = false,
|
|
.enable_elpg = false,
|
|
.enable_aelpg = false,
|
|
|
|
.ch_wdt_timeout_ms = 5000,
|
|
|
|
.probe = gk20a_tegra_probe,
|
|
.default_big_page_size = SZ_128K,
|
|
|
|
.virtual_dev = true,
|
|
};
|