blob: eab12f084709afe869d4abb7964596b515dd39b4 [file] [log] [blame]
Inki Dae1c248b72011-10-04 19:19:01 +09001/*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
3 * Authors:
4 * Inki Dae <inki.dae@samsung.com>
5 * Joonyoung Shim <jy0922.shim@samsung.com>
6 * Seung-Woo Kim <sw0312.kim@samsung.com>
7 *
Inki Daed81aecb2012-12-18 02:30:17 +09008 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
Inki Dae1c248b72011-10-04 19:19:01 +090012 */
13
Sean Paulaf65c802014-01-30 16:19:27 -050014#include <linux/pm_runtime.h>
David Howells760285e2012-10-02 18:01:07 +010015#include <drm/drmP.h>
16#include <drm/drm_crtc_helper.h>
Inki Dae1c248b72011-10-04 19:19:01 +090017
Inki Daef37cd5e2014-05-09 14:25:20 +090018#include <linux/component.h>
Inki Dae96f54212013-12-20 19:16:24 +090019
Inki Dae1c248b72011-10-04 19:19:01 +090020#include <drm/exynos_drm.h>
21
22#include "exynos_drm_drv.h"
23#include "exynos_drm_crtc.h"
Inki Daed081f562012-02-15 11:25:19 +090024#include "exynos_drm_encoder.h"
Inki Dae1c248b72011-10-04 19:19:01 +090025#include "exynos_drm_fbdev.h"
26#include "exynos_drm_fb.h"
27#include "exynos_drm_gem.h"
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090028#include "exynos_drm_plane.h"
Inki Daeb73d1232012-03-21 10:55:26 +090029#include "exynos_drm_vidi.h"
Inki Daeb2df26c2012-04-23 21:01:28 +090030#include "exynos_drm_dmabuf.h"
Joonyoung Shimd7f16422012-05-17 20:06:32 +090031#include "exynos_drm_g2d.h"
Eunchul Kimcb471f142012-12-14 18:10:31 +090032#include "exynos_drm_ipp.h"
Inki Dae0519f9a2012-10-20 07:53:42 -070033#include "exynos_drm_iommu.h"
Inki Dae1c248b72011-10-04 19:19:01 +090034
Inki Dae0edf9932011-12-15 17:31:24 +090035#define DRIVER_NAME "exynos"
Inki Dae1c248b72011-10-04 19:19:01 +090036#define DRIVER_DESC "Samsung SoC DRM"
37#define DRIVER_DATE "20110530"
38#define DRIVER_MAJOR 1
39#define DRIVER_MINOR 0
40
Rahul Sharma422bd002012-10-16 05:50:12 +053041static struct platform_device *exynos_drm_pdev;
42
Inki Daef37cd5e2014-05-09 14:25:20 +090043static DEFINE_MUTEX(drm_component_lock);
44static LIST_HEAD(drm_component_list);
45
46struct component_dev {
47 struct list_head list;
Inki Daedf5225b2014-05-29 18:28:02 +090048 struct device *crtc_dev;
49 struct device *conn_dev;
50 enum exynos_drm_output_type out_type;
51 unsigned int dev_type_flag;
Inki Daef37cd5e2014-05-09 14:25:20 +090052};
53
Inki Dae1c248b72011-10-04 19:19:01 +090054static int exynos_drm_load(struct drm_device *dev, unsigned long flags)
55{
56 struct exynos_drm_private *private;
57 int ret;
58 int nr;
59
Inki Dae1c248b72011-10-04 19:19:01 +090060 private = kzalloc(sizeof(struct exynos_drm_private), GFP_KERNEL);
Sachin Kamat38bb5252013-08-19 19:04:55 +090061 if (!private)
Inki Dae1c248b72011-10-04 19:19:01 +090062 return -ENOMEM;
Inki Dae1c248b72011-10-04 19:19:01 +090063
64 INIT_LIST_HEAD(&private->pageflip_event_list);
Sean Paulaf65c802014-01-30 16:19:27 -050065 dev_set_drvdata(dev->dev, dev);
Inki Dae1c248b72011-10-04 19:19:01 +090066 dev->dev_private = (void *)private;
67
Inki Dae0519f9a2012-10-20 07:53:42 -070068 /*
69 * create mapping to manage iommu table and set a pointer to iommu
70 * mapping structure to iommu_mapping of private data.
71 * also this iommu_mapping can be used to check if iommu is supported
72 * or not.
73 */
74 ret = drm_create_iommu_mapping(dev);
75 if (ret < 0) {
76 DRM_ERROR("failed to create iommu mapping.\n");
Inki Daed2ba65f2014-02-28 18:37:02 +090077 goto err_free_private;
Inki Dae0519f9a2012-10-20 07:53:42 -070078 }
79
Inki Dae1c248b72011-10-04 19:19:01 +090080 drm_mode_config_init(dev);
81
82 exynos_drm_mode_config_init(dev);
83
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090084 for (nr = 0; nr < MAX_PLANE; nr++) {
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +090085 struct drm_plane *plane;
Sean Paul3f283d92014-01-30 16:19:11 -050086 unsigned long possible_crtcs = (1 << MAX_CRTC) - 1;
Joonyoung Shimb5d2eb32012-06-27 14:27:04 +090087
Andrzej Hajda72ed6cc2014-09-19 14:58:53 +020088 plane = exynos_plane_init(dev, possible_crtcs,
89 DRM_PLANE_TYPE_OVERLAY);
Andrzej Hajda64f7aed2014-10-10 14:31:53 +020090 if (!IS_ERR(plane))
91 continue;
92
93 ret = PTR_ERR(plane);
94 goto err_mode_config_cleanup;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +090095 }
96
Inki Daed081f562012-02-15 11:25:19 +090097 /* setup possible_clones. */
98 exynos_drm_encoder_setup(dev);
99
Daniel Vettera9a346d2013-12-11 11:34:23 +0100100 platform_set_drvdata(dev->platformdev, dev);
101
Inki Daef37cd5e2014-05-09 14:25:20 +0900102 /* Try to bind all sub drivers. */
103 ret = component_bind_all(dev->dev, dev);
104 if (ret)
Andrzej Hajdac52142e2014-10-07 22:09:14 +0900105 goto err_mode_config_cleanup;
106
107 ret = drm_vblank_init(dev, dev->mode_config.num_crtc);
108 if (ret)
109 goto err_unbind_all;
Inki Daef37cd5e2014-05-09 14:25:20 +0900110
Joonyoung Shim4a3ffed2014-09-18 17:50:35 +0900111 /*
112 * enable drm irq mode.
113 * - with irq_enabled = true, we can use the vblank feature.
114 *
115 * P.S. note that we wouldn't use drm irq handler but
116 * just specific driver own one instead because
117 * drm framework supports only one irq handler.
118 */
119 dev->irq_enabled = true;
120
121 /*
122 * with vblank_disable_allowed = true, vblank interrupt will be disabled
123 * by drm timer once a current process gives up ownership of
124 * vblank event.(after drm_vblank_put function is called)
125 */
126 dev->vblank_disable_allowed = true;
127
Andrzej Hajda3cb68302014-10-10 14:31:54 +0200128 /* init kms poll for handling hpd */
129 drm_kms_helper_poll_init(dev);
130
131 /* force connectors detection */
132 drm_helper_hpd_irq_event(dev);
133
Inki Dae1c248b72011-10-04 19:19:01 +0900134 return 0;
135
Andrzej Hajdac52142e2014-10-07 22:09:14 +0900136err_unbind_all:
137 component_unbind_all(dev->dev, dev);
Sean Paul080be03d2014-02-19 21:02:55 +0900138err_mode_config_cleanup:
139 drm_mode_config_cleanup(dev);
Inki Dae0519f9a2012-10-20 07:53:42 -0700140 drm_release_iommu_mapping(dev);
Inki Daed2ba65f2014-02-28 18:37:02 +0900141err_free_private:
Inki Dae1c248b72011-10-04 19:19:01 +0900142 kfree(private);
143
144 return ret;
145}
146
147static int exynos_drm_unload(struct drm_device *dev)
148{
Inki Dae1c248b72011-10-04 19:19:01 +0900149 exynos_drm_fbdev_fini(dev);
Seung-Woo Kim7db3eba2011-10-18 16:58:05 +0900150 drm_kms_helper_poll_fini(dev);
Inki Dae1c248b72011-10-04 19:19:01 +0900151
Andrzej Hajda9f3dd7d2014-09-09 15:16:06 +0200152 drm_vblank_cleanup(dev);
Andrzej Hajdac52142e2014-10-07 22:09:14 +0900153 component_unbind_all(dev->dev, dev);
Andrzej Hajda9f3dd7d2014-09-09 15:16:06 +0200154 drm_mode_config_cleanup(dev);
155 drm_release_iommu_mapping(dev);
156
157 kfree(dev->dev_private);
Inki Dae1c248b72011-10-04 19:19:01 +0900158 dev->dev_private = NULL;
159
160 return 0;
161}
162
Sean Paulaf65c802014-01-30 16:19:27 -0500163static int exynos_drm_suspend(struct drm_device *dev, pm_message_t state)
164{
165 struct drm_connector *connector;
166
167 drm_modeset_lock_all(dev);
168 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
169 int old_dpms = connector->dpms;
170
171 if (connector->funcs->dpms)
172 connector->funcs->dpms(connector, DRM_MODE_DPMS_OFF);
173
174 /* Set the old mode back to the connector for resume */
175 connector->dpms = old_dpms;
176 }
177 drm_modeset_unlock_all(dev);
178
179 return 0;
180}
181
182static int exynos_drm_resume(struct drm_device *dev)
183{
184 struct drm_connector *connector;
185
186 drm_modeset_lock_all(dev);
187 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Andrzej Hajda74cfe072014-10-10 14:31:56 +0200188 if (connector->funcs->dpms) {
189 int dpms = connector->dpms;
190
191 connector->dpms = DRM_MODE_DPMS_OFF;
192 connector->funcs->dpms(connector, dpms);
193 }
Sean Paulaf65c802014-01-30 16:19:27 -0500194 }
Takashi Iwaia16f2232014-05-09 08:14:15 +0200195 drm_modeset_unlock_all(dev);
Sean Paulaf65c802014-01-30 16:19:27 -0500196
Sean Paulaf65c802014-01-30 16:19:27 -0500197 return 0;
198}
199
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900200static int exynos_drm_open(struct drm_device *dev, struct drm_file *file)
Inki Daeccf4d882011-10-14 13:29:51 +0900201{
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900202 struct drm_exynos_file_private *file_priv;
YoungJun Choba3706c2013-07-01 17:00:47 +0900203 int ret;
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900204
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900205 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
206 if (!file_priv)
207 return -ENOMEM;
208
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900209 file->driver_priv = file_priv;
Inki Daeb2df26c2012-04-23 21:01:28 +0900210
YoungJun Choba3706c2013-07-01 17:00:47 +0900211 ret = exynos_drm_subdrv_open(dev, file);
Sachin Kamat6ca605f2014-01-16 11:31:26 +0530212 if (ret)
Daniel Kurtz307ceaf2014-03-17 11:28:06 +0800213 goto err_file_priv_free;
YoungJun Choba3706c2013-07-01 17:00:47 +0900214
215 return ret;
Daniel Kurtz307ceaf2014-03-17 11:28:06 +0800216
Daniel Kurtz307ceaf2014-03-17 11:28:06 +0800217err_file_priv_free:
Sachin Kamat6ca605f2014-01-16 11:31:26 +0530218 kfree(file_priv);
219 file->driver_priv = NULL;
220 return ret;
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900221}
222
Inki Daeccf4d882011-10-14 13:29:51 +0900223static void exynos_drm_preclose(struct drm_device *dev,
224 struct drm_file *file)
225{
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900226 exynos_drm_subdrv_close(dev, file);
Inki Daeccf4d882011-10-14 13:29:51 +0900227}
228
Inki Dae53ef2992012-02-15 11:25:22 +0900229static void exynos_drm_postclose(struct drm_device *dev, struct drm_file *file)
230{
Inki Dae0cbc3302013-10-01 14:51:37 +0900231 struct exynos_drm_private *private = dev->dev_private;
232 struct drm_pending_vblank_event *v, *vt;
233 struct drm_pending_event *e, *et;
234 unsigned long flags;
235
Inki Dae53ef2992012-02-15 11:25:22 +0900236 if (!file->driver_priv)
237 return;
238
Inki Dae0cbc3302013-10-01 14:51:37 +0900239 /* Release all events not unhandled by page flip handler. */
240 spin_lock_irqsave(&dev->event_lock, flags);
241 list_for_each_entry_safe(v, vt, &private->pageflip_event_list,
242 base.link) {
243 if (v->base.file_priv == file) {
244 list_del(&v->base.link);
245 drm_vblank_put(dev, v->pipe);
246 v->base.destroy(&v->base);
247 }
248 }
249
250 /* Release all events handled by page flip handler but not freed. */
251 list_for_each_entry_safe(e, et, &file->event_list, link) {
252 list_del(&e->link);
253 e->destroy(e);
254 }
255 spin_unlock_irqrestore(&dev->event_lock, flags);
256
Inki Dae53ef2992012-02-15 11:25:22 +0900257 kfree(file->driver_priv);
258 file->driver_priv = NULL;
259}
260
Inki Dae1c248b72011-10-04 19:19:01 +0900261static void exynos_drm_lastclose(struct drm_device *dev)
262{
Inki Dae1c248b72011-10-04 19:19:01 +0900263 exynos_drm_fbdev_restore_mode(dev);
264}
265
Laurent Pinchart78b68552012-05-17 13:27:22 +0200266static const struct vm_operations_struct exynos_drm_gem_vm_ops = {
Inki Dae1c248b72011-10-04 19:19:01 +0900267 .fault = exynos_drm_gem_fault,
268 .open = drm_gem_vm_open,
269 .close = drm_gem_vm_close,
270};
271
Rob Clarkbaa70942013-08-02 13:27:49 -0400272static const struct drm_ioctl_desc exynos_ioctls[] = {
Inki Dae1c248b72011-10-04 19:19:01 +0900273 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_CREATE, exynos_drm_gem_create_ioctl,
274 DRM_UNLOCKED | DRM_AUTH),
Inki Dae40cd7e02012-05-04 15:51:17 +0900275 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_GET,
276 exynos_drm_gem_get_ioctl, DRM_UNLOCKED),
Inki Daeb73d1232012-03-21 10:55:26 +0900277 DRM_IOCTL_DEF_DRV(EXYNOS_VIDI_CONNECTION,
278 vidi_connection_ioctl, DRM_UNLOCKED | DRM_AUTH),
Joonyoung Shimd7f16422012-05-17 20:06:32 +0900279 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_GET_VER,
280 exynos_g2d_get_ver_ioctl, DRM_UNLOCKED | DRM_AUTH),
281 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_SET_CMDLIST,
282 exynos_g2d_set_cmdlist_ioctl, DRM_UNLOCKED | DRM_AUTH),
283 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_EXEC,
284 exynos_g2d_exec_ioctl, DRM_UNLOCKED | DRM_AUTH),
Eunchul Kimcb471f142012-12-14 18:10:31 +0900285 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_PROPERTY,
286 exynos_drm_ipp_get_property, DRM_UNLOCKED | DRM_AUTH),
287 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_SET_PROPERTY,
288 exynos_drm_ipp_set_property, DRM_UNLOCKED | DRM_AUTH),
289 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_QUEUE_BUF,
290 exynos_drm_ipp_queue_buf, DRM_UNLOCKED | DRM_AUTH),
291 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_CMD_CTRL,
292 exynos_drm_ipp_cmd_ctrl, DRM_UNLOCKED | DRM_AUTH),
Inki Dae1c248b72011-10-04 19:19:01 +0900293};
294
Joonyoung Shimac2bdf72011-12-08 15:00:20 +0900295static const struct file_operations exynos_drm_driver_fops = {
296 .owner = THIS_MODULE,
297 .open = drm_open,
298 .mmap = exynos_drm_gem_mmap,
299 .poll = drm_poll,
300 .read = drm_read,
301 .unlocked_ioctl = drm_ioctl,
Keith Packard804d74a2012-07-09 15:40:07 -0700302#ifdef CONFIG_COMPAT
303 .compat_ioctl = drm_compat_ioctl,
304#endif
Joonyoung Shimac2bdf72011-12-08 15:00:20 +0900305 .release = drm_release,
306};
307
Inki Dae1c248b72011-10-04 19:19:01 +0900308static struct drm_driver exynos_drm_driver = {
Joonyoung Shimbe9b64a2014-04-12 09:39:52 +0900309 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME,
Inki Dae1c248b72011-10-04 19:19:01 +0900310 .load = exynos_drm_load,
311 .unload = exynos_drm_unload,
Sean Paulaf65c802014-01-30 16:19:27 -0500312 .suspend = exynos_drm_suspend,
313 .resume = exynos_drm_resume,
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900314 .open = exynos_drm_open,
Inki Daeccf4d882011-10-14 13:29:51 +0900315 .preclose = exynos_drm_preclose,
Inki Dae1c248b72011-10-04 19:19:01 +0900316 .lastclose = exynos_drm_lastclose,
Inki Dae53ef2992012-02-15 11:25:22 +0900317 .postclose = exynos_drm_postclose,
David Herrmann915b4d12014-08-29 12:12:43 +0200318 .set_busid = drm_platform_set_busid,
Inki Dae1c248b72011-10-04 19:19:01 +0900319 .get_vblank_counter = drm_vblank_count,
320 .enable_vblank = exynos_drm_crtc_enable_vblank,
321 .disable_vblank = exynos_drm_crtc_disable_vblank,
Inki Dae1c248b72011-10-04 19:19:01 +0900322 .gem_free_object = exynos_drm_gem_free_object,
323 .gem_vm_ops = &exynos_drm_gem_vm_ops,
324 .dumb_create = exynos_drm_gem_dumb_create,
325 .dumb_map_offset = exynos_drm_gem_dumb_map_offset,
Daniel Vetter43387b32013-07-16 09:12:04 +0200326 .dumb_destroy = drm_gem_dumb_destroy,
Inki Daeb2df26c2012-04-23 21:01:28 +0900327 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
328 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
329 .gem_prime_export = exynos_dmabuf_prime_export,
330 .gem_prime_import = exynos_dmabuf_prime_import,
Inki Dae1c248b72011-10-04 19:19:01 +0900331 .ioctls = exynos_ioctls,
Rob Clarkbaa70942013-08-02 13:27:49 -0400332 .num_ioctls = ARRAY_SIZE(exynos_ioctls),
Joonyoung Shimac2bdf72011-12-08 15:00:20 +0900333 .fops = &exynos_drm_driver_fops,
Inki Dae1c248b72011-10-04 19:19:01 +0900334 .name = DRIVER_NAME,
335 .desc = DRIVER_DESC,
336 .date = DRIVER_DATE,
337 .major = DRIVER_MAJOR,
338 .minor = DRIVER_MINOR,
339};
340
Sean Paulaf65c802014-01-30 16:19:27 -0500341#ifdef CONFIG_PM_SLEEP
342static int exynos_drm_sys_suspend(struct device *dev)
343{
344 struct drm_device *drm_dev = dev_get_drvdata(dev);
345 pm_message_t message;
346
Krzysztof Kozlowskid50a1902014-06-30 15:25:44 +0200347 if (pm_runtime_suspended(dev) || !drm_dev)
Sean Paulaf65c802014-01-30 16:19:27 -0500348 return 0;
349
350 message.event = PM_EVENT_SUSPEND;
351 return exynos_drm_suspend(drm_dev, message);
352}
353
354static int exynos_drm_sys_resume(struct device *dev)
355{
356 struct drm_device *drm_dev = dev_get_drvdata(dev);
357
Krzysztof Kozlowskid50a1902014-06-30 15:25:44 +0200358 if (pm_runtime_suspended(dev) || !drm_dev)
Sean Paulaf65c802014-01-30 16:19:27 -0500359 return 0;
360
361 return exynos_drm_resume(drm_dev);
362}
363#endif
364
Sean Paulaf65c802014-01-30 16:19:27 -0500365static const struct dev_pm_ops exynos_drm_pm_ops = {
366 SET_SYSTEM_SLEEP_PM_OPS(exynos_drm_sys_suspend, exynos_drm_sys_resume)
Sean Paulaf65c802014-01-30 16:19:27 -0500367};
368
Inki Daef37cd5e2014-05-09 14:25:20 +0900369int exynos_drm_component_add(struct device *dev,
Inki Daedf5225b2014-05-29 18:28:02 +0900370 enum exynos_drm_device_type dev_type,
371 enum exynos_drm_output_type out_type)
Inki Daef37cd5e2014-05-09 14:25:20 +0900372{
373 struct component_dev *cdev;
Inki Daedf5225b2014-05-29 18:28:02 +0900374
375 if (dev_type != EXYNOS_DEVICE_TYPE_CRTC &&
376 dev_type != EXYNOS_DEVICE_TYPE_CONNECTOR) {
377 DRM_ERROR("invalid device type.\n");
378 return -EINVAL;
379 }
380
381 mutex_lock(&drm_component_lock);
382
383 /*
384 * Make sure to check if there is a component which has two device
385 * objects, for connector and for encoder/connector.
386 * It should make sure that crtc and encoder/connector drivers are
387 * ready before exynos drm core binds them.
388 */
389 list_for_each_entry(cdev, &drm_component_list, list) {
390 if (cdev->out_type == out_type) {
391 /*
392 * If crtc and encoder/connector device objects are
393 * added already just return.
394 */
395 if (cdev->dev_type_flag == (EXYNOS_DEVICE_TYPE_CRTC |
396 EXYNOS_DEVICE_TYPE_CONNECTOR)) {
397 mutex_unlock(&drm_component_lock);
398 return 0;
399 }
400
401 if (dev_type == EXYNOS_DEVICE_TYPE_CRTC) {
402 cdev->crtc_dev = dev;
403 cdev->dev_type_flag |= dev_type;
404 }
405
406 if (dev_type == EXYNOS_DEVICE_TYPE_CONNECTOR) {
407 cdev->conn_dev = dev;
408 cdev->dev_type_flag |= dev_type;
409 }
410
411 mutex_unlock(&drm_component_lock);
412 return 0;
413 }
414 }
415
416 mutex_unlock(&drm_component_lock);
Inki Daef37cd5e2014-05-09 14:25:20 +0900417
418 cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
419 if (!cdev)
420 return -ENOMEM;
421
Inki Daedf5225b2014-05-29 18:28:02 +0900422 if (dev_type == EXYNOS_DEVICE_TYPE_CRTC)
423 cdev->crtc_dev = dev;
424 if (dev_type == EXYNOS_DEVICE_TYPE_CONNECTOR)
425 cdev->conn_dev = dev;
Inki Daef37cd5e2014-05-09 14:25:20 +0900426
Inki Daedf5225b2014-05-29 18:28:02 +0900427 cdev->out_type = out_type;
428 cdev->dev_type_flag = dev_type;
Inki Daef37cd5e2014-05-09 14:25:20 +0900429
430 mutex_lock(&drm_component_lock);
431 list_add_tail(&cdev->list, &drm_component_list);
432 mutex_unlock(&drm_component_lock);
433
434 return 0;
435}
436
437void exynos_drm_component_del(struct device *dev,
Inki Daedf5225b2014-05-29 18:28:02 +0900438 enum exynos_drm_device_type dev_type)
Inki Daef37cd5e2014-05-09 14:25:20 +0900439{
440 struct component_dev *cdev, *next;
441
442 mutex_lock(&drm_component_lock);
443
444 list_for_each_entry_safe(cdev, next, &drm_component_list, list) {
Inki Daedf5225b2014-05-29 18:28:02 +0900445 if (dev_type == EXYNOS_DEVICE_TYPE_CRTC) {
446 if (cdev->crtc_dev == dev) {
447 cdev->crtc_dev = NULL;
448 cdev->dev_type_flag &= ~dev_type;
449 }
450 }
451
452 if (dev_type == EXYNOS_DEVICE_TYPE_CONNECTOR) {
453 if (cdev->conn_dev == dev) {
454 cdev->conn_dev = NULL;
455 cdev->dev_type_flag &= ~dev_type;
456 }
457 }
458
459 /*
460 * Release cdev object only in case that both of crtc and
461 * encoder/connector device objects are NULL.
462 */
463 if (!cdev->crtc_dev && !cdev->conn_dev) {
Inki Daef37cd5e2014-05-09 14:25:20 +0900464 list_del(&cdev->list);
465 kfree(cdev);
Inki Daef37cd5e2014-05-09 14:25:20 +0900466 }
Inki Daedf5225b2014-05-29 18:28:02 +0900467
468 break;
Inki Daef37cd5e2014-05-09 14:25:20 +0900469 }
470
471 mutex_unlock(&drm_component_lock);
Inki Daef37cd5e2014-05-09 14:25:20 +0900472}
473
Inki Dae53c55582014-09-11 17:04:03 +0900474static int compare_dev(struct device *dev, void *data)
Inki Daef37cd5e2014-05-09 14:25:20 +0900475{
476 return dev == (struct device *)data;
477}
478
Inki Dae53c55582014-09-11 17:04:03 +0900479static struct component_match *exynos_drm_match_add(struct device *dev)
Inki Daef37cd5e2014-05-09 14:25:20 +0900480{
Inki Dae53c55582014-09-11 17:04:03 +0900481 struct component_match *match = NULL;
Inki Daef37cd5e2014-05-09 14:25:20 +0900482 struct component_dev *cdev;
Inki Daedf5225b2014-05-29 18:28:02 +0900483 unsigned int attach_cnt = 0;
Inki Daef37cd5e2014-05-09 14:25:20 +0900484
485 mutex_lock(&drm_component_lock);
486
Inki Daefbdf0932014-11-06 23:00:37 +0900487 /* Do not retry to probe if there is no any kms driver regitered. */
488 if (list_empty(&drm_component_list)) {
489 mutex_unlock(&drm_component_lock);
490 return ERR_PTR(-ENODEV);
491 }
492
Inki Daef37cd5e2014-05-09 14:25:20 +0900493 list_for_each_entry(cdev, &drm_component_list, list) {
Inki Daedf5225b2014-05-29 18:28:02 +0900494 /*
495 * Add components to master only in case that crtc and
496 * encoder/connector device objects exist.
497 */
498 if (!cdev->crtc_dev || !cdev->conn_dev)
499 continue;
500
501 attach_cnt++;
502
Inki Daef37cd5e2014-05-09 14:25:20 +0900503 mutex_unlock(&drm_component_lock);
504
Inki Daedf5225b2014-05-29 18:28:02 +0900505 /*
506 * fimd and dpi modules have same device object so add
507 * only crtc device object in this case.
Inki Daedf5225b2014-05-29 18:28:02 +0900508 */
509 if (cdev->crtc_dev == cdev->conn_dev) {
Inki Dae53c55582014-09-11 17:04:03 +0900510 component_match_add(dev, &match, compare_dev,
511 cdev->crtc_dev);
Inki Daedf5225b2014-05-29 18:28:02 +0900512 goto out_lock;
513 }
514
515 /*
516 * Do not chage below call order.
517 * crtc device first should be added to master because
518 * connector/encoder need pipe number of crtc when they
519 * are created.
520 */
Inki Dae53c55582014-09-11 17:04:03 +0900521 component_match_add(dev, &match, compare_dev, cdev->crtc_dev);
522 component_match_add(dev, &match, compare_dev, cdev->conn_dev);
Inki Daedf5225b2014-05-29 18:28:02 +0900523
524out_lock:
Inki Daef37cd5e2014-05-09 14:25:20 +0900525 mutex_lock(&drm_component_lock);
526 }
527
528 mutex_unlock(&drm_component_lock);
529
Inki Dae53c55582014-09-11 17:04:03 +0900530 return attach_cnt ? match : ERR_PTR(-EPROBE_DEFER);
Inki Daef37cd5e2014-05-09 14:25:20 +0900531}
532
533static int exynos_drm_bind(struct device *dev)
534{
Inki Daef37cd5e2014-05-09 14:25:20 +0900535 return drm_platform_init(&exynos_drm_driver, to_platform_device(dev));
536}
537
538static void exynos_drm_unbind(struct device *dev)
539{
540 drm_put_dev(dev_get_drvdata(dev));
541}
542
543static const struct component_master_ops exynos_drm_ops = {
Inki Daef37cd5e2014-05-09 14:25:20 +0900544 .bind = exynos_drm_bind,
545 .unbind = exynos_drm_unbind,
Inki Dae1c248b72011-10-04 19:19:01 +0900546};
547
Andrzej Hajda72390672014-11-13 16:37:57 +0900548static struct platform_driver *const exynos_drm_kms_drivers[] = {
549#ifdef CONFIG_DRM_EXYNOS_FIMD
550 &fimd_driver,
551#endif
552#ifdef CONFIG_DRM_EXYNOS_DP
553 &dp_driver,
554#endif
555#ifdef CONFIG_DRM_EXYNOS_DSI
556 &dsi_driver,
557#endif
558#ifdef CONFIG_DRM_EXYNOS_HDMI
559 &mixer_driver,
560 &hdmi_driver,
561#endif
562};
563
564static struct platform_driver *const exynos_drm_non_kms_drivers[] = {
565#ifdef CONFIG_DRM_EXYNOS_G2D
566 &g2d_driver,
567#endif
568#ifdef CONFIG_DRM_EXYNOS_FIMC
569 &fimc_driver,
570#endif
571#ifdef CONFIG_DRM_EXYNOS_ROTATOR
572 &rotator_driver,
573#endif
574#ifdef CONFIG_DRM_EXYNOS_GSC
575 &gsc_driver,
576#endif
577#ifdef CONFIG_DRM_EXYNOS_IPP
578 &ipp_driver,
579#endif
580};
581
Inki Daef37cd5e2014-05-09 14:25:20 +0900582static int exynos_drm_platform_probe(struct platform_device *pdev)
Inki Dae1c248b72011-10-04 19:19:01 +0900583{
Inki Dae53c55582014-09-11 17:04:03 +0900584 struct component_match *match;
Andrzej Hajda72390672014-11-13 16:37:57 +0900585 int ret, i, j;
Joonyoung Shim132a5b92012-03-16 18:47:08 +0900586
Inki Daef37cd5e2014-05-09 14:25:20 +0900587 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
Damien Lespiauf95aeb12014-06-09 14:39:49 +0100588 exynos_drm_driver.num_ioctls = ARRAY_SIZE(exynos_ioctls);
Inki Daef37cd5e2014-05-09 14:25:20 +0900589
Andrzej Hajda72390672014-11-13 16:37:57 +0900590 for (i = 0; i < ARRAY_SIZE(exynos_drm_kms_drivers); ++i) {
591 ret = platform_driver_register(exynos_drm_kms_drivers[i]);
592 if (ret < 0)
593 goto err_unregister_kms_drivers;
594 }
Inki Daeb73d1232012-03-21 10:55:26 +0900595
Inki Daee9fbdcb2014-11-07 21:32:34 +0900596 match = exynos_drm_match_add(&pdev->dev);
597 if (IS_ERR(match)) {
598 ret = PTR_ERR(match);
Andrzej Hajda72390672014-11-13 16:37:57 +0900599 goto err_unregister_kms_drivers;
Inki Daee9fbdcb2014-11-07 21:32:34 +0900600 }
601
602 ret = component_master_add_with_match(&pdev->dev, &exynos_drm_ops,
603 match);
604 if (ret < 0)
Andrzej Hajda72390672014-11-13 16:37:57 +0900605 goto err_unregister_kms_drivers;
Inki Daee9fbdcb2014-11-07 21:32:34 +0900606
Andrzej Hajda72390672014-11-13 16:37:57 +0900607 for (j = 0; j < ARRAY_SIZE(exynos_drm_non_kms_drivers); ++j) {
608 ret = platform_driver_register(exynos_drm_non_kms_drivers[j]);
609 if (ret < 0)
610 goto err_del_component_master;
611 }
Seung-Woo Kim43f41902013-04-23 14:02:53 +0900612
613 ret = exynos_platform_device_ipp_register();
614 if (ret < 0)
Andrzej Hajda72390672014-11-13 16:37:57 +0900615 goto err_unregister_non_kms_drivers;
Eunchul Kimcb471f142012-12-14 18:10:31 +0900616
Inki Dae421ee182014-11-13 16:05:12 +0900617 /* Probe non kms sub drivers and virtual display driver. */
618 ret = exynos_drm_device_subdrv_probe(platform_get_drvdata(pdev));
619 if (ret)
620 goto err_unregister_resources;
621
Inki Dae53c55582014-09-11 17:04:03 +0900622 return ret;
623
Inki Dae421ee182014-11-13 16:05:12 +0900624err_unregister_resources:
Eunchul Kimcb471f142012-12-14 18:10:31 +0900625#ifdef CONFIG_DRM_EXYNOS_IPP
Inki Dae421ee182014-11-13 16:05:12 +0900626 exynos_platform_device_ipp_unregister();
Eunchul Kimcb471f142012-12-14 18:10:31 +0900627#endif
Andrzej Hajda72390672014-11-13 16:37:57 +0900628err_unregister_non_kms_drivers:
629 while (--j >= 0)
630 platform_driver_unregister(exynos_drm_non_kms_drivers[j]);
Eunchul Kimcb471f142012-12-14 18:10:31 +0900631
Inki Daee9fbdcb2014-11-07 21:32:34 +0900632err_del_component_master:
Inki Daee9fbdcb2014-11-07 21:32:34 +0900633 component_master_del(&pdev->dev, &exynos_drm_ops);
Inki Daeb73d1232012-03-21 10:55:26 +0900634
Andrzej Hajda72390672014-11-13 16:37:57 +0900635err_unregister_kms_drivers:
636 while (--i >= 0)
637 platform_driver_unregister(exynos_drm_kms_drivers[i]);
Andrzej Hajda25928a32014-03-17 11:27:17 +0100638
Joonyoung Shim132a5b92012-03-16 18:47:08 +0900639 return ret;
Inki Dae1c248b72011-10-04 19:19:01 +0900640}
641
Inki Daef37cd5e2014-05-09 14:25:20 +0900642static int exynos_drm_platform_remove(struct platform_device *pdev)
Inki Dae1c248b72011-10-04 19:19:01 +0900643{
Andrzej Hajda72390672014-11-13 16:37:57 +0900644 int i;
645
Inki Dae421ee182014-11-13 16:05:12 +0900646 exynos_drm_device_subdrv_remove(platform_get_drvdata(pdev));
647
Eunchul Kimcb471f142012-12-14 18:10:31 +0900648#ifdef CONFIG_DRM_EXYNOS_IPP
Seung-Woo Kim43f41902013-04-23 14:02:53 +0900649 exynos_platform_device_ipp_unregister();
Eunchul Kimcb471f142012-12-14 18:10:31 +0900650#endif
651
Andrzej Hajda72390672014-11-13 16:37:57 +0900652 for (i = ARRAY_SIZE(exynos_drm_non_kms_drivers) - 1; i >= 0; --i)
653 platform_driver_unregister(exynos_drm_non_kms_drivers[i]);
Eunchul Kimf2646382012-12-14 17:58:57 +0900654
Inki Daef37cd5e2014-05-09 14:25:20 +0900655 component_master_del(&pdev->dev, &exynos_drm_ops);
Andrzej Hajda72390672014-11-13 16:37:57 +0900656
657 for (i = ARRAY_SIZE(exynos_drm_kms_drivers) - 1; i >= 0; --i)
658 platform_driver_unregister(exynos_drm_kms_drivers[i]);
659
Inki Daef37cd5e2014-05-09 14:25:20 +0900660 return 0;
661}
662
663static struct platform_driver exynos_drm_platform_driver = {
664 .probe = exynos_drm_platform_probe,
665 .remove = exynos_drm_platform_remove,
666 .driver = {
667 .owner = THIS_MODULE,
668 .name = "exynos-drm",
669 .pm = &exynos_drm_pm_ops,
670 },
671};
672
673static int exynos_drm_init(void)
674{
675 int ret;
676
Inki Dae5cbb37d2014-11-06 19:23:35 +0900677 /*
678 * Register device object only in case of Exynos SoC.
679 *
680 * Below codes resolves temporarily infinite loop issue incurred
681 * by Exynos drm driver when using multi-platform kernel.
682 * So these codes will be replaced with more generic way later.
683 */
684 if (!of_machine_is_compatible("samsung,exynos3") &&
685 !of_machine_is_compatible("samsung,exynos4") &&
686 !of_machine_is_compatible("samsung,exynos5"))
687 return -ENODEV;
688
Inki Daef37cd5e2014-05-09 14:25:20 +0900689 exynos_drm_pdev = platform_device_register_simple("exynos-drm", -1,
690 NULL, 0);
691 if (IS_ERR(exynos_drm_pdev))
692 return PTR_ERR(exynos_drm_pdev);
693
Inki Daef37cd5e2014-05-09 14:25:20 +0900694 ret = exynos_drm_probe_vidi();
695 if (ret < 0)
696 goto err_unregister_pd;
Inki Daef37cd5e2014-05-09 14:25:20 +0900697
698 ret = platform_driver_register(&exynos_drm_platform_driver);
699 if (ret)
700 goto err_remove_vidi;
701
702 return 0;
703
Inki Daef37cd5e2014-05-09 14:25:20 +0900704err_remove_vidi:
Inki Daef37cd5e2014-05-09 14:25:20 +0900705 exynos_drm_remove_vidi();
Sachin Kamat0013fc92014-06-17 17:08:07 +0530706
707err_unregister_pd:
Sachin Kamat0013fc92014-06-17 17:08:07 +0530708 platform_device_unregister(exynos_drm_pdev);
Inki Daef37cd5e2014-05-09 14:25:20 +0900709
710 return ret;
711}
712
713static void exynos_drm_exit(void)
714{
Sachin Kamat0013fc92014-06-17 17:08:07 +0530715 platform_driver_unregister(&exynos_drm_platform_driver);
Andrzej Hajda72390672014-11-13 16:37:57 +0900716
Inki Daef37cd5e2014-05-09 14:25:20 +0900717 exynos_drm_remove_vidi();
Andrzej Hajda72390672014-11-13 16:37:57 +0900718
Inki Daef37cd5e2014-05-09 14:25:20 +0900719 platform_device_unregister(exynos_drm_pdev);
Inki Dae1c248b72011-10-04 19:19:01 +0900720}
721
722module_init(exynos_drm_init);
723module_exit(exynos_drm_exit);
724
725MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
726MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
727MODULE_AUTHOR("Seung-Woo Kim <sw0312.kim@samsung.com>");
728MODULE_DESCRIPTION("Samsung SoC DRM Driver");
729MODULE_LICENSE("GPL");