2 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * Inki Dae <inki.dae@samsung.com>
5 * Joonyoung Shim <jy0922.shim@samsung.com>
6 * Seung-Woo Kim <sw0312.kim@samsung.com>
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.
14 #include <linux/pm_runtime.h>
16 #include <drm/drm_atomic.h>
17 #include <drm/drm_atomic_helper.h>
18 #include <drm/drm_crtc_helper.h>
20 #include <linux/component.h>
22 #include <drm/exynos_drm.h>
24 #include "exynos_drm_drv.h"
25 #include "exynos_drm_fbdev.h"
26 #include "exynos_drm_fb.h"
27 #include "exynos_drm_gem.h"
28 #include "exynos_drm_plane.h"
29 #include "exynos_drm_vidi.h"
30 #include "exynos_drm_g2d.h"
31 #include "exynos_drm_ipp.h"
32 #include "exynos_drm_iommu.h"
34 #define DRIVER_NAME "exynos"
35 #define DRIVER_DESC "Samsung SoC DRM"
36 #define DRIVER_DATE "20110530"
37 #define DRIVER_MAJOR 1
38 #define DRIVER_MINOR 0
40 static struct device
*exynos_drm_get_dma_device(void);
42 int exynos_atomic_check(struct drm_device
*dev
,
43 struct drm_atomic_state
*state
)
47 ret
= drm_atomic_helper_check_modeset(dev
, state
);
51 ret
= drm_atomic_normalize_zpos(dev
, state
);
55 ret
= drm_atomic_helper_check_planes(dev
, state
);
62 static int exynos_drm_open(struct drm_device
*dev
, struct drm_file
*file
)
64 struct drm_exynos_file_private
*file_priv
;
67 file_priv
= kzalloc(sizeof(*file_priv
), GFP_KERNEL
);
71 file
->driver_priv
= file_priv
;
73 ret
= exynos_drm_subdrv_open(dev
, file
);
75 goto err_file_priv_free
;
81 file
->driver_priv
= NULL
;
85 static void exynos_drm_postclose(struct drm_device
*dev
, struct drm_file
*file
)
87 exynos_drm_subdrv_close(dev
, file
);
88 kfree(file
->driver_priv
);
89 file
->driver_priv
= NULL
;
92 static void exynos_drm_lastclose(struct drm_device
*dev
)
94 exynos_drm_fbdev_restore_mode(dev
);
97 static const struct vm_operations_struct exynos_drm_gem_vm_ops
= {
98 .fault
= exynos_drm_gem_fault
,
99 .open
= drm_gem_vm_open
,
100 .close
= drm_gem_vm_close
,
103 static const struct drm_ioctl_desc exynos_ioctls
[] = {
104 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_CREATE
, exynos_drm_gem_create_ioctl
,
105 DRM_AUTH
| DRM_RENDER_ALLOW
),
106 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_MAP
, exynos_drm_gem_map_ioctl
,
107 DRM_AUTH
| DRM_RENDER_ALLOW
),
108 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_GET
, exynos_drm_gem_get_ioctl
,
110 DRM_IOCTL_DEF_DRV(EXYNOS_VIDI_CONNECTION
, vidi_connection_ioctl
,
112 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_GET_VER
, exynos_g2d_get_ver_ioctl
,
113 DRM_AUTH
| DRM_RENDER_ALLOW
),
114 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_SET_CMDLIST
, exynos_g2d_set_cmdlist_ioctl
,
115 DRM_AUTH
| DRM_RENDER_ALLOW
),
116 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_EXEC
, exynos_g2d_exec_ioctl
,
117 DRM_AUTH
| DRM_RENDER_ALLOW
),
118 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_PROPERTY
, exynos_drm_ipp_get_property
,
119 DRM_AUTH
| DRM_RENDER_ALLOW
),
120 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_SET_PROPERTY
, exynos_drm_ipp_set_property
,
121 DRM_AUTH
| DRM_RENDER_ALLOW
),
122 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_QUEUE_BUF
, exynos_drm_ipp_queue_buf
,
123 DRM_AUTH
| DRM_RENDER_ALLOW
),
124 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_CMD_CTRL
, exynos_drm_ipp_cmd_ctrl
,
125 DRM_AUTH
| DRM_RENDER_ALLOW
),
128 static const struct file_operations exynos_drm_driver_fops
= {
129 .owner
= THIS_MODULE
,
131 .mmap
= exynos_drm_gem_mmap
,
134 .unlocked_ioctl
= drm_ioctl
,
135 .compat_ioctl
= drm_compat_ioctl
,
136 .release
= drm_release
,
139 static struct drm_driver exynos_drm_driver
= {
140 .driver_features
= DRIVER_MODESET
| DRIVER_GEM
| DRIVER_PRIME
141 | DRIVER_ATOMIC
| DRIVER_RENDER
,
142 .open
= exynos_drm_open
,
143 .lastclose
= exynos_drm_lastclose
,
144 .postclose
= exynos_drm_postclose
,
145 .gem_free_object_unlocked
= exynos_drm_gem_free_object
,
146 .gem_vm_ops
= &exynos_drm_gem_vm_ops
,
147 .dumb_create
= exynos_drm_gem_dumb_create
,
148 .dumb_map_offset
= exynos_drm_gem_dumb_map_offset
,
149 .dumb_destroy
= drm_gem_dumb_destroy
,
150 .prime_handle_to_fd
= drm_gem_prime_handle_to_fd
,
151 .prime_fd_to_handle
= drm_gem_prime_fd_to_handle
,
152 .gem_prime_export
= drm_gem_prime_export
,
153 .gem_prime_import
= drm_gem_prime_import
,
154 .gem_prime_get_sg_table
= exynos_drm_gem_prime_get_sg_table
,
155 .gem_prime_import_sg_table
= exynos_drm_gem_prime_import_sg_table
,
156 .gem_prime_vmap
= exynos_drm_gem_prime_vmap
,
157 .gem_prime_vunmap
= exynos_drm_gem_prime_vunmap
,
158 .gem_prime_mmap
= exynos_drm_gem_prime_mmap
,
159 .ioctls
= exynos_ioctls
,
160 .num_ioctls
= ARRAY_SIZE(exynos_ioctls
),
161 .fops
= &exynos_drm_driver_fops
,
165 .major
= DRIVER_MAJOR
,
166 .minor
= DRIVER_MINOR
,
169 #ifdef CONFIG_PM_SLEEP
170 static int exynos_drm_suspend(struct device
*dev
)
172 struct drm_device
*drm_dev
= dev_get_drvdata(dev
);
173 struct drm_connector
*connector
;
174 struct drm_connector_list_iter conn_iter
;
176 if (pm_runtime_suspended(dev
) || !drm_dev
)
179 drm_connector_list_iter_begin(drm_dev
, &conn_iter
);
180 drm_for_each_connector_iter(connector
, &conn_iter
) {
181 int old_dpms
= connector
->dpms
;
183 if (connector
->funcs
->dpms
)
184 connector
->funcs
->dpms(connector
, DRM_MODE_DPMS_OFF
);
186 /* Set the old mode back to the connector for resume */
187 connector
->dpms
= old_dpms
;
189 drm_connector_list_iter_end(&conn_iter
);
194 static int exynos_drm_resume(struct device
*dev
)
196 struct drm_device
*drm_dev
= dev_get_drvdata(dev
);
197 struct drm_connector
*connector
;
198 struct drm_connector_list_iter conn_iter
;
200 if (pm_runtime_suspended(dev
) || !drm_dev
)
203 drm_connector_list_iter_begin(drm_dev
, &conn_iter
);
204 drm_for_each_connector_iter(connector
, &conn_iter
) {
205 if (connector
->funcs
->dpms
) {
206 int dpms
= connector
->dpms
;
208 connector
->dpms
= DRM_MODE_DPMS_OFF
;
209 connector
->funcs
->dpms(connector
, dpms
);
212 drm_connector_list_iter_end(&conn_iter
);
218 static const struct dev_pm_ops exynos_drm_pm_ops
= {
219 SET_SYSTEM_SLEEP_PM_OPS(exynos_drm_suspend
, exynos_drm_resume
)
222 /* forward declaration */
223 static struct platform_driver exynos_drm_platform_driver
;
225 struct exynos_drm_driver_info
{
226 struct platform_driver
*driver
;
230 #define DRM_COMPONENT_DRIVER BIT(0) /* supports component framework */
231 #define DRM_VIRTUAL_DEVICE BIT(1) /* create virtual platform device */
232 #define DRM_DMA_DEVICE BIT(2) /* can be used for dma allocations */
234 #define DRV_PTR(drv, cond) (IS_ENABLED(cond) ? &drv : NULL)
237 * Connector drivers should not be placed before associated crtc drivers,
238 * because connector requires pipe number of its crtc during initialization.
240 static struct exynos_drm_driver_info exynos_drm_drivers
[] = {
242 DRV_PTR(fimd_driver
, CONFIG_DRM_EXYNOS_FIMD
),
243 DRM_COMPONENT_DRIVER
| DRM_DMA_DEVICE
245 DRV_PTR(exynos5433_decon_driver
, CONFIG_DRM_EXYNOS5433_DECON
),
246 DRM_COMPONENT_DRIVER
| DRM_DMA_DEVICE
248 DRV_PTR(decon_driver
, CONFIG_DRM_EXYNOS7_DECON
),
249 DRM_COMPONENT_DRIVER
| DRM_DMA_DEVICE
251 DRV_PTR(mixer_driver
, CONFIG_DRM_EXYNOS_MIXER
),
252 DRM_COMPONENT_DRIVER
| DRM_DMA_DEVICE
254 DRV_PTR(mic_driver
, CONFIG_DRM_EXYNOS_MIC
),
257 DRV_PTR(dp_driver
, CONFIG_DRM_EXYNOS_DP
),
260 DRV_PTR(dsi_driver
, CONFIG_DRM_EXYNOS_DSI
),
263 DRV_PTR(hdmi_driver
, CONFIG_DRM_EXYNOS_HDMI
),
266 DRV_PTR(vidi_driver
, CONFIG_DRM_EXYNOS_VIDI
),
267 DRM_COMPONENT_DRIVER
| DRM_VIRTUAL_DEVICE
269 DRV_PTR(g2d_driver
, CONFIG_DRM_EXYNOS_G2D
),
271 DRV_PTR(fimc_driver
, CONFIG_DRM_EXYNOS_FIMC
),
273 DRV_PTR(rotator_driver
, CONFIG_DRM_EXYNOS_ROTATOR
),
275 DRV_PTR(gsc_driver
, CONFIG_DRM_EXYNOS_GSC
),
277 DRV_PTR(ipp_driver
, CONFIG_DRM_EXYNOS_IPP
),
280 &exynos_drm_platform_driver
,
285 static int compare_dev(struct device
*dev
, void *data
)
287 return dev
== (struct device
*)data
;
290 static struct component_match
*exynos_drm_match_add(struct device
*dev
)
292 struct component_match
*match
= NULL
;
295 for (i
= 0; i
< ARRAY_SIZE(exynos_drm_drivers
); ++i
) {
296 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
297 struct device
*p
= NULL
, *d
;
299 if (!info
->driver
|| !(info
->flags
& DRM_COMPONENT_DRIVER
))
302 while ((d
= bus_find_device(&platform_bus_type
, p
,
303 &info
->driver
->driver
,
304 (void *)platform_bus_type
.match
))) {
306 component_match_add(dev
, &match
, compare_dev
, d
);
312 return match
?: ERR_PTR(-ENODEV
);
315 static int exynos_drm_bind(struct device
*dev
)
317 struct exynos_drm_private
*private;
318 struct drm_encoder
*encoder
;
319 struct drm_device
*drm
;
320 unsigned int clone_mask
;
323 drm
= drm_dev_alloc(&exynos_drm_driver
, dev
);
327 private = kzalloc(sizeof(struct exynos_drm_private
), GFP_KERNEL
);
333 init_waitqueue_head(&private->wait
);
334 spin_lock_init(&private->lock
);
336 dev_set_drvdata(dev
, drm
);
337 drm
->dev_private
= (void *)private;
339 /* the first real CRTC device is used for all dma mapping operations */
340 private->dma_dev
= exynos_drm_get_dma_device();
341 if (!private->dma_dev
) {
342 DRM_ERROR("no device found for DMA mapping operations.\n");
344 goto err_free_private
;
346 DRM_INFO("Exynos DRM: using %s device for DMA mapping operations\n",
347 dev_name(private->dma_dev
));
349 /* create common IOMMU mapping for all devices attached to Exynos DRM */
350 ret
= drm_create_iommu_mapping(drm
);
352 DRM_ERROR("failed to create iommu mapping.\n");
353 goto err_free_private
;
356 drm_mode_config_init(drm
);
358 exynos_drm_mode_config_init(drm
);
360 /* setup possible_clones. */
363 list_for_each_entry(encoder
, &drm
->mode_config
.encoder_list
, head
)
364 clone_mask
|= (1 << (cnt
++));
366 list_for_each_entry(encoder
, &drm
->mode_config
.encoder_list
, head
)
367 encoder
->possible_clones
= clone_mask
;
369 /* Try to bind all sub drivers. */
370 ret
= component_bind_all(drm
->dev
, drm
);
372 goto err_mode_config_cleanup
;
374 ret
= drm_vblank_init(drm
, drm
->mode_config
.num_crtc
);
378 /* Probe non kms sub drivers and virtual display driver. */
379 ret
= exynos_drm_device_subdrv_probe(drm
);
383 drm_mode_config_reset(drm
);
386 * enable drm irq mode.
387 * - with irq_enabled = true, we can use the vblank feature.
389 * P.S. note that we wouldn't use drm irq handler but
390 * just specific driver own one instead because
391 * drm framework supports only one irq handler.
393 drm
->irq_enabled
= true;
395 /* init kms poll for handling hpd */
396 drm_kms_helper_poll_init(drm
);
398 /* force connectors detection */
399 drm_helper_hpd_irq_event(drm
);
401 /* register the DRM device */
402 ret
= drm_dev_register(drm
, 0);
404 goto err_cleanup_fbdev
;
409 exynos_drm_fbdev_fini(drm
);
410 drm_kms_helper_poll_fini(drm
);
411 exynos_drm_device_subdrv_remove(drm
);
413 component_unbind_all(drm
->dev
, drm
);
414 err_mode_config_cleanup
:
415 drm_mode_config_cleanup(drm
);
416 drm_release_iommu_mapping(drm
);
425 static void exynos_drm_unbind(struct device
*dev
)
427 struct drm_device
*drm
= dev_get_drvdata(dev
);
429 drm_dev_unregister(drm
);
431 exynos_drm_device_subdrv_remove(drm
);
433 exynos_drm_fbdev_fini(drm
);
434 drm_kms_helper_poll_fini(drm
);
436 component_unbind_all(drm
->dev
, drm
);
437 drm_mode_config_cleanup(drm
);
438 drm_release_iommu_mapping(drm
);
440 kfree(drm
->dev_private
);
441 drm
->dev_private
= NULL
;
446 static const struct component_master_ops exynos_drm_ops
= {
447 .bind
= exynos_drm_bind
,
448 .unbind
= exynos_drm_unbind
,
451 static int exynos_drm_platform_probe(struct platform_device
*pdev
)
453 struct component_match
*match
;
455 pdev
->dev
.coherent_dma_mask
= DMA_BIT_MASK(32);
456 exynos_drm_driver
.num_ioctls
= ARRAY_SIZE(exynos_ioctls
);
458 match
= exynos_drm_match_add(&pdev
->dev
);
460 return PTR_ERR(match
);
462 return component_master_add_with_match(&pdev
->dev
, &exynos_drm_ops
,
466 static int exynos_drm_platform_remove(struct platform_device
*pdev
)
468 component_master_del(&pdev
->dev
, &exynos_drm_ops
);
472 static struct platform_driver exynos_drm_platform_driver
= {
473 .probe
= exynos_drm_platform_probe
,
474 .remove
= exynos_drm_platform_remove
,
476 .name
= "exynos-drm",
477 .pm
= &exynos_drm_pm_ops
,
481 static struct device
*exynos_drm_get_dma_device(void)
485 for (i
= 0; i
< ARRAY_SIZE(exynos_drm_drivers
); ++i
) {
486 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
489 if (!info
->driver
|| !(info
->flags
& DRM_DMA_DEVICE
))
492 while ((dev
= bus_find_device(&platform_bus_type
, NULL
,
493 &info
->driver
->driver
,
494 (void *)platform_bus_type
.match
))) {
502 static void exynos_drm_unregister_devices(void)
506 for (i
= ARRAY_SIZE(exynos_drm_drivers
) - 1; i
>= 0; --i
) {
507 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
510 if (!info
->driver
|| !(info
->flags
& DRM_VIRTUAL_DEVICE
))
513 while ((dev
= bus_find_device(&platform_bus_type
, NULL
,
514 &info
->driver
->driver
,
515 (void *)platform_bus_type
.match
))) {
517 platform_device_unregister(to_platform_device(dev
));
522 static int exynos_drm_register_devices(void)
524 struct platform_device
*pdev
;
527 for (i
= 0; i
< ARRAY_SIZE(exynos_drm_drivers
); ++i
) {
528 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
530 if (!info
->driver
|| !(info
->flags
& DRM_VIRTUAL_DEVICE
))
533 pdev
= platform_device_register_simple(
534 info
->driver
->driver
.name
, -1, NULL
, 0);
541 exynos_drm_unregister_devices();
542 return PTR_ERR(pdev
);
545 static void exynos_drm_unregister_drivers(void)
549 for (i
= ARRAY_SIZE(exynos_drm_drivers
) - 1; i
>= 0; --i
) {
550 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
555 platform_driver_unregister(info
->driver
);
559 static int exynos_drm_register_drivers(void)
563 for (i
= 0; i
< ARRAY_SIZE(exynos_drm_drivers
); ++i
) {
564 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
569 ret
= platform_driver_register(info
->driver
);
575 exynos_drm_unregister_drivers();
579 static int exynos_drm_init(void)
583 ret
= exynos_drm_register_devices();
587 ret
= exynos_drm_register_drivers();
589 goto err_unregister_pdevs
;
593 err_unregister_pdevs
:
594 exynos_drm_unregister_devices();
599 static void exynos_drm_exit(void)
601 exynos_drm_unregister_drivers();
602 exynos_drm_unregister_devices();
605 module_init(exynos_drm_init
);
606 module_exit(exynos_drm_exit
);
608 MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
609 MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
610 MODULE_AUTHOR("Seung-Woo Kim <sw0312.kim@samsung.com>");
611 MODULE_DESCRIPTION("Samsung SoC DRM Driver");
612 MODULE_LICENSE("GPL");