blob: 74320a1723b70122bfd85d34cd5a013cbbe57105 [file] [log] [blame]
Sascha Hauere692da42012-09-21 10:07:47 +02001#ifndef _IMX_DRM_H_
2#define _IMX_DRM_H_
3
Russell Kinge7d62312013-11-03 15:38:09 +00004struct device_node;
Philipp Zabeleeb14ec2013-04-08 18:04:32 +02005struct drm_crtc;
6struct drm_connector;
7struct drm_device;
Russell King8a51a332013-11-03 13:28:24 +00008struct drm_display_mode;
Philipp Zabeleeb14ec2013-04-08 18:04:32 +02009struct drm_encoder;
Sascha Hauere692da42012-09-21 10:07:47 +020010struct drm_fbdev_cma;
Philipp Zabeleeb14ec2013-04-08 18:04:32 +020011struct drm_framebuffer;
Philipp Zabel43895592015-11-06 11:08:02 +010012struct drm_plane;
Russell Kinge7d62312013-11-03 15:38:09 +000013struct imx_drm_crtc;
Philipp Zabeleeb14ec2013-04-08 18:04:32 +020014struct platform_device;
Sascha Hauere692da42012-09-21 10:07:47 +020015
Thierry Redingd2ab8ad2015-12-15 12:20:51 +010016unsigned int imx_drm_crtc_id(struct imx_drm_crtc *crtc);
Philipp Zabelb8d181e2013-10-10 16:18:45 +020017
Sascha Hauere692da42012-09-21 10:07:47 +020018struct imx_drm_crtc_helper_funcs {
19 int (*enable_vblank)(struct drm_crtc *crtc);
20 void (*disable_vblank)(struct drm_crtc *crtc);
Russell Kingd50141d2014-12-21 15:58:19 +000021 int (*set_interface_pix_fmt)(struct drm_crtc *crtc,
Philipp Zabel4ed094f2016-05-09 17:02:13 +020022 u32 bus_format, int hsync_pin, int vsync_pin,
23 u32 bus_flags);
Sascha Hauere692da42012-09-21 10:07:47 +020024 const struct drm_crtc_helper_funcs *crtc_helper_funcs;
25 const struct drm_crtc_funcs *crtc_funcs;
26};
27
Russell King32266b42013-11-03 12:26:23 +000028int imx_drm_add_crtc(struct drm_device *drm, struct drm_crtc *crtc,
Philipp Zabel43895592015-11-06 11:08:02 +010029 struct imx_drm_crtc **new_crtc, struct drm_plane *primary_plane,
Sascha Hauere692da42012-09-21 10:07:47 +020030 const struct imx_drm_crtc_helper_funcs *imx_helper_funcs,
Philipp Zabel655b43c2014-03-05 10:20:52 +010031 struct device_node *port);
Sascha Hauere692da42012-09-21 10:07:47 +020032int imx_drm_remove_crtc(struct imx_drm_crtc *);
33int imx_drm_init_drm(struct platform_device *pdev,
34 int preferred_bpp);
35int imx_drm_exit_drm(void);
36
37int imx_drm_crtc_vblank_get(struct imx_drm_crtc *imx_drm_crtc);
38void imx_drm_crtc_vblank_put(struct imx_drm_crtc *imx_drm_crtc);
39void imx_drm_handle_vblank(struct imx_drm_crtc *imx_drm_crtc);
40
Sascha Hauere692da42012-09-21 10:07:47 +020041void imx_drm_mode_config_init(struct drm_device *drm);
42
43struct drm_gem_cma_object *imx_drm_fb_get_obj(struct drm_framebuffer *fb);
44
Philipp Zabel4ed094f2016-05-09 17:02:13 +020045int imx_drm_set_bus_config(struct drm_encoder *encoder, u32 bus_format,
46 int hsync_pin, int vsync_pin, u32 bus_flags);
Philipp Zabel2872c802015-02-02 17:25:59 +010047int imx_drm_set_bus_format(struct drm_encoder *encoder,
48 u32 bus_format);
Sascha Hauere692da42012-09-21 10:07:47 +020049
Russell King9e2d4102013-11-03 14:04:47 +000050int imx_drm_encoder_parse_of(struct drm_device *drm,
51 struct drm_encoder *encoder, struct device_node *np);
Sascha Hauere692da42012-09-21 10:07:47 +020052
Russell King8a51a332013-11-03 13:28:24 +000053void imx_drm_connector_destroy(struct drm_connector *connector);
54void imx_drm_encoder_destroy(struct drm_encoder *encoder);
Russell Kingbaa68c42013-11-09 11:20:55 +000055
Sascha Hauere692da42012-09-21 10:07:47 +020056#endif /* _IMX_DRM_H_ */