blob: 83284b4d4be1ef86ebefbb3276ef41bf3d5eb6ef [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
Philipp Zabelb8d181e2013-10-10 16:18:45 +020016int imx_drm_crtc_id(struct imx_drm_crtc *crtc);
17
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 Zabel2872c802015-02-02 17:25:59 +010022 u32 bus_format, int hsync_pin, int vsync_pin);
Sascha Hauere692da42012-09-21 10:07:47 +020023 const struct drm_crtc_helper_funcs *crtc_helper_funcs;
24 const struct drm_crtc_funcs *crtc_funcs;
25};
26
Russell King32266b42013-11-03 12:26:23 +000027int imx_drm_add_crtc(struct drm_device *drm, struct drm_crtc *crtc,
Philipp Zabel43895592015-11-06 11:08:02 +010028 struct imx_drm_crtc **new_crtc, struct drm_plane *primary_plane,
Sascha Hauere692da42012-09-21 10:07:47 +020029 const struct imx_drm_crtc_helper_funcs *imx_helper_funcs,
Philipp Zabel655b43c2014-03-05 10:20:52 +010030 struct device_node *port);
Sascha Hauere692da42012-09-21 10:07:47 +020031int imx_drm_remove_crtc(struct imx_drm_crtc *);
32int imx_drm_init_drm(struct platform_device *pdev,
33 int preferred_bpp);
34int imx_drm_exit_drm(void);
35
36int imx_drm_crtc_vblank_get(struct imx_drm_crtc *imx_drm_crtc);
37void imx_drm_crtc_vblank_put(struct imx_drm_crtc *imx_drm_crtc);
38void imx_drm_handle_vblank(struct imx_drm_crtc *imx_drm_crtc);
39
Sascha Hauere692da42012-09-21 10:07:47 +020040void imx_drm_mode_config_init(struct drm_device *drm);
41
42struct drm_gem_cma_object *imx_drm_fb_get_obj(struct drm_framebuffer *fb);
43
Philipp Zabel2872c802015-02-02 17:25:59 +010044int imx_drm_set_bus_format_pins(struct drm_encoder *encoder,
45 u32 bus_format, int hsync_pin, int vsync_pin);
46int imx_drm_set_bus_format(struct drm_encoder *encoder,
47 u32 bus_format);
Sascha Hauere692da42012-09-21 10:07:47 +020048
Philipp Zabel655b43c2014-03-05 10:20:52 +010049int imx_drm_encoder_get_mux_id(struct device_node *node,
50 struct drm_encoder *encoder);
Russell King9e2d4102013-11-03 14:04:47 +000051int imx_drm_encoder_parse_of(struct drm_device *drm,
52 struct drm_encoder *encoder, struct device_node *np);
Sascha Hauere692da42012-09-21 10:07:47 +020053
Russell King8a51a332013-11-03 13:28:24 +000054void imx_drm_connector_destroy(struct drm_connector *connector);
55void imx_drm_encoder_destroy(struct drm_encoder *encoder);
Russell Kingbaa68c42013-11-09 11:20:55 +000056
Sascha Hauere692da42012-09-21 10:07:47 +020057#endif /* _IMX_DRM_H_ */