job.h (8632987380765dee716d460640aa58d58d52998e) | job.h (c6aeaf56f468a565f6d2f27325fc07d35cdcd3cb) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Tegra host1x Job 4 * 5 * Copyright (c) 2011-2013, NVIDIA Corporation. 6 */ 7 8#ifndef __HOST1X_JOB_H --- 21 unchanged lines hidden (view full) --- 30 31 union { 32 struct host1x_job_gather gather; 33 struct host1x_job_wait wait; 34 }; 35}; 36 37struct host1x_job_unpin_data { | 1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Tegra host1x Job 4 * 5 * Copyright (c) 2011-2013, NVIDIA Corporation. 6 */ 7 8#ifndef __HOST1X_JOB_H --- 21 unchanged lines hidden (view full) --- 30 31 union { 32 struct host1x_job_gather gather; 33 struct host1x_job_wait wait; 34 }; 35}; 36 37struct host1x_job_unpin_data { |
38 struct host1x_bo *bo; 39 struct sg_table *sgt; 40 struct device *dev; 41 size_t size; 42 enum dma_data_direction dir; | 38 struct host1x_bo_mapping *map; |
43}; 44 45/* 46 * Dump contents of job to debug output. 47 */ 48void host1x_job_dump(struct device *dev, struct host1x_job *job); 49 50#endif | 39}; 40 41/* 42 * Dump contents of job to debug output. 43 */ 44void host1x_job_dump(struct device *dev, struct host1x_job *job); 45 46#endif |