]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/exynos/exynos_drm_drv.c
drm/exynos: consolidate driver/device initialization code
[mirror_ubuntu-artful-kernel.git] / drivers / gpu / drm / exynos / exynos_drm_drv.c
CommitLineData
1c248b7d
ID
1/*
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 *
d81aecb5
ID
8 * 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.
1c248b7d
ID
12 */
13
af65c804 14#include <linux/pm_runtime.h>
760285e7
DH
15#include <drm/drmP.h>
16#include <drm/drm_crtc_helper.h>
1c248b7d 17
f37cd5e8 18#include <linux/component.h>
96f54215 19
1c248b7d
ID
20#include <drm/exynos_drm.h>
21
22#include "exynos_drm_drv.h"
23#include "exynos_drm_crtc.h"
d081f566 24#include "exynos_drm_encoder.h"
1c248b7d
ID
25#include "exynos_drm_fbdev.h"
26#include "exynos_drm_fb.h"
27#include "exynos_drm_gem.h"
864ee9e6 28#include "exynos_drm_plane.h"
b73d1230 29#include "exynos_drm_vidi.h"
b2df26c1 30#include "exynos_drm_dmabuf.h"
d7f1642c 31#include "exynos_drm_g2d.h"
cb471f14 32#include "exynos_drm_ipp.h"
0519f9a1 33#include "exynos_drm_iommu.h"
1c248b7d 34
0edf9936 35#define DRIVER_NAME "exynos"
1c248b7d
ID
36#define DRIVER_DESC "Samsung SoC DRM"
37#define DRIVER_DATE "20110530"
38#define DRIVER_MAJOR 1
39#define DRIVER_MINOR 0
40
f37cd5e8
ID
41static DEFINE_MUTEX(drm_component_lock);
42static LIST_HEAD(drm_component_list);
43
44struct component_dev {
45 struct list_head list;
df5225bc
ID
46 struct device *crtc_dev;
47 struct device *conn_dev;
48 enum exynos_drm_output_type out_type;
49 unsigned int dev_type_flag;
f37cd5e8
ID
50};
51
1c248b7d
ID
52static int exynos_drm_load(struct drm_device *dev, unsigned long flags)
53{
54 struct exynos_drm_private *private;
55 int ret;
1c248b7d 56
1c248b7d 57 private = kzalloc(sizeof(struct exynos_drm_private), GFP_KERNEL);
38bb5253 58 if (!private)
1c248b7d 59 return -ENOMEM;
1c248b7d 60
af65c804 61 dev_set_drvdata(dev->dev, dev);
1c248b7d
ID
62 dev->dev_private = (void *)private;
63
0519f9a1
ID
64 /*
65 * create mapping to manage iommu table and set a pointer to iommu
66 * mapping structure to iommu_mapping of private data.
67 * also this iommu_mapping can be used to check if iommu is supported
68 * or not.
69 */
70 ret = drm_create_iommu_mapping(dev);
71 if (ret < 0) {
72 DRM_ERROR("failed to create iommu mapping.\n");
d2ba65f6 73 goto err_free_private;
0519f9a1
ID
74 }
75
1c248b7d
ID
76 drm_mode_config_init(dev);
77
78 exynos_drm_mode_config_init(dev);
79
d081f566
ID
80 /* setup possible_clones. */
81 exynos_drm_encoder_setup(dev);
82
a9a346d6
DV
83 platform_set_drvdata(dev->platformdev, dev);
84
f37cd5e8
ID
85 /* Try to bind all sub drivers. */
86 ret = component_bind_all(dev->dev, dev);
87 if (ret)
c52142e6
AH
88 goto err_mode_config_cleanup;
89
90 ret = drm_vblank_init(dev, dev->mode_config.num_crtc);
91 if (ret)
92 goto err_unbind_all;
f37cd5e8 93
d1afe7d4 94 /* Probe non kms sub drivers and virtual display driver. */
f37cd5e8
ID
95 ret = exynos_drm_device_subdrv_probe(dev);
96 if (ret)
c52142e6 97 goto err_cleanup_vblank;
f37cd5e8 98
4ea9526b
GP
99 drm_mode_config_reset(dev);
100
4a3ffedd
JS
101 /*
102 * enable drm irq mode.
103 * - with irq_enabled = true, we can use the vblank feature.
104 *
105 * P.S. note that we wouldn't use drm irq handler but
106 * just specific driver own one instead because
107 * drm framework supports only one irq handler.
108 */
109 dev->irq_enabled = true;
110
111 /*
112 * with vblank_disable_allowed = true, vblank interrupt will be disabled
113 * by drm timer once a current process gives up ownership of
114 * vblank event.(after drm_vblank_put function is called)
115 */
116 dev->vblank_disable_allowed = true;
117
3cb6830a
AH
118 /* init kms poll for handling hpd */
119 drm_kms_helper_poll_init(dev);
120
121 /* force connectors detection */
122 drm_helper_hpd_irq_event(dev);
123
1c248b7d
ID
124 return 0;
125
f37cd5e8 126err_cleanup_vblank:
1c248b7d 127 drm_vblank_cleanup(dev);
c52142e6
AH
128err_unbind_all:
129 component_unbind_all(dev->dev, dev);
080be03d
SP
130err_mode_config_cleanup:
131 drm_mode_config_cleanup(dev);
0519f9a1 132 drm_release_iommu_mapping(dev);
d2ba65f6 133err_free_private:
1c248b7d
ID
134 kfree(private);
135
136 return ret;
137}
138
139static int exynos_drm_unload(struct drm_device *dev)
140{
f37cd5e8
ID
141 exynos_drm_device_subdrv_remove(dev);
142
1c248b7d 143 exynos_drm_fbdev_fini(dev);
7db3eba6 144 drm_kms_helper_poll_fini(dev);
0519f9a1 145
9f3dd7db 146 drm_vblank_cleanup(dev);
c52142e6 147 component_unbind_all(dev->dev, dev);
9f3dd7db 148 drm_mode_config_cleanup(dev);
0519f9a1 149 drm_release_iommu_mapping(dev);
1c248b7d 150
9f3dd7db 151 kfree(dev->dev_private);
1c248b7d
ID
152 dev->dev_private = NULL;
153
154 return 0;
155}
156
af65c804
SP
157static int exynos_drm_suspend(struct drm_device *dev, pm_message_t state)
158{
159 struct drm_connector *connector;
160
161 drm_modeset_lock_all(dev);
162 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
163 int old_dpms = connector->dpms;
164
165 if (connector->funcs->dpms)
166 connector->funcs->dpms(connector, DRM_MODE_DPMS_OFF);
167
168 /* Set the old mode back to the connector for resume */
169 connector->dpms = old_dpms;
170 }
171 drm_modeset_unlock_all(dev);
172
173 return 0;
174}
175
176static int exynos_drm_resume(struct drm_device *dev)
177{
178 struct drm_connector *connector;
179
180 drm_modeset_lock_all(dev);
181 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
74cfe07a
AH
182 if (connector->funcs->dpms) {
183 int dpms = connector->dpms;
184
185 connector->dpms = DRM_MODE_DPMS_OFF;
186 connector->funcs->dpms(connector, dpms);
187 }
af65c804 188 }
a16f223e 189 drm_modeset_unlock_all(dev);
af65c804 190
af65c804
SP
191 return 0;
192}
193
9084f7b8
JS
194static int exynos_drm_open(struct drm_device *dev, struct drm_file *file)
195{
d7f1642c 196 struct drm_exynos_file_private *file_priv;
ba3706c0 197 int ret;
d7f1642c 198
d7f1642c
JS
199 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
200 if (!file_priv)
201 return -ENOMEM;
202
d7f1642c 203 file->driver_priv = file_priv;
b2df26c1 204
ba3706c0 205 ret = exynos_drm_subdrv_open(dev, file);
6ca605f7 206 if (ret)
307ceaff 207 goto err_file_priv_free;
ba3706c0 208
6ca605f7 209 return ret;
307ceaff 210
307ceaff 211err_file_priv_free:
6ca605f7
SK
212 kfree(file_priv);
213 file->driver_priv = NULL;
ba3706c0 214 return ret;
9084f7b8
JS
215}
216
ccf4d883 217static void exynos_drm_preclose(struct drm_device *dev,
6f811502 218 struct drm_file *file)
0cbc330e
ID
219{
220 exynos_drm_subdrv_close(dev, file);
221}
222
223static void exynos_drm_postclose(struct drm_device *dev, struct drm_file *file)
ccf4d883 224{
0cbc330e 225 struct drm_pending_event *e, *et;
3ab09435
JS
226 unsigned long flags;
227
0cbc330e
ID
228 if (!file->driver_priv)
229 return;
230
3ab09435 231 spin_lock_irqsave(&dev->event_lock, flags);
0cbc330e
ID
232 /* Release all events handled by page flip handler but not freed. */
233 list_for_each_entry_safe(e, et, &file->event_list, link) {
234 list_del(&e->link);
235 e->destroy(e);
236 }
237 spin_unlock_irqrestore(&dev->event_lock, flags);
ccf4d883 238
53ef299f
ID
239 kfree(file->driver_priv);
240 file->driver_priv = NULL;
241}
242
1c248b7d
ID
243static void exynos_drm_lastclose(struct drm_device *dev)
244{
1c248b7d
ID
245 exynos_drm_fbdev_restore_mode(dev);
246}
247
78b68556 248static const struct vm_operations_struct exynos_drm_gem_vm_ops = {
1c248b7d
ID
249 .fault = exynos_drm_gem_fault,
250 .open = drm_gem_vm_open,
251 .close = drm_gem_vm_close,
252};
253
baa70943 254static const struct drm_ioctl_desc exynos_ioctls[] = {
1c248b7d
ID
255 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_CREATE, exynos_drm_gem_create_ioctl,
256 DRM_UNLOCKED | DRM_AUTH),
40cd7e0c
ID
257 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_GET,
258 exynos_drm_gem_get_ioctl, DRM_UNLOCKED),
b73d1230
ID
259 DRM_IOCTL_DEF_DRV(EXYNOS_VIDI_CONNECTION,
260 vidi_connection_ioctl, DRM_UNLOCKED | DRM_AUTH),
d7f1642c
JS
261 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_GET_VER,
262 exynos_g2d_get_ver_ioctl, DRM_UNLOCKED | DRM_AUTH),
263 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_SET_CMDLIST,
264 exynos_g2d_set_cmdlist_ioctl, DRM_UNLOCKED | DRM_AUTH),
265 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_EXEC,
266 exynos_g2d_exec_ioctl, DRM_UNLOCKED | DRM_AUTH),
cb471f14
EK
267 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_PROPERTY,
268 exynos_drm_ipp_get_property, DRM_UNLOCKED | DRM_AUTH),
269 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_SET_PROPERTY,
270 exynos_drm_ipp_set_property, DRM_UNLOCKED | DRM_AUTH),
271 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_QUEUE_BUF,
272 exynos_drm_ipp_queue_buf, DRM_UNLOCKED | DRM_AUTH),
273 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_CMD_CTRL,
274 exynos_drm_ipp_cmd_ctrl, DRM_UNLOCKED | DRM_AUTH),
1c248b7d
ID
275};
276
ac2bdf73
JS
277static const struct file_operations exynos_drm_driver_fops = {
278 .owner = THIS_MODULE,
279 .open = drm_open,
280 .mmap = exynos_drm_gem_mmap,
281 .poll = drm_poll,
282 .read = drm_read,
283 .unlocked_ioctl = drm_ioctl,
804d74ab
KP
284#ifdef CONFIG_COMPAT
285 .compat_ioctl = drm_compat_ioctl,
286#endif
ac2bdf73
JS
287 .release = drm_release,
288};
289
1c248b7d 290static struct drm_driver exynos_drm_driver = {
be9b64a8 291 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME,
1c248b7d
ID
292 .load = exynos_drm_load,
293 .unload = exynos_drm_unload,
af65c804
SP
294 .suspend = exynos_drm_suspend,
295 .resume = exynos_drm_resume,
9084f7b8 296 .open = exynos_drm_open,
ccf4d883 297 .preclose = exynos_drm_preclose,
1c248b7d 298 .lastclose = exynos_drm_lastclose,
53ef299f 299 .postclose = exynos_drm_postclose,
915b4d11 300 .set_busid = drm_platform_set_busid,
1c248b7d
ID
301 .get_vblank_counter = drm_vblank_count,
302 .enable_vblank = exynos_drm_crtc_enable_vblank,
303 .disable_vblank = exynos_drm_crtc_disable_vblank,
1c248b7d
ID
304 .gem_free_object = exynos_drm_gem_free_object,
305 .gem_vm_ops = &exynos_drm_gem_vm_ops,
306 .dumb_create = exynos_drm_gem_dumb_create,
307 .dumb_map_offset = exynos_drm_gem_dumb_map_offset,
43387b37 308 .dumb_destroy = drm_gem_dumb_destroy,
b2df26c1
ID
309 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
310 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
311 .gem_prime_export = exynos_dmabuf_prime_export,
312 .gem_prime_import = exynos_dmabuf_prime_import,
1c248b7d 313 .ioctls = exynos_ioctls,
baa70943 314 .num_ioctls = ARRAY_SIZE(exynos_ioctls),
ac2bdf73 315 .fops = &exynos_drm_driver_fops,
1c248b7d
ID
316 .name = DRIVER_NAME,
317 .desc = DRIVER_DESC,
318 .date = DRIVER_DATE,
319 .major = DRIVER_MAJOR,
320 .minor = DRIVER_MINOR,
321};
322
af65c804
SP
323#ifdef CONFIG_PM_SLEEP
324static int exynos_drm_sys_suspend(struct device *dev)
325{
326 struct drm_device *drm_dev = dev_get_drvdata(dev);
327 pm_message_t message;
328
d50a1907 329 if (pm_runtime_suspended(dev) || !drm_dev)
af65c804
SP
330 return 0;
331
332 message.event = PM_EVENT_SUSPEND;
333 return exynos_drm_suspend(drm_dev, message);
334}
335
336static int exynos_drm_sys_resume(struct device *dev)
337{
338 struct drm_device *drm_dev = dev_get_drvdata(dev);
339
d50a1907 340 if (pm_runtime_suspended(dev) || !drm_dev)
af65c804
SP
341 return 0;
342
343 return exynos_drm_resume(drm_dev);
344}
345#endif
346
af65c804
SP
347static const struct dev_pm_ops exynos_drm_pm_ops = {
348 SET_SYSTEM_SLEEP_PM_OPS(exynos_drm_sys_suspend, exynos_drm_sys_resume)
af65c804
SP
349};
350
f37cd5e8 351int exynos_drm_component_add(struct device *dev,
df5225bc
ID
352 enum exynos_drm_device_type dev_type,
353 enum exynos_drm_output_type out_type)
f37cd5e8
ID
354{
355 struct component_dev *cdev;
df5225bc
ID
356
357 if (dev_type != EXYNOS_DEVICE_TYPE_CRTC &&
358 dev_type != EXYNOS_DEVICE_TYPE_CONNECTOR) {
359 DRM_ERROR("invalid device type.\n");
360 return -EINVAL;
361 }
362
363 mutex_lock(&drm_component_lock);
364
365 /*
366 * Make sure to check if there is a component which has two device
367 * objects, for connector and for encoder/connector.
368 * It should make sure that crtc and encoder/connector drivers are
369 * ready before exynos drm core binds them.
370 */
371 list_for_each_entry(cdev, &drm_component_list, list) {
372 if (cdev->out_type == out_type) {
373 /*
374 * If crtc and encoder/connector device objects are
375 * added already just return.
376 */
377 if (cdev->dev_type_flag == (EXYNOS_DEVICE_TYPE_CRTC |
378 EXYNOS_DEVICE_TYPE_CONNECTOR)) {
379 mutex_unlock(&drm_component_lock);
380 return 0;
381 }
382
383 if (dev_type == EXYNOS_DEVICE_TYPE_CRTC) {
384 cdev->crtc_dev = dev;
385 cdev->dev_type_flag |= dev_type;
386 }
387
388 if (dev_type == EXYNOS_DEVICE_TYPE_CONNECTOR) {
389 cdev->conn_dev = dev;
390 cdev->dev_type_flag |= dev_type;
391 }
392
393 mutex_unlock(&drm_component_lock);
394 return 0;
395 }
396 }
397
398 mutex_unlock(&drm_component_lock);
f37cd5e8
ID
399
400 cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
401 if (!cdev)
402 return -ENOMEM;
403
df5225bc
ID
404 if (dev_type == EXYNOS_DEVICE_TYPE_CRTC)
405 cdev->crtc_dev = dev;
406 if (dev_type == EXYNOS_DEVICE_TYPE_CONNECTOR)
407 cdev->conn_dev = dev;
f37cd5e8 408
df5225bc
ID
409 cdev->out_type = out_type;
410 cdev->dev_type_flag = dev_type;
f37cd5e8
ID
411
412 mutex_lock(&drm_component_lock);
413 list_add_tail(&cdev->list, &drm_component_list);
414 mutex_unlock(&drm_component_lock);
415
416 return 0;
417}
418
419void exynos_drm_component_del(struct device *dev,
df5225bc 420 enum exynos_drm_device_type dev_type)
f37cd5e8
ID
421{
422 struct component_dev *cdev, *next;
423
424 mutex_lock(&drm_component_lock);
425
426 list_for_each_entry_safe(cdev, next, &drm_component_list, list) {
df5225bc
ID
427 if (dev_type == EXYNOS_DEVICE_TYPE_CRTC) {
428 if (cdev->crtc_dev == dev) {
429 cdev->crtc_dev = NULL;
430 cdev->dev_type_flag &= ~dev_type;
431 }
432 }
433
434 if (dev_type == EXYNOS_DEVICE_TYPE_CONNECTOR) {
435 if (cdev->conn_dev == dev) {
436 cdev->conn_dev = NULL;
437 cdev->dev_type_flag &= ~dev_type;
438 }
439 }
440
441 /*
442 * Release cdev object only in case that both of crtc and
443 * encoder/connector device objects are NULL.
444 */
445 if (!cdev->crtc_dev && !cdev->conn_dev) {
f37cd5e8
ID
446 list_del(&cdev->list);
447 kfree(cdev);
f37cd5e8
ID
448 }
449 }
450
451 mutex_unlock(&drm_component_lock);
f37cd5e8
ID
452}
453
53c5558d 454static int compare_dev(struct device *dev, void *data)
f37cd5e8
ID
455{
456 return dev == (struct device *)data;
457}
458
53c5558d 459static struct component_match *exynos_drm_match_add(struct device *dev)
f37cd5e8 460{
53c5558d 461 struct component_match *match = NULL;
f37cd5e8 462 struct component_dev *cdev;
df5225bc 463 unsigned int attach_cnt = 0;
f37cd5e8
ID
464
465 mutex_lock(&drm_component_lock);
466
f7c2f36f
ID
467 /* Do not retry to probe if there is no any kms driver regitered. */
468 if (list_empty(&drm_component_list)) {
469 mutex_unlock(&drm_component_lock);
470 return ERR_PTR(-ENODEV);
471 }
472
f37cd5e8 473 list_for_each_entry(cdev, &drm_component_list, list) {
df5225bc
ID
474 /*
475 * Add components to master only in case that crtc and
476 * encoder/connector device objects exist.
477 */
478 if (!cdev->crtc_dev || !cdev->conn_dev)
479 continue;
480
481 attach_cnt++;
482
f37cd5e8
ID
483 mutex_unlock(&drm_component_lock);
484
df5225bc
ID
485 /*
486 * fimd and dpi modules have same device object so add
487 * only crtc device object in this case.
df5225bc
ID
488 */
489 if (cdev->crtc_dev == cdev->conn_dev) {
53c5558d
ID
490 component_match_add(dev, &match, compare_dev,
491 cdev->crtc_dev);
df5225bc
ID
492 goto out_lock;
493 }
f37cd5e8 494
df5225bc
ID
495 /*
496 * Do not chage below call order.
497 * crtc device first should be added to master because
498 * connector/encoder need pipe number of crtc when they
499 * are created.
500 */
53c5558d
ID
501 component_match_add(dev, &match, compare_dev, cdev->crtc_dev);
502 component_match_add(dev, &match, compare_dev, cdev->conn_dev);
df5225bc
ID
503
504out_lock:
f37cd5e8
ID
505 mutex_lock(&drm_component_lock);
506 }
507
508 mutex_unlock(&drm_component_lock);
509
53c5558d 510 return attach_cnt ? match : ERR_PTR(-EPROBE_DEFER);
f37cd5e8
ID
511}
512
513static int exynos_drm_bind(struct device *dev)
514{
f37cd5e8
ID
515 return drm_platform_init(&exynos_drm_driver, to_platform_device(dev));
516}
517
518static void exynos_drm_unbind(struct device *dev)
519{
520 drm_put_dev(dev_get_drvdata(dev));
521}
522
523static const struct component_master_ops exynos_drm_ops = {
f37cd5e8
ID
524 .bind = exynos_drm_bind,
525 .unbind = exynos_drm_unbind,
1c248b7d
ID
526};
527
417133e4
AH
528static int exynos_drm_platform_probe(struct platform_device *pdev)
529{
530 struct component_match *match;
531
532 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
533 exynos_drm_driver.num_ioctls = ARRAY_SIZE(exynos_ioctls);
534
535 match = exynos_drm_match_add(&pdev->dev);
536 if (IS_ERR(match))
537 return PTR_ERR(match);
538
539 return component_master_add_with_match(&pdev->dev, &exynos_drm_ops,
540 match);
541}
542
543static int exynos_drm_platform_remove(struct platform_device *pdev)
544{
545 component_master_del(&pdev->dev, &exynos_drm_ops);
546 return 0;
547}
548
549static struct platform_driver exynos_drm_platform_driver = {
550 .probe = exynos_drm_platform_probe,
551 .remove = exynos_drm_platform_remove,
552 .driver = {
553 .name = "exynos-drm",
554 .pm = &exynos_drm_pm_ops,
555 },
556};
557
72390677 558static struct platform_driver *const exynos_drm_kms_drivers[] = {
417133e4
AH
559#ifdef CONFIG_DRM_EXYNOS_VIDI
560 &vidi_driver,
561#endif
f37cd5e8 562#ifdef CONFIG_DRM_EXYNOS_FIMD
72390677 563 &fimd_driver,
f37cd5e8 564#endif
96976c3d
AK
565#ifdef CONFIG_DRM_EXYNOS7_DECON
566 &decon_driver,
567#endif
1417f109 568#ifdef CONFIG_DRM_EXYNOS_DP
72390677 569 &dp_driver,
1417f109 570#endif
7eb8f069 571#ifdef CONFIG_DRM_EXYNOS_DSI
72390677 572 &dsi_driver,
7eb8f069 573#endif
132a5b91 574#ifdef CONFIG_DRM_EXYNOS_HDMI
72390677
AH
575 &mixer_driver,
576 &hdmi_driver,
b73d1230 577#endif
72390677 578};
b73d1230 579
72390677 580static struct platform_driver *const exynos_drm_non_kms_drivers[] = {
d7f1642c 581#ifdef CONFIG_DRM_EXYNOS_G2D
72390677 582 &g2d_driver,
d7f1642c 583#endif
16102edb 584#ifdef CONFIG_DRM_EXYNOS_FIMC
72390677 585 &fimc_driver,
16102edb 586#endif
bea8a429 587#ifdef CONFIG_DRM_EXYNOS_ROTATOR
72390677 588 &rotator_driver,
bea8a429 589#endif
f2646380 590#ifdef CONFIG_DRM_EXYNOS_GSC
72390677 591 &gsc_driver,
cb471f14 592#endif
cb471f14 593#ifdef CONFIG_DRM_EXYNOS_IPP
72390677 594 &ipp_driver,
f2646380 595#endif
417133e4 596 &exynos_drm_platform_driver,
72390677 597};
f2646380 598
417133e4
AH
599
600static struct platform_driver *const exynos_drm_drv_with_simple_dev[] = {
601#ifdef CONFIG_DRM_EXYNOS_VIDI
602 &vidi_driver,
603#endif
604#ifdef CONFIG_DRM_EXYNOS_IPP
605 &ipp_driver,
606#endif
607 &exynos_drm_platform_driver,
608};
609
610#define PDEV_COUNT ARRAY_SIZE(exynos_drm_drv_with_simple_dev)
611
612static struct platform_device *exynos_drm_pdevs[PDEV_COUNT];
613
614static void exynos_drm_unregister_devices(void)
72390677 615{
417133e4 616 int i = PDEV_COUNT;
25928a39 617
417133e4
AH
618 while (--i >= 0) {
619 platform_device_unregister(exynos_drm_pdevs[i]);
620 exynos_drm_pdevs[i] = NULL;
621 }
622}
7eb8f069 623
417133e4
AH
624static int exynos_drm_register_devices(void)
625{
626 int i;
627
628 for (i = 0; i < PDEV_COUNT; ++i) {
629 struct platform_driver *d = exynos_drm_drv_with_simple_dev[i];
630 struct platform_device *pdev =
631 platform_device_register_simple(d->driver.name, -1,
632 NULL, 0);
633
634 if (!IS_ERR(pdev)) {
635 exynos_drm_pdevs[i] = pdev;
636 continue;
637 }
638 while (--i >= 0) {
639 platform_device_unregister(exynos_drm_pdevs[i]);
640 exynos_drm_pdevs[i] = NULL;
641 }
642
643 return PTR_ERR(pdev);
72390677 644 }
f37cd5e8 645
417133e4 646 return 0;
1c248b7d
ID
647}
648
417133e4
AH
649static void exynos_drm_unregister_drivers(struct platform_driver * const *drv,
650 int count)
1c248b7d 651{
417133e4
AH
652 while (--count >= 0)
653 platform_driver_unregister(drv[count]);
654}
655
656static int exynos_drm_register_drivers(struct platform_driver * const *drv,
657 int count)
658{
659 int i, ret;
660
661 for (i = 0; i < count; ++i) {
662 ret = platform_driver_register(drv[i]);
663 if (!ret)
664 continue;
665
666 while (--i >= 0)
667 platform_driver_unregister(drv[i]);
668
669 return ret;
670 }
671
f37cd5e8
ID
672 return 0;
673}
674
417133e4
AH
675static inline int exynos_drm_register_kms_drivers(void)
676{
677 return exynos_drm_register_drivers(exynos_drm_kms_drivers,
678 ARRAY_SIZE(exynos_drm_kms_drivers));
679}
680
681static inline int exynos_drm_register_non_kms_drivers(void)
682{
683 return exynos_drm_register_drivers(exynos_drm_non_kms_drivers,
684 ARRAY_SIZE(exynos_drm_non_kms_drivers));
685}
686
687static inline void exynos_drm_unregister_kms_drivers(void)
688{
689 exynos_drm_unregister_drivers(exynos_drm_kms_drivers,
690 ARRAY_SIZE(exynos_drm_kms_drivers));
691}
692
693static inline void exynos_drm_unregister_non_kms_drivers(void)
694{
695 exynos_drm_unregister_drivers(exynos_drm_non_kms_drivers,
696 ARRAY_SIZE(exynos_drm_non_kms_drivers));
697}
698
4846e452
ID
699static const char * const strings[] = {
700 "samsung,exynos3",
701 "samsung,exynos4",
702 "samsung,exynos5",
96976c3d 703 "samsung,exynos7",
4846e452
ID
704};
705
f37cd5e8
ID
706static int exynos_drm_init(void)
707{
4846e452 708 bool is_exynos = false;
417133e4 709 int ret, i;
f37cd5e8 710
5cbb37df
ID
711 /*
712 * Register device object only in case of Exynos SoC.
713 *
714 * Below codes resolves temporarily infinite loop issue incurred
715 * by Exynos drm driver when using multi-platform kernel.
716 * So these codes will be replaced with more generic way later.
717 */
4846e452
ID
718 for (i = 0; i < ARRAY_SIZE(strings); i++) {
719 if (of_machine_is_compatible(strings[i])) {
720 is_exynos = true;
721 break;
722 }
723 }
724
725 if (!is_exynos)
5cbb37df 726 return -ENODEV;
f37cd5e8 727
417133e4
AH
728 ret = exynos_drm_register_devices();
729 if (ret)
730 return ret;
820687be 731
417133e4
AH
732 ret = exynos_drm_register_kms_drivers();
733 if (ret)
734 goto err_unregister_pdevs;
f37cd5e8 735
417133e4 736 ret = exynos_drm_register_non_kms_drivers();
f37cd5e8 737 if (ret)
417133e4 738 goto err_unregister_kms_drivers;
f37cd5e8
ID
739
740 return 0;
741
820687be 742err_unregister_kms_drivers:
417133e4 743 exynos_drm_unregister_kms_drivers();
820687be 744
417133e4
AH
745err_unregister_pdevs:
746 exynos_drm_unregister_devices();
f37cd5e8
ID
747
748 return ret;
749}
750
751static void exynos_drm_exit(void)
752{
417133e4
AH
753 exynos_drm_unregister_non_kms_drivers();
754 exynos_drm_unregister_kms_drivers();
755 exynos_drm_unregister_devices();
1c248b7d
ID
756}
757
758module_init(exynos_drm_init);
759module_exit(exynos_drm_exit);
760
761MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
762MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
763MODULE_AUTHOR("Seung-Woo Kim <sw0312.kim@samsung.com>");
764MODULE_DESCRIPTION("Samsung SoC DRM Driver");
765MODULE_LICENSE("GPL");