mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 09:12:24 +03:00
In preparation for adding support for the upstream Host1x driver, add a layer of abstraction for calling the NVHost fence APIs. This provides a clean interface for calling the appropriate APIs for either the downstream NVHost fence APIs or the upstream DMA fence and Host1x APIs, depending on which is being used. Change-Id: I055aee3fe5d3af83ebb11126c0a862e17b21f94c Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2450244 Reviewed-by: automaticguardword <automaticguardword@nvidia.com> Reviewed-by: Sagar Kamble <skamble@nvidia.com> Reviewed-by: Alex Waterman <alexw@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> GVS: Gerrit_Virtual_Submit Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
40 lines
1.4 KiB
C
40 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 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.
|
|
*
|
|
* 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 __NVGPU_NVHOST_PRIV_H__
|
|
#define __NVGPU_NVHOST_PRIV_H__
|
|
|
|
#include <nvgpu/os_fence_syncpts.h>
|
|
|
|
struct nvhost_fence;
|
|
struct nvgpu_nvhost_dev {
|
|
struct platform_device *host1x_pdev;
|
|
};
|
|
|
|
int nvgpu_nvhost_fence_install(struct nvhost_fence *f, int fd);
|
|
struct nvhost_fence *nvgpu_nvhost_fence_get(int fd);
|
|
void nvgpu_nvhost_fence_put(struct nvhost_fence *f);
|
|
void nvgpu_nvhost_fence_dup(struct nvhost_fence *f);
|
|
struct nvhost_fence *nvgpu_nvhost_fence_create(struct platform_device *pdev,
|
|
struct nvhost_ctrl_sync_fence_info *pts,
|
|
u32 num_pts, const char *name);
|
|
u32 nvgpu_nvhost_fence_num_pts(struct nvhost_fence *fence);
|
|
int nvgpu_nvhost_fence_foreach_pt(struct nvhost_fence *fence,
|
|
int (*iter)(struct nvhost_ctrl_sync_fence_info, void *),
|
|
void *data);
|
|
|
|
#endif /* __NVGPU_NVHOST_PRIV_H__ */
|