mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
segregated os-agnostic function from linux/sim.c and linux/sim_pci.c to sim.c and sim_pci.c, while retaining os-specific functions. renamed all gk20a_* api's to nvgpu_*. renamed hw_sim_gk20a.h to nvgpu/hw_sim.h moved hw_sim_pci.h to nvgpu/hw_sim_pci.h JIRA VQRM-2368 Change-Id: I040a6b12b19111a0b99280245808ea2b0f344cdd Signed-off-by: Antony Clince Alex <aalex@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1702425 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
44 lines
1.7 KiB
C
44 lines
1.7 KiB
C
/*
|
|
*
|
|
* nvgpu sim support
|
|
*
|
|
* Copyright (c) 2018, 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/>.
|
|
*/
|
|
|
|
#ifndef __SIM_LINUX_H__
|
|
#define __SIM_LINUX_H__
|
|
|
|
#include <nvgpu/nvgpu_mem.h>
|
|
#include "gk20a/sim_gk20a.h"
|
|
|
|
struct sim_nvgpu_linux {
|
|
struct sim_nvgpu sim;
|
|
struct resource *reg_mem;
|
|
void __iomem *regs;
|
|
void (*remove_support_linux)(struct gk20a *g);
|
|
};
|
|
|
|
void sim_writel(struct sim_nvgpu *sim, u32 r, u32 v);
|
|
u32 sim_readl(struct sim_nvgpu *sim, u32 r);
|
|
int nvgpu_init_sim_support(struct gk20a *g); /* will be moved to common in subsequent patch */
|
|
int nvgpu_alloc_sim_buffer(struct gk20a *g, struct nvgpu_mem *mem); /* will be moved to common in subsequent patch */
|
|
void nvgpu_free_sim_buffer(struct gk20a *g, struct nvgpu_mem *mem); /* will be moved to common in subsequent patch */
|
|
void nvgpu_free_sim_support(struct gk20a *g); /* will be moved to common in subsequent patch */
|
|
void nvgpu_remove_sim_support(struct gk20a *g); /* will be moved to common in subsequent patch */
|
|
int nvgpu_init_sim_support_linux(struct gk20a *g,
|
|
struct platform_device *dev);
|
|
void nvgpu_remove_sim_support_linux(struct gk20a *g);
|
|
#endif
|