1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * Inki Dae <inki.dae@samsung.com>
6 * Joonyoung Shim <jy0922.shim@samsung.com>
7 * Seung-Woo Kim <sw0312.kim@samsung.com>
10 #include <linux/component.h>
11 #include <linux/dma-mapping.h>
12 #include <linux/platform_device.h>
13 #include <linux/pm_runtime.h>
14 #include <linux/uaccess.h>
16 #include <drm/drm_atomic.h>
17 #include <drm/drm_atomic_helper.h>
18 #include <drm/drm_drv.h>
19 #include <drm/drm_fb_helper.h>
20 #include <drm/drm_file.h>
21 #include <drm/drm_fourcc.h>
22 #include <drm/drm_ioctl.h>
23 #include <drm/drm_probe_helper.h>
24 #include <drm/drm_vblank.h>
25 #include <drm/exynos_drm.h>
27 #include "exynos_drm_drv.h"
28 #include "exynos_drm_fb.h"
29 #include "exynos_drm_fbdev.h"
30 #include "exynos_drm_g2d.h"
31 #include "exynos_drm_gem.h"
32 #include "exynos_drm_ipp.h"
33 #include "exynos_drm_plane.h"
34 #include "exynos_drm_vidi.h"
36 #define DRIVER_NAME "exynos"
37 #define DRIVER_DESC "Samsung SoC DRM"
38 #define DRIVER_DATE "20180330"
43 * 1.0 - Original version
44 * 1.1 - Upgrade IPP driver to version 2.0
46 #define DRIVER_MAJOR 1
47 #define DRIVER_MINOR 1
49 static int exynos_drm_open(struct drm_device
*dev
, struct drm_file
*file
)
51 struct drm_exynos_file_private
*file_priv
;
54 file_priv
= kzalloc(sizeof(*file_priv
), GFP_KERNEL
);
58 file
->driver_priv
= file_priv
;
59 ret
= g2d_open(dev
, file
);
61 goto err_file_priv_free
;
67 file
->driver_priv
= NULL
;
71 static void exynos_drm_postclose(struct drm_device
*dev
, struct drm_file
*file
)
74 kfree(file
->driver_priv
);
75 file
->driver_priv
= NULL
;
78 static const struct vm_operations_struct exynos_drm_gem_vm_ops
= {
79 .fault
= exynos_drm_gem_fault
,
80 .open
= drm_gem_vm_open
,
81 .close
= drm_gem_vm_close
,
84 static const struct drm_ioctl_desc exynos_ioctls
[] = {
85 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_CREATE
, exynos_drm_gem_create_ioctl
,
87 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_MAP
, exynos_drm_gem_map_ioctl
,
89 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_GET
, exynos_drm_gem_get_ioctl
,
91 DRM_IOCTL_DEF_DRV(EXYNOS_VIDI_CONNECTION
, vidi_connection_ioctl
,
93 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_GET_VER
, exynos_g2d_get_ver_ioctl
,
95 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_SET_CMDLIST
, exynos_g2d_set_cmdlist_ioctl
,
97 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_EXEC
, exynos_g2d_exec_ioctl
,
99 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_RESOURCES
,
100 exynos_drm_ipp_get_res_ioctl
,
102 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_CAPS
, exynos_drm_ipp_get_caps_ioctl
,
104 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_LIMITS
,
105 exynos_drm_ipp_get_limits_ioctl
,
107 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_COMMIT
, exynos_drm_ipp_commit_ioctl
,
111 static const struct file_operations exynos_drm_driver_fops
= {
112 .owner
= THIS_MODULE
,
114 .mmap
= exynos_drm_gem_mmap
,
117 .unlocked_ioctl
= drm_ioctl
,
118 .compat_ioctl
= drm_compat_ioctl
,
119 .release
= drm_release
,
122 static struct drm_driver exynos_drm_driver
= {
123 .driver_features
= DRIVER_MODESET
| DRIVER_GEM
124 | DRIVER_ATOMIC
| DRIVER_RENDER
,
125 .open
= exynos_drm_open
,
126 .lastclose
= drm_fb_helper_lastclose
,
127 .postclose
= exynos_drm_postclose
,
128 .gem_free_object_unlocked
= exynos_drm_gem_free_object
,
129 .gem_vm_ops
= &exynos_drm_gem_vm_ops
,
130 .dumb_create
= exynos_drm_gem_dumb_create
,
131 .prime_handle_to_fd
= drm_gem_prime_handle_to_fd
,
132 .prime_fd_to_handle
= drm_gem_prime_fd_to_handle
,
133 .gem_prime_import
= exynos_drm_gem_prime_import
,
134 .gem_prime_get_sg_table
= exynos_drm_gem_prime_get_sg_table
,
135 .gem_prime_import_sg_table
= exynos_drm_gem_prime_import_sg_table
,
136 .gem_prime_vmap
= exynos_drm_gem_prime_vmap
,
137 .gem_prime_vunmap
= exynos_drm_gem_prime_vunmap
,
138 .gem_prime_mmap
= exynos_drm_gem_prime_mmap
,
139 .ioctls
= exynos_ioctls
,
140 .num_ioctls
= ARRAY_SIZE(exynos_ioctls
),
141 .fops
= &exynos_drm_driver_fops
,
145 .major
= DRIVER_MAJOR
,
146 .minor
= DRIVER_MINOR
,
149 static int exynos_drm_suspend(struct device
*dev
)
151 struct drm_device
*drm_dev
= dev_get_drvdata(dev
);
153 return drm_mode_config_helper_suspend(drm_dev
);
156 static void exynos_drm_resume(struct device
*dev
)
158 struct drm_device
*drm_dev
= dev_get_drvdata(dev
);
160 drm_mode_config_helper_resume(drm_dev
);
163 static const struct dev_pm_ops exynos_drm_pm_ops
= {
164 .prepare
= exynos_drm_suspend
,
165 .complete
= exynos_drm_resume
,
168 /* forward declaration */
169 static struct platform_driver exynos_drm_platform_driver
;
171 struct exynos_drm_driver_info
{
172 struct platform_driver
*driver
;
176 #define DRM_COMPONENT_DRIVER BIT(0) /* supports component framework */
177 #define DRM_VIRTUAL_DEVICE BIT(1) /* create virtual platform device */
178 #define DRM_FIMC_DEVICE BIT(2) /* devices shared with V4L2 subsystem */
180 #define DRV_PTR(drv, cond) (IS_ENABLED(cond) ? &drv : NULL)
183 * Connector drivers should not be placed before associated crtc drivers,
184 * because connector requires pipe number of its crtc during initialization.
186 static struct exynos_drm_driver_info exynos_drm_drivers
[] = {
188 DRV_PTR(fimd_driver
, CONFIG_DRM_EXYNOS_FIMD
),
191 DRV_PTR(exynos5433_decon_driver
, CONFIG_DRM_EXYNOS5433_DECON
),
194 DRV_PTR(decon_driver
, CONFIG_DRM_EXYNOS7_DECON
),
197 DRV_PTR(mixer_driver
, CONFIG_DRM_EXYNOS_MIXER
),
200 DRV_PTR(mic_driver
, CONFIG_DRM_EXYNOS_MIC
),
203 DRV_PTR(dp_driver
, CONFIG_DRM_EXYNOS_DP
),
206 DRV_PTR(dsi_driver
, CONFIG_DRM_EXYNOS_DSI
),
209 DRV_PTR(hdmi_driver
, CONFIG_DRM_EXYNOS_HDMI
),
212 DRV_PTR(vidi_driver
, CONFIG_DRM_EXYNOS_VIDI
),
213 DRM_COMPONENT_DRIVER
| DRM_VIRTUAL_DEVICE
215 DRV_PTR(g2d_driver
, CONFIG_DRM_EXYNOS_G2D
),
218 DRV_PTR(fimc_driver
, CONFIG_DRM_EXYNOS_FIMC
),
219 DRM_COMPONENT_DRIVER
| DRM_FIMC_DEVICE
,
221 DRV_PTR(rotator_driver
, CONFIG_DRM_EXYNOS_ROTATOR
),
224 DRV_PTR(scaler_driver
, CONFIG_DRM_EXYNOS_SCALER
),
227 DRV_PTR(gsc_driver
, CONFIG_DRM_EXYNOS_GSC
),
230 &exynos_drm_platform_driver
,
235 static int compare_dev(struct device
*dev
, void *data
)
237 return dev
== (struct device
*)data
;
240 static struct component_match
*exynos_drm_match_add(struct device
*dev
)
242 struct component_match
*match
= NULL
;
245 for (i
= 0; i
< ARRAY_SIZE(exynos_drm_drivers
); ++i
) {
246 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
247 struct device
*p
= NULL
, *d
;
249 if (!info
->driver
|| !(info
->flags
& DRM_COMPONENT_DRIVER
))
252 while ((d
= platform_find_device_by_driver(p
, &info
->driver
->driver
))) {
255 if (!(info
->flags
& DRM_FIMC_DEVICE
) ||
256 exynos_drm_check_fimc_device(d
) == 0)
257 component_match_add(dev
, &match
,
264 return match
?: ERR_PTR(-ENODEV
);
267 static int exynos_drm_bind(struct device
*dev
)
269 struct exynos_drm_private
*private;
270 struct drm_encoder
*encoder
;
271 struct drm_device
*drm
;
272 unsigned int clone_mask
;
275 drm
= drm_dev_alloc(&exynos_drm_driver
, dev
);
279 private = kzalloc(sizeof(struct exynos_drm_private
), GFP_KERNEL
);
285 init_waitqueue_head(&private->wait
);
286 spin_lock_init(&private->lock
);
288 dev_set_drvdata(dev
, drm
);
289 drm
->dev_private
= (void *)private;
291 drm_mode_config_init(drm
);
293 exynos_drm_mode_config_init(drm
);
295 /* setup possible_clones. */
298 list_for_each_entry(encoder
, &drm
->mode_config
.encoder_list
, head
)
299 clone_mask
|= (1 << (cnt
++));
301 list_for_each_entry(encoder
, &drm
->mode_config
.encoder_list
, head
)
302 encoder
->possible_clones
= clone_mask
;
304 /* Try to bind all sub drivers. */
305 ret
= component_bind_all(drm
->dev
, drm
);
307 goto err_mode_config_cleanup
;
309 ret
= drm_vblank_init(drm
, drm
->mode_config
.num_crtc
);
313 drm_mode_config_reset(drm
);
316 * enable drm irq mode.
317 * - with irq_enabled = true, we can use the vblank feature.
319 * P.S. note that we wouldn't use drm irq handler but
320 * just specific driver own one instead because
321 * drm framework supports only one irq handler.
323 drm
->irq_enabled
= true;
325 /* init kms poll for handling hpd */
326 drm_kms_helper_poll_init(drm
);
328 ret
= exynos_drm_fbdev_init(drm
);
330 goto err_cleanup_poll
;
332 /* register the DRM device */
333 ret
= drm_dev_register(drm
, 0);
335 goto err_cleanup_fbdev
;
340 exynos_drm_fbdev_fini(drm
);
342 drm_kms_helper_poll_fini(drm
);
344 component_unbind_all(drm
->dev
, drm
);
345 err_mode_config_cleanup
:
346 drm_mode_config_cleanup(drm
);
347 exynos_drm_cleanup_dma(drm
);
355 static void exynos_drm_unbind(struct device
*dev
)
357 struct drm_device
*drm
= dev_get_drvdata(dev
);
359 drm_dev_unregister(drm
);
361 exynos_drm_fbdev_fini(drm
);
362 drm_kms_helper_poll_fini(drm
);
364 component_unbind_all(drm
->dev
, drm
);
365 drm_mode_config_cleanup(drm
);
366 exynos_drm_cleanup_dma(drm
);
368 kfree(drm
->dev_private
);
369 drm
->dev_private
= NULL
;
370 dev_set_drvdata(dev
, NULL
);
375 static const struct component_master_ops exynos_drm_ops
= {
376 .bind
= exynos_drm_bind
,
377 .unbind
= exynos_drm_unbind
,
380 static int exynos_drm_platform_probe(struct platform_device
*pdev
)
382 struct component_match
*match
;
384 pdev
->dev
.coherent_dma_mask
= DMA_BIT_MASK(32);
386 match
= exynos_drm_match_add(&pdev
->dev
);
388 return PTR_ERR(match
);
390 return component_master_add_with_match(&pdev
->dev
, &exynos_drm_ops
,
394 static int exynos_drm_platform_remove(struct platform_device
*pdev
)
396 component_master_del(&pdev
->dev
, &exynos_drm_ops
);
400 static struct platform_driver exynos_drm_platform_driver
= {
401 .probe
= exynos_drm_platform_probe
,
402 .remove
= exynos_drm_platform_remove
,
404 .name
= "exynos-drm",
405 .pm
= &exynos_drm_pm_ops
,
409 static void exynos_drm_unregister_devices(void)
413 for (i
= ARRAY_SIZE(exynos_drm_drivers
) - 1; i
>= 0; --i
) {
414 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
417 if (!info
->driver
|| !(info
->flags
& DRM_VIRTUAL_DEVICE
))
420 while ((dev
= platform_find_device_by_driver(NULL
,
421 &info
->driver
->driver
))) {
423 platform_device_unregister(to_platform_device(dev
));
428 static int exynos_drm_register_devices(void)
430 struct platform_device
*pdev
;
433 for (i
= 0; i
< ARRAY_SIZE(exynos_drm_drivers
); ++i
) {
434 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
436 if (!info
->driver
|| !(info
->flags
& DRM_VIRTUAL_DEVICE
))
439 pdev
= platform_device_register_simple(
440 info
->driver
->driver
.name
, -1, NULL
, 0);
447 exynos_drm_unregister_devices();
448 return PTR_ERR(pdev
);
451 static void exynos_drm_unregister_drivers(void)
455 for (i
= ARRAY_SIZE(exynos_drm_drivers
) - 1; i
>= 0; --i
) {
456 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
461 platform_driver_unregister(info
->driver
);
465 static int exynos_drm_register_drivers(void)
469 for (i
= 0; i
< ARRAY_SIZE(exynos_drm_drivers
); ++i
) {
470 struct exynos_drm_driver_info
*info
= &exynos_drm_drivers
[i
];
475 ret
= platform_driver_register(info
->driver
);
481 exynos_drm_unregister_drivers();
485 static int exynos_drm_init(void)
489 ret
= exynos_drm_register_devices();
493 ret
= exynos_drm_register_drivers();
495 goto err_unregister_pdevs
;
499 err_unregister_pdevs
:
500 exynos_drm_unregister_devices();
505 static void exynos_drm_exit(void)
507 exynos_drm_unregister_drivers();
508 exynos_drm_unregister_devices();
511 module_init(exynos_drm_init
);
512 module_exit(exynos_drm_exit
);
514 MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
515 MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
516 MODULE_AUTHOR("Seung-Woo Kim <sw0312.kim@samsung.com>");
517 MODULE_DESCRIPTION("Samsung SoC DRM Driver");
518 MODULE_LICENSE("GPL");