Lines Matching +full:can +full:- +full:primary
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
91 * struct drm_pending_event - Event queued up for userspace to read
93 * This represents a DRM event. Drivers can use this as a generic completion
94 * mechanism, which supports kernel-internal &struct completion, &struct dma_fence
95 * and also the DRM-specific &struct drm_event delivery mechanism.
120 * read using drm_read(). Can be optional, since nowadays events are
145 * Double-linked list to keep track of this event. Can be used by the
147 * this list entry is owned by the core for its own book-keeping.
162 * struct drm_file - DRM file private data
173 * See also the :ref:`section on primary nodes and authentication
188 * True if client understands CRTC primary planes and cursor planes
199 * True, if client can handle picture aspect ratios, and has requested
228 * See also the :ref:`section on primary nodes and authentication
266 * primary nodes and authentication <drm_primary_node>`.
278 * Updates are guarded with dev->filelist_mutex and reference must be
325 * Optional pointer for driver private data. Can be allocated in
347 * User-created blob properties; this retains a reference on the
393 * Per-file buffer caches used by the PRIME buffer sharing code.
404 * drm_is_primary_client - is this an open file of the primary node
407 * Returns true if this is an open file of the primary node, i.e.
408 * &drm_file.minor of @file_priv is a primary minor.
410 * See also the :ref:`section on primary nodes and authentication
415 return file_priv->minor->type == DRM_MINOR_PRIMARY; in drm_is_primary_client()
419 * drm_is_render_client - is this an open file of the render node
429 return file_priv->minor->type == DRM_MINOR_RENDER; in drm_is_render_client()
433 * drm_is_accel_client - is this an open file of the compute acceleration node
444 return file_priv->minor->type == DRM_MINOR_ACCEL; in drm_is_accel_client()
476 * struct drm_memory_stats - GEM object stats associated
480 * @purgeable: Total size of GEM objects that can be purged (resident and not active)