blob: 39cef15c699bae6710966d176c141fdadbf90054 [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
Liu Ying032003c2016-07-08 17:40:58 +080018struct imx_drm_encoder {
19 struct drm_encoder encoder;
20 u32 bus_format;
21 u32 bus_flags;
22 int di_hsync_pin;
23 int di_vsync_pin;
24};
25
26#define enc_to_imx_enc(x) container_of(x, struct imx_drm_encoder, encoder)
27
Sascha Hauere692da42012-09-21 10:07:47 +020028struct imx_drm_crtc_helper_funcs {
29 int (*enable_vblank)(struct drm_crtc *crtc);
30 void (*disable_vblank)(struct drm_crtc *crtc);
Sascha Hauere692da42012-09-21 10:07:47 +020031 const struct drm_crtc_helper_funcs *crtc_helper_funcs;
32 const struct drm_crtc_funcs *crtc_funcs;
33};
34
Russell King32266b42013-11-03 12:26:23 +000035int imx_drm_add_crtc(struct drm_device *drm, struct drm_crtc *crtc,
Philipp Zabel43895592015-11-06 11:08:02 +010036 struct imx_drm_crtc **new_crtc, struct drm_plane *primary_plane,
Sascha Hauere692da42012-09-21 10:07:47 +020037 const struct imx_drm_crtc_helper_funcs *imx_helper_funcs,
Philipp Zabel655b43c2014-03-05 10:20:52 +010038 struct device_node *port);
Sascha Hauere692da42012-09-21 10:07:47 +020039int imx_drm_remove_crtc(struct imx_drm_crtc *);
40int imx_drm_init_drm(struct platform_device *pdev,
41 int preferred_bpp);
42int imx_drm_exit_drm(void);
43
44int imx_drm_crtc_vblank_get(struct imx_drm_crtc *imx_drm_crtc);
45void imx_drm_crtc_vblank_put(struct imx_drm_crtc *imx_drm_crtc);
46void imx_drm_handle_vblank(struct imx_drm_crtc *imx_drm_crtc);
47
Sascha Hauere692da42012-09-21 10:07:47 +020048void imx_drm_mode_config_init(struct drm_device *drm);
49
50struct drm_gem_cma_object *imx_drm_fb_get_obj(struct drm_framebuffer *fb);
51
Russell King9e2d4102013-11-03 14:04:47 +000052int imx_drm_encoder_parse_of(struct drm_device *drm,
53 struct drm_encoder *encoder, struct device_node *np);
Sascha Hauere692da42012-09-21 10:07:47 +020054
Russell King8a51a332013-11-03 13:28:24 +000055void imx_drm_connector_destroy(struct drm_connector *connector);
56void imx_drm_encoder_destroy(struct drm_encoder *encoder);
Russell Kingbaa68c42013-11-09 11:20:55 +000057
Sascha Hauere692da42012-09-21 10:07:47 +020058#endif /* _IMX_DRM_H_ */