| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #ifndef __DRM_ENCODER_H__ |
| #define __DRM_ENCODER_H__ |
| |
| #include <linux/list.h> |
| #include <linux/ctype.h> |
| #include <drm/drm_crtc.h> |
| #include <drm/drm_mode.h> |
| #include <drm/drm_mode_object.h> |
| #include <drm/drm_util.h> |
| |
| struct drm_encoder; |
| |
| |
| |
| |
| |
| |
| struct drm_encoder_funcs { |
| <------> |
| <------> * @reset: |
| <------> * |
| <------> * Reset encoder hardware and software state to off. This function isn't |
| <------> * called by the core directly, only through drm_mode_config_reset(). |
| <------> * It's not a helper hook only for historical reasons. |
| <------> */ |
| <------>void (*reset)(struct drm_encoder *encoder); |
| |
| <------> |
| <------> * @destroy: |
| <------> * |
| <------> * Clean up encoder resources. This is only called at driver unload time |
| <------> * through drm_mode_config_cleanup() since an encoder cannot be |
| <------> * hotplugged in DRM. |
| <------> */ |
| <------>void (*destroy)(struct drm_encoder *encoder); |
| |
| <------> |
| <------> * @late_register: |
| <------> * |
| <------> * This optional hook can be used to register additional userspace |
| <------> * interfaces attached to the encoder like debugfs interfaces. |
| <------> * It is called late in the driver load sequence from drm_dev_register(). |
| <------> * Everything added from this callback should be unregistered in |
| <------> * the early_unregister callback. |
| <------> * |
| <------> * Returns: |
| <------> * |
| <------> * 0 on success, or a negative error code on failure. |
| <------> */ |
| <------>int (*late_register)(struct drm_encoder *encoder); |
| |
| <------> |
| <------> * @early_unregister: |
| <------> * |
| <------> * This optional hook should be used to unregister the additional |
| <------> * userspace interfaces attached to the encoder from |
| <------> * @late_register. It is called from drm_dev_unregister(), |
| <------> * early in the driver unload sequence to disable userspace access |
| <------> * before data structures are torndown. |
| <------> */ |
| <------>void (*early_unregister)(struct drm_encoder *encoder); |
| }; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| struct drm_encoder { |
| <------>struct drm_device *dev; |
| <------>struct list_head head; |
| |
| <------>struct drm_mode_object base; |
| <------>char *name; |
| <------> |
| <------> * @encoder_type: |
| <------> * |
| <------> * One of the DRM_MODE_ENCODER_<foo> types in drm_mode.h. The following |
| <------> * encoder types are defined thus far: |
| <------> * |
| <------> * - DRM_MODE_ENCODER_DAC for VGA and analog on DVI-I/DVI-A. |
| <------> * |
| <------> * - DRM_MODE_ENCODER_TMDS for DVI, HDMI and (embedded) DisplayPort. |
| <------> * |
| <------> * - DRM_MODE_ENCODER_LVDS for display panels, or in general any panel |
| <------> * with a proprietary parallel connector. |
| <------> * |
| <------> * - DRM_MODE_ENCODER_TVDAC for TV output (Composite, S-Video, |
| <------> * Component, SCART). |
| <------> * |
| <------> * - DRM_MODE_ENCODER_VIRTUAL for virtual machine displays |
| <------> * |
| <------> * - DRM_MODE_ENCODER_DSI for panels connected using the DSI serial bus. |
| <------> * |
| <------> * - DRM_MODE_ENCODER_DPI for panels connected using the DPI parallel |
| <------> * bus. |
| <------> * |
| <------> * - DRM_MODE_ENCODER_DPMST for special fake encoders used to allow |
| <------> * mutliple DP MST streams to share one physical encoder. |
| <------> */ |
| <------>int encoder_type; |
| |
| <------> |
| <------> * @index: Position inside the mode_config.list, can be used as an array |
| <------> * index. It is invariant over the lifetime of the encoder. |
| <------> */ |
| <------>unsigned index; |
| |
| <------> |
| <------> * @possible_crtcs: Bitmask of potential CRTC bindings, using |
| <------> * drm_crtc_index() as the index into the bitfield. The driver must set |
| <------> * the bits for all &drm_crtc objects this encoder can be connected to |
| <------> * before calling drm_dev_register(). |
| <------> * |
| <------> * You will get a WARN if you get this wrong in the driver. |
| <------> * |
| <------> * Note that since CRTC objects can't be hotplugged the assigned indices |
| <------> * are stable and hence known before registering all objects. |
| <------> */ |
| <------>uint32_t possible_crtcs; |
| |
| <------> |
| <------> * @possible_clones: Bitmask of potential sibling encoders for cloning, |
| <------> * using drm_encoder_index() as the index into the bitfield. The driver |
| <------> * must set the bits for all &drm_encoder objects which can clone a |
| <------> * &drm_crtc together with this encoder before calling |
| <------> * drm_dev_register(). Drivers should set the bit representing the |
| <------> * encoder itself, too. Cloning bits should be set such that when two |
| <------> * encoders can be used in a cloned configuration, they both should have |
| <------> * each another bits set. |
| <------> * |
| <------> * As an exception to the above rule if the driver doesn't implement |
| <------> * any cloning it can leave @possible_clones set to 0. The core will |
| <------> * automagically fix this up by setting the bit for the encoder itself. |
| <------> * |
| <------> * You will get a WARN if you get this wrong in the driver. |
| <------> * |
| <------> * Note that since encoder objects can't be hotplugged the assigned indices |
| <------> * are stable and hence known before registering all objects. |
| <------> */ |
| <------>uint32_t possible_clones; |
| |
| <------> |
| <------> * @crtc: Currently bound CRTC, only really meaningful for non-atomic |
| <------> * drivers. Atomic drivers should instead check |
| <------> * &drm_connector_state.crtc. |
| <------> */ |
| <------>struct drm_crtc *crtc; |
| |
| <------> |
| <------> * @bridge_chain: Bridges attached to this encoder. Drivers shall not |
| <------> * access this field directly. |
| <------> */ |
| <------>struct list_head bridge_chain; |
| |
| <------>const struct drm_encoder_funcs *funcs; |
| <------>const struct drm_encoder_helper_funcs *helper_private; |
| }; |
| |
| #define obj_to_encoder(x) container_of(x, struct drm_encoder, base) |
| |
| __printf(5, 6) |
| int drm_encoder_init(struct drm_device *dev, |
| <------><------> struct drm_encoder *encoder, |
| <------><------> const struct drm_encoder_funcs *funcs, |
| <------><------> int encoder_type, const char *name, ...); |
| |
| |
| |
| |
| |
| |
| |
| |
| static inline unsigned int drm_encoder_index(const struct drm_encoder *encoder) |
| { |
| <------>return encoder->index; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| static inline u32 drm_encoder_mask(const struct drm_encoder *encoder) |
| { |
| <------>return 1 << drm_encoder_index(encoder); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| static inline bool drm_encoder_crtc_ok(struct drm_encoder *encoder, |
| <------><------><------><------> struct drm_crtc *crtc) |
| { |
| <------>return !!(encoder->possible_crtcs & drm_crtc_mask(crtc)); |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| static inline struct drm_encoder *drm_encoder_find(struct drm_device *dev, |
| <------><------><------><------><------><------> struct drm_file *file_priv, |
| <------><------><------><------><------><------> uint32_t id) |
| { |
| <------>struct drm_mode_object *mo; |
| |
| <------>mo = drm_mode_object_find(dev, file_priv, id, DRM_MODE_OBJECT_ENCODER); |
| |
| <------>return mo ? obj_to_encoder(mo) : NULL; |
| } |
| |
| void drm_encoder_cleanup(struct drm_encoder *encoder); |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define drm_for_each_encoder_mask(encoder, dev, encoder_mask) \ |
| <------>list_for_each_entry((encoder), &(dev)->mode_config.encoder_list, head) \ |
| <------><------>for_each_if ((encoder_mask) & drm_encoder_mask(encoder)) |
| |
| |
| |
| |
| |
| |
| |
| |
| #define drm_for_each_encoder(encoder, dev) \ |
| <------>list_for_each_entry(encoder, &(dev)->mode_config.encoder_list, head) |
| |
| #endif |
| |