blob: 07d33e45f90f5538982697839685f8e0a1adca78 [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
Philipp Zabel49f98bc2016-07-06 14:49:24 +020018struct imx_crtc_state {
19 struct drm_crtc_state base;
Liu Ying032003c2016-07-08 17:40:58 +080020 u32 bus_format;
21 u32 bus_flags;
22 int di_hsync_pin;
23 int di_vsync_pin;
24};
25
Philipp Zabel49f98bc2016-07-06 14:49:24 +020026static inline struct imx_crtc_state *to_imx_crtc_state(struct drm_crtc_state *s)
27{
28 return container_of(s, struct imx_crtc_state, base);
29}
Liu Ying032003c2016-07-08 17:40:58 +080030
Sascha Hauere692da42012-09-21 10:07:47 +020031struct imx_drm_crtc_helper_funcs {
32 int (*enable_vblank)(struct drm_crtc *crtc);
33 void (*disable_vblank)(struct drm_crtc *crtc);
Sascha Hauere692da42012-09-21 10:07:47 +020034 const struct drm_crtc_helper_funcs *crtc_helper_funcs;
35 const struct drm_crtc_funcs *crtc_funcs;
36};
37
Russell King32266b42013-11-03 12:26:23 +000038int imx_drm_add_crtc(struct drm_device *drm, struct drm_crtc *crtc,
Philipp Zabel43895592015-11-06 11:08:02 +010039 struct imx_drm_crtc **new_crtc, struct drm_plane *primary_plane,
Sascha Hauere692da42012-09-21 10:07:47 +020040 const struct imx_drm_crtc_helper_funcs *imx_helper_funcs,
Philipp Zabel655b43c2014-03-05 10:20:52 +010041 struct device_node *port);
Sascha Hauere692da42012-09-21 10:07:47 +020042int imx_drm_remove_crtc(struct imx_drm_crtc *);
43int imx_drm_init_drm(struct platform_device *pdev,
44 int preferred_bpp);
45int imx_drm_exit_drm(void);
46
47int imx_drm_crtc_vblank_get(struct imx_drm_crtc *imx_drm_crtc);
48void imx_drm_crtc_vblank_put(struct imx_drm_crtc *imx_drm_crtc);
49void imx_drm_handle_vblank(struct imx_drm_crtc *imx_drm_crtc);
50
Sascha Hauere692da42012-09-21 10:07:47 +020051void imx_drm_mode_config_init(struct drm_device *drm);
52
53struct drm_gem_cma_object *imx_drm_fb_get_obj(struct drm_framebuffer *fb);
54
Russell King9e2d4102013-11-03 14:04:47 +000055int imx_drm_encoder_parse_of(struct drm_device *drm,
56 struct drm_encoder *encoder, struct device_node *np);
Sascha Hauere692da42012-09-21 10:07:47 +020057
Russell King8a51a332013-11-03 13:28:24 +000058void imx_drm_connector_destroy(struct drm_connector *connector);
59void imx_drm_encoder_destroy(struct drm_encoder *encoder);
Russell Kingbaa68c42013-11-09 11:20:55 +000060
Sascha Hauere692da42012-09-21 10:07:47 +020061#endif /* _IMX_DRM_H_ */