Lines Matching +full:hardware +full:- +full:protected

4  * Copyright (c) 2009-2010, Code Aurora Forum.
67 * struct drm_minor - DRM device minor structure
72 * &struct drm_device, which is also where driver-private data and resources can
89 * struct drm_pending_event - Event queued up for userspace to read
92 * mechanism, which supports kernel-internal &struct completion, &struct dma_fence
93 * and also the DRM-specific &struct drm_event delivery mechanism.
127 * Optional DMA fence to unblock other hardware transactions which
143 * Double-linked list to keep track of this event. Can be used by the
145 * this list entry is owned by the core for its own book-keeping.
160 * struct drm_file - DRM file private data
212 * This client has or had, master capability. Protected by struct
223 * This client is the creator of @master. Protected by struct
234 * Master this node is currently associated with. Protected by struct
272 * &drm_device.filelist. Protected by &drm_device.filelist_mutex.
283 * subsystem. Protected by @table_lock.
312 * Protected by @fbs_lock. Note that the @fbs list holds a reference on
323 * User-created blob properties; this retains a reference on the
326 * Protected by @drm_mode_config.blob_lock;
369 * Per-file buffer caches used by the PRIME buffer sharing code.
380 * drm_is_primary_client - is this an open file of the primary node
391 return file_priv->minor->type == DRM_MINOR_PRIMARY; in drm_is_primary_client()
395 * drm_is_render_client - is this an open file of the render node
405 return file_priv->minor->type == DRM_MINOR_RENDER; in drm_is_render_client()
409 * drm_is_accel_client - is this an open file of the compute acceleration node
420 return file_priv->minor->type == DRM_MINOR_ACCEL; in drm_is_accel_client()
447 * struct drm_memory_stats - GEM object stats associated