]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/rockchip/rockchip_drm_drv.c
782979f1b55a4b4104f2d426f2b7829860ffc194
[linux.git] / drivers / gpu / drm / rockchip / rockchip_drm_drv.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
4  * Author:Mark Yao <mark.yao@rock-chips.com>
5  *
6  * based on exynos_drm_drv.c
7  */
8
9 #include <drm/drmP.h>
10 #include <drm/drm_fb_helper.h>
11 #include <drm/drm_gem_cma_helper.h>
12 #include <drm/drm_of.h>
13 #include <drm/drm_probe_helper.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/dma-iommu.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/module.h>
18 #include <linux/of_graph.h>
19 #include <linux/of_platform.h>
20 #include <linux/component.h>
21 #include <linux/console.h>
22 #include <linux/iommu.h>
23
24 #include "rockchip_drm_drv.h"
25 #include "rockchip_drm_fb.h"
26 #include "rockchip_drm_fbdev.h"
27 #include "rockchip_drm_gem.h"
28
29 #define DRIVER_NAME     "rockchip"
30 #define DRIVER_DESC     "RockChip Soc DRM"
31 #define DRIVER_DATE     "20140818"
32 #define DRIVER_MAJOR    1
33 #define DRIVER_MINOR    0
34
35 static bool is_support_iommu = true;
36 static struct drm_driver rockchip_drm_driver;
37
38 /*
39  * Attach a (component) device to the shared drm dma mapping from master drm
40  * device.  This is used by the VOPs to map GEM buffers to a common DMA
41  * mapping.
42  */
43 int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
44                                    struct device *dev)
45 {
46         struct rockchip_drm_private *private = drm_dev->dev_private;
47         int ret;
48
49         if (!is_support_iommu)
50                 return 0;
51
52         ret = iommu_attach_device(private->domain, dev);
53         if (ret) {
54                 DRM_DEV_ERROR(dev, "Failed to attach iommu device\n");
55                 return ret;
56         }
57
58         return 0;
59 }
60
61 void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
62                                     struct device *dev)
63 {
64         struct rockchip_drm_private *private = drm_dev->dev_private;
65         struct iommu_domain *domain = private->domain;
66
67         if (!is_support_iommu)
68                 return;
69
70         iommu_detach_device(domain, dev);
71 }
72
73 static int rockchip_drm_init_iommu(struct drm_device *drm_dev)
74 {
75         struct rockchip_drm_private *private = drm_dev->dev_private;
76         struct iommu_domain_geometry *geometry;
77         u64 start, end;
78
79         if (!is_support_iommu)
80                 return 0;
81
82         private->domain = iommu_domain_alloc(&platform_bus_type);
83         if (!private->domain)
84                 return -ENOMEM;
85
86         geometry = &private->domain->geometry;
87         start = geometry->aperture_start;
88         end = geometry->aperture_end;
89
90         DRM_DEBUG("IOMMU context initialized (aperture: %#llx-%#llx)\n",
91                   start, end);
92         drm_mm_init(&private->mm, start, end - start + 1);
93         mutex_init(&private->mm_lock);
94
95         return 0;
96 }
97
98 static void rockchip_iommu_cleanup(struct drm_device *drm_dev)
99 {
100         struct rockchip_drm_private *private = drm_dev->dev_private;
101
102         if (!is_support_iommu)
103                 return;
104
105         drm_mm_takedown(&private->mm);
106         iommu_domain_free(private->domain);
107 }
108
109 static int rockchip_drm_bind(struct device *dev)
110 {
111         struct drm_device *drm_dev;
112         struct rockchip_drm_private *private;
113         int ret;
114
115         drm_dev = drm_dev_alloc(&rockchip_drm_driver, dev);
116         if (IS_ERR(drm_dev))
117                 return PTR_ERR(drm_dev);
118
119         dev_set_drvdata(dev, drm_dev);
120
121         private = devm_kzalloc(drm_dev->dev, sizeof(*private), GFP_KERNEL);
122         if (!private) {
123                 ret = -ENOMEM;
124                 goto err_free;
125         }
126
127         drm_dev->dev_private = private;
128
129         INIT_LIST_HEAD(&private->psr_list);
130         mutex_init(&private->psr_list_lock);
131
132         ret = rockchip_drm_init_iommu(drm_dev);
133         if (ret)
134                 goto err_free;
135
136         drm_mode_config_init(drm_dev);
137
138         rockchip_drm_mode_config_init(drm_dev);
139
140         /* Try to bind all sub drivers. */
141         ret = component_bind_all(dev, drm_dev);
142         if (ret)
143                 goto err_mode_config_cleanup;
144
145         ret = drm_vblank_init(drm_dev, drm_dev->mode_config.num_crtc);
146         if (ret)
147                 goto err_unbind_all;
148
149         drm_mode_config_reset(drm_dev);
150
151         /*
152          * enable drm irq mode.
153          * - with irq_enabled = true, we can use the vblank feature.
154          */
155         drm_dev->irq_enabled = true;
156
157         ret = rockchip_drm_fbdev_init(drm_dev);
158         if (ret)
159                 goto err_unbind_all;
160
161         /* init kms poll for handling hpd */
162         drm_kms_helper_poll_init(drm_dev);
163
164         ret = drm_dev_register(drm_dev, 0);
165         if (ret)
166                 goto err_kms_helper_poll_fini;
167
168         return 0;
169 err_kms_helper_poll_fini:
170         drm_kms_helper_poll_fini(drm_dev);
171         rockchip_drm_fbdev_fini(drm_dev);
172 err_unbind_all:
173         component_unbind_all(dev, drm_dev);
174 err_mode_config_cleanup:
175         drm_mode_config_cleanup(drm_dev);
176         rockchip_iommu_cleanup(drm_dev);
177 err_free:
178         drm_dev->dev_private = NULL;
179         dev_set_drvdata(dev, NULL);
180         drm_dev_put(drm_dev);
181         return ret;
182 }
183
184 static void rockchip_drm_unbind(struct device *dev)
185 {
186         struct drm_device *drm_dev = dev_get_drvdata(dev);
187
188         drm_dev_unregister(drm_dev);
189
190         rockchip_drm_fbdev_fini(drm_dev);
191         drm_kms_helper_poll_fini(drm_dev);
192
193         drm_atomic_helper_shutdown(drm_dev);
194         component_unbind_all(dev, drm_dev);
195         drm_mode_config_cleanup(drm_dev);
196         rockchip_iommu_cleanup(drm_dev);
197
198         drm_dev->dev_private = NULL;
199         dev_set_drvdata(dev, NULL);
200         drm_dev_put(drm_dev);
201 }
202
203 static const struct file_operations rockchip_drm_driver_fops = {
204         .owner = THIS_MODULE,
205         .open = drm_open,
206         .mmap = rockchip_gem_mmap,
207         .poll = drm_poll,
208         .read = drm_read,
209         .unlocked_ioctl = drm_ioctl,
210         .compat_ioctl = drm_compat_ioctl,
211         .release = drm_release,
212 };
213
214 static struct drm_driver rockchip_drm_driver = {
215         .driver_features        = DRIVER_MODESET | DRIVER_GEM | DRIVER_ATOMIC,
216         .lastclose              = drm_fb_helper_lastclose,
217         .gem_vm_ops             = &drm_gem_cma_vm_ops,
218         .gem_free_object_unlocked = rockchip_gem_free_object,
219         .dumb_create            = rockchip_gem_dumb_create,
220         .prime_handle_to_fd     = drm_gem_prime_handle_to_fd,
221         .prime_fd_to_handle     = drm_gem_prime_fd_to_handle,
222         .gem_prime_get_sg_table = rockchip_gem_prime_get_sg_table,
223         .gem_prime_import_sg_table      = rockchip_gem_prime_import_sg_table,
224         .gem_prime_vmap         = rockchip_gem_prime_vmap,
225         .gem_prime_vunmap       = rockchip_gem_prime_vunmap,
226         .gem_prime_mmap         = rockchip_gem_mmap_buf,
227         .fops                   = &rockchip_drm_driver_fops,
228         .name   = DRIVER_NAME,
229         .desc   = DRIVER_DESC,
230         .date   = DRIVER_DATE,
231         .major  = DRIVER_MAJOR,
232         .minor  = DRIVER_MINOR,
233 };
234
235 #ifdef CONFIG_PM_SLEEP
236 static int rockchip_drm_sys_suspend(struct device *dev)
237 {
238         struct drm_device *drm = dev_get_drvdata(dev);
239
240         return drm_mode_config_helper_suspend(drm);
241 }
242
243 static int rockchip_drm_sys_resume(struct device *dev)
244 {
245         struct drm_device *drm = dev_get_drvdata(dev);
246
247         return drm_mode_config_helper_resume(drm);
248 }
249 #endif
250
251 static const struct dev_pm_ops rockchip_drm_pm_ops = {
252         SET_SYSTEM_SLEEP_PM_OPS(rockchip_drm_sys_suspend,
253                                 rockchip_drm_sys_resume)
254 };
255
256 #define MAX_ROCKCHIP_SUB_DRIVERS 16
257 static struct platform_driver *rockchip_sub_drivers[MAX_ROCKCHIP_SUB_DRIVERS];
258 static int num_rockchip_sub_drivers;
259
260 /*
261  * Check if a vop endpoint is leading to a rockchip subdriver or bridge.
262  * Should be called from the component bind stage of the drivers
263  * to ensure that all subdrivers are probed.
264  *
265  * @ep: endpoint of a rockchip vop
266  *
267  * returns true if subdriver, false if external bridge and -ENODEV
268  * if remote port does not contain a device.
269  */
270 int rockchip_drm_endpoint_is_subdriver(struct device_node *ep)
271 {
272         struct device_node *node = of_graph_get_remote_port_parent(ep);
273         struct platform_device *pdev;
274         struct device_driver *drv;
275         int i;
276
277         if (!node)
278                 return -ENODEV;
279
280         /* status disabled will prevent creation of platform-devices */
281         pdev = of_find_device_by_node(node);
282         of_node_put(node);
283         if (!pdev)
284                 return -ENODEV;
285
286         /*
287          * All rockchip subdrivers have probed at this point, so
288          * any device not having a driver now is an external bridge.
289          */
290         drv = pdev->dev.driver;
291         if (!drv) {
292                 platform_device_put(pdev);
293                 return false;
294         }
295
296         for (i = 0; i < num_rockchip_sub_drivers; i++) {
297                 if (rockchip_sub_drivers[i] == to_platform_driver(drv)) {
298                         platform_device_put(pdev);
299                         return true;
300                 }
301         }
302
303         platform_device_put(pdev);
304         return false;
305 }
306
307 static int compare_dev(struct device *dev, void *data)
308 {
309         return dev == (struct device *)data;
310 }
311
312 static void rockchip_drm_match_remove(struct device *dev)
313 {
314         struct device_link *link;
315
316         list_for_each_entry(link, &dev->links.consumers, s_node)
317                 device_link_del(link);
318 }
319
320 static struct component_match *rockchip_drm_match_add(struct device *dev)
321 {
322         struct component_match *match = NULL;
323         int i;
324
325         for (i = 0; i < num_rockchip_sub_drivers; i++) {
326                 struct platform_driver *drv = rockchip_sub_drivers[i];
327                 struct device *p = NULL, *d;
328
329                 do {
330                         d = bus_find_device(&platform_bus_type, p, &drv->driver,
331                                             (void *)platform_bus_type.match);
332                         put_device(p);
333                         p = d;
334
335                         if (!d)
336                                 break;
337
338                         device_link_add(dev, d, DL_FLAG_STATELESS);
339                         component_match_add(dev, &match, compare_dev, d);
340                 } while (true);
341         }
342
343         if (IS_ERR(match))
344                 rockchip_drm_match_remove(dev);
345
346         return match ?: ERR_PTR(-ENODEV);
347 }
348
349 static const struct component_master_ops rockchip_drm_ops = {
350         .bind = rockchip_drm_bind,
351         .unbind = rockchip_drm_unbind,
352 };
353
354 static int rockchip_drm_platform_of_probe(struct device *dev)
355 {
356         struct device_node *np = dev->of_node;
357         struct device_node *port;
358         bool found = false;
359         int i;
360
361         if (!np)
362                 return -ENODEV;
363
364         for (i = 0;; i++) {
365                 struct device_node *iommu;
366
367                 port = of_parse_phandle(np, "ports", i);
368                 if (!port)
369                         break;
370
371                 if (!of_device_is_available(port->parent)) {
372                         of_node_put(port);
373                         continue;
374                 }
375
376                 iommu = of_parse_phandle(port->parent, "iommus", 0);
377                 if (!iommu || !of_device_is_available(iommu->parent)) {
378                         DRM_DEV_DEBUG(dev,
379                                       "no iommu attached for %pOF, using non-iommu buffers\n",
380                                       port->parent);
381                         /*
382                          * if there is a crtc not support iommu, force set all
383                          * crtc use non-iommu buffer.
384                          */
385                         is_support_iommu = false;
386                 }
387
388                 found = true;
389
390                 of_node_put(iommu);
391                 of_node_put(port);
392         }
393
394         if (i == 0) {
395                 DRM_DEV_ERROR(dev, "missing 'ports' property\n");
396                 return -ENODEV;
397         }
398
399         if (!found) {
400                 DRM_DEV_ERROR(dev,
401                               "No available vop found for display-subsystem.\n");
402                 return -ENODEV;
403         }
404
405         return 0;
406 }
407
408 static int rockchip_drm_platform_probe(struct platform_device *pdev)
409 {
410         struct device *dev = &pdev->dev;
411         struct component_match *match = NULL;
412         int ret;
413
414         ret = rockchip_drm_platform_of_probe(dev);
415         if (ret)
416                 return ret;
417
418         match = rockchip_drm_match_add(dev);
419         if (IS_ERR(match))
420                 return PTR_ERR(match);
421
422         ret = component_master_add_with_match(dev, &rockchip_drm_ops, match);
423         if (ret < 0) {
424                 rockchip_drm_match_remove(dev);
425                 return ret;
426         }
427
428         return 0;
429 }
430
431 static int rockchip_drm_platform_remove(struct platform_device *pdev)
432 {
433         component_master_del(&pdev->dev, &rockchip_drm_ops);
434
435         rockchip_drm_match_remove(&pdev->dev);
436
437         return 0;
438 }
439
440 static void rockchip_drm_platform_shutdown(struct platform_device *pdev)
441 {
442         struct drm_device *drm = platform_get_drvdata(pdev);
443
444         if (drm)
445                 drm_atomic_helper_shutdown(drm);
446 }
447
448 static const struct of_device_id rockchip_drm_dt_ids[] = {
449         { .compatible = "rockchip,display-subsystem", },
450         { /* sentinel */ },
451 };
452 MODULE_DEVICE_TABLE(of, rockchip_drm_dt_ids);
453
454 static struct platform_driver rockchip_drm_platform_driver = {
455         .probe = rockchip_drm_platform_probe,
456         .remove = rockchip_drm_platform_remove,
457         .shutdown = rockchip_drm_platform_shutdown,
458         .driver = {
459                 .name = "rockchip-drm",
460                 .of_match_table = rockchip_drm_dt_ids,
461                 .pm = &rockchip_drm_pm_ops,
462         },
463 };
464
465 #define ADD_ROCKCHIP_SUB_DRIVER(drv, cond) { \
466         if (IS_ENABLED(cond) && \
467             !WARN_ON(num_rockchip_sub_drivers >= MAX_ROCKCHIP_SUB_DRIVERS)) \
468                 rockchip_sub_drivers[num_rockchip_sub_drivers++] = &drv; \
469 }
470
471 static int __init rockchip_drm_init(void)
472 {
473         int ret;
474
475         num_rockchip_sub_drivers = 0;
476         ADD_ROCKCHIP_SUB_DRIVER(vop_platform_driver, CONFIG_DRM_ROCKCHIP);
477         ADD_ROCKCHIP_SUB_DRIVER(rockchip_lvds_driver,
478                                 CONFIG_ROCKCHIP_LVDS);
479         ADD_ROCKCHIP_SUB_DRIVER(rockchip_dp_driver,
480                                 CONFIG_ROCKCHIP_ANALOGIX_DP);
481         ADD_ROCKCHIP_SUB_DRIVER(cdn_dp_driver, CONFIG_ROCKCHIP_CDN_DP);
482         ADD_ROCKCHIP_SUB_DRIVER(dw_hdmi_rockchip_pltfm_driver,
483                                 CONFIG_ROCKCHIP_DW_HDMI);
484         ADD_ROCKCHIP_SUB_DRIVER(dw_mipi_dsi_rockchip_driver,
485                                 CONFIG_ROCKCHIP_DW_MIPI_DSI);
486         ADD_ROCKCHIP_SUB_DRIVER(inno_hdmi_driver, CONFIG_ROCKCHIP_INNO_HDMI);
487         ADD_ROCKCHIP_SUB_DRIVER(rk3066_hdmi_driver,
488                                 CONFIG_ROCKCHIP_RK3066_HDMI);
489
490         ret = platform_register_drivers(rockchip_sub_drivers,
491                                         num_rockchip_sub_drivers);
492         if (ret)
493                 return ret;
494
495         ret = platform_driver_register(&rockchip_drm_platform_driver);
496         if (ret)
497                 goto err_unreg_drivers;
498
499         return 0;
500
501 err_unreg_drivers:
502         platform_unregister_drivers(rockchip_sub_drivers,
503                                     num_rockchip_sub_drivers);
504         return ret;
505 }
506
507 static void __exit rockchip_drm_fini(void)
508 {
509         platform_driver_unregister(&rockchip_drm_platform_driver);
510
511         platform_unregister_drivers(rockchip_sub_drivers,
512                                     num_rockchip_sub_drivers);
513 }
514
515 module_init(rockchip_drm_init);
516 module_exit(rockchip_drm_fini);
517
518 MODULE_AUTHOR("Mark Yao <mark.yao@rock-chips.com>");
519 MODULE_DESCRIPTION("ROCKCHIP DRM Driver");
520 MODULE_LICENSE("GPL v2");