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
89 * struct drm_pending_event - Event queued up for userspace to read
91 * This represents a DRM event. Drivers can use this as a generic completion
92 * mechanism, which supports kernel-internal &struct completion, &struct dma_fence
93 * and also the DRM-specific &struct drm_event delivery mechanism.
118 * read using drm_read(). Can be optional, since nowadays events are
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
171 * See also the :ref:`section on primary nodes and authentication
186 * True if client understands CRTC primary planes and cursor planes
197 * True, if client can handle picture aspect ratios, and has requested
226 * See also the :ref:`section on primary nodes and authentication
264 * primary nodes and authentication <drm_primary_node>`.
276 * Updates are guarded with dev->filelist_mutex and reference must be
320 * Optional pointer for driver private data. Can be allocated in
342 * User-created blob properties; this retains a reference on the
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
409 * Returns true if this is an open file of the primary node, i.e.
410 * &drm_file.minor of @file_priv is a primary minor.
412 * See also the :ref:`section on primary nodes and authentication
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
482 * @purgeable: Total size of GEM objects that can be purged (resident and not active)