diff options
Diffstat (limited to 'drivers/staging/imx-drm/imx-drm.h')
| -rw-r--r-- | drivers/staging/imx-drm/imx-drm.h | 44 | 
1 files changed, 15 insertions, 29 deletions
diff --git a/drivers/staging/imx-drm/imx-drm.h b/drivers/staging/imx-drm/imx-drm.h index f2aac91ddf5..7453ae00c41 100644 --- a/drivers/staging/imx-drm/imx-drm.h +++ b/drivers/staging/imx-drm/imx-drm.h @@ -1,19 +1,19 @@  #ifndef _IMX_DRM_H_  #define _IMX_DRM_H_ -#include <linux/videodev2.h> - -#define IPU_PIX_FMT_GBR24	v4l2_fourcc('G', 'B', 'R', '3') - +struct device_node;  struct drm_crtc;  struct drm_connector;  struct drm_device; +struct drm_display_mode;  struct drm_encoder; -struct imx_drm_crtc;  struct drm_fbdev_cma;  struct drm_framebuffer; +struct imx_drm_crtc;  struct platform_device; +int imx_drm_crtc_id(struct imx_drm_crtc *crtc); +  struct imx_drm_crtc_helper_funcs {  	int (*enable_vblank)(struct drm_crtc *crtc);  	void (*disable_vblank)(struct drm_crtc *crtc); @@ -23,10 +23,10 @@ struct imx_drm_crtc_helper_funcs {  	const struct drm_crtc_funcs *crtc_funcs;  }; -int imx_drm_add_crtc(struct drm_crtc *crtc, +int imx_drm_add_crtc(struct drm_device *drm, struct drm_crtc *crtc,  		struct imx_drm_crtc **new_crtc,  		const struct imx_drm_crtc_helper_funcs *imx_helper_funcs, -		struct module *owner, void *cookie, int id); +		struct device_node *port);  int imx_drm_remove_crtc(struct imx_drm_crtc *);  int imx_drm_init_drm(struct platform_device *pdev,  		int preferred_bpp); @@ -36,35 +36,21 @@ int imx_drm_crtc_vblank_get(struct imx_drm_crtc *imx_drm_crtc);  void imx_drm_crtc_vblank_put(struct imx_drm_crtc *imx_drm_crtc);  void imx_drm_handle_vblank(struct imx_drm_crtc *imx_drm_crtc); -struct imx_drm_encoder; -int imx_drm_add_encoder(struct drm_encoder *encoder, -		struct imx_drm_encoder **new_enc, -		struct module *owner); -int imx_drm_remove_encoder(struct imx_drm_encoder *); - -struct imx_drm_connector; -int imx_drm_add_connector(struct drm_connector *connector, -		struct imx_drm_connector **new_con, -		struct module *owner); -int imx_drm_remove_connector(struct imx_drm_connector *); -  void imx_drm_mode_config_init(struct drm_device *drm);  struct drm_gem_cma_object *imx_drm_fb_get_obj(struct drm_framebuffer *fb); -struct drm_device *imx_drm_device_get(void); -void imx_drm_device_put(void); -int imx_drm_crtc_panel_format_pins(struct drm_crtc *crtc, u32 encoder_type, +int imx_drm_panel_format_pins(struct drm_encoder *encoder,  		u32 interface_pix_fmt, int hsync_pin, int vsync_pin); -int imx_drm_crtc_panel_format(struct drm_crtc *crtc, u32 encoder_type, +int imx_drm_panel_format(struct drm_encoder *encoder,  		u32 interface_pix_fmt); -void imx_drm_fb_helper_set(struct drm_fbdev_cma *fbdev_helper); -struct device_node; +int imx_drm_encoder_get_mux_id(struct device_node *node, +		struct drm_encoder *encoder); +int imx_drm_encoder_parse_of(struct drm_device *drm, +	struct drm_encoder *encoder, struct device_node *np); -int imx_drm_encoder_get_mux_id(struct imx_drm_encoder *imx_drm_encoder, -		struct drm_crtc *crtc); -int imx_drm_encoder_add_possible_crtcs(struct imx_drm_encoder *imx_drm_encoder, -		struct device_node *np); +void imx_drm_connector_destroy(struct drm_connector *connector); +void imx_drm_encoder_destroy(struct drm_encoder *encoder);  #endif /* _IMX_DRM_H_ */  | 
