Commit 268bc24e authored by Daniel Vetter's avatar Daniel Vetter

drm: switch drm_plane to inline comments

And use that opportunity to polish the kernel doc all around:
- Beef up some of the documentation.
- Intro text for drm_plane and better links
- Fix all the hyperlinks!

v2: Fix linebreaks.
Reviewed-by: default avatarSean Paul <seanpaul@chromium.org>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180709084016.23750-10-daniel.vetter@ffwll.ch
parent 2e784a91
...@@ -56,11 +56,12 @@ Overview ...@@ -56,11 +56,12 @@ Overview
The basic object structure KMS presents to userspace is fairly simple. The basic object structure KMS presents to userspace is fairly simple.
Framebuffers (represented by :c:type:`struct drm_framebuffer <drm_framebuffer>`, Framebuffers (represented by :c:type:`struct drm_framebuffer <drm_framebuffer>`,
see `Frame Buffer Abstraction`_) feed into planes. One or more (or even no) see `Frame Buffer Abstraction`_) feed into planes. Planes are represented by
planes feed their pixel data into a CRTC (represented by :c:type:`struct :c:type:`struct drm_plane <drm_plane>`, see `Plane Abstraction`_ for more
drm_crtc <drm_crtc>`, see `CRTC Abstraction`_) for blending. The precise details. One or more (or even no) planes feed their pixel data into a CRTC
blending step is explained in more detail in `Plane Composition Properties`_ and (represented by :c:type:`struct drm_crtc <drm_crtc>`, see `CRTC Abstraction`_)
related chapters. for blending. The precise blending step is explained in more detail in `Plane
Composition Properties`_ and related chapters.
For the output routing the first step is encoders (represented by For the output routing the first step is encoders (represented by
:c:type:`struct drm_encoder <drm_encoder>`, see `Encoder Abstraction`_). Those :c:type:`struct drm_encoder <drm_encoder>`, see `Encoder Abstraction`_). Those
......
...@@ -965,8 +965,8 @@ static inline unsigned int drm_crtc_index(const struct drm_crtc *crtc) ...@@ -965,8 +965,8 @@ static inline unsigned int drm_crtc_index(const struct drm_crtc *crtc)
* drm_crtc_mask - find the mask of a registered CRTC * drm_crtc_mask - find the mask of a registered CRTC
* @crtc: CRTC to find mask for * @crtc: CRTC to find mask for
* *
* Given a registered CRTC, return the mask bit of that CRTC for an * Given a registered CRTC, return the mask bit of that CRTC for the
* encoder's possible_crtcs field. * &drm_encoder.possible_crtcs and &drm_plane.possible_crtcs fields.
*/ */
static inline uint32_t drm_crtc_mask(const struct drm_crtc *crtc) static inline uint32_t drm_crtc_mask(const struct drm_crtc *crtc)
{ {
......
...@@ -525,30 +525,27 @@ enum drm_plane_type { ...@@ -525,30 +525,27 @@ enum drm_plane_type {
/** /**
* struct drm_plane - central DRM plane control structure * struct drm_plane - central DRM plane control structure
* @dev: DRM device this plane belongs to *
* @head: for list management * Planes represent the scanout hardware of a display block. They receive their
* @name: human readable name, can be overwritten by the driver * input data from a &drm_framebuffer and feed it to a &drm_crtc. Planes control
* @base: base mode object * the color conversion, see `Plane Composition Properties`_ for more details,
* @possible_crtcs: pipes this plane can be bound to * and are also involved in the color conversion of input pixels, see `Color
* @format_types: array of formats supported by this plane * Management Properties`_ for details on that.
* @format_count: number of formats supported
* @format_default: driver hasn't supplied supported formats for the plane
* @modifiers: array of modifiers supported by this plane
* @modifier_count: number of modifiers supported
* @old_fb: Temporary tracking of the old fb while a modeset is ongoing. Used by
* drm_mode_set_config_internal() to implement correct refcounting.
* @funcs: helper functions
* @properties: property tracking for this plane
* @type: type of plane (overlay, primary, cursor)
* @alpha_property: alpha property for this plane
* @zpos_property: zpos property for this plane
* @rotation_property: rotation property for this plane
* @helper_private: mid-layer private data
*/ */
struct drm_plane { struct drm_plane {
/** @dev: DRM device this plane belongs to */
struct drm_device *dev; struct drm_device *dev;
/**
* @head:
*
* List of all planes on @dev, linked from &drm_mode_config.plane_list.
* Invariant over the lifetime of @dev and therefore does not need
* locking.
*/
struct list_head head; struct list_head head;
/** @name: human readable name, can be overwritten by the driver */
char *name; char *name;
/** /**
...@@ -562,35 +559,62 @@ struct drm_plane { ...@@ -562,35 +559,62 @@ struct drm_plane {
*/ */
struct drm_modeset_lock mutex; struct drm_modeset_lock mutex;
/** @base: base mode object */
struct drm_mode_object base; struct drm_mode_object base;
/**
* @possible_crtcs: pipes this plane can be bound to constructed from
* drm_crtc_mask()
*/
uint32_t possible_crtcs; uint32_t possible_crtcs;
/** @format_types: array of formats supported by this plane */
uint32_t *format_types; uint32_t *format_types;
/** @format_count: Size of the array pointed at by @format_types. */
unsigned int format_count; unsigned int format_count;
/**
* @format_default: driver hasn't supplied supported formats for the
* plane. Used by the drm_plane_init compatibility wrapper only.
*/
bool format_default; bool format_default;
/** @modifiers: array of modifiers supported by this plane */
uint64_t *modifiers; uint64_t *modifiers;
/** @modifier_count: Size of the array pointed at by @modifier_count. */
unsigned int modifier_count; unsigned int modifier_count;
/** /**
* @crtc: Currently bound CRTC, only really meaningful for non-atomic * @crtc:
* drivers. Atomic drivers should instead check &drm_plane_state.crtc. *
* Currently bound CRTC, only meaningful for non-atomic drivers. For
* atomic drivers this is forced to be NULL, atomic drivers should
* instead check &drm_plane_state.crtc.
*/ */
struct drm_crtc *crtc; struct drm_crtc *crtc;
/** /**
* @fb: Currently bound framebuffer, only really meaningful for * @fb:
* non-atomic drivers. Atomic drivers should instead check *
* &drm_plane_state.fb. * Currently bound framebuffer, only meaningful for non-atomic drivers.
* For atomic drivers this is forced to be NULL, atomic drivers should
* instead check &drm_plane_state.fb.
*/ */
struct drm_framebuffer *fb; struct drm_framebuffer *fb;
/**
* @old_fb:
*
* Temporary tracking of the old fb while a modeset is ongoing. Only
* used by non-atomic drivers, forced to be NULL for atomic drivers.
*/
struct drm_framebuffer *old_fb; struct drm_framebuffer *old_fb;
/** @funcs: plane control functions */
const struct drm_plane_funcs *funcs; const struct drm_plane_funcs *funcs;
/** @properties: property tracking for this plane */
struct drm_object_properties properties; struct drm_object_properties properties;
/** @type: Type of plane, see &enum drm_plane_type for details. */
enum drm_plane_type type; enum drm_plane_type type;
/** /**
...@@ -599,6 +623,7 @@ struct drm_plane { ...@@ -599,6 +623,7 @@ struct drm_plane {
*/ */
unsigned index; unsigned index;
/** @helper_private: mid-layer private data */
const struct drm_plane_helper_funcs *helper_private; const struct drm_plane_helper_funcs *helper_private;
/** /**
...@@ -616,8 +641,23 @@ struct drm_plane { ...@@ -616,8 +641,23 @@ struct drm_plane {
*/ */
struct drm_plane_state *state; struct drm_plane_state *state;
/**
* @alpha_property:
* Optional alpha property for this plane. See
* drm_plane_create_alpha_property().
*/
struct drm_property *alpha_property; struct drm_property *alpha_property;
/**
* @zpos_property:
* Optional zpos property for this plane. See
* drm_plane_create_zpos_property().
*/
struct drm_property *zpos_property; struct drm_property *zpos_property;
/**
* @rotation_property:
* Optional rotation property for this plane. See
* drm_plane_create_rotation_property().
*/
struct drm_property *rotation_property; struct drm_property *rotation_property;
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment