cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

submit.h (511B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/* Copyright (c) 2020 NVIDIA Corporation */
      3
      4#ifndef _TEGRA_DRM_UAPI_SUBMIT_H
      5#define _TEGRA_DRM_UAPI_SUBMIT_H
      6
      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#endif