2008-05-28 22:02:14 -06:00
|
|
|
/*
|
|
|
|
* Copyright © 2006 Keith Packard
|
|
|
|
* Copyright © 2007 Intel Corporation
|
|
|
|
* Jesse Barnes <jesse.barnes@intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The DRM mode setting helper functions are common code for drivers to use if they wish.
|
|
|
|
* Drivers are not forced to use this code in their implementations but it would be useful
|
|
|
|
* if they code they do use at least provides a consistent interface and operation to userspace
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DRM_CRTC_HELPER_H__
|
|
|
|
#define __DRM_CRTC_HELPER_H__
|
|
|
|
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/idr.h>
|
|
|
|
|
|
|
|
#include <linux/fb.h>
|
|
|
|
|
|
|
|
struct drm_crtc_helper_funcs {
|
|
|
|
void (*prepare)(struct drm_crtc *crtc);
|
|
|
|
void (*commit)(struct drm_crtc *crtc);
|
|
|
|
|
|
|
|
/* Provider can fixup or change mode timings before modeset occurs */
|
|
|
|
bool (*mode_fixup)(struct drm_crtc *crtc,
|
|
|
|
struct drm_display_mode *mode,
|
|
|
|
struct drm_display_mode *adjusted_mode);
|
|
|
|
/* Actually set the mode */
|
|
|
|
void (*mode_set)(struct drm_crtc *crtc, struct drm_display_mode *mode,
|
|
|
|
struct drm_display_mode *adjusted_mode, int x, int y);
|
|
|
|
|
|
|
|
/* Move the crtc on the current fb to the given position *optional* */
|
|
|
|
void (*mode_set_base)(struct drm_crtc *crtc, int x, int y);
|
|
|
|
};
|
|
|
|
|
2008-05-29 23:03:12 -06:00
|
|
|
struct drm_connector_helper_funcs {
|
|
|
|
bool (*mode_fixup)(struct drm_connector *connector,
|
2008-05-28 22:02:14 -06:00
|
|
|
struct drm_display_mode *mode,
|
|
|
|
struct drm_display_mode *adjusted_mode);
|
2008-05-29 23:03:12 -06:00
|
|
|
void (*prepare)(struct drm_connector *connector);
|
|
|
|
void (*commit)(struct drm_connector *connector);
|
|
|
|
void (*mode_set)(struct drm_connector *connector,
|
2008-05-28 22:02:14 -06:00
|
|
|
struct drm_display_mode *mode,
|
|
|
|
struct drm_display_mode *adjusted_mode);
|
|
|
|
};
|
|
|
|
|
2008-05-29 20:03:36 -06:00
|
|
|
struct drm_encoder_helper_funcs {
|
2008-05-29 23:03:12 -06:00
|
|
|
void (*prepare)(struct drm_connector *connector);
|
|
|
|
void (*commit)(struct drm_connector *connector);
|
|
|
|
void (*mode_set)(struct drm_connector *connector,
|
2008-05-29 20:03:36 -06:00
|
|
|
struct drm_display_mode *mode,
|
|
|
|
struct drm_display_mode *adjusted_mode);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-05-29 23:03:12 -06:00
|
|
|
extern int drm_helper_hotplug_stage_two(struct drm_device *dev, struct drm_connector *connector,
|
2008-05-28 22:02:14 -06:00
|
|
|
bool connected);
|
|
|
|
extern bool drm_helper_initial_config(struct drm_device *dev, bool can_grow);
|
|
|
|
extern int drm_crtc_helper_set_config(struct drm_mode_set *set);
|
|
|
|
extern bool drm_crtc_helper_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
|
|
|
|
int x, int y);
|
|
|
|
|
|
|
|
static inline void drm_crtc_helper_add(struct drm_crtc *crtc, const struct drm_crtc_helper_funcs *funcs)
|
|
|
|
{
|
|
|
|
crtc->helper_private = (void *)funcs;
|
|
|
|
}
|
|
|
|
|
2008-05-29 23:03:12 -06:00
|
|
|
static inline void drm_connector_helper_add(struct drm_connector *connector, const struct drm_connector_helper_funcs *funcs)
|
2008-05-28 22:02:14 -06:00
|
|
|
{
|
2008-05-29 23:03:12 -06:00
|
|
|
connector->helper_private = (void *)funcs;
|
2008-05-28 22:02:14 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|