Lines Matching +full:hardware +full:- +full:protected
4 * Copyright (c) 2009-2010, Code Aurora Forum.
69 * struct drm_minor - DRM device minor structure
74 * &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
246 * Master this node is currently associated with. Protected by struct
276 * Updates are guarded with dev->filelist_mutex and reference must be
291 * &drm_device.filelist. Protected by &drm_device.filelist_mutex.
302 * subsystem. Protected by @table_lock.
331 * Protected by @fbs_lock. Note that the @fbs list holds a reference on
342 * User-created blob properties; this retains a reference on the
345 * Protected by @drm_mode_config.blob_lock;
388 * Per-file buffer caches used by the PRIME buffer sharing code.
395 * Userspace-provided name; useful for accounting and debugging.
406 * drm_is_primary_client - is this an open file of the primary node
417 return file_priv->minor->type == DRM_MINOR_PRIMARY; in drm_is_primary_client()
421 * drm_is_render_client - is this an open file of the render node
431 return file_priv->minor->type == DRM_MINOR_RENDER; in drm_is_render_client()
435 * drm_is_accel_client - is this an open file of the compute acceleration node
446 return file_priv->minor->type == DRM_MINOR_ACCEL; in drm_is_accel_client()
478 * struct drm_memory_stats - GEM object stats associated