diff options
author | Mikko Perttunen <mperttunen@nvidia.com> | 2021-06-10 14:04:46 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2021-08-10 15:42:49 +0300 |
commit | 0fddaa85d66140466df8e848afcda452b7d7b416 (patch) | |
tree | 1a720d5474e9f42c831dca98637f613d709a1709 /drivers/gpu/drm/tegra | |
parent | e902585fc8b639f1a1258eaa6265e98994e34ef8 (diff) | |
download | linux-0fddaa85d66140466df8e848afcda452b7d7b416.tar.xz |
gpu: host1x: Add option to skip firewall for a job
The new UAPI will have its own firewall, and we don't want to run
the firewall in the Host1x driver for those jobs. As such, add a
parameter to host1x_job_alloc to specify if we want to skip the
firewall in the Host1x driver.
Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra')
-rw-r--r-- | drivers/gpu/drm/tegra/drm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c index 739250acd498..0e2a6f24c4f6 100644 --- a/drivers/gpu/drm/tegra/drm.c +++ b/drivers/gpu/drm/tegra/drm.c @@ -193,7 +193,7 @@ int tegra_drm_submit(struct tegra_drm_context *context, return -EINVAL; job = host1x_job_alloc(context->channel, args->num_cmdbufs, - args->num_relocs); + args->num_relocs, false); if (!job) return -ENOMEM; |