/* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright (c) 2020 NVIDIA Corporation */ #ifndef _TEGRA_DRM_SUBMIT_GATHER_BO_H #define _TEGRA_DRM_SUBMIT_GATHER_BO_H #include #include struct gather_bo { struct host1x_bo base; struct kref ref; u32 *gather_data; size_t gather_data_words; }; extern const struct host1x_bo_ops gather_bo_ops; void gather_bo_put(struct host1x_bo *host_bo); #endif