brintos

brintos / linux-shallow public Read only

0
0
Text · 511 B · cf6a2f0 Raw
22 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/* Copyright (c) 2020 NVIDIA Corporation */3 4#ifndef _TEGRA_DRM_UAPI_SUBMIT_H5#define _TEGRA_DRM_UAPI_SUBMIT_H6 7struct tegra_drm_used_mapping {8	struct tegra_drm_mapping *mapping;9	u32 flags;10};11 12struct tegra_drm_submit_data {13	struct tegra_drm_used_mapping *used_mappings;14	u32 num_used_mappings;15};16 17int tegra_drm_fw_validate(struct tegra_drm_client *client, u32 *data, u32 start,18			  u32 words, struct tegra_drm_submit_data *submit,19			  u32 *job_class);20 21#endif22