blob: b023f5fea25f193c7a52c91bc2cbc6c58b0aefec [file] [log] [blame]
Inki Dae1c248b72011-10-04 19:19:01 +09001/* exynos_drm_drv.h
2 *
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * Authors:
5 * Inki Dae <inki.dae@samsung.com>
6 * Joonyoung Shim <jy0922.shim@samsung.com>
7 * Seung-Woo Kim <sw0312.kim@samsung.com>
8 *
Inki Daed81aecb2012-12-18 02:30:17 +09009 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
Inki Dae1c248b72011-10-04 19:19:01 +090013 */
14
15#ifndef _EXYNOS_DRM_DRV_H_
16#define _EXYNOS_DRM_DRV_H_
17
Gustavo Padovand2c1bba2014-10-31 14:17:38 +000018#include <drm/drmP.h>
Inki Dae4f9eb942011-11-12 16:57:42 +090019#include <linux/module.h>
Inki Dae1c248b72011-10-04 19:19:01 +090020
Inki Daeb73d1232012-03-21 10:55:26 +090021#define MAX_CRTC 3
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090022#define MAX_PLANE 5
Inki Daeb73d1232012-03-21 10:55:26 +090023#define MAX_FB_BUFFER 4
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090024#define DEFAULT_ZPOS -1
Inki Dae1c248b72011-10-04 19:19:01 +090025
Inki Daedf5225b2014-05-29 18:28:02 +090026/* This enumerates device type. */
27enum exynos_drm_device_type {
28 EXYNOS_DEVICE_TYPE_NONE,
29 EXYNOS_DEVICE_TYPE_CRTC,
30 EXYNOS_DEVICE_TYPE_CONNECTOR,
31};
32
Inki Dae1c248b72011-10-04 19:19:01 +090033/* this enumerates display type. */
34enum exynos_drm_output_type {
35 EXYNOS_DISPLAY_TYPE_NONE,
36 /* RGB or CPU Interface. */
37 EXYNOS_DISPLAY_TYPE_LCD,
38 /* HDMI Interface. */
39 EXYNOS_DISPLAY_TYPE_HDMI,
Inki Daeb73d1232012-03-21 10:55:26 +090040 /* Virtual Display Interface. */
41 EXYNOS_DISPLAY_TYPE_VIDI,
Inki Dae1c248b72011-10-04 19:19:01 +090042};
43
44/*
Inki Dae1c248b72011-10-04 19:19:01 +090045 * Exynos drm common overlay structure.
46 *
Inki Dae19c8b832011-10-14 13:29:46 +090047 * @fb_x: offset x on a framebuffer to be displayed.
48 * - the unit is screen coordinates.
49 * @fb_y: offset y on a framebuffer to be displayed.
50 * - the unit is screen coordinates.
51 * @fb_width: width of a framebuffer.
52 * @fb_height: height of a framebuffer.
Seung-Woo Kim0d8071ee2012-04-24 18:43:10 +090053 * @src_width: width of a partial image to be displayed from framebuffer.
54 * @src_height: height of a partial image to be displayed from framebuffer.
Inki Dae19c8b832011-10-14 13:29:46 +090055 * @crtc_x: offset x on hardware screen.
56 * @crtc_y: offset y on hardware screen.
57 * @crtc_width: window width to be displayed (hardware screen).
58 * @crtc_height: window height to be displayed (hardware screen).
59 * @mode_width: width of screen mode.
60 * @mode_height: height of screen mode.
61 * @refresh: refresh rate.
62 * @scan_flag: interlace or progressive way.
63 * (it could be DRM_MODE_FLAG_*)
Inki Dae1c248b72011-10-04 19:19:01 +090064 * @bpp: pixel size.(in bit)
Seung-Woo Kim229d3532011-12-15 14:36:22 +090065 * @pixel_format: fourcc pixel format of this overlay
66 * @dma_addr: array of bus(accessed by dma) address to the memory region
67 * allocated for a overlay.
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090068 * @zpos: order of overlay layer(z position).
Inki Dae1c248b72011-10-04 19:19:01 +090069 * @index_color: if using color key feature then this value would be used
70 * as index color.
Gustavo Padovan4a5827fb2014-11-13 17:25:53 +090071 * @default_win: a window to be enabled.
72 * @color_key: color key on or off.
Inki Dae1c248b72011-10-04 19:19:01 +090073 * @local_path: in case of lcd type, local path mode on or off.
74 * @transparency: transparency on or off.
75 * @activated: activated or not.
76 *
77 * this structure is common to exynos SoC and its contents would be copied
78 * to hardware specific overlay info.
79 */
80struct exynos_drm_overlay {
Inki Dae19c8b832011-10-14 13:29:46 +090081 unsigned int fb_x;
82 unsigned int fb_y;
83 unsigned int fb_width;
84 unsigned int fb_height;
Seung-Woo Kim0d8071ee2012-04-24 18:43:10 +090085 unsigned int src_width;
86 unsigned int src_height;
Inki Dae19c8b832011-10-14 13:29:46 +090087 unsigned int crtc_x;
88 unsigned int crtc_y;
89 unsigned int crtc_width;
90 unsigned int crtc_height;
91 unsigned int mode_width;
92 unsigned int mode_height;
93 unsigned int refresh;
94 unsigned int scan_flag;
Inki Dae1c248b72011-10-04 19:19:01 +090095 unsigned int bpp;
Inki Dae19c8b832011-10-14 13:29:46 +090096 unsigned int pitch;
Seung-Woo Kim229d3532011-12-15 14:36:22 +090097 uint32_t pixel_format;
98 dma_addr_t dma_addr[MAX_FB_BUFFER];
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090099 int zpos;
Inki Dae1c248b72011-10-04 19:19:01 +0900100 unsigned int index_color;
Gustavo Padovan4a5827fb2014-11-13 17:25:53 +0900101
102 bool default_win:1;
103 bool color_key:1;
104 bool local_path:1;
105 bool transparency:1;
106 bool activated:1;
Inki Dae1c248b72011-10-04 19:19:01 +0900107};
108
109/*
110 * Exynos DRM Display Structure.
111 * - this structure is common to analog tv, digital tv and lcd panel.
112 *
Gustavo Padovan60cb8582014-10-31 14:17:42 +0000113 * @create_connector: initialize and register a new connector
Sean Paul080be03d2014-02-19 21:02:55 +0900114 * @remove: cleans up the display for removal
Sean Paul080be03d2014-02-19 21:02:55 +0900115 * @mode_fixup: fix mode data comparing to hw specific display mode.
116 * @mode_set: convert drm_display_mode to hw specific display mode and
117 * would be called by encoder->mode_set().
Rahul Sharma16844fb2013-06-10 14:50:00 +0530118 * @check_mode: check if mode is valid or not.
Sean Paul54c40de2014-01-30 16:19:09 -0500119 * @dpms: display device on or off.
Sean Paul080be03d2014-02-19 21:02:55 +0900120 * @commit: apply changes to hw
Inki Dae1c248b72011-10-04 19:19:01 +0900121 */
Sean Paul080be03d2014-02-19 21:02:55 +0900122struct exynos_drm_display;
Inki Dae74ccc532011-10-19 17:23:07 +0900123struct exynos_drm_display_ops {
Sean Paulc37f42c2014-02-24 19:15:38 +0900124 int (*create_connector)(struct exynos_drm_display *display,
125 struct drm_encoder *encoder);
Sean Paul080be03d2014-02-19 21:02:55 +0900126 void (*remove)(struct exynos_drm_display *display);
Sean Paul080be03d2014-02-19 21:02:55 +0900127 void (*mode_fixup)(struct exynos_drm_display *display,
128 struct drm_connector *connector,
129 const struct drm_display_mode *mode,
130 struct drm_display_mode *adjusted_mode);
131 void (*mode_set)(struct exynos_drm_display *display,
132 struct drm_display_mode *mode);
133 int (*check_mode)(struct exynos_drm_display *display,
134 struct drm_display_mode *mode);
135 void (*dpms)(struct exynos_drm_display *display, int mode);
136 void (*commit)(struct exynos_drm_display *display);
137};
138
139/*
140 * Exynos drm display structure, maps 1:1 with an encoder/connector
141 *
142 * @list: the list entry for this manager
143 * @type: one of EXYNOS_DISPLAY_TYPE_LCD and HDMI.
144 * @encoder: encoder object this display maps to
145 * @connector: connector object this display maps to
146 * @ops: pointer to callbacks for exynos drm specific functionality
147 * @ctx: A pointer to the display's implementation specific context
148 */
149struct exynos_drm_display {
150 struct list_head list;
Inki Dae1c248b72011-10-04 19:19:01 +0900151 enum exynos_drm_output_type type;
Sean Paul080be03d2014-02-19 21:02:55 +0900152 struct drm_encoder *encoder;
153 struct drm_connector *connector;
154 struct exynos_drm_display_ops *ops;
155 void *ctx;
Inki Dae1c248b72011-10-04 19:19:01 +0900156};
157
158/*
159 * Exynos drm manager ops
160 *
Inki Daeec05da92011-12-06 11:06:54 +0900161 * @dpms: control device power.
Sean Paul4b405262014-01-30 16:19:19 -0500162 * @mode_fixup: fix mode data before applying it
Sean Paulcd706aa2014-01-30 16:19:18 -0500163 * @mode_set: set the given mode to the manager
Inki Dae1c248b72011-10-04 19:19:01 +0900164 * @commit: set current hw specific display mode to hw.
165 * @enable_vblank: specific driver callback for enabling vblank interrupt.
166 * @disable_vblank: specific driver callback for disabling vblank interrupt.
Prathyush Kf74085a2012-12-06 20:16:00 +0530167 * @wait_for_vblank: wait for vblank interrupt to make sure that
168 * hardware overlay is updated.
Sean Paul1c6244c2014-01-30 16:19:02 -0500169 * @win_mode_set: copy drm overlay info to hw specific overlay info.
170 * @win_commit: apply hardware specific overlay data to registers.
171 * @win_enable: enable hardware specific overlay.
172 * @win_disable: disable hardware specific overlay.
YoungJun Cho5595d4d2014-07-17 18:01:19 +0900173 * @te_handler: trigger to transfer video image at the tearing effect
174 * synchronization signal if there is a page flip request.
Inki Dae1c248b72011-10-04 19:19:01 +0900175 */
Sean Paulbb7704d2014-01-30 16:19:06 -0500176struct exynos_drm_manager;
Inki Dae1c248b72011-10-04 19:19:01 +0900177struct exynos_drm_manager_ops {
Sean Paulbb7704d2014-01-30 16:19:06 -0500178 void (*dpms)(struct exynos_drm_manager *mgr, int mode);
Sean Paul4b405262014-01-30 16:19:19 -0500179 bool (*mode_fixup)(struct exynos_drm_manager *mgr,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200180 const struct drm_display_mode *mode,
Inki Dae1de425b2012-03-16 18:47:04 +0900181 struct drm_display_mode *adjusted_mode);
Sean Paulcd706aa2014-01-30 16:19:18 -0500182 void (*mode_set)(struct exynos_drm_manager *mgr,
183 const struct drm_display_mode *mode);
Sean Paulbb7704d2014-01-30 16:19:06 -0500184 void (*commit)(struct exynos_drm_manager *mgr);
185 int (*enable_vblank)(struct exynos_drm_manager *mgr);
186 void (*disable_vblank)(struct exynos_drm_manager *mgr);
187 void (*wait_for_vblank)(struct exynos_drm_manager *mgr);
188 void (*win_mode_set)(struct exynos_drm_manager *mgr,
Sean Paul1c6244c2014-01-30 16:19:02 -0500189 struct exynos_drm_overlay *overlay);
Sean Paulbb7704d2014-01-30 16:19:06 -0500190 void (*win_commit)(struct exynos_drm_manager *mgr, int zpos);
191 void (*win_enable)(struct exynos_drm_manager *mgr, int zpos);
192 void (*win_disable)(struct exynos_drm_manager *mgr, int zpos);
YoungJun Cho5595d4d2014-07-17 18:01:19 +0900193 void (*te_handler)(struct exynos_drm_manager *mgr);
Inki Dae1c248b72011-10-04 19:19:01 +0900194};
195
196/*
Sean Paul080be03d2014-02-19 21:02:55 +0900197 * Exynos drm common manager structure, maps 1:1 with a crtc
Inki Dae1c248b72011-10-04 19:19:01 +0900198 *
Sean Paul080be03d2014-02-19 21:02:55 +0900199 * @list: the list entry for this manager
200 * @type: one of EXYNOS_DISPLAY_TYPE_LCD and HDMI.
201 * @drm_dev: pointer to the drm device
Inki Daef37cd5e2014-05-09 14:25:20 +0900202 * @crtc: crtc object.
Sean Paul080be03d2014-02-19 21:02:55 +0900203 * @pipe: the pipe number for this crtc/manager
204 * @ops: pointer to callbacks for exynos drm specific functionality
Sean Paulbb7704d2014-01-30 16:19:06 -0500205 * @ctx: A pointer to the manager's implementation specific context
Inki Dae1c248b72011-10-04 19:19:01 +0900206 */
207struct exynos_drm_manager {
Sean Paul080be03d2014-02-19 21:02:55 +0900208 struct list_head list;
209 enum exynos_drm_output_type type;
210 struct drm_device *drm_dev;
Inki Daef37cd5e2014-05-09 14:25:20 +0900211 struct drm_crtc *crtc;
Inki Dae1c248b72011-10-04 19:19:01 +0900212 int pipe;
213 struct exynos_drm_manager_ops *ops;
Inki Dae1c248b72011-10-04 19:19:01 +0900214};
215
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900216struct exynos_drm_g2d_private {
217 struct device *dev;
218 struct list_head inuse_cmdlist;
219 struct list_head event_list;
Inki Dae2a3098f2012-11-04 05:48:52 -0800220 struct list_head userptr_list;
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900221};
222
223struct drm_exynos_file_private {
224 struct exynos_drm_g2d_private *g2d_priv;
Andrzej Hajda5c76c5b2014-07-03 15:10:28 +0200225 struct device *ipp_dev;
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900226};
227
Inki Dae1c248b72011-10-04 19:19:01 +0900228/*
229 * Exynos drm private structure.
Inki Dae0519f9a2012-10-20 07:53:42 -0700230 *
231 * @da_start: start address to device address space.
232 * with iommu, device address space starts from this address
233 * otherwise default one.
234 * @da_space_size: size of device address space.
235 * if 0 then default value is used for it.
Inki Daef37cd5e2014-05-09 14:25:20 +0900236 * @pipe: the pipe number for this crtc/manager.
Inki Dae1c248b72011-10-04 19:19:01 +0900237 */
238struct exynos_drm_private {
239 struct drm_fb_helper *fb_helper;
240
Inki Daeccf4d882011-10-14 13:29:51 +0900241 /* list head for new event to be added. */
Inki Dae1c248b72011-10-04 19:19:01 +0900242 struct list_head pageflip_event_list;
Inki Dae1c248b72011-10-04 19:19:01 +0900243
244 /*
245 * created crtc object would be contained at this array and
246 * this array is used to be aware of which crtc did it request vblank.
247 */
248 struct drm_crtc *crtc[MAX_CRTC];
Joonyoung Shim00ae67c2012-06-27 14:27:06 +0900249 struct drm_property *plane_zpos_property;
Joonyoung Shim3b8d1cf2012-06-27 14:27:11 +0900250 struct drm_property *crtc_mode_property;
Inki Dae0519f9a2012-10-20 07:53:42 -0700251
252 unsigned long da_start;
253 unsigned long da_space_size;
Inki Daef37cd5e2014-05-09 14:25:20 +0900254
255 unsigned int pipe;
Inki Dae1c248b72011-10-04 19:19:01 +0900256};
257
258/*
259 * Exynos drm sub driver structure.
260 *
261 * @list: sub driver has its own list object to register to exynos drm driver.
Joonyoung Shim677e84c2012-04-05 20:49:27 +0900262 * @dev: pointer to device object for subdrv device driver.
Inki Dae1c248b72011-10-04 19:19:01 +0900263 * @drm_dev: pointer to drm_device and this pointer would be set
264 * when sub driver calls exynos_drm_subdrv_register().
265 * @probe: this callback would be called by exynos drm driver after
Inki Daef37cd5e2014-05-09 14:25:20 +0900266 * subdrv is registered to it.
Inki Dae1c248b72011-10-04 19:19:01 +0900267 * @remove: this callback is used to release resources created
Inki Daef37cd5e2014-05-09 14:25:20 +0900268 * by probe callback.
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900269 * @open: this would be called with drm device file open.
270 * @close: this would be called with drm device file close.
Inki Dae1c248b72011-10-04 19:19:01 +0900271 */
272struct exynos_drm_subdrv {
273 struct list_head list;
Joonyoung Shim677e84c2012-04-05 20:49:27 +0900274 struct device *dev;
Inki Dae1c248b72011-10-04 19:19:01 +0900275 struct drm_device *drm_dev;
276
Inki Dae41c24342011-10-14 13:29:48 +0900277 int (*probe)(struct drm_device *drm_dev, struct device *dev);
Inki Dae29cb6022012-09-05 14:12:06 +0900278 void (*remove)(struct drm_device *drm_dev, struct device *dev);
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900279 int (*open)(struct drm_device *drm_dev, struct device *dev,
280 struct drm_file *file);
281 void (*close)(struct drm_device *drm_dev, struct device *dev,
282 struct drm_file *file);
Inki Dae1c248b72011-10-04 19:19:01 +0900283};
284
Inki Daef37cd5e2014-05-09 14:25:20 +0900285 /* This function would be called by non kms drivers such as g2d and ipp. */
Inki Dae1c248b72011-10-04 19:19:01 +0900286int exynos_drm_subdrv_register(struct exynos_drm_subdrv *drm_subdrv);
287
Joonyoung Shim132a5b92012-03-16 18:47:08 +0900288/* this function removes subdrv list from exynos drm driver */
Inki Dae1c248b72011-10-04 19:19:01 +0900289int exynos_drm_subdrv_unregister(struct exynos_drm_subdrv *drm_subdrv);
290
Inki Daef37cd5e2014-05-09 14:25:20 +0900291int exynos_drm_device_subdrv_probe(struct drm_device *dev);
292int exynos_drm_device_subdrv_remove(struct drm_device *dev);
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900293int exynos_drm_subdrv_open(struct drm_device *dev, struct drm_file *file);
294void exynos_drm_subdrv_close(struct drm_device *dev, struct drm_file *file);
295
Andrzej Hajda72390672014-11-13 16:37:57 +0900296#ifdef CONFIG_DRM_EXYNOS_IPP
Seung-Woo Kim43f41902013-04-23 14:02:53 +0900297int exynos_platform_device_ipp_register(void);
Seung-Woo Kim43f41902013-04-23 14:02:53 +0900298void exynos_platform_device_ipp_unregister(void);
Andrzej Hajda72390672014-11-13 16:37:57 +0900299#else
300static inline int exynos_platform_device_ipp_register(void) { return 0; }
301static inline void exynos_platform_device_ipp_unregister(void) {}
302#endif
303
Seung-Woo Kim43f41902013-04-23 14:02:53 +0900304
Andrzej Hajda14b68732014-03-17 13:03:56 +0100305#ifdef CONFIG_DRM_EXYNOS_DPI
Andrzej Hajda000cc922014-04-03 16:26:00 +0200306struct exynos_drm_display * exynos_dpi_probe(struct device *dev);
Andrzej Hajda4cfde1f2014-11-17 09:54:26 +0100307int exynos_dpi_remove(struct exynos_drm_display *display);
Andrzej Hajda14b68732014-03-17 13:03:56 +0100308#else
Andrzej Hajda000cc922014-04-03 16:26:00 +0200309static inline struct exynos_drm_display *
Dan Carpenterdcdffeda2014-06-11 09:36:23 +0300310exynos_dpi_probe(struct device *dev) { return NULL; }
Andrzej Hajda000cc922014-04-03 16:26:00 +0200311static inline int exynos_dpi_remove(struct device *dev) { return 0; }
Andrzej Hajda14b68732014-03-17 13:03:56 +0100312#endif
313
Andrzej Hajda72390672014-11-13 16:37:57 +0900314#ifdef CONFIG_DRM_EXYNOS_VIDI
Inki Daef37cd5e2014-05-09 14:25:20 +0900315int exynos_drm_probe_vidi(void);
Inki Daef37cd5e2014-05-09 14:25:20 +0900316void exynos_drm_remove_vidi(void);
Andrzej Hajda72390672014-11-13 16:37:57 +0900317#else
318static inline int exynos_drm_probe_vidi(void) { return 0; }
319static inline void exynos_drm_remove_vidi(void) {}
320#endif
Inki Daef37cd5e2014-05-09 14:25:20 +0900321
322/* This function creates a encoder and a connector, and initializes them. */
323int exynos_drm_create_enc_conn(struct drm_device *dev,
324 struct exynos_drm_display *display);
325
Inki Daef37cd5e2014-05-09 14:25:20 +0900326int exynos_drm_component_add(struct device *dev,
Inki Daedf5225b2014-05-29 18:28:02 +0900327 enum exynos_drm_device_type dev_type,
328 enum exynos_drm_output_type out_type);
Inki Daef37cd5e2014-05-09 14:25:20 +0900329
330void exynos_drm_component_del(struct device *dev,
Inki Daedf5225b2014-05-29 18:28:02 +0900331 enum exynos_drm_device_type dev_type);
Inki Daef37cd5e2014-05-09 14:25:20 +0900332
333extern struct platform_driver fimd_driver;
Sean Paul1417f102014-01-30 16:19:23 -0500334extern struct platform_driver dp_driver;
Andrzej Hajda7eb8f062014-04-04 01:19:56 +0900335extern struct platform_driver dsi_driver;
Joonyoung Shim132a5b92012-03-16 18:47:08 +0900336extern struct platform_driver mixer_driver;
Inki Daef37cd5e2014-05-09 14:25:20 +0900337extern struct platform_driver hdmi_driver;
Joonyoung Shim132a5b92012-03-16 18:47:08 +0900338extern struct platform_driver exynos_drm_common_hdmi_driver;
Inki Daeb73d1232012-03-21 10:55:26 +0900339extern struct platform_driver vidi_driver;
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900340extern struct platform_driver g2d_driver;
Eunchul Kim16102ed2012-12-14 17:58:55 +0900341extern struct platform_driver fimc_driver;
Eunchul Kimbea8a422012-12-14 17:58:56 +0900342extern struct platform_driver rotator_driver;
Eunchul Kimf2646382012-12-14 17:58:57 +0900343extern struct platform_driver gsc_driver;
Eunchul Kimcb471f142012-12-14 18:10:31 +0900344extern struct platform_driver ipp_driver;
Inki Dae1c248b72011-10-04 19:19:01 +0900345#endif