2 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
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>
19 #include <drm/drm_fb_helper.h>
21 #include <linux/component.h>
23 #include <drm/exynos_drm.h>
25 #include "exynos_drm_drv.h"
26 #include "exynos_drm_fbdev.h"
27 #include "exynos_drm_fb.h"
28 #include "exynos_drm_gem.h"
29 #include "exynos_drm_plane.h"
30 #include "exynos_drm_ipp.h"
31 #include "exynos_drm_vidi.h"
32 #include "exynos_drm_g2d.h"
34 #define DRIVER_NAME "exynos"
35 #define DRIVER_DESC "Samsung SoC DRM"
36 #define DRIVER_DATE "20180330"
41 * 1.0 - Original version
42 * 1.1 - Upgrade IPP driver to version 2.0
44 #define DRIVER_MAJOR 1
45 #define DRIVER_MINOR 1
47 static int exynos_drm_open(struct drm_device *dev, struct drm_file *file)
49 struct drm_exynos_file_private *file_priv;
52 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
56 file->driver_priv = file_priv;
57 ret = g2d_open(dev, file);
59 goto err_file_priv_free;
65 file->driver_priv = NULL;
69 static void exynos_drm_postclose(struct drm_device *dev, struct drm_file *file)
72 kfree(file->driver_priv);
73 file->driver_priv = NULL;
76 static const struct vm_operations_struct exynos_drm_gem_vm_ops = {
77 .fault = exynos_drm_gem_fault,
78 .open = drm_gem_vm_open,
79 .close = drm_gem_vm_close,
82 static const struct drm_ioctl_desc exynos_ioctls[] = {
83 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_CREATE, exynos_drm_gem_create_ioctl,
84 DRM_AUTH | DRM_RENDER_ALLOW),
85 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_MAP, exynos_drm_gem_map_ioctl,
86 DRM_AUTH | DRM_RENDER_ALLOW),
87 DRM_IOCTL_DEF_DRV(EXYNOS_GEM_GET, exynos_drm_gem_get_ioctl,
89 DRM_IOCTL_DEF_DRV(EXYNOS_VIDI_CONNECTION, vidi_connection_ioctl,
91 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_GET_VER, exynos_g2d_get_ver_ioctl,
92 DRM_AUTH | DRM_RENDER_ALLOW),
93 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_SET_CMDLIST, exynos_g2d_set_cmdlist_ioctl,
94 DRM_AUTH | DRM_RENDER_ALLOW),
95 DRM_IOCTL_DEF_DRV(EXYNOS_G2D_EXEC, exynos_g2d_exec_ioctl,
96 DRM_AUTH | DRM_RENDER_ALLOW),
97 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_RESOURCES,
98 exynos_drm_ipp_get_res_ioctl,
99 DRM_AUTH | DRM_RENDER_ALLOW),
100 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_CAPS, exynos_drm_ipp_get_caps_ioctl,
101 DRM_AUTH | DRM_RENDER_ALLOW),
102 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_GET_LIMITS,
103 exynos_drm_ipp_get_limits_ioctl,
104 DRM_AUTH | DRM_RENDER_ALLOW),
105 DRM_IOCTL_DEF_DRV(EXYNOS_IPP_COMMIT, exynos_drm_ipp_commit_ioctl,
106 DRM_AUTH | DRM_RENDER_ALLOW),
109 static const struct file_operations exynos_drm_driver_fops = {
110 .owner = THIS_MODULE,
112 .mmap = exynos_drm_gem_mmap,
115 .unlocked_ioctl = drm_ioctl,
116 .compat_ioctl = drm_compat_ioctl,
117 .release = drm_release,
120 static struct drm_driver exynos_drm_driver = {
121 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME
122 | DRIVER_ATOMIC | DRIVER_RENDER,
123 .open = exynos_drm_open,
124 .lastclose = drm_fb_helper_lastclose,
125 .postclose = exynos_drm_postclose,
126 .gem_free_object_unlocked = exynos_drm_gem_free_object,
127 .gem_vm_ops = &exynos_drm_gem_vm_ops,
128 .dumb_create = exynos_drm_gem_dumb_create,
129 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
130 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
131 .gem_prime_export = drm_gem_prime_export,
132 .gem_prime_import = exynos_drm_gem_prime_import,
133 .gem_prime_get_sg_table = exynos_drm_gem_prime_get_sg_table,
134 .gem_prime_import_sg_table = exynos_drm_gem_prime_import_sg_table,
135 .gem_prime_vmap = exynos_drm_gem_prime_vmap,
136 .gem_prime_vunmap = exynos_drm_gem_prime_vunmap,
137 .gem_prime_mmap = exynos_drm_gem_prime_mmap,
138 .ioctls = exynos_ioctls,
139 .num_ioctls = ARRAY_SIZE(exynos_ioctls),
140 .fops = &exynos_drm_driver_fops,
144 .major = DRIVER_MAJOR,
145 .minor = DRIVER_MINOR,
148 static int exynos_drm_suspend(struct device *dev)
150 struct drm_device *drm_dev = dev_get_drvdata(dev);
152 return drm_mode_config_helper_suspend(drm_dev);
155 static void exynos_drm_resume(struct device *dev)
157 struct drm_device *drm_dev = dev_get_drvdata(dev);
159 drm_mode_config_helper_resume(drm_dev);
162 static const struct dev_pm_ops exynos_drm_pm_ops = {
163 .prepare = exynos_drm_suspend,
164 .complete = exynos_drm_resume,
167 /* forward declaration */
168 static struct platform_driver exynos_drm_platform_driver;
170 struct exynos_drm_driver_info {
171 struct platform_driver *driver;
175 #define DRM_COMPONENT_DRIVER BIT(0) /* supports component framework */
176 #define DRM_VIRTUAL_DEVICE BIT(1) /* create virtual platform device */
177 #define DRM_FIMC_DEVICE BIT(2) /* devices shared with V4L2 subsystem */
179 #define DRV_PTR(drv, cond) (IS_ENABLED(cond) ? &drv : NULL)
182 * Connector drivers should not be placed before associated crtc drivers,
183 * because connector requires pipe number of its crtc during initialization.
185 static struct exynos_drm_driver_info exynos_drm_drivers[] = {
187 DRV_PTR(fimd_driver, CONFIG_DRM_EXYNOS_FIMD),
190 DRV_PTR(exynos5433_decon_driver, CONFIG_DRM_EXYNOS5433_DECON),
193 DRV_PTR(decon_driver, CONFIG_DRM_EXYNOS7_DECON),
196 DRV_PTR(mixer_driver, CONFIG_DRM_EXYNOS_MIXER),
199 DRV_PTR(mic_driver, CONFIG_DRM_EXYNOS_MIC),
202 DRV_PTR(dp_driver, CONFIG_DRM_EXYNOS_DP),
205 DRV_PTR(dsi_driver, CONFIG_DRM_EXYNOS_DSI),
208 DRV_PTR(hdmi_driver, CONFIG_DRM_EXYNOS_HDMI),
211 DRV_PTR(vidi_driver, CONFIG_DRM_EXYNOS_VIDI),
212 DRM_COMPONENT_DRIVER | DRM_VIRTUAL_DEVICE
214 DRV_PTR(g2d_driver, CONFIG_DRM_EXYNOS_G2D),
217 DRV_PTR(fimc_driver, CONFIG_DRM_EXYNOS_FIMC),
218 DRM_COMPONENT_DRIVER | DRM_FIMC_DEVICE,
220 DRV_PTR(rotator_driver, CONFIG_DRM_EXYNOS_ROTATOR),
223 DRV_PTR(scaler_driver, CONFIG_DRM_EXYNOS_SCALER),
226 DRV_PTR(gsc_driver, CONFIG_DRM_EXYNOS_GSC),
229 &exynos_drm_platform_driver,
234 static int compare_dev(struct device *dev, void *data)
236 return dev == (struct device *)data;
239 static struct component_match *exynos_drm_match_add(struct device *dev)
241 struct component_match *match = NULL;
244 for (i = 0; i < ARRAY_SIZE(exynos_drm_drivers); ++i) {
245 struct exynos_drm_driver_info *info = &exynos_drm_drivers[i];
246 struct device *p = NULL, *d;
248 if (!info->driver || !(info->flags & DRM_COMPONENT_DRIVER))
251 while ((d = bus_find_device(&platform_bus_type, p,
252 &info->driver->driver,
253 (void *)platform_bus_type.match))) {
256 if (!(info->flags & DRM_FIMC_DEVICE) ||
257 exynos_drm_check_fimc_device(d) == 0)
258 component_match_add(dev, &match,
265 return match ?: ERR_PTR(-ENODEV);
268 static int exynos_drm_bind(struct device *dev)
270 struct exynos_drm_private *private;
271 struct drm_encoder *encoder;
272 struct drm_device *drm;
273 unsigned int clone_mask;
276 drm = drm_dev_alloc(&exynos_drm_driver, dev);
280 private = kzalloc(sizeof(struct exynos_drm_private), GFP_KERNEL);
286 init_waitqueue_head(&private->wait);
287 spin_lock_init(&private->lock);
289 dev_set_drvdata(dev, drm);
290 drm->dev_private = (void *)private;
292 drm_mode_config_init(drm);
294 exynos_drm_mode_config_init(drm);
296 /* setup possible_clones. */
299 list_for_each_entry(encoder, &drm->mode_config.encoder_list, head)
300 clone_mask |= (1 << (cnt++));
302 list_for_each_entry(encoder, &drm->mode_config.encoder_list, head)
303 encoder->possible_clones = clone_mask;
305 /* Try to bind all sub drivers. */
306 ret = component_bind_all(drm->dev, drm);
308 goto err_mode_config_cleanup;
310 ret = drm_vblank_init(drm, drm->mode_config.num_crtc);
314 drm_mode_config_reset(drm);
317 * enable drm irq mode.
318 * - with irq_enabled = true, we can use the vblank feature.
320 * P.S. note that we wouldn't use drm irq handler but
321 * just specific driver own one instead because
322 * drm framework supports only one irq handler.
324 drm->irq_enabled = true;
326 /* init kms poll for handling hpd */
327 drm_kms_helper_poll_init(drm);
329 ret = exynos_drm_fbdev_init(drm);
331 goto err_cleanup_poll;
333 /* register the DRM device */
334 ret = drm_dev_register(drm, 0);
336 goto err_cleanup_fbdev;
341 exynos_drm_fbdev_fini(drm);
343 drm_kms_helper_poll_fini(drm);
345 component_unbind_all(drm->dev, drm);
346 err_mode_config_cleanup:
347 drm_mode_config_cleanup(drm);
348 exynos_drm_cleanup_dma(drm);
356 static void exynos_drm_unbind(struct device *dev)
358 struct drm_device *drm = dev_get_drvdata(dev);
360 drm_dev_unregister(drm);
362 exynos_drm_fbdev_fini(drm);
363 drm_kms_helper_poll_fini(drm);
365 component_unbind_all(drm->dev, drm);
366 drm_mode_config_cleanup(drm);
367 exynos_drm_cleanup_dma(drm);
369 kfree(drm->dev_private);
370 drm->dev_private = NULL;
371 dev_set_drvdata(dev, NULL);
376 static const struct component_master_ops exynos_drm_ops = {
377 .bind = exynos_drm_bind,
378 .unbind = exynos_drm_unbind,
381 static int exynos_drm_platform_probe(struct platform_device *pdev)
383 struct component_match *match;
385 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
387 match = exynos_drm_match_add(&pdev->dev);
389 return PTR_ERR(match);
391 return component_master_add_with_match(&pdev->dev, &exynos_drm_ops,
395 static int exynos_drm_platform_remove(struct platform_device *pdev)
397 component_master_del(&pdev->dev, &exynos_drm_ops);
401 static struct platform_driver exynos_drm_platform_driver = {
402 .probe = exynos_drm_platform_probe,
403 .remove = exynos_drm_platform_remove,
405 .name = "exynos-drm",
406 .pm = &exynos_drm_pm_ops,
410 static void exynos_drm_unregister_devices(void)
414 for (i = ARRAY_SIZE(exynos_drm_drivers) - 1; i >= 0; --i) {
415 struct exynos_drm_driver_info *info = &exynos_drm_drivers[i];
418 if (!info->driver || !(info->flags & DRM_VIRTUAL_DEVICE))
421 while ((dev = bus_find_device(&platform_bus_type, NULL,
422 &info->driver->driver,
423 (void *)platform_bus_type.match))) {
425 platform_device_unregister(to_platform_device(dev));
430 static int exynos_drm_register_devices(void)
432 struct platform_device *pdev;
435 for (i = 0; i < ARRAY_SIZE(exynos_drm_drivers); ++i) {
436 struct exynos_drm_driver_info *info = &exynos_drm_drivers[i];
438 if (!info->driver || !(info->flags & DRM_VIRTUAL_DEVICE))
441 pdev = platform_device_register_simple(
442 info->driver->driver.name, -1, NULL, 0);
449 exynos_drm_unregister_devices();
450 return PTR_ERR(pdev);
453 static void exynos_drm_unregister_drivers(void)
457 for (i = ARRAY_SIZE(exynos_drm_drivers) - 1; i >= 0; --i) {
458 struct exynos_drm_driver_info *info = &exynos_drm_drivers[i];
463 platform_driver_unregister(info->driver);
467 static int exynos_drm_register_drivers(void)
471 for (i = 0; i < ARRAY_SIZE(exynos_drm_drivers); ++i) {
472 struct exynos_drm_driver_info *info = &exynos_drm_drivers[i];
477 ret = platform_driver_register(info->driver);
483 exynos_drm_unregister_drivers();
487 static int exynos_drm_init(void)
491 ret = exynos_drm_register_devices();
495 ret = exynos_drm_register_drivers();
497 goto err_unregister_pdevs;
501 err_unregister_pdevs:
502 exynos_drm_unregister_devices();
507 static void exynos_drm_exit(void)
509 exynos_drm_unregister_drivers();
510 exynos_drm_unregister_devices();
513 module_init(exynos_drm_init);
514 module_exit(exynos_drm_exit);
519 MODULE_DESCRIPTION("Samsung SoC DRM Driver");
520 MODULE_LICENSE("GPL");