blob: 27e84ec21694d587f26a78d258c216d52bd450ea [file] [log] [blame]
Inki Daeb73d1232012-03-21 10:55:26 +09001/* exynos_drm_vidi.c
2 *
3 * Copyright (C) 2012 Samsung Electronics Co.Ltd
4 * Authors:
5 * Inki Dae <inki.dae@samsung.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 */
David Howells760285e2012-10-02 18:01:07 +010013#include <drm/drmP.h>
Inki Daeb73d1232012-03-21 10:55:26 +090014
15#include <linux/kernel.h>
Inki Daeb73d1232012-03-21 10:55:26 +090016#include <linux/platform_device.h>
Inki Dae1d50aa92014-11-24 14:55:41 +090017#include <linux/component.h>
Inki Daeb73d1232012-03-21 10:55:26 +090018
19#include <drm/exynos_drm.h>
20
David Howells760285e2012-10-02 18:01:07 +010021#include <drm/drm_edid.h>
22#include <drm/drm_crtc_helper.h>
Inki Daeb73d1232012-03-21 10:55:26 +090023
24#include "exynos_drm_drv.h"
25#include "exynos_drm_crtc.h"
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +090026#include "exynos_drm_plane.h"
Inki Daeb73d1232012-03-21 10:55:26 +090027#include "exynos_drm_encoder.h"
Mark Browne30655d2013-08-13 00:46:40 +010028#include "exynos_drm_vidi.h"
Inki Daeb73d1232012-03-21 10:55:26 +090029
30/* vidi has totally three virtual windows. */
31#define WINDOWS_NR 3
32
Sean Paulce6cb552014-01-30 16:38:07 -050033#define ctx_from_connector(c) container_of(c, struct vidi_context, \
34 connector)
Inki Daeb73d1232012-03-21 10:55:26 +090035
Inki Daeb73d1232012-03-21 10:55:26 +090036struct vidi_context {
Andrzej Hajda73404262014-11-17 09:54:22 +010037 struct exynos_drm_display display;
Inki Dae1d50aa92014-11-24 14:55:41 +090038 struct platform_device *pdev;
Sean Paul080be03d2014-02-19 21:02:55 +090039 struct drm_device *drm_dev;
Gustavo Padovan93bca242015-01-18 18:16:23 +090040 struct exynos_drm_crtc *crtc;
Sean Paulce6cb552014-01-30 16:38:07 -050041 struct drm_encoder *encoder;
42 struct drm_connector connector;
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +090043 struct exynos_drm_plane planes[WINDOWS_NR];
Inki Daeb73d1232012-03-21 10:55:26 +090044 struct edid *raw_edid;
45 unsigned int clkdiv;
46 unsigned int default_win;
47 unsigned long irq_flags;
48 unsigned int connected;
49 bool vblank_on;
50 bool suspended;
Inki Dae291257c2012-09-19 11:02:43 +090051 bool direct_vblank;
Inki Daeb73d1232012-03-21 10:55:26 +090052 struct work_struct work;
53 struct mutex lock;
Sean Paul080be03d2014-02-19 21:02:55 +090054 int pipe;
Inki Daeb73d1232012-03-21 10:55:26 +090055};
56
Andrzej Hajda2f26bd72014-11-17 09:54:23 +010057static inline struct vidi_context *display_to_vidi(struct exynos_drm_display *d)
58{
59 return container_of(d, struct vidi_context, display);
60}
61
Inki Daeb73d1232012-03-21 10:55:26 +090062static const char fake_edid_info[] = {
63 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x4c, 0x2d, 0x05, 0x05,
64 0x00, 0x00, 0x00, 0x00, 0x30, 0x12, 0x01, 0x03, 0x80, 0x10, 0x09, 0x78,
65 0x0a, 0xee, 0x91, 0xa3, 0x54, 0x4c, 0x99, 0x26, 0x0f, 0x50, 0x54, 0xbd,
66 0xee, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
67 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x66, 0x21, 0x50, 0xb0, 0x51, 0x00,
68 0x1b, 0x30, 0x40, 0x70, 0x36, 0x00, 0xa0, 0x5a, 0x00, 0x00, 0x00, 0x1e,
69 0x01, 0x1d, 0x00, 0x72, 0x51, 0xd0, 0x1e, 0x20, 0x6e, 0x28, 0x55, 0x00,
70 0xa0, 0x5a, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x18,
71 0x4b, 0x1a, 0x44, 0x17, 0x00, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
72 0x00, 0x00, 0x00, 0xfc, 0x00, 0x53, 0x41, 0x4d, 0x53, 0x55, 0x4e, 0x47,
73 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x01, 0xbc, 0x02, 0x03, 0x1e, 0xf1,
74 0x46, 0x84, 0x05, 0x03, 0x10, 0x20, 0x22, 0x23, 0x09, 0x07, 0x07, 0x83,
75 0x01, 0x00, 0x00, 0xe2, 0x00, 0x0f, 0x67, 0x03, 0x0c, 0x00, 0x10, 0x00,
76 0xb8, 0x2d, 0x01, 0x1d, 0x80, 0x18, 0x71, 0x1c, 0x16, 0x20, 0x58, 0x2c,
77 0x25, 0x00, 0xa0, 0x5a, 0x00, 0x00, 0x00, 0x9e, 0x8c, 0x0a, 0xd0, 0x8a,
78 0x20, 0xe0, 0x2d, 0x10, 0x10, 0x3e, 0x96, 0x00, 0xa0, 0x5a, 0x00, 0x00,
79 0x00, 0x18, 0x02, 0x3a, 0x80, 0x18, 0x71, 0x38, 0x2d, 0x40, 0x58, 0x2c,
80 0x45, 0x00, 0xa0, 0x5a, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00,
81 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
82 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
83 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
84 0x00, 0x00, 0x00, 0x06
85};
86
Gustavo Padovan93bca242015-01-18 18:16:23 +090087static int vidi_enable_vblank(struct exynos_drm_crtc *crtc)
Inki Daeb73d1232012-03-21 10:55:26 +090088{
Gustavo Padovan93bca242015-01-18 18:16:23 +090089 struct vidi_context *ctx = crtc->ctx;
Inki Daeb73d1232012-03-21 10:55:26 +090090
Inki Daeb73d1232012-03-21 10:55:26 +090091 if (ctx->suspended)
92 return -EPERM;
93
94 if (!test_and_set_bit(0, &ctx->irq_flags))
95 ctx->vblank_on = true;
96
Inki Dae291257c2012-09-19 11:02:43 +090097 ctx->direct_vblank = true;
98
99 /*
100 * in case of page flip request, vidi_finish_pageflip function
101 * will not be called because direct_vblank is true and then
Gustavo Padovan93bca242015-01-18 18:16:23 +0900102 * that function will be called by crtc_ops->win_commit callback
Inki Dae291257c2012-09-19 11:02:43 +0900103 */
104 schedule_work(&ctx->work);
105
Inki Daeb73d1232012-03-21 10:55:26 +0900106 return 0;
107}
108
Gustavo Padovan93bca242015-01-18 18:16:23 +0900109static void vidi_disable_vblank(struct exynos_drm_crtc *crtc)
Inki Daeb73d1232012-03-21 10:55:26 +0900110{
Gustavo Padovan93bca242015-01-18 18:16:23 +0900111 struct vidi_context *ctx = crtc->ctx;
Inki Daeb73d1232012-03-21 10:55:26 +0900112
Inki Daeb73d1232012-03-21 10:55:26 +0900113 if (ctx->suspended)
114 return;
115
116 if (test_and_clear_bit(0, &ctx->irq_flags))
117 ctx->vblank_on = false;
118}
119
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900120static void vidi_win_commit(struct exynos_drm_crtc *crtc, unsigned int win)
Inki Daeb73d1232012-03-21 10:55:26 +0900121{
Gustavo Padovan93bca242015-01-18 18:16:23 +0900122 struct vidi_context *ctx = crtc->ctx;
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900123 struct exynos_drm_plane *plane;
Inki Daeb73d1232012-03-21 10:55:26 +0900124
Inki Daeb73d1232012-03-21 10:55:26 +0900125 if (ctx->suspended)
126 return;
127
Inki Daea7f98d62013-05-28 16:01:21 +0900128 if (win < 0 || win >= WINDOWS_NR)
Inki Daeb73d1232012-03-21 10:55:26 +0900129 return;
130
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900131 plane = &ctx->planes[win];
Inki Daeb73d1232012-03-21 10:55:26 +0900132
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900133 plane->enabled = true;
Inki Daeb73d1232012-03-21 10:55:26 +0900134
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900135 DRM_DEBUG_KMS("dma_addr = %pad\n", plane->dma_addr);
Inki Daeb73d1232012-03-21 10:55:26 +0900136
137 if (ctx->vblank_on)
138 schedule_work(&ctx->work);
139}
140
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900141static void vidi_win_disable(struct exynos_drm_crtc *crtc, unsigned int win)
Inki Daeb73d1232012-03-21 10:55:26 +0900142{
Gustavo Padovan93bca242015-01-18 18:16:23 +0900143 struct vidi_context *ctx = crtc->ctx;
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900144 struct exynos_drm_plane *plane;
Inki Daeb73d1232012-03-21 10:55:26 +0900145
Inki Daea7f98d62013-05-28 16:01:21 +0900146 if (win < 0 || win >= WINDOWS_NR)
Inki Daeb73d1232012-03-21 10:55:26 +0900147 return;
148
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900149 plane = &ctx->planes[win];
150 plane->enabled = false;
Inki Daeb73d1232012-03-21 10:55:26 +0900151
152 /* TODO. */
153}
154
Joonyoung Shim92dc7a02015-01-30 16:43:02 +0900155static int vidi_power_on(struct vidi_context *ctx, bool enable)
Sean Paulaf65c802014-01-30 16:19:27 -0500156{
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900157 struct exynos_drm_plane *plane;
158 int i;
159
Sean Paulaf65c802014-01-30 16:19:27 -0500160 DRM_DEBUG_KMS("%s\n", __FILE__);
161
162 if (enable != false && enable != true)
163 return -EINVAL;
164
165 if (enable) {
166 ctx->suspended = false;
167
168 /* if vblank was enabled status, enable it again. */
169 if (test_and_clear_bit(0, &ctx->irq_flags))
Joonyoung Shim92dc7a02015-01-30 16:43:02 +0900170 vidi_enable_vblank(ctx->crtc);
Sean Paulaf65c802014-01-30 16:19:27 -0500171
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900172 for (i = 0; i < WINDOWS_NR; i++) {
173 plane = &ctx->planes[i];
174 if (plane->enabled)
175 vidi_win_commit(ctx->crtc, i);
176 }
Sean Paulaf65c802014-01-30 16:19:27 -0500177 } else {
178 ctx->suspended = true;
179 }
180
181 return 0;
182}
183
Gustavo Padovan93bca242015-01-18 18:16:23 +0900184static void vidi_dpms(struct exynos_drm_crtc *crtc, int mode)
Sean Paulaf65c802014-01-30 16:19:27 -0500185{
Gustavo Padovan93bca242015-01-18 18:16:23 +0900186 struct vidi_context *ctx = crtc->ctx;
Sean Paulaf65c802014-01-30 16:19:27 -0500187
188 DRM_DEBUG_KMS("%d\n", mode);
189
190 mutex_lock(&ctx->lock);
191
192 switch (mode) {
193 case DRM_MODE_DPMS_ON:
Joonyoung Shim92dc7a02015-01-30 16:43:02 +0900194 vidi_power_on(ctx, true);
Sean Paulaf65c802014-01-30 16:19:27 -0500195 break;
196 case DRM_MODE_DPMS_STANDBY:
197 case DRM_MODE_DPMS_SUSPEND:
198 case DRM_MODE_DPMS_OFF:
Joonyoung Shim92dc7a02015-01-30 16:43:02 +0900199 vidi_power_on(ctx, false);
Sean Paulaf65c802014-01-30 16:19:27 -0500200 break;
201 default:
202 DRM_DEBUG_KMS("unspecified mode %d\n", mode);
203 break;
204 }
205
206 mutex_unlock(&ctx->lock);
207}
208
Gustavo Padovan93bca242015-01-18 18:16:23 +0900209static int vidi_ctx_initialize(struct vidi_context *ctx,
Inki Daef37cd5e2014-05-09 14:25:20 +0900210 struct drm_device *drm_dev)
Sean Paul080be03d2014-02-19 21:02:55 +0900211{
Inki Daef37cd5e2014-05-09 14:25:20 +0900212 struct exynos_drm_private *priv = drm_dev->dev_private;
Sean Paul080be03d2014-02-19 21:02:55 +0900213
Gustavo Padovaneb88e422014-11-26 16:43:27 -0200214 ctx->drm_dev = drm_dev;
Gustavo Padovan8a326ed2014-11-04 18:44:47 -0200215 ctx->pipe = priv->pipe++;
Sean Paul080be03d2014-02-19 21:02:55 +0900216
Sean Paul080be03d2014-02-19 21:02:55 +0900217 return 0;
218}
219
Gustavo Padovan93bca242015-01-18 18:16:23 +0900220static struct exynos_drm_crtc_ops vidi_crtc_ops = {
Sean Paul1c6244c2014-01-30 16:19:02 -0500221 .dpms = vidi_dpms,
Sean Paul1c6244c2014-01-30 16:19:02 -0500222 .enable_vblank = vidi_enable_vblank,
223 .disable_vblank = vidi_disable_vblank,
Sean Paul1c6244c2014-01-30 16:19:02 -0500224 .win_commit = vidi_win_commit,
225 .win_disable = vidi_win_disable,
Inki Daeb73d1232012-03-21 10:55:26 +0900226};
227
Inki Daeb73d1232012-03-21 10:55:26 +0900228static void vidi_fake_vblank_handler(struct work_struct *work)
229{
230 struct vidi_context *ctx = container_of(work, struct vidi_context,
231 work);
Inki Daeb73d1232012-03-21 10:55:26 +0900232
Sean Paul080be03d2014-02-19 21:02:55 +0900233 if (ctx->pipe < 0)
Inki Daeb73d1232012-03-21 10:55:26 +0900234 return;
235
236 /* refresh rate is about 50Hz. */
237 usleep_range(16000, 20000);
238
Inki Dae291257c2012-09-19 11:02:43 +0900239 mutex_lock(&ctx->lock);
240
241 if (ctx->direct_vblank) {
Sean Paul080be03d2014-02-19 21:02:55 +0900242 drm_handle_vblank(ctx->drm_dev, ctx->pipe);
Inki Dae291257c2012-09-19 11:02:43 +0900243 ctx->direct_vblank = false;
244 mutex_unlock(&ctx->lock);
245 return;
246 }
247
248 mutex_unlock(&ctx->lock);
249
Sean Paul080be03d2014-02-19 21:02:55 +0900250 exynos_drm_crtc_finish_pageflip(ctx->drm_dev, ctx->pipe);
Inki Daeb73d1232012-03-21 10:55:26 +0900251}
252
Inki Daeb73d1232012-03-21 10:55:26 +0900253static int vidi_show_connection(struct device *dev,
254 struct device_attribute *attr, char *buf)
255{
Andrzej Hajdaf01833c2014-11-17 09:54:16 +0100256 struct vidi_context *ctx = dev_get_drvdata(dev);
Inki Daeb73d1232012-03-21 10:55:26 +0900257 int rc;
Inki Daeb73d1232012-03-21 10:55:26 +0900258
259 mutex_lock(&ctx->lock);
260
261 rc = sprintf(buf, "%d\n", ctx->connected);
262
263 mutex_unlock(&ctx->lock);
264
265 return rc;
266}
267
268static int vidi_store_connection(struct device *dev,
269 struct device_attribute *attr,
270 const char *buf, size_t len)
271{
Andrzej Hajdaf01833c2014-11-17 09:54:16 +0100272 struct vidi_context *ctx = dev_get_drvdata(dev);
Inki Daeb73d1232012-03-21 10:55:26 +0900273 int ret;
274
Inki Daeb73d1232012-03-21 10:55:26 +0900275 ret = kstrtoint(buf, 0, &ctx->connected);
276 if (ret)
277 return ret;
278
279 if (ctx->connected > 1)
280 return -EINVAL;
281
Inki Daed07d39d2012-06-27 16:00:56 +0900282 /* use fake edid data for test. */
283 if (!ctx->raw_edid)
284 ctx->raw_edid = (struct edid *)fake_edid_info;
285
Inki Daed7b84782012-06-27 16:16:26 +0900286 /* if raw_edid isn't same as fake data then it can't be tested. */
287 if (ctx->raw_edid != (struct edid *)fake_edid_info) {
288 DRM_DEBUG_KMS("edid data is not fake data.\n");
289 return -EINVAL;
290 }
291
Inki Daeb73d1232012-03-21 10:55:26 +0900292 DRM_DEBUG_KMS("requested connection.\n");
293
Sean Paul080be03d2014-02-19 21:02:55 +0900294 drm_helper_hpd_irq_event(ctx->drm_dev);
Inki Daeb73d1232012-03-21 10:55:26 +0900295
296 return len;
297}
298
299static DEVICE_ATTR(connection, 0644, vidi_show_connection,
300 vidi_store_connection);
301
302int vidi_connection_ioctl(struct drm_device *drm_dev, void *data,
303 struct drm_file *file_priv)
304{
305 struct vidi_context *ctx = NULL;
306 struct drm_encoder *encoder;
Sean Paul080be03d2014-02-19 21:02:55 +0900307 struct exynos_drm_display *display;
Inki Daeb73d1232012-03-21 10:55:26 +0900308 struct drm_exynos_vidi_connection *vidi = data;
309
Inki Daeb73d1232012-03-21 10:55:26 +0900310 if (!vidi) {
311 DRM_DEBUG_KMS("user data for vidi is null.\n");
312 return -EINVAL;
313 }
314
Inki Daeb73d1232012-03-21 10:55:26 +0900315 if (vidi->connection > 1) {
316 DRM_DEBUG_KMS("connection should be 0 or 1.\n");
317 return -EINVAL;
318 }
319
320 list_for_each_entry(encoder, &drm_dev->mode_config.encoder_list,
321 head) {
Sean Paul080be03d2014-02-19 21:02:55 +0900322 display = exynos_drm_get_display(encoder);
Inki Daeb73d1232012-03-21 10:55:26 +0900323
Sean Paul080be03d2014-02-19 21:02:55 +0900324 if (display->type == EXYNOS_DISPLAY_TYPE_VIDI) {
Andrzej Hajda2f26bd72014-11-17 09:54:23 +0100325 ctx = display_to_vidi(display);
Inki Daeb73d1232012-03-21 10:55:26 +0900326 break;
327 }
328 }
329
330 if (!ctx) {
331 DRM_DEBUG_KMS("not found virtual device type encoder.\n");
332 return -EINVAL;
333 }
334
335 if (ctx->connected == vidi->connection) {
336 DRM_DEBUG_KMS("same connection request.\n");
337 return -EINVAL;
338 }
339
Inki Daed3b62db2012-06-27 16:36:12 +0900340 if (vidi->connection) {
Seung-Woo Kime7808df2013-01-10 19:35:06 +0900341 struct edid *raw_edid = (struct edid *)(uint32_t)vidi->edid;
342 if (!drm_edid_is_valid(raw_edid)) {
343 DRM_DEBUG_KMS("edid data is invalid.\n");
Inki Daed3b62db2012-06-27 16:36:12 +0900344 return -EINVAL;
345 }
Jani Nikula4ddc7732013-09-27 15:08:29 +0300346 ctx->raw_edid = drm_edid_duplicate(raw_edid);
Inki Daed3b62db2012-06-27 16:36:12 +0900347 if (!ctx->raw_edid) {
348 DRM_DEBUG_KMS("failed to allocate raw_edid.\n");
349 return -ENOMEM;
350 }
Inki Daed3b62db2012-06-27 16:36:12 +0900351 } else {
352 /*
353 * with connection = 0, free raw_edid
354 * only if raw edid data isn't same as fake data.
355 */
356 if (ctx->raw_edid && ctx->raw_edid !=
357 (struct edid *)fake_edid_info) {
358 kfree(ctx->raw_edid);
359 ctx->raw_edid = NULL;
360 }
361 }
Inki Daeb73d1232012-03-21 10:55:26 +0900362
363 ctx->connected = vidi->connection;
Sean Paul080be03d2014-02-19 21:02:55 +0900364 drm_helper_hpd_irq_event(ctx->drm_dev);
Inki Daeb73d1232012-03-21 10:55:26 +0900365
366 return 0;
367}
368
Sean Paulce6cb552014-01-30 16:38:07 -0500369static enum drm_connector_status vidi_detect(struct drm_connector *connector,
370 bool force)
371{
372 struct vidi_context *ctx = ctx_from_connector(connector);
373
374 /*
375 * connection request would come from user side
376 * to do hotplug through specific ioctl.
377 */
378 return ctx->connected ? connector_status_connected :
379 connector_status_disconnected;
380}
381
382static void vidi_connector_destroy(struct drm_connector *connector)
383{
384}
385
386static struct drm_connector_funcs vidi_connector_funcs = {
387 .dpms = drm_helper_connector_dpms,
388 .fill_modes = drm_helper_probe_single_connector_modes,
389 .detect = vidi_detect,
390 .destroy = vidi_connector_destroy,
391};
392
393static int vidi_get_modes(struct drm_connector *connector)
394{
395 struct vidi_context *ctx = ctx_from_connector(connector);
396 struct edid *edid;
397 int edid_len;
398
399 /*
400 * the edid data comes from user side and it would be set
401 * to ctx->raw_edid through specific ioctl.
402 */
403 if (!ctx->raw_edid) {
404 DRM_DEBUG_KMS("raw_edid is null.\n");
405 return -EFAULT;
406 }
407
408 edid_len = (1 + ctx->raw_edid->extensions) * EDID_LENGTH;
409 edid = kmemdup(ctx->raw_edid, edid_len, GFP_KERNEL);
410 if (!edid) {
411 DRM_DEBUG_KMS("failed to allocate edid\n");
412 return -ENOMEM;
413 }
414
415 drm_mode_connector_update_edid_property(connector, edid);
416
417 return drm_add_edid_modes(connector, edid);
418}
419
Sean Paulce6cb552014-01-30 16:38:07 -0500420static struct drm_encoder *vidi_best_encoder(struct drm_connector *connector)
421{
422 struct vidi_context *ctx = ctx_from_connector(connector);
423
424 return ctx->encoder;
425}
426
427static struct drm_connector_helper_funcs vidi_connector_helper_funcs = {
428 .get_modes = vidi_get_modes,
Sean Paulce6cb552014-01-30 16:38:07 -0500429 .best_encoder = vidi_best_encoder,
430};
431
432static int vidi_create_connector(struct exynos_drm_display *display,
433 struct drm_encoder *encoder)
434{
Andrzej Hajda2f26bd72014-11-17 09:54:23 +0100435 struct vidi_context *ctx = display_to_vidi(display);
Sean Paulce6cb552014-01-30 16:38:07 -0500436 struct drm_connector *connector = &ctx->connector;
437 int ret;
438
439 ctx->encoder = encoder;
440 connector->polled = DRM_CONNECTOR_POLL_HPD;
441
442 ret = drm_connector_init(ctx->drm_dev, connector,
443 &vidi_connector_funcs, DRM_MODE_CONNECTOR_VIRTUAL);
444 if (ret) {
445 DRM_ERROR("Failed to initialize connector with drm\n");
446 return ret;
447 }
448
449 drm_connector_helper_add(connector, &vidi_connector_helper_funcs);
Thomas Wood34ea3d32014-05-29 16:57:41 +0100450 drm_connector_register(connector);
Sean Paulce6cb552014-01-30 16:38:07 -0500451 drm_mode_connector_attach_encoder(connector, encoder);
452
453 return 0;
454}
455
456
457static struct exynos_drm_display_ops vidi_display_ops = {
458 .create_connector = vidi_create_connector,
459};
460
Inki Dae1d50aa92014-11-24 14:55:41 +0900461static int vidi_bind(struct device *dev, struct device *master, void *data)
Inki Daef37cd5e2014-05-09 14:25:20 +0900462{
Andrzej Hajdaf01833c2014-11-17 09:54:16 +0100463 struct vidi_context *ctx = dev_get_drvdata(dev);
Inki Dae1d50aa92014-11-24 14:55:41 +0900464 struct drm_device *drm_dev = data;
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900465 struct exynos_drm_plane *exynos_plane;
466 enum drm_plane_type type;
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900467 unsigned int zpos;
468 int ret;
Inki Daef37cd5e2014-05-09 14:25:20 +0900469
Joonyoung Shim0f04cf82015-01-30 16:43:01 +0900470 vidi_ctx_initialize(ctx, drm_dev);
471
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900472 for (zpos = 0; zpos < WINDOWS_NR; zpos++) {
473 type = (zpos == ctx->default_win) ? DRM_PLANE_TYPE_PRIMARY :
474 DRM_PLANE_TYPE_OVERLAY;
475 ret = exynos_plane_init(drm_dev, &ctx->planes[zpos],
Gustavo Padovan6e2a3b62015-04-03 21:05:52 +0900476 1 << ctx->pipe, type, zpos);
Gustavo Padovan7ee14cd2015-04-03 21:03:40 +0900477 if (ret)
478 return ret;
479 }
480
481 exynos_plane = &ctx->planes[ctx->default_win];
482 ctx->crtc = exynos_drm_crtc_create(drm_dev, &exynos_plane->base,
483 ctx->pipe, EXYNOS_DISPLAY_TYPE_VIDI,
Gustavo Padovan93bca242015-01-18 18:16:23 +0900484 &vidi_crtc_ops, ctx);
485 if (IS_ERR(ctx->crtc)) {
Inki Daef37cd5e2014-05-09 14:25:20 +0900486 DRM_ERROR("failed to create crtc.\n");
Gustavo Padovan93bca242015-01-18 18:16:23 +0900487 return PTR_ERR(ctx->crtc);
Inki Daef37cd5e2014-05-09 14:25:20 +0900488 }
489
Andrzej Hajda73404262014-11-17 09:54:22 +0100490 ret = exynos_drm_create_enc_conn(drm_dev, &ctx->display);
Inki Daef37cd5e2014-05-09 14:25:20 +0900491 if (ret) {
Gustavo Padovan93bca242015-01-18 18:16:23 +0900492 ctx->crtc->base.funcs->destroy(&ctx->crtc->base);
Inki Daef37cd5e2014-05-09 14:25:20 +0900493 return ret;
494 }
495
496 return 0;
497}
498
Inki Dae1d50aa92014-11-24 14:55:41 +0900499
500static void vidi_unbind(struct device *dev, struct device *master, void *data)
501{
502}
503
504static const struct component_ops vidi_component_ops = {
505 .bind = vidi_bind,
506 .unbind = vidi_unbind,
507};
508
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800509static int vidi_probe(struct platform_device *pdev)
Inki Daeb73d1232012-03-21 10:55:26 +0900510{
Inki Daeb73d1232012-03-21 10:55:26 +0900511 struct vidi_context *ctx;
Inki Daeb73d1232012-03-21 10:55:26 +0900512 int ret;
513
Inki Daef37cd5e2014-05-09 14:25:20 +0900514 ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_KERNEL);
Inki Daeb73d1232012-03-21 10:55:26 +0900515 if (!ctx)
516 return -ENOMEM;
517
Andrzej Hajda73404262014-11-17 09:54:22 +0100518 ctx->display.type = EXYNOS_DISPLAY_TYPE_VIDI;
519 ctx->display.ops = &vidi_display_ops;
Inki Daeb73d1232012-03-21 10:55:26 +0900520 ctx->default_win = 0;
Inki Dae1d50aa92014-11-24 14:55:41 +0900521 ctx->pdev = pdev;
522
523 ret = exynos_drm_component_add(&pdev->dev, EXYNOS_DEVICE_TYPE_CRTC,
Gustavo Padovan5d1741a2014-11-05 19:51:35 -0200524 EXYNOS_DISPLAY_TYPE_VIDI);
Inki Dae1d50aa92014-11-24 14:55:41 +0900525 if (ret)
526 return ret;
527
528 ret = exynos_drm_component_add(&pdev->dev, EXYNOS_DEVICE_TYPE_CONNECTOR,
529 ctx->display.type);
530 if (ret)
531 goto err_del_crtc_component;
Inki Daeb73d1232012-03-21 10:55:26 +0900532
533 INIT_WORK(&ctx->work, vidi_fake_vblank_handler);
534
Inki Daeb73d1232012-03-21 10:55:26 +0900535 mutex_init(&ctx->lock);
536
Andrzej Hajdaf01833c2014-11-17 09:54:16 +0100537 platform_set_drvdata(pdev, ctx);
Inki Daeb73d1232012-03-21 10:55:26 +0900538
Inki Daef37cd5e2014-05-09 14:25:20 +0900539 ret = device_create_file(&pdev->dev, &dev_attr_connection);
540 if (ret < 0) {
Inki Dae1d50aa92014-11-24 14:55:41 +0900541 DRM_ERROR("failed to create connection sysfs.\n");
542 goto err_del_conn_component;
Inki Daef37cd5e2014-05-09 14:25:20 +0900543 }
Inki Daeb73d1232012-03-21 10:55:26 +0900544
Inki Dae1d50aa92014-11-24 14:55:41 +0900545 ret = component_add(&pdev->dev, &vidi_component_ops);
546 if (ret)
547 goto err_remove_file;
548
549 return ret;
550
551err_remove_file:
552 device_remove_file(&pdev->dev, &dev_attr_connection);
553err_del_conn_component:
554 exynos_drm_component_del(&pdev->dev, EXYNOS_DEVICE_TYPE_CONNECTOR);
555err_del_crtc_component:
556 exynos_drm_component_del(&pdev->dev, EXYNOS_DEVICE_TYPE_CRTC);
557
558 return ret;
Inki Daeb73d1232012-03-21 10:55:26 +0900559}
560
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800561static int vidi_remove(struct platform_device *pdev)
Inki Daeb73d1232012-03-21 10:55:26 +0900562{
Andrzej Hajdaf01833c2014-11-17 09:54:16 +0100563 struct vidi_context *ctx = platform_get_drvdata(pdev);
Inki Daeb73d1232012-03-21 10:55:26 +0900564
Inki Daed3b62db2012-06-27 16:36:12 +0900565 if (ctx->raw_edid != (struct edid *)fake_edid_info) {
566 kfree(ctx->raw_edid);
567 ctx->raw_edid = NULL;
Inki Daef37cd5e2014-05-09 14:25:20 +0900568
569 return -EINVAL;
Inki Daed3b62db2012-06-27 16:36:12 +0900570 }
571
Inki Dae1d50aa92014-11-24 14:55:41 +0900572 component_del(&pdev->dev, &vidi_component_ops);
573 exynos_drm_component_del(&pdev->dev, EXYNOS_DEVICE_TYPE_CONNECTOR);
574 exynos_drm_component_del(&pdev->dev, EXYNOS_DEVICE_TYPE_CRTC);
575
Inki Daeb73d1232012-03-21 10:55:26 +0900576 return 0;
577}
578
Inki Daeb73d1232012-03-21 10:55:26 +0900579struct platform_driver vidi_driver = {
580 .probe = vidi_probe,
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800581 .remove = vidi_remove,
Inki Daeb73d1232012-03-21 10:55:26 +0900582 .driver = {
583 .name = "exynos-drm-vidi",
584 .owner = THIS_MODULE,
Inki Daeb73d1232012-03-21 10:55:26 +0900585 },
586};
Inki Daef37cd5e2014-05-09 14:25:20 +0900587
588int exynos_drm_probe_vidi(void)
589{
590 struct platform_device *pdev;
591 int ret;
592
593 pdev = platform_device_register_simple("exynos-drm-vidi", -1, NULL, 0);
594 if (IS_ERR(pdev))
595 return PTR_ERR(pdev);
596
597 ret = platform_driver_register(&vidi_driver);
598 if (ret) {
599 platform_device_unregister(pdev);
600 return ret;
601 }
602
603 return ret;
604}
605
Andrzej Hajdaf01833c2014-11-17 09:54:16 +0100606static int exynos_drm_remove_vidi_device(struct device *dev, void *data)
607{
608 platform_device_unregister(to_platform_device(dev));
609
610 return 0;
611}
612
Inki Daef37cd5e2014-05-09 14:25:20 +0900613void exynos_drm_remove_vidi(void)
614{
Andrzej Hajdaf01833c2014-11-17 09:54:16 +0100615 int ret = driver_for_each_device(&vidi_driver.driver, NULL, NULL,
616 exynos_drm_remove_vidi_device);
617 /* silence compiler warning */
618 (void)ret;
Inki Daef37cd5e2014-05-09 14:25:20 +0900619
620 platform_driver_unregister(&vidi_driver);
Inki Daef37cd5e2014-05-09 14:25:20 +0900621}