mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	drm/i915/uapi: convert drm_i915_gem_set_domain to kernel doc
Convert all the drm_i915_gem_set_domain bits to proper kernel doc. Suggested-by: Daniel Vetter <daniel@ffwll.ch> Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Kenneth Graunke <kenneth@whitecape.org> Cc: Jason Ekstrand <jason@jlekstrand.net> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: Ramalingam C <ramalingam.c@intel.com> Reviewed-by: Ramalingam C <ramalingam.c@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210705135310.1502437-4-matthew.auld@intel.com
This commit is contained in:
		
							parent
							
								
									289f5a7200
								
							
						
					
					
						commit
						3aa8c57fe2
					
				
					 1 changed files with 27 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -880,14 +880,38 @@ struct drm_i915_gem_mmap_offset {
 | 
			
		|||
	__u64 extensions;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * struct drm_i915_gem_set_domain - Adjust the objects write or read domain, in
 | 
			
		||||
 * preparation for accessing the pages via some CPU domain.
 | 
			
		||||
 *
 | 
			
		||||
 * Specifying a new write or read domain will flush the object out of the
 | 
			
		||||
 * previous domain(if required), before then updating the objects domain
 | 
			
		||||
 * tracking with the new domain.
 | 
			
		||||
 *
 | 
			
		||||
 * Note this might involve waiting for the object first if it is still active on
 | 
			
		||||
 * the GPU.
 | 
			
		||||
 *
 | 
			
		||||
 * Supported values for @read_domains and @write_domain:
 | 
			
		||||
 *
 | 
			
		||||
 *	- I915_GEM_DOMAIN_WC: Uncached write-combined domain
 | 
			
		||||
 *	- I915_GEM_DOMAIN_CPU: CPU cache domain
 | 
			
		||||
 *	- I915_GEM_DOMAIN_GTT: Mappable aperture domain
 | 
			
		||||
 *
 | 
			
		||||
 * All other domains are rejected.
 | 
			
		||||
 */
 | 
			
		||||
struct drm_i915_gem_set_domain {
 | 
			
		||||
	/** Handle for the object */
 | 
			
		||||
	/** @handle: Handle for the object. */
 | 
			
		||||
	__u32 handle;
 | 
			
		||||
 | 
			
		||||
	/** New read domains */
 | 
			
		||||
	/** @read_domains: New read domains. */
 | 
			
		||||
	__u32 read_domains;
 | 
			
		||||
 | 
			
		||||
	/** New write domain */
 | 
			
		||||
	/**
 | 
			
		||||
	 * @write_domain: New write domain.
 | 
			
		||||
	 *
 | 
			
		||||
	 * Note that having something in the write domain implies it's in the
 | 
			
		||||
	 * read domain, and only that read domain.
 | 
			
		||||
	 */
 | 
			
		||||
	__u32 write_domain;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue